From c6cb27135a55996e65fa09017cbffbc2f3f50ec7 Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Wed, 15 Jul 2015 12:54:40 +0530 Subject: [PATCH 01/15] Get-AzureBackupContainer cmdlet part1 --- .../ContainerAdapter.cs | 79 +++++++++++++ .../AzureBackupCmdletHelpMessage.cs | 4 + .../Container/GetAzureBackupContainer.cs | 109 ++++++++++++++++++ .../Commands.AzureBackup.csproj | 8 +- .../Models/AzureBackupBaseObjects.cs | 44 +++++++ .../Models/AzureBackupContainer.cs | 71 ++++++++++++ .../Models/AzureBackupEnums.cs | 26 +++++ ...re.Management.BackupServicesManagement.dll | Bin 0 -> 76288 bytes 8 files changed, 339 insertions(+), 2 deletions(-) create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureBackupContainer.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs new file mode 100644 index 000000000000..3ef973773934 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs @@ -0,0 +1,79 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using System.Collections.Generic; +using System.Xml; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using System.Threading; +using Hyak.Common; +using Microsoft.Azure.Commands.AzureBackup.Properties; +using System.Net; +using System.Linq; +using Microsoft.WindowsAzure.Management.Scheduler; +using Microsoft.Azure.Management.BackupServices; +using Microsoft.Azure.Management.BackupServices.Models; +using Microsoft.Azure.Commands.AzureBackup.Models; + +namespace Microsoft.Azure.Commands.AzureBackup.ClientAdapter +{ + public partial class AzureBackupClientAdapter + { + /// + /// Gets all MARS containers in the vault + /// + /// + public IEnumerable ListMachineContainers() + { + var listResponse = AzureBackupVaultClient.Container.ListMarsContainersByType(MarsContainerType.Machine, GetCustomRequestHeaders()); + return listResponse.ListMarsContainerResponse.Value; + } + + /// + /// Gets all MARS containers in the vault which match the friendly name + /// + /// The friendly name of the container + /// + public IEnumerable ListMachineContainers(string friendlyName) + { + var listResponse = AzureBackupVaultClient.Container.ListMarsContainersByTypeAndFriendlyName(MarsContainerType.Machine, friendlyName, GetCustomRequestHeaders()); + return listResponse.ListMarsContainerResponse.Value; + } + + ///// + ///// Register container + ///// + ///// + ///// + //public Guid RegisterContainer(string containerName) + //{ + // var response = AzureBackupVaultClient.Container.RegisterAsync(containerName, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + // return response.OperationId; + //} + + ///// + ///// UnRegister container + ///// + ///// + ///// + //public Guid UnRegisterContainer(string containerName) + //{ + // var response = AzureBackupVaultClient.Container.UnregisterAsync(containerName, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + // return response.OperationId; + //} + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs index 9d2719413564..a54e38f4cd51 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs @@ -22,5 +22,9 @@ internal static class AzureBackupCmdletHelpMessage public const string Location = "The resource location."; public const string TargetLocation = "The directory where the credentials file will be saved. This must be an absolute path."; public const string StorageType = "The vault back-end storage type."; + public const string ManagedResourceName = "The resource name of the resource being managed by the Azure Backup service (ex: resource name of the VM)."; + public const string ManagedResourceGroupName = "The resource group name of the resource being managed by the Azure Backup service (ex: resource group name of the VM)."; + public const string ContainerRegistrationStatus = "The container registration status."; + public const string ContainerType = "The container type."; } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureBackupContainer.cs new file mode 100644 index 000000000000..e2b007cf3939 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureBackupContainer.cs @@ -0,0 +1,109 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.AzureBackup.Helpers; +using Microsoft.Azure.Commands.AzureBackup.Library; +using Microsoft.Azure.Commands.AzureBackup.Models; +using Microsoft.Azure.Management.BackupServices.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + /// + /// Get list of containers + /// + [Cmdlet(VerbsCommon.Get, "AzureBackupContainer"), OutputType(typeof(AzureBackupContainer), typeof(List))] + public class GetAzureBackupContainer : AzureBackupVaultCmdletBase + { + //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ManagedResourceGroupName)] + //[ValidateNotNullOrEmpty] + //public string ManagedResourceGroupName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ManagedResourceName)] + [ValidateNotNullOrEmpty] + public string ManagedResourceName { get; set; } + + //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ContainerRegistrationStatus)] + //[ValidateNotNullOrEmpty] + //public AzureBackupContainerStatusInput Status { get; set; } + + [Parameter(Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.ContainerType)] + [ValidateNotNullOrEmpty] + public AzureBackupContainerTypeInput Type { get; set; } + + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + base.ExecuteCmdlet(); + + List containers = new List(); + + switch (Type) + { + case AzureBackupContainerTypeInput.Windows: + case AzureBackupContainerTypeInput.SCDPM: + containers.AddRange(GetMachineContainers()); + break; + default: + break; + } + + WriteObject(containers); + }); + } + + private List GetMachineContainers() + { + List marsContainerResponses = new List(); + if (!string.IsNullOrEmpty(ManagedResourceName)) + { + marsContainerResponses.AddRange(AzureBackupClient.ListMachineContainers()); + } + else + { + marsContainerResponses.AddRange(AzureBackupClient.ListMachineContainers(ManagedResourceName)); + } + + return marsContainerResponses.ConvertAll(marsContainerResponse => + { + return new AzureBackupContainer(Vault, marsContainerResponse); + }).Where(container => container.ContainerType == GetCustomerType().ToString()).ToList(); + } + + private CustomerType GetCustomerType() + { + CustomerType customerType = CustomerType.Invalid; + + switch (Type) + { + case AzureBackupContainerTypeInput.Windows: + customerType = CustomerType.OBS; + break; + case AzureBackupContainerTypeInput.SCDPM: + customerType = CustomerType.DPM; + break; + default: + break; + } + + return customerType; + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj index b581a19ef2a3..feeed90c75fc 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -56,9 +56,9 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - + False - ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.0-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll + Resources\Microsoft.Azure.Management.BackupServicesManagement.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -116,10 +116,12 @@ + + @@ -128,6 +130,7 @@ + @@ -160,6 +163,7 @@ Always + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs index f427757a46b8..c1299738ba01 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs @@ -12,6 +12,8 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.BackupServices.Models; + namespace Microsoft.Azure.Commands.AzureBackup.Models { public class AzureBackupVaultContextObject @@ -43,4 +45,46 @@ public AzureBackupVaultContextObject(string resourceGroupName, string resourceNa public AzureBackupVaultContextObject(AzurePSBackupVault vault) : this(vault.ResourceGroupName, vault.Name, vault.Region) { } } + + /// + /// This class encapsulates all the properties of the container object + /// that are needed by higher level objects (data source, recovery point etc). + /// + public class AzureBackupContainerContextObject : AzureBackupVaultContextObject + { + /// + /// Type of the Azure Backup container + /// + public string ContainerType { get; set; } + + /// + /// Unique name of the Azure Backup Container + /// + public string ContainerUniqueName { get; set; } + + public AzureBackupContainerContextObject() + : base() + { + } + + public AzureBackupContainerContextObject(AzureBackupContainerContextObject azureBackupContainerContextObject) + : base(azureBackupContainerContextObject.ResourceGroupName, azureBackupContainerContextObject.ResourceName, azureBackupContainerContextObject.Location) + { + ContainerType = azureBackupContainerContextObject.ContainerType; + ContainerUniqueName = azureBackupContainerContextObject.ContainerUniqueName; + } + public AzureBackupContainerContextObject(AzureBackupContainer azureBackupContainer) + : base(azureBackupContainer.ResourceGroupName, azureBackupContainer.ResourceName, azureBackupContainer.Location) + { + ContainerType = azureBackupContainer.ContainerType; + ContainerUniqueName = azureBackupContainer.ContainerUniqueName; + } + + public AzureBackupContainerContextObject(AzurePSBackupVault vault, MarsContainerResponse marsContainerResponse) + : base(vault.ResourceGroupName, vault.Name, vault.Region) + { + ContainerType = marsContainerResponse.Properties.CustomerType; + ContainerUniqueName = marsContainerResponse.UniqueName; + } + } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs new file mode 100644 index 000000000000..6bfdaa7c5fc8 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.AzureBackup.Helpers; +using Microsoft.Azure.Management.BackupServices.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.AzureBackup.Models +{ + /// + /// Represents Azure Backup Container + /// + public class AzureBackupContainer : AzureBackupContainerContextObject + { + ///// + ///// Resource group name of the resource (ex: resource group name of the VM) being managed by Azure Backup service. + ///// + //public string ManagedResourceGroupName { get; set; } + + /// + /// Resource name of the resource (ex: resource name of the VM) being managed by the Azure Backup service. + /// + public string ManagedResourceName { get; set; } + + ///// + ///// Status of health of the Azure Backup container + ///// + //public string HealthStatus { get; set; } + + ///// + ///// Status of registration of the container + ///// + //public string RegistrationStatus { get; set; } + + public long ContainerId { get; set; } + + public string ContainerStampUri { get; set; } + + public Guid ContainerStampId { get; set; } + + public bool CanReRegister { get; set; } + + public AzureBackupContainer() : base() { } + + public AzureBackupContainer(AzurePSBackupVault vault, MarsContainerResponse marsContainerResponse) + : base(vault, marsContainerResponse) + { + //ManagedResourceGroupName = ContainerHelpers.GetRGNameFromId(marsContainerResponse.Properties.ParentContainerId); + ManagedResourceName = marsContainerResponse.Properties.FriendlyName; + ContainerId = marsContainerResponse.Properties.ContainerId; + ContainerStampId = marsContainerResponse.Properties.ContainerStampId; + ContainerStampUri = marsContainerResponse.Properties.ContainerStampUri; + CanReRegister = marsContainerResponse.Properties.CanReRegister; + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs index 79cc0f9b20c0..bf75de554bdd 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs @@ -19,4 +19,30 @@ public enum AzureBackupVaultStorageType GeoRedundant = 1, LocallyRedundant, } + + public enum AzureBackupContainerTypeInput + { + Windows = 1, + SCDPM, + } + + public enum AzureBackupContainerStatusInput + { + Registering = 1, + Registered, + } + + public enum AzureBackupContainerType + { + Invalid = 0, + + Unknown, + + // used by fabric adapter to populate discovered VMs + IaasVMContainer, + + // used by fabric adapter to populate discovered services + // VMs are child containers of services they belong to + IaasVMServiceContainer + } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll new file mode 100644 index 0000000000000000000000000000000000000000..4ed29f9fc5812bfae3da13349fc7b6474af50d42 GIT binary patch literal 76288 zcmeFa3w&Hv)i=E7Br{1SNt>C;y_Z~?w$uB)4W*P`fkJ`Oma9M-lA#TxnJ|+;%XFm3 zRRj@4Km`R+6a|GxQ9x7>L=hBG-^Uv$7X|e}R6qqmc>n*k_c>>unF$o%=ly=)_x+y! zI_vDU_F8+dz4mRbeJ(ltgb%4QrBpe7Z@s0|UAXe!DuHhg_9A;++dbpdSE_!{aaU;L z4?4E)7|6B{XVTjyF&gzBApQnp;~N?J`AgTCdc` zP?@^t@Xs9W*7lTgI;um}O0|cSs?^lUE0JzTdKIop)k)gXdXo?#;J>}d2c7@Q)V2%A z%K!e=pd{hnqX&f4kxZc6x-b(3|F(rx4M!*(Z>guk8i-m~wKslt*W&$V``xCX$Xzkd84(Ixayv#wF>v zX!Vr`k)DuOKUggru<~zzA z&`vU@R224gvQyE4c?u)_1*R$BWT4$}p0;utq;a@Ve1DzCw1`ulr}3O{o;~J_E6=k>og`*j#7Uzivy?)gJL=s38~T-2B9o_<&Ct7)GSGv4 zatyBg=aeN|#E}2Zox(O>jq;^W#)XrU|6kWDdfc4n=~({XspG%ZGqlu*tge`InkpM1AsTUV9Dp(kk>)6rp@=kxqKrqRIUHpeAkB#-vkPf1 z9Wup`<`k287D;p5M%;0GkW3~{*s?rexx!>~*BZ=M&U2DwU7IjJtiD$(BPrIDnCj%# zA}5iICENaW{CX%V>oBIK;*U5NXe3$DnyU&5<-DeZ9(cQxUm_JUkjbnKO z3Uuo8hw_pm0)r%G#AeJn2^{Ui!JlRg9qLIvZFd3ZOL7-fUDdD82fUF{! zr-ghl$eQBhbiwOE$yA5ba3tA9PUU0{29`ezbjQi@lGy-4aw;nlYK}7LX|SA_kEtlu z6VYuB7CRAgN^vEpgVis|<;@HPD=01jYgwc~*j4TWrDQWVm85>BB=zBv)RMe*tFXw9 zrPI^F60=F#ZX+$4Bh0*p{PYYEm80_xmpsDEbSKzRBs00(!ZPeI zEht6`jNs$hppyX7i(ENOE%<-vk+p!Fxa+Y*$gH(z>#X|jAAsEbCc$e2uK>UlPIfU% z(nSy^mjF*M1%UdRO!Z`6N-y)t>29PmDJpaU71~d-_8h_@mTNZOxU#L9(#VnC9~_P8 z6@ZCZ@ma|On3x@(om`2;ob^s)o~?0Wv-8;R%AGyy0OPZrBv!>)sxdM3$)+l(o?~WW zwiBQ8W&?~Kip|mN4I+)wR-rT%pRIFYs7)-)GgQ;@>#E$#DdCp zI5}cz=o-x*MHO;{?cak<^uoA23dV24CeSEomrpU0xYrAi7m~8j#ihp z6!Vf>!AebtoQ>)r8Z?tx!IqyIF0#}<8fU%J@=n%hicp7l)5yd!C$=mP?aQ6)Hmr48 z@%lWxX6R3P63M8nYzdA8Az_9^g$1>db9PK$)39>1E&66?R;Wo)X8D<1cCvjax!TFm zC>7}*AVw~81=k1++-ObZ?3&7A@#UO~s&WJaF_cETqKWQV==ttHV-m)?(Tz?~4a5*4uu zh*p#ot!I#TU{he zjjNL*+fa%L=wX$ny80t zeLCgJp5)0k#2O&mP*S!**V_o$#`I2+MIWE#$u`BBAlp<@wn@u2qo117SfgZkz#BKi zqb1e?(Uy{;En2h{qODw$MD!w0bV6(bL?@IKouEZ0LUbY*Fo<%vZ=(q~t3v;J>#bk6 z#iqJ$Q6kpux~P@l!#s$pC%6=Fa%QgZ>YNmtggPe`*IBP(lXRVvD`Jz=nB=I^i2H_W zi?u<#t)zIH7H_YJwHrGbao<=Su?~oLloapK;+++-PGc)0?i*}MYzoAuloX$$#k(qE zU9P>LzP|{kPoYW7K8DpOnz@Na=|{@7A^gJ}mKm&ivL5?P7;VucR_$4=SB-ZW`RgWCkTETZsRpT;tI=94o9c3S2T`o6AH@!cP)z=j{yQwy$06^4T5hgB{a*0i zTBXzui*B;jM?m8bv8}?^9a^fl=(6Na)G<@XiLHZerCt zp?~);(8%te5&Ld1tQFhZR6ky|seWv0Q%myNIyH^0lONkki8_A8#6i~* z7RR<&9gs(8Vq3pQF*e7FZH0eUx!cuaM8M=K5yomw7y)OFlp@GiA_}I$CB#k7Sy3<< zttgl+X9xR(WjqX~qu^7K=j43oMz{0P)}knwY>0w+arqX2FHZvI7V8-!3TBpxf?aJW zWTIe_bQH{#JDdulV9Bb_V?l<(?vn6tMZvlV!ax+P$*d+21(Q5R6ugZ^EaysP8@CR| zb#l5ia=ddC%+@dp9^!Qm++B%+E4XC&Q7|)uQLwN#3dTkZV-c2!g6;Ow5Qu_x9U{L0&D{4W7&{`PVBPdZd2D-b(-8$@Q?{dE^1ee9 zEXCzmN-zqRa*d6~j)G5P?SU=M?{VgNQ7{ok!KaIWWu}5C*tXO@8i!HvJ6Jc%y@VzTmz^R zYpQW_IGHTx5$HbNy1fTx>0SxDbni#7m|z~jEQZ6QC<|T3Z9Ec_hcS3&83>1WfdyOt zZeDUkT;}84aJV8~k?er&g~tttS&lA08292x){A>}nK&&i&%6hLPeI&!HfwZpyjXFs zP;-j-HR8t+Ro`Sg7;>!4OuTAyu>Dp93mbIyV+-p-y z^4dBT#J#rcM_^BV>)N8~{wOekxu=_>wR41aOe_RD=A?z?&MS+}STQFht(cS9G_K!K ze$2TCc}~uUZY((;W5|s;S&!U#B^zQ+UR=Hf9BU+C0JEN8%t=YP^U5p}bGq74$i$o^ z>6nu#cNi4JoRU?a&y&NOcVoqzk77OO{ujZk1TO<{j_EtEx(LD~=C60>Rg+mwAm$`_ zjF=PmM!cBQH*TH8oVqk}*fD2iyi(tJt%_IaJFn|-=as976RXOf&+DEnV7$snV(CN# zQuE~3ur@k5<|V3}c+}i@jcV=&5k_IF&=M7|@@~Aomt}c&DjjlON84Nx0{Ez779o34 zVF03+1+mp?)_{<+bgOm9X|>u4IjiH<`o?Qbyhh)6U56X5y45xL3;kBtI7zJH((3!M zEIK*nC2E{_t-0@7tGP|9YxI5B8gt)uoD&TuVZeE=2v}A!o6qu^VngktZPp>+)WcvbW88zXop;s7M7);&ND^<71-0?Qc$3#)yh)jM!y$J?!+}e zyBhn=ReZ<6x-qO3%_g8B@^If(D-Xb+W3B49?Oz2n0*gqobmm*3e)$aFGb&v zcBSvfH4Aq+aEaz+eTB`?yCepwdru}Yzg#6;J)E*~5lnZwwR;MaZ;H$3>U)Xk z`vHNM0@6(|T2tqv!5^c}KQKCzA39SY63$b?Q~ihUUUk?dtm<8zpnF&=4>h$CuJW#} z6YL+wuPgMi6-t^mq%Z4H~mvX2?P$qT*7>?!;sDtsOc8L%~)JBtrZ&q`y966I zvGiE{#O(H2_Gs4anjGLKX6f9bdD;Rz#8_sDKE(RVK5q~36B~mcW+#6~fS(xq6N?PG z(8*#^i6&1e>QBxM$YMdW+DpvR-?S0yhQ&k7;+d$+!DO{~h*>R`S%a-6SH(M?OhSzA@=rVVwbRVAT|a+mKWLq zn~}v&tcc&8S5kB5<) zA=~|lGDiOdR}oweFbivQ?n;zp4kPhk8{Z7WY;`@8+=q*D6JbC1s-oQK1-WTBl6>)l zL5eBA5z2M07qo5-|;Ke#J6>5$$>08mj;A=26g&diV z$z`1vl7|t9RNx<(im0aQHWrAu68=G{C1E`vWK;daPn+r=l-ksiyxO*fn&=0BK1Ms` z2m^y#*}h zg_--B1Mms~pWo&j)`y+C2*TuLP~UycM3Y%f;INbA(ubWnKZ}odIyspM$I!O>pqpKr_eHz*pZ_}rt?eTX1JrpiuPOLruSzh;i2r%C6@I_WWkJ0kv z4=cGoF*DKb#5>G!XoqHR$Wt1nVI9VCXuEeDdOZuP&ttd1u@HEod2B4SJ})-;29kxE zVT|PDNJv8qK3F8{!3wq+!4+30S-rL?DG|p&kMgCzezd8Q!`qELND3 z7{5_n2%AeSGYrlQGuKax#ZXbYyiSLaxcq|(|3t4ES8-;iv2;fhoqW)L)@(cvj27W3 z|9Dvv-5E`kBY{qeCc=F1K5W&Xz`Kn(9Od7|^U*EtTAPSu8Mm_E@oQqjyKC@=}mXc}c9 zzdnB>#QZr@`k)&Es{57@zyoG-1hxwveCoxVwRz80l^)P>)EgMkYd|p1R!xad(FfgK z@h<-jBR!zI^0!b^J)pasWW76}|HYG}95WMLPJF64>7J_D&4BLGC*57Cw*jQr;)*er9@i6!%&C#nsSbdn9OL0%}QLCC8Q!0}YR zJ^-Jg55Q-*2jEg%j-@1$PJE_00H3MLHI_^21Mp?(M1r$UxfEnD)XAL@Lh%3>Yk8$XqJ;|D`h-uUq! z3n}@=4+Z6opA$K5^&3A}93#|2H`IEKrQ~}*rUdW3p9tRj!9pGN+eSu~`t{%jGsoXx=C~V-^pZa#-TN%1mqYS-cSwjNTJidbw}tT@3FoI<4eyc2 zeBB|M;lY^zE0;o>mAHMAWCCxJ$Rw7v4bNI(+IX*zSQ)KJxG`w@OtpFs1`V2oBY1_0 zqt3v!4Ojjn{el|YBf<5@xZ3o$z_$dy#fatL^T|K*{|alw`Bh5wSag%EE(MLhRuGQR z&(qM!DobKHb?>R5;k)3M1Gr73EqHtd1`K11wnezsyUH zh+EWYZgd%mM|5;ao?vvz+TF-eN0+S8r93UM~~d10_=(DT*b(0y^9$UaVMB zs5#1%h$Y!(i6zJ6vcfU)Fldqr{8&;%HC5ZQK*W{sV@XTGiY0BTA0OIOKbEwqC3&43 zEm^3EjwSCzj*}w{#F8Y~u_SFHu_P=_r>hoVC zhc~fGy@&sMOswvf5I{WuCy@>zwIpFOgVwnrq$acUKnO|l7$Kyer9()W0LRdzCWO3$ zb(j#+H+mg7oSd$X9CirF=iLr~QVBj;vl59pe4vKQhZC#J-^=TsTLI&hPO^!OYOH>8 zBbEp!$Gk+P<32Kj$8UtYL4;A*Dio&Tm0kpS7t8YOhd6`lEPq^&W<|TN!KM3BW4OS2 zLAPAbZ??e;FG@Eyj%ovqT?2v%FQW0N4lnpX&3fI~CezsJ{5PqfZfv!aY&MPUfr?I! zd5LN#ZXT71)o5XCE>D3Uyi~BE4-AJVOj6%xOroxn4|Zvy;#BVu;lIdZ@zPl<33Il5|YCdeDav%ep>H zfKxia;w0|7FwM2}U}O@BRjZ5xqo4Bd>6O0!vQf{4kC!WTB}UvFOp2M95d6nE@*YgN zH}E^wqDv;gd7$yvjI{AbIAa6;NDuO+8h?Zf1N{+hvGhl{9nc@)Y9js!N1E$~$lQk; zLZ#t`5Y=u-D@F<25E6VhMBaDZuUe^T^h59@QSLtE!*^}k$20Xu;mvjP;~}Lyk_S+h z@kp9u&4nJxgGIST9?5sXf&uhBUUEd(`7FxwNLu18+9M%P&?8~(uK%Gu64vNao)(Yf zJ08W!=~})GN@hy2NAfV}*l&2TJQAViC{w~Cp`zlEjLBtf>g3_pD;4-2iHK^dlVght zL|h5qBe5hbkHn_>UWQHeJrbK*lGn-6l7*URkL3HvadLzKkAwuM?yx+ zBVjhp;+xp_NFG6+lk=hLY0Sqe=XxZpM?4a;!6V_t^u%rYK{ zs||&WM?#YJNSJcFqrfAPtor<;VJ+`&C1?Pcg+)cXCb|g1!0V%$%xVIz z3CUx)CVrN7O=Kq6uE|5JV>wI&>-g5!u8FRW9JXuH8gJFE$%Oa>|8$!RiW8fV{|T>q z?gxxdkjGSbx?TU|HxcbPIc6p%IPr<*bbF#^Z^%;`rLCeK@d=)9@&gv;S@LbpK!aad zvX>Cm-45pYUJ5borTma877n;lH2r0 zv1K|r@@h8)pW@JN$`tLUOmR;;rMMhRNpw1K90gbND@$FvTw|k7?WS}F+?1(KY-;{7 z)*je2{2phX=cW*$oAM(Ou*_sOo8?=uz2R`vw$wfvhliVbAdG2^Z=!JLT{SWxhvAP? zTkTYd;`R9-i~gkR!%Z$=a=0lZOzo(!pf+;yaFf^I;U))0pM&Pg;U>-{SayYbv`K#d zXtTsumMDHcr1iOGZAFzn)U345G;zj(53dwgJLd>mq(Lcw>TXe4~Erc#$sRe?_|eUfX9EAF3Y zMq^QkM~fAJxH;sjuE1B8Zm`Au1I?OP4a93oir47cYb)@fr5kN=|2%VCY#hYLl@uSR z#m86RTT2(&;{I_aLIH@^6^rkJ-&d!PGpEaO=Casy>o_xp4=w5A%s3LCM&Y`yM1?-h zjN=PSpOGpdwhamK&hEu&X1(jGC1TU*qSMfoVCp6J6S{-^8Ry0Ur585xd2s-dL<3GU zy&4z^a6-D(FcOdnxX=Z>`Rym^)S&93hKx?9rvA}&G>a{D@7&y(eG8(*Sz<&>r zLuVsew-MJiwi5q1pU{))Ev)%p1RcA%{3AVu=|57T)GsW$$;MaCFqH9w=kCS{+&+uq zgy|+u_%<>bC(un~obaGr!};&X74HFZ1#{yB*@zJ*+$XdgQ5`2thJuI_NGOOCep{tf zQsRUvC-*bt<0eAQKE?@WL3Yd+0e^|IOq_uG4ux^TuZnVu;)Gv=1uOV(c*zmr;A2r< zoWSt91H(ahf^hyhYzY=|Csarq>AAOTAV>j_2=l$7X!StfdLwV{xS9!S#B15<7%6+{n`RiA&B z9NxV9x1tAK1Ysb0&}3EoN9Xagif#+Ta zKp?>v$yOpE-)QAB!vnBC^1A2efN{JzhLx4kL)DX8#EoVq-w4A=7J4Ow_s)d9Ax~+P zwu*Yh@k$tTu}=J!g?X0T=jg#+Sm;aYg@CQ`qKDGWj-!4jXEl2b2qt=n$KyJBNW>F< z^q`xa$iF~Mb+Z%lC2QU66S12(Ic6pjPQ2bk5A~YeG&`ZAhlGh98k|^zX?W>&&?tWN zKukvuzoQB{LN|KA*mk1_yS;25q6ckUkuQuM8sm*RdT5F_1)_&$C)S+*FILnnedffP z@_!<#o8IJb?bc22Eo0NktD^__6*_uo*3m<=8$C#IIhK-Wa^fu}dT7z*8XGm~=%FbP zJ+wNp*8Fp`8BQ7c}b|AXjHx{e;WfJyWqB#9o#g4%dt^uTM-q2$1L6|FT)nLDw> zi}zk#F}tSVv!^V-QB}z2NAX<&ny-?MXT+2CK7LwTHM^$Z%crdAGS!$0 z6Inu4<`K8%(w}Q(<%k;spKHBZ>aNN>>xq{9T&occe6ICc5tVlP!@zZEOV2j)c`hxH zL=-MJK{dKKt%!Ih)7%cC(Xv5%~#xE_EOM)*8rme-*Q=`woIz2|f#eHk&UtzJdZV z|Nq8IjtKh@52gEmdw>T-Sihpeuee!6>Z7M9~eS2S6K0;INp{bI%tEj(%XnmsJ6m+9iBgG19 z6n{~gaTFeNHJ|J!qvbEUt@SPE`-`uE)yetL^#kWaCD&hM%fw$K8~jCHTt4_7(L4!g zIqM1fiae(pFIq9?BYj@pTsJS#qEK zMSC%z_n>DoTjTkQrJJq&MXT9sppfwwc>=qR&E^U0dL-nV{<_(n`7*!RICAZBo4s3h zRc7)eb&By9r)YN5>`v`3;v}__-@fm1aMG$9Ub-F3^Zi9)+FyJ_j78}Bix}Ikzi79Y z?SsFl>k#=3XpVi_JT*R5`-{`!(*pkDbSE}F@35`S(r0`+xZH30G>6NB?(z4A+2iEZ z{^E3;K^=*DaM`3UN8y46T#C!F6dbU|&EvCpW>?BJHkzjW#c2V5Q6BXDm$bUHrI_dW zi$v%zz9|BhnasAaJdE8I{-SNEeKZdJMLiJ4w8k(B#~=847mZBJbYe5}Z&BOq!I+L( z@%lXe`WfZ~>Dpi90w(^VkTA8Q!h+h!Nq>>opufn0(EvxnF!`S@Ea5Mb_tV&T@%V}L z0smP%v+TzDr((0@*s?~ST-Q1|8aRy!5~)hx32juRe{#(S?Qk4gLYs?Ofqp1g&Y|~% zJkO!|io@HSL$mSjGr9T{8bcX^5$gcEkDRM;i~ ztHOEmMMly;r;f+s=$LrXFqyN9zM?*-o^8&lXItmg35A2`n@}7+>YuRAsT->FIdwgr z+5L>v7Mq>kMn0;;bLwW-T}#Af)7vJ!5=_11h6l=l^bl9}bp%<^RPShqfv z-xzB|vl@$=)q=-`wLzNnh{azH!0ImjuL(|$YlIt2lwM#s)V*MWNTLP7gr_Bg2`(Y7 zsthJ%N%4Y-0IRIa#u8*DZU+;s3?^iqk^ME+n*1tlWr7JSqb2z@F*#g*?|I+vAuiYm zydJ}}4Ojl-to|uB<`E-Yyaulgo-k$iqlPDj4woYM2&fd)(nY+2zvB9IFUFn2{oM1cUd0++e1T z$sA!Im?5Dsv|unpNjI1wPl;egSadK$YmX7k2$vnqkWg5o1T$g@E0`gp70fW3reKF@ zsSsG!8*S6 zbugo=BgZ=jGi)w{89btlU?u{{U}id30Y8{wW-yo$cKmfz;ZLrj9#$}uU}2sm_c@rc zR~QB}dNE*YykMquvvn|IHG2&ddfQ+|H@h=Gftu=OBbZ6L&DOyTGlRj5u$yL=3TAY} zOSgl0elSB!2Qzps9L6Fn5zN@_W&04!=sHCH-32qPtf*P~jKR!AqPpn_W@fle*TD>V z-yxWh;&Ln{7|cky#ztcYGkD|-tuAdT=6S&k5e74jB4C-RAegZ&wU5SOFrx>;nAXt2 z%)4o%4rZFDtqx{H@%ntT=udh0n0IWh)wSiy|@?&2iGB#dPSaJ6HZ8Hh_5%UoYTztY4qYvJ3& zkC%U7Q-{F0XDl;h(M`7cIB5J?u?+oyKrGV(=Gi8ep}WCYh7K`f89JJbW$2^Gy%a9R zZcrm01%etj6G0789n{Q(f(U9zu!0)iOQ}SgY8lhup4}v5zl(2yUysnQo3CMYuOir= zU?~7hfe)>rEOaUN4Suu}pWg{p`XAU~Zu)w7uR)drd=~u%;}q~=JL=*kN5n0!_;cap zabqG@rB!faqNgQF>Hv>>8%CFj$Fj>ap8Hs*^^m_!l2*S)yIE(IuQ|`X!sPkA?AR;1pjEKn3(h-qN94jKq`3%27Z5e3h z{Wa%K6zc{{e(&gDNozt5J6J0HO>wS9{HFLKUiVA}(P}uZyhBivvsdsEz}z9$n+dfu+Bfu6wj5zl56V9>w?4vC~P9?#0&Ou?~Gk^+v?B?p`>E6*5Ng;)? z;M;#ReKBimmNCgk-HkMTa;!vg%N9%#Wr^X*m`W{AjuqYwR@kN7LuA z@-aG{d0r?;grVSk5wJ{UwqW<8>9)1@(Kh^Ox*iK-8Dj)J;k>Ih>W`)`ptAa->7sXi zexayOx{d@nQ{}dnkR%c$3u@zqkszeb-H)cT4(p@ozNuV~xb&zbpXU)1 zDg4|y?MQ!^71JLUySn~x;B)63pEf6P+Z~qAor|qyz!iM%+|TenckVtX^bpq9doUyS z!pVd8DE}}*)w!U}!1?{>ExO58{|Op@mT${tyXafz81iyX&)tE(E!R`}w%ldt+j2<3 zr9BJlNnX}{xU^IiE-g{*($2-aflEt*|E+WV_g*K$p+&a-rsOg(yo+y2eyIkFBmO2b z-h?N>-80qwJ^*oQm!mA>vGOA?aB2_0GHkwfo!h@C_oRZ{^o@GI;1n_ieAs8vF7HZ| zf@yakFF7JEv-jw`_en_dxGpahadK49b$MC2BTBiHr^N|g;ql-Tqewfs{Qxt6277@M zyo$L_ju*=b7OKdUaDv$?ae~L>viw-`(1()>20S-ZL^W0Grt2wif-NrVZ|2z4n@W`^ z-kE;p$>x1{-+67F3Y=iOL`)k=R~~?_0V{weM?nspb3fIWFAtk0$snMLe&fAL!CuIwik}n(8i{ z;v_NQc5NDA4&>2oMRWBM?*lMi!kWP+bgJRFHRdHolIlKe#C zk*uv*1|=WzI*O=n|8ysbg~YU9!a4G4?>8As>ZiJr`l+s@`xbx{mt!gTBlqzc<}H93 zx?E$Z>H4Xz>4B%Z;PoPk>m#HrGBHhc`m> zXc*HPC*fexc~^~0$Oj=eQrqljG3T`6_4&g^f6}%4%e7hDUm=P6OBU3|3*BE{gYGX! z$G!CZbf*8~8YexH%t?MaUL%|_H| zw2ktkjeCtG4v9^jV}7&|lGVDMHI=yealVoKmM4if1aMoVwx}D}PWNMtm3Vph5+nJT zCpqS48X-A8`AyE!x=Oqt{6Qo6tS33<2O1$6(~|K@JhJs6Bl)r?Ip(JsA?bdau@YZq zywpfOjmNchuZ;OoMo2bj3pG~aF{}3)$*O8s5+AgIg_=rQs7XsUSK>{g3q?}Ku0NIC z=u9STA8Zo*lU5uS@UU`pl$~4wQwr=!ELO8vwJh4D7hl%q#dt)DKiJ5U8N0DQMtM@x z4wMgd3qIJ$mDpw_ZijjD!A4nBWNF0*8^6VJ%p+V@Mr-musla<5Jiu35BlqK&+*$5W-JQnX^z+sU%kFF5oJVqys^XNk` z&ZB|l9tKxY1bp9ycwW361bkE)0UuEv@GXRb2>3`yJ_t^EFw6aOOQ zG>2!i8N5zzi@>b{kEZlj(R23SxjG5DVke4apJoRB&K2eGx0fi0zZpfz2;R1)toNsw zo&jt2J5VF=r?z5*fm*Q3a*|Mpd& zJ;y);CwHvC;{f>pT*2SIf|X*~XH7fEk9JT1?VyCG|8M^-{q^6z^7Pk#`wFHDYF|?K z<59blJ3-)k0F(E)Vq%x0VHa30mi?X4o&3<90??fjp6<{6_vsFEmDU}d=#QflQM;2n zN#MzVNt~`1*nJ6gf8OX$e&|jC=uQbw_uo_Z?-h<4NY6?lBAJzb*o>R+2gZ%IyXfTq z%`up(PY*wBCrpT3s!-xQEx2!Uq)y0LuU%W)|Bv6 zf8pJ$4xO~EUER&!cS8pSl`r`FZhF1xN9|571<19m$kurHJeK{F(VM)`o6MfVFH+(2 z3T+*utr2m&i@)y%?StxiwnlX7kBw7B-|Yf-0CHU|u=W1b`OijY@deJ+=g(aOJMcfJF5+U%+WYZim1wX+J5>d)=nsXqC>(bx?jNv| z?1!sx9l;NxY7TysCl7J76aS*7MG^H{*-K?nyp0epkEo7vrjtmIQ~l*z0e1_$5HO;y zM{Zo*0XRa_;8sI&1=$o4gozO#{1pB7lwbZk|lTGiB6(Wp{@adl18rA<-wwWe_SWYyH{ zG)L6@W~bo+bx1R7+=cWbl8&monpyH6n_1>-&Bs=Cs%Q&aJ-LOH6Oe9HpKf8ve`tBU zrBPM3KHk!)7PPLaXq6f}jjc#&RG(>W1D!fFs;7~TsOkwXm4P2{vN~~s(>z%X14h(Y z6Ijb91wK0A?g>%#)Pyj4Aw2Q%mT79;#O{f(A*3Se?1^mkl@rL@AQZA@R(#-93Q z8!2Cs^uvJD)N_)413Xdn{&rg6m3G!x(|K&wWHqJprKZVh0boQO(z&9uQJv69ZAUuU zx{ClOt6MwCukG;o)R*A5=}|`*Qa1uyqcGS73*qm1UI8ouY@9kbRHyC)R*Ny&DV)y= zCo#^JS54kj;j9Ufvl@2;SmsP%3fO#lQ2ztOYZ6gjVM;9k)}b2k)IV!q39J@> z*;Hd&fK5`9)$x)yB3QdRS+Hw>tx_GTSFk%ot`qZ{r92F51-^%KhScyIU>)#?cS+t~ zg>$aK%F9^aJjFMl>eN)hma8iTTO`>2>LY@!5$piS-a>@dMDQ;!LD6|n2o7u7EW``J`t;n1%HtDR14Qs_y+u1OMG7W$1~TC>ferv=lR9TR$1 zFs<3~q2CF1=uB#TV(59n_6XJ!`h#E}6RbD%UxIy4u>R1W1pAv{r-uFv>%KSA2Y5;3 zRKO2MP6NClG6eXbz~?0QHGvfs7z-+1F$(yHikARisr&|ppN8>@pCi4filv=h^#anL ztEzKC>VBd8MBsl3Bu^w#7adZ^>}`&AImhg67uY2*DR8#HMFQ6WhVaEHmi&?EVMu=~ zdMu!-P6HlWeIDSh>dyjxp_;i*R(~0=rH1^+3A|XKQ%lM#m5(5I3DUj}zkv?BYJUUz zUg6PDOWiG$R|PH~#}dvIs5QAt(sv5{{kUgQ!uauoy1iG9C;ztuHrFwos{03WZ?CH^ z3#pgt+5k_EQCr$GqCVO<1o(}{Q?aUlzcCHCIsO|bqPE4eNRP(P0{m&?XF++c5&Emw z1V)>3ptlQL*hKo4rt?7A-E=YF%}tj9KGbw2;A2hK06rl+lbb(Xj@p}V0o>XAMZhbY z?*P29`Rm{rOOuP@EZ^4WFB7Rx*(B1N1a?lMKKlvWD3te1qCP{DsL%T*QJ$Ka}*d?Vm>ajrP+}!u$@xgF4uv<2%@*(>mCq zY)2aOy&aUjx`QpcrNeL0-5qSv!yUF&OY3QC_;4p}`$Q+p{ENWXJ89ea6jC~-P{YMj zsL3HysL2Uas7e2nboD#;={wi{@AfS1urEF9_Sb&nOZAs+htE!-9qy4<|4`sBrqB+5 zk@Q<)hjxpe3tNha4I#qajLJ$ z9aE{v{ZmV8qQ`KtKL40XeWKG??__~9rcsks0=Ed|lxfswbQ<+}|1|3J@oCiOGt;Qg zmxbs1)2Ppr(|mpYG>!WFYnrW(UI93#9*lR#gO-^!otmtiPE9roJZU;L8IkmP)2YMN zlD>61=g~K(a|Zoh;9JwFTOvu_rY5P|yd+nK1ClIlYm&NcPx`u@m85PLC2ie)27UB= ze@15dOYx@*G`urO4ZkO4J|Xb=BsF|f(zP?FVfzf$xO4_JJY)tnObfhl1~vTH3~G4m z3~Kn*8NWmM4+{UUz#mdC&hRySa|SgWHp&j7B;on2G zpDORbZm9n~RC{OnR15nx{)nxg_hR`x3u_23val85dGdCxF0&VTj#uV|;SMFvKPV5? zUKj4Ru>U|_xyShc@_g*4;R6s$>wgc`J`-L8Y*Rb&=c=f6SnV(vwGOMj2BX$tb*;gu zby(eQFlrsfI>q<4zVAQ%&B?Wt^ zidt8xRR*KhRq8mwE^Kb8*bVGn56c5P5nilP%)1C4AbH}t=U!jD!wiTJ4=-mg;Up}rUJ z-G4rC!WR9t;_vt}|HU}D0~TT_)6|F7XpE)IP?v7h7)zO>x^O#HsjF34r3%egdkuDO zMRjPA`nka-Rz1#s84knY<$&2z~*X9daPfq@UU*gWFwYbN?mHnrPS3P=WcbX`m~2V9y(RM zYB-+>KM~rY>Ne@xXH-26tW{%D-+)S*yaTE_)PP!LutTf5fo(L{`>I|Eou>K?c3IWG zfDLI(N;zF!Z1Qfas&`ITHyG^Bsup0Mw>SsYodN7V!}%T5KB#_fut!n*p!%)Beu2E5 z>J5WEgS?%pQo7>8%D*CSNVOa6pU4|hGc_ifrB%1dWBbx-lfl@&v^v4!99BC_-bv98 zHLUg;?2KqPuuCk?Gt{*v@5bm6&Kc@z<#YU(JZT8 zFnJTIvrbl(Z`OUZU-d3v<1{9mBWj|_JGuG;&WKuUupQM`0b6Ntj;iBK-bK})cShB) z!9H63MPPdjc31Tg&Y9{egMF`hGq4*B_UG!aIcKT63|3xqFR%vWbfBkye0Ww6g8?`$OU>c zbJTAw&U4fo7Uwyta;t71TeMfT8;mX5t7aSQQPgm*T4%6lP{X-ulfi1nb*T5L9R`~+ zt{d2h!8RiAJawtTdXaaYy4GOtMc(=9c7weidFQKp4aPBef%>VzI0i3JPZ{ib$X%#j zHP|hXyHJ(OvUOqQ{m8pWO*Gh#kav;d;}Kk?ULNr2!glgD{`iMq;QoVS;#PgtBEP`8@APmb?UA5ae(>`UXjf&Iu}k0b9= z^?QRohrCPGOB$2rT^3uryFu0vg>nvc^Mh)>$=g%+y7NJGh{3L| zQ)M4in=Q`E)iw`PWtXdK4d;V(gs{r<8kiBsp9uMtiJ3D{GlAJOMPrg z*_Eo|S7-EzYadNrLG;^(r+inBG%AqMk~z zzUM;R)jpzzhcw1r?PKcNvo*$D?GtL#1sdb7_9^uvs7g8RYB#IvKA|!0YPYCew`h#J z+HGpv*EGgm?RHgj7qP3=HL*oyUs1aZc4FnKvb)t!4R&+vsIqUW?z=VTaOH_*-&P+o z*loyrNWEgPJ;?jM+IWxVyd!pc*$>t22D_m0%(5S=@~`W>@5e4E`%ksaU^i7>UiJ%h zm%$#3U0?Qunuwc|)a}zGeRgW6%p~?r!o>yJp(42pZ{iN)V>SBXE zS@~4ii)xj4EKi5_Httq0sa=c6`E=<0jXmWrsTT~!yqDEp@n3Y_%jyk-G4B<%N4y!G z_lkN^FzuiHO}(lyb!yw|Rew{T6n8`C{at-dV`@_S>s5bOCyM`~^ZudwHKtB(zd8C3 zb+L>Bt>>%iM=}a@eXpvmr)sUK%WG`==_;`EswTRWe?5 z-s|dKgHi4cb)SqLo%e=Xe5Eh%zOt)QyeyTAwd1hC=3Vlq*na&G^KCLme2zjBTR`s$)`H(bgr^YU%myr1-BLm!J)~BZq-*~0n7LZ& zFp=F1=-@Phb&Xn-i-baYxuIW$bddA^yo4L1OzKc3I)v2QQ>ayW3C?0VwGEbOQ)pX9 zeL;Bc^vVpImfE?t1>PziO%IhQCVqQGquK zyhY$00`C@hzrcqDJ}&SV0-qN62f)9Uy#|OAx{#bX39JDH5uo~PL!!JT^sR=L^5fMb z4ejL}$n91e)Snurm(K`A8|Rg8kaEbsw!8)>Oox`Yi0lF>XSMiVtHtNKG4$Q$2g+{@ z{jcWlmfsTkOLK>sD4Y{jq~#}|H@Ez@{Ql6?mY2$pQnOn+P|JZWua%&inA}xo72ULCQZZ#vcwDqWP$T_0*r0}_+lUn=3?+@*0{k$_+ zeK~k;41Kiq!f=&ySL+AEi`5aWp9!x}C$-)kUZ=>pPF>#m%kYh%Z@2y?+#C9F>+^tr zYW-8V#d)pucc2uL~OM?blZeWkbB#NDd;6J7_rZDP1`w)*nKMCIe5Ic*EW zi27l-JtDhDWcP^F9^v03{CkA|3Mn(>e7J2~^nBQ)BRZgNZkryx#ra0t?C3|GC)*ZA z?{@yyc1-kASntf}Rbrp(g!9uvxm74LWXvp3d)m7(Td3!L0>2{gUX%Najt=#B=(&!C z;Ri*-$EEhiofkXKuihQ{N5=_~1*)v`(&|Um1ru(n{;AmZ2{obfm*FSW$<+&C&%ZQ( zyZW!rQJp`iehsoesXjimqw`mQy0718d8WFm?3f9^uMU-6*ZJq_8H(p(GZZ7~8H#6J zzm<|>WsJ0AWhYm+)Vv^b;X$$0gJP=(#a0iBtsWFxJt($%MRa~eIA0OYSA_Ew;e16n zUlGoZGR~Segufi)ygdAdNWCFaZ-~?zBK3wyyD{4aQ@tP2OydJZxBRUbY=FDgpX38(avxTx)C@X}rPAD6NvQ;Q23Z-8tgF>lP z$El=KsZLaL0Jo`yfc5uW6li|2ek-Y{1s)b9Y-s`r7?ryd5}Uu6LgQ#Sx^0q3(K)mKj0^U8lx zHpjV1-~$4mDt{LAr^>TsS5-VK6cr{#g|lUwE6c*AeE)6R0LguE4zl?-QsdlKzjf*UJ>1Rjeu>SAHO#M?9hYH<5{zk5x{pdaf!Qy*PSJ z^p5BsqpwF*b-22*dO~$ubyxL_>gCl3RvubC2Ua$$xvlUCCg3@>iCEVrVZ=_x zQ)+GM0Qe9q!F?dOS0PY;A$&04Kf;Frz7^*2dv$~dZ*v768DVa(z@fZLYJTP8u9|NHK2*cpAJ;qt_-qZ!S>O=)k2oQGt8Mzl3rw5va9&UFa2cEMcp_HDwXpto*Cf3Rqq?7w`iy>PBnmes*vT z<5z||f)2dXD)fF>UJ!6+cCM9+sntwlPD5fB1(Jkm9|lZU7ehpcB5K?^x*=J#MAf=zHm&q z2{nY&QGgEC(*2R%3drvqAAt0+fDWE;JP_#<03G!n)EUB>zZ&V2QD+Em;H*Wu7d3~} zDS!@kfrF7w3EYnQ9o#!3+#yd~4hTFQx;W}IfrIKu@b3h4aBt}-q|<;7o{+>-n0T&m z3({G2G}0pi&xBr%8Wp%pp1*{jgxo#Q&cXgdn8(x7cm@y9QRhHMJb?!2;7$Rb$$X!{ z^Rb^e*gN?A*oDy7Q5Oij2+yO2@B|~_CAdfDz?Ucd0CuVn&c;ti`ZDMnQXd3#@C0KT z=?@9~Ftm2?j3(hnpmhi*q*1paJq-Uy63;Yx) zv((K3KL^Te^?9Uct6Pztqiz@YMNsCd{}A{UQ0A$xB0W#th4g%NufTgiS)jft@IFuy z7^RPt|Ev78@b%%_!w-aC4~HU^k@1n;k@rRZT3H`WNB2g*9{ol1>FBuXh1J>WtE+FT zzNfmbrmg0n@u|8G)%`KPtbTL-@%1;>-&_Ac{h#V98^$-hr(t))xeeue8SUBs_~DCk zi-4#4Fpq;=Q56;zOl|L9RPig|g|aV+tX2ocHcOmlkmexPH9+r6!`RLpY)4 zugbM9c6lK+dm{M|5us=B%n*LlvAQJjn}OdOfR)IzM zEyiyNeoOINhF>>+`{6fFEiXSu<-_NwNAa5$`GNXjhthq0nj3x75S9{vjpwQ@jDa0^Xo=K=f?&@*W-6HeqV`= zhT7uKs}=aI$8Ssguj<}-F7z^fZ{QbATokIRe@m^y3G(5%ei7HN;rdTp%NpKN0}Y`N zdmaB)9G>nU9ZaoMhY$2+(%JN>BXd`uJ(@|)J-m0QcYA7QYG`Ecn%=(CM~AnhGG`9- zrLtB=|KOn7pmUGu9UUAgW?4HpfD-n-aJ4U`?E}yHT_dTX>_B=bt2V4n4~_H=45czh z4yQ7`BSPFqnq7>v&?-XAWT~?6jhqXcrv|gCu!OalRPRXY$js5h{kU%G&Gha}jifTg zj0dMiHm9<~XkDtPkc|V`u`@Si(y+nEKq_kty{0#tI`Wj$Qhg&9!7E$0E>Pmy(dBn?EhFg+1`&*X>cDodRF-#mZzfyZ2V=8% zIRQbdIRScUZc%x2?^$bUfl~+iVB>YYBfSdTqOC<=J=DK??Ur>Zj2raRmeWVAnoOg- zOx;EnZZYXD)RV$zFqTq6M{oBZJv^B1?PtYrn`OG%8+=~-3ddvtZVlg^*}imUaNrcR zWp{QYwNq_aH-J*Jy{8PO)FHcjPoKLsy>n-JNSP_D=k2xy$_$PThVH45MPA{OVTvdq zd-mm66OH;){Q;sL!(P!|>(&pA?o``TBR#8!2adte!pv1iX9k4C!kFGNdP=r0Gce3) zy>>7?+E24$$rGZ*=5ij8mlfaIlbE%)7TC>|_ zmA=#&dbKsOzV-ao)hzd#yJy(n1!)dz+2+i*P%FtCJ&k&XQoBYr4h)?xQ|ky9A%lmQ zj$fM|9K_a2k7Mq^DR>|QeQE>SgR!Bu$;H*q|lk`e5cu)59QK=7mk?`@#U(Z0l z&^Po88JC_RE*@-{3~kYil%5f8*`(7#!Yv7i2%{ip_70AwdV17`A*4|Bk!!Z7E%>e5 zbU0{-V>4IU|LgbX@|H6OH}&>zQD%sloeagYEr{W9OoCVMj5*F_I#?PHEWF*E_U1wb{&9 zZK(i-0$4399)FE;P3x{%#x7ou06%zi03*R$)wYcE?i?-@bBR)wTb4^Kkaf3RuMXiO zwOE?eo<7@8l!0IqM93!eoN6s+Vh($KlS%@FplLj<&_plowj@ZPa)FZkhROsGRb69v z6U8e-C_SS?18{j|){y^bA7#TVG$?0f9Nycv10f0Q-E_~$j?tZ`4C4aq6}M{?V18s_S6Dd<=2*5)p0-e|P8 zHBrUJZDx%35#5OvhbD^g{4hilEiPrHb*5XeM5=|V_(ZE{Kj%hgmo;W1likMtl1O{_oTdciV3CkcVg;EyC)82?e!xLy_MOxoesKA zN_$O=tjCP5#ak0l;326Z=Li%x>NI|lI#V{OjA;)?vT_mMWw!lt*ID1;JH&n3tLzIb zo_ZTF+rN84fW5E43l6OQUI{RoXTU6UgkLVI4f`h}Bk5r^D#s<_C|Tp!4XCXJR)nP( z*tbONJ($Ls0E5h7-$Bfl9H1pep>g>TT8?1BnQP)zgail%G8j?^@igbGbmsKcBlxt* zDWjOHu1M-s<0Y!q*=%a(DT9a}M+Q?qqf1_w@?zcMOjBcV#z6yvsWCILL*Z;@RG*6# z%Oa#7?j71)oPpWeKiW4^oUt}NygM_neMgC`tr?sU?d-Kp;I?cn`WB~-esP{{^w~^S z9g!Lx$@C7w0h7a;?8e@q?W6EVi$vB9^ll%*o;c8##l$&fbo+K5a`>==O-w!NK*r`ciT{g2~jg{)|y31N_t)Gz|s^yu~-ep^-)xxjY#y0X8gXFfuGxWcl9Y>@a%HW=6c zIXr!4im?vPokju~D^@P(!M?#QO{5r6AD$Z7k?vnJIxvWXMubo+R*v-aoT5=6i+kW0 z3}n@c?2h#4U_VA%Uuxx&o*pm`44rA__J)3v7OEAanL(x&$(qT+;L&Av`-iT~T&z~4 z`*B2w8HA{slqG6~Uiw6MsT>HHmFDnNHp}>E1=mDFqsTJDq{E5=E=?p`w>uJX*dP)# z$0!a-`%xqfq0?mDPxqeRu`5!$NbglEuxeu_5jjN=31u+HaT+evKFp)DMi7tkp#RV; z*17_GE+X4A)S>!tg2hP*>(YHJQ@m?gE>ivMkkx1P4vfeVqPvV(boh5GR*v@cboG)e zl|eJuUua6->GaY|l_Q;M$($N2V!?bRYyW)3&czg7-QPQmqKzZDeu%p0xRZklL9Ey7 zh+apQE>>I9`omIc-GId9y_wzH7OK_#{X7u0DC=P{9RJ8isHiM92B`!toVNsHds?6E z>m8O;WW!3|VQm_FfZD**OWbdOMrhTc>470BVD%~4^dJ_0H=x>>8rnXxL$cQHz@fMt zXzFS=r-ldVmviFlp)YLo0_c4hl6FMo1fFG@<;*>?n(OYlETmu?rml9jo8~M(Ys0As zvAkW{NW!-4c7??sH-fTOnKDQHUX_7CUqupL2XT?)`A@$R`q4w#-cwUY4*6tAV1eiP z+ZG&dnOcnjWOlJjPiM~{Ti3Zc)t4GL6QQ&fwp&w&I-2pXjjZPa&YycxfbKP2(AH7t zwr!DcZNL%v0xz}DOD$6Vq|-i{TA#__pm0N$OYM=F^*e{LxMCH-of$oeJm;BZszX<2 zGQGRK!2#z2g9EKLg9W(Oax{~{jOD#6_XG)iT)%e>4-WJVz&?80^7C<{%PK^l?(4DR zIhLM{IA#iL1U3j$&~SZ~9r%pn8)IIs7&6zL2qmoj^Vp9N~hM0^~DV{bksPDi;HEx@v0xHl{+ z-W(QS**Ckx0<8BX_Jsv_QM+JcSgSC<+`=fNl%D$c+&cDIl-D?MX zvsn~8mYcNl6naSde!)S#yydW4=D(XhXmqF#`_p#J*CTklfvfM9z8xvvvezqxJJpyY zD-zmSD^MynqhdejmFwrIS1!!gq-J;^w zEh^EvMMbS!
5pmmF^k!wxC#TdN>i|^us0lc_i059fpV(n3j&0^%)WHAg-(Bq5I z{=yz#3`3Y6UyR0==<&rcLcvzP7)G!L!D6((U=S>Z0SX7fVwfU02o}Q}dJrtp7BGWg z2^#O(!!pwn*uW*5wQ5O$8J55dwpo^7WCZY~40E`1aVaf02=r{X1V$;a-4Yn5&~{5; z8DqO8ut*8pErDeUY_|lKv23>lMk%n}5?H0sc1vNOpzW5zM%s2uwONeqmck;gku2LG zvh&Esc1sIvvlJu7w$)M$mjDi{6djd%Hd_i~6xeJjj8bT`rLc&x*-}`dgw2-1B9?)c zde#7MRzmb;GFSw)TDVLGjZjSkm%%V^d-UmTP|IMn68qLN7_G1;mT|2KIHb#9H{BD< zU@_R<^u#jQt3*#M!$@+;uA;D=ZR!8r-qpp%aaG|vzym+uckayW?2ntYPI+lJnc2C2=brPObI-lr`!n|fxRNkH zD+vR+il3+hP23B_$~2J%V&$4h120b#X#iD46KS9l(nLByBhW+|U{sDM(g37vNC9Bh z{#iLtLmG%xQ9~Mtm8&65b1P9p8lY)4qybk^4QYVo;~g@Ww06wlA8*nCE)4T_pjHwF zVkKd~RyrcmqgAi-^#*)YOJ4JmnF40O|8eJv@ihWt7b0-0?pA zTR{3Eu36+^Z7j{5TStUmFIK(JBMvhsc*-MX5qXyJ7Aodo-bqQv{0?>^oCIC)i*xv} zs03+8Kye>pjv`Fi@IxfNCxy!;gw_3{D9!lYh-J)<3aVIH3c5b+VdOc9dJl2=_m)2F zH8_S{40(hpT@IAyg+d;Zsg6F8A&hAeImxlH4`qnuag-x=rPw_4x#T7YHG_cc%T&#lO*<&P|LI6P;1&~pr(@u zW6wjwal~fv4BfRIL;Sp_vA_b`G)mO&l3+}2D%f1P4LkxA)uzM9HIKZsn=GUV=yX(; z*bjQN^Bne^pzPKU%Hi2CY>(2=vUts+F4_=z!|pYaN!uP{e9KYTiwyepv~_7!^*+8T zL7P4S3be*WXjmmr0GkC+O#;KLCkt_88!K9K5-B(({D}{5#YE#Jzjek^TQQ=3sELUj_a9iav4))UwYY>qxbYfEbvHg{LG*j{L^oX6_qeg(^+L3LD*-w!S{swzr;a?rfrc0#hYRr+mU{pE5F{Mw3b z;YMD&uf&HJJvO{*L#H5=qd&cYpDydS`+W)6PnGMZ*x!WYyPrL`Z(l_&h)z+LzI3Em z^f+qvqnG9G>uNPrZ4=3G8>n6`BvHc{>}?#ad>1@$(RY^ib4Hm}?1r@LbF)Ps-EpJ# zq_(h6(|u6blLTI4uxQP?RZmN6rVrz|!}mjFs6P2oO7%k9H{sg^$@2Q=r4RT0U5c_fV{8-*c!(z97k5>+J#biScRWkbyVirhh3+{ zi?kOoqRhjCO~J#>fGS2i;=9>L>K=__KDB{(>bP;#pxTz<1CJqP3fypPz>%YBV!usl zloy|?uS^_0b>-2Q&%T>({@U?xtJqJU%^ch`@aCyl|1Z-AFWj?du&&LnH|$1yCGdsu zjuml~-NoBBgkllLFytojt&DeSx{<4!xp3QtP>c_)yg6o_Ra0ko;o4@_#qiaN%K;^$ z-ia8NWpA^)qE3xG#a17D>g$Q$$M35}C3dpGsr540$sjYH3`6s1IW=u|zhRFhp0;-- z1~)hnKWH)RC%Y>W6q=2wypcRNlDWpXsz;Bg`a(S;}3p zTk+_Z@`BAyt+3DoxwZuqqBZy>ykLViK!=90!7BqZk#HkQxh{&) zNSZw!f(QZOWKGntB2feF6}N2&#rV+5n^OyU-BWl?QNn$(sg4-CFX9*g)9$jn;weM7 zz0E2Tr+0`NCbOV`-zr;FZPc_IP10)AY2T04wI$rMXs5vQHe9=)lR@g;{So-6v)v24 zU5wNv+*kSZGvpbIr7rCK`%ixO<98Tym1(b;b?x;e^;=YU5#{-0VehhuD;@>8Kbcm0 z6fK}dwHUGI{_*@De(}o5Z#5~nnRW}we?c2Te zK@d-wrqR4vHE%XzaT5s%_a(qFd#mDSnG$ zlmOBcH~mM@gxR)WV>JmE>V<_@$!DP{%I4p1SYo)qfRyD6ST?rVg#>)t1#p8ZY6Qp@ zv%#Zmd2|gDH(~ow71>4&xZ1qh+5oO;!GNGPi!~QE0SN@!@qQsx(81@J{{SHiU51@O zepGrDUvYfZ!u*Cv1880)*su&?zaOeFEf|~Dk=5927@I*A3fqiRIv^HBZWsL&w!7z} z+mS}Iu*X4(|1-F;CSLXgZmf@i#E|#EI{h3~zfJTEh3zpj4)ux#UlSC8nXdrdBGT7#h2;F#n@oAfO9bcwB<4%x@)Zh z?M+sE0Hh6Z@YEiQqBZe}zOAsEPT(=K-HU=(Yrid`RANw458R$I#B;FGG23RULLP#mMOSPU@Q!-IZq6@B=*f5$vD_cZD{GH=to&G|iE4~^~xbZ6aoD9q!b$Lk1sd;>hk4vTJv zs7N10Hw=FUMia1r zOUFH5V)ExgCVviY88w3$7IUvs*cVZW`*O6`YYLD8|GmmF2NV+6ze!&zLF!TnsY~-wI95F%(IXE# z=QkS@e;$-Ik@X;Q2yfh59}@d+w8TZjb4lR2B=C&tmNDx4zZBp}dGMrscrKT~b2$Xh zWjdTLcwqNC(PR-PdY79tD}rg_ucliFq^}qKT>d|!o%lXj2yA0gpxtGfV;$;Cb zr9lkvx>ADIl@MN6@PhLv*2&8UEIHBoy&|k#DPaw2J>jeKS_ymCLhN0`+t?pp2YVHh z!2xbq+o74eCS#jx!W{c{J-7=7eJ&V%j(xD}5Byx8?dv6MUk|Z;J&M0RhM{ryo6(+- z70%JPaQS~QggZOQFSj5TLq_*j+TpsvEZadCfQjW98qDhg=5-CG>w)R|1I3e}T z-QxJvEg7G>!T8jb@u>?(#{n(Pl2y2_5Pb^|e#9e&y1jSL&hcOqVvn~Wa0oABAH<=A zR%?*tEnVhjNtaNTdkHxvf16( zsG{V6tC^Wzo=L~gf4e|~KPZ3t`9vVVx34ROmm9dH;(%Mph3 z=W+x;cBq4xeSHe|otR78kF_p)G3SPJad3YK&-`4C{PREhluX|y^*2`c$cH591HzvX z1PoB+N{NRsug0|mk6?D~FlXKH>6DW=$C1hvGkK(k)^SLV)d+tOnDC@ z*4YoaQo*Hgnk`n7i01W58P Date: Sat, 18 Jul 2015 01:24:20 +0530 Subject: [PATCH 02/15] container cmdlets and tests --- .../Commands.AzureBackup.Test.csproj | 9 +- .../AzureBackupContainerTests.cs | 34 ++ .../AzureBackupContainerTests.ps1 | 51 ++ ...AzureBackupMarsContainerScenarioTests.json | 358 +++++++++++++ .../ContainerAdapter.cs | 38 +- .../AzureBackupCmdletHelpMessage.cs | 1 + .../AzureBackupContainerCmdletBase.cs | 45 ++ ...nableAzureBackupContainerReregistration.cs | 58 ++ .../Container/GetAzureBackupContainer.cs | 43 +- .../UnregisterAzureBackupContainer.cs | 77 +++ .../Commands.AzureBackup.csproj | 11 + .../Helpers/ContainerHelpers.cs | 71 +++ ...ft.Azure.Commands.AzureBackup.dll-help.xml | 503 +++++++++++++++++- ...t.Azure.Commands.AzureBackup.format.ps1xml | 39 +- .../Models/AzureBackupBaseObjects.cs | 26 +- .../Models/AzureBackupContainer.cs | 40 +- .../Models/AzureBackupEnums.cs | 15 +- .../Properties/Resources.Designer.cs | 23 +- .../Properties/Resources.resx | 9 +- ...re.Management.BackupServicesManagement.dll | Bin 76288 -> 79872 bytes 20 files changed, 1309 insertions(+), 142 deletions(-) create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupMarsContainerScenarioTests.json create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupContainerCmdletBase.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureBackupContainerReregistration.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureBackupContainer.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/ContainerHelpers.cs diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj index 12977a420ca1..06cfc0e401b5 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj @@ -41,7 +41,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.0-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll + ..\Commands.AzureBackup\Resources\Microsoft.Azure.Management.BackupServicesManagement.dll False @@ -124,6 +124,7 @@ + @@ -154,9 +155,15 @@ Designer + + Always + Always + + Always + Always diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.cs new file mode 100644 index 000000000000..7c461caf5071 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.cs @@ -0,0 +1,34 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xunit; + +namespace Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests +{ + public class AzureBackupContainerTests : AzureBackupTestsBase + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void AzureBackupMarsContainerScenarioTests() + { + this.RunPowerShellTest("Test-AzureBackupMarsContainerScenario"); + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 new file mode 100644 index 000000000000..73ec09b22dde --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 @@ -0,0 +1,51 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +$ResourceGroupName = "backuprg" +$ResourceName = "backuprn1" +$ContainerName = "DPMDRSCALEINT1.DPMDOM02.SELFHOST.CORP.MICROSOFT.COM" +$ContainerType = "Windows" +$ContainerId = "10034" +$ContainerStatus = "Registered" + +function Test-AzureBackupMarsContainerScenario +{ + $vault = Get-AzureBackupVault -ResourceGroupName $ResourceGroupName -Name $ResourceName + + $containers = Get-AzureBackupContainer -vault $vault -type $ContainerType + Assert-AreEqual $containers[0].ContainerType $ContainerType; + Assert-AreEqual $containers[0].Id $ContainerId; + Assert-AreEqual $containers[0].Location $vault.Region; + Assert-AreEqual $containers[0].Name $ContainerName; + Assert-AreEqual $containers[0].ResourceGroupName $vault.ResourceGroupName; + Assert-AreEqual $containers[0].ResourceName $vault.Name; + Assert-AreEqual $containers[0].Status $ContainerStatus; + + $namedContainers = Get-AzureBackupContainer -vault $vault -type $ContainerType -name $ContainerName + $container = $namedContainers[0]; + Assert-AreEqual $container.ContainerType $ContainerType; + Assert-AreEqual $container.Id $ContainerId; + Assert-AreEqual $container.Location $vault.Region; + Assert-AreEqual $container.Name $ContainerName; + Assert-AreEqual $container.ResourceGroupName $vault.ResourceGroupName; + Assert-AreEqual $container.ResourceName $vault.Name; + Assert-AreEqual $container.Status $ContainerStatus; + + #Enable-AzureBackupContainerReregistration -Container $container + + Unregister-AzureBackupContainer -Container $container -Force + + $unregContainers = Get-AzureBackupContainer -vault $vault -type $ContainerType -name $ContainerName + Assert-AreEqual $unregContainers.Count 0; +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupMarsContainerScenarioTests.json b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupMarsContainerScenarioTests.json new file mode 100644 index 000000000000..503061a5b70f --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupMarsContainerScenarioTests.json @@ -0,0 +1,358 @@ +{ + "Entries": [ + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMT9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "3bde4861-d6c7-4785-b954-c2fb7498260c-2015-07-17 19:46:07Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"backuprn1\",\r\n \"etag\": \"327fe758-7f7b-4879-b708-4d5366d2c687\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"ProvisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1\",\r\n \"type\": \"Microsoft.Backup/BackupVault\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "339" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "650d6914-a58c-4610-90c4-578f43f4194a" + ], + "x-ms-client-request-id": [ + "3bde4861-d6c7-4785-b954-c2fb7498260c-2015-07-17 19:46:07Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "650d6914-a58c-4610-90c4-578f43f4194a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150717T194610Z:650d6914-a58c-4610-90c4-578f43f4194a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Jul 2015 19:46:10 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/storageconfig/vaultstorageconfig?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9zdG9yYWdlY29uZmlnL3ZhdWx0c3RvcmFnZWNvbmZpZz9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "3bde4861-d6c7-4785-b954-c2fb7498260c-2015-07-17 19:46:07Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"resourceId\": 8395314960984740771,\r\n \"properties\": {\r\n \"storageType\": \"GeoRedundant\",\r\n \"storageTypeState\": \"Locked\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f28b0d83-8805-4900-92db-90809a187048" + ], + "x-ms-client-request-id": [ + "3bde4861-d6c7-4785-b954-c2fb7498260c-2015-07-17 19:46:07Z-PS", + "3bde4861-d6c7-4785-b954-c2fb7498260c-2015-07-17 19:46:07Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "f28b0d83-8805-4900-92db-90809a187048" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150717T194611Z:f28b0d83-8805-4900-92db-90809a187048" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Jul 2015 19:46:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/backupContainers?api-version=2015-03-15&$filter=type%20eq%20'Machine'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9iYWNrdXBDb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMTUmJGZpbHRlcj10eXBlJTIwZXElMjAnTWFjaGluZSc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"uniqueName\": \"dpmdrscaleint1.dpmdom02.selfhost.corp.microsoft.com\",\r\n \"containerType\": \"Machine\",\r\n \"properties\": {\r\n \"containerId\": 10034,\r\n \"friendlyName\": \"DPMDRSCALEINT1.DPMDOM02.SELFHOST.CORP.MICROSOFT.COM\",\r\n \"containerStampId\": \"eaf33dbc-a5b5-411a-a6af-1976a3f94602\",\r\n \"containerStampUri\": \"https://sea-dev01-prot-4bodw.ext.trafficmanager.net\",\r\n \"canReRegister\": false,\r\n \"customerType\": \"OBS\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "401" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "46a1fbfd-6e8b-4ab0-835b-1dcbe559162f" + ], + "x-ms-client-request-id": [ + "012da3f2-c253-475c-9f1a-516b11d3a906", + "012da3f2-c253-475c-9f1a-516b11d3a906" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "46a1fbfd-6e8b-4ab0-835b-1dcbe559162f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150717T194612Z:46a1fbfd-6e8b-4ab0-835b-1dcbe559162f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Jul 2015 19:46:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/backupContainers?api-version=2015-03-15&$filter=type%20eq%20'Machine'%20and%20friendlyName%20eq%20'DPMDRSCALEINT1.DPMDOM02.SELFHOST.CORP.MICROSOFT.COM'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9iYWNrdXBDb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMTUmJGZpbHRlcj10eXBlJTIwZXElMjAnTWFjaGluZSclMjBhbmQlMjBmcmllbmRseU5hbWUlMjBlcSUyMCdEUE1EUlNDQUxFSU5UMS5EUE1ET00wMi5TRUxGSE9TVC5DT1JQLk1JQ1JPU09GVC5DT00n", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"uniqueName\": \"dpmdrscaleint1.dpmdom02.selfhost.corp.microsoft.com\",\r\n \"containerType\": \"Machine\",\r\n \"properties\": {\r\n \"containerId\": 10034,\r\n \"friendlyName\": \"DPMDRSCALEINT1.DPMDOM02.SELFHOST.CORP.MICROSOFT.COM\",\r\n \"containerStampId\": \"eaf33dbc-a5b5-411a-a6af-1976a3f94602\",\r\n \"containerStampUri\": \"https://sea-dev01-prot-4bodw.ext.trafficmanager.net\",\r\n \"canReRegister\": false,\r\n \"customerType\": \"OBS\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "401" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95e616a7-bb6a-434b-876d-8dc9271a9375" + ], + "x-ms-client-request-id": [ + "add32202-8b85-48cd-bf42-76899a482387", + "add32202-8b85-48cd-bf42-76899a482387" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "95e616a7-bb6a-434b-876d-8dc9271a9375" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150717T194612Z:95e616a7-bb6a-434b-876d-8dc9271a9375" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Jul 2015 19:46:12 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/backupContainers?api-version=2015-03-15&$filter=type%20eq%20'Machine'%20and%20friendlyName%20eq%20'DPMDRSCALEINT1.DPMDOM02.SELFHOST.CORP.MICROSOFT.COM'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9iYWNrdXBDb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMTUmJGZpbHRlcj10eXBlJTIwZXElMjAnTWFjaGluZSclMjBhbmQlMjBmcmllbmRseU5hbWUlMjBlcSUyMCdEUE1EUlNDQUxFSU5UMS5EUE1ET00wMi5TRUxGSE9TVC5DT1JQLk1JQ1JPU09GVC5DT00n", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ad8d0c5f-7388-48d1-8079-8cee7573cf09" + ], + "x-ms-client-request-id": [ + "7af25c88-040a-4ce3-9728-8f94fe64d42f", + "7af25c88-040a-4ce3-9728-8f94fe64d42f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "ad8d0c5f-7388-48d1-8079-8cee7573cf09" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150717T194618Z:ad8d0c5f-7388-48d1-8079-8cee7573cf09" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Jul 2015 19:46:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/backupContainers/10034/UnRegisterContainer?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9iYWNrdXBDb250YWluZXJzLzEwMDM0L1VuUmVnaXN0ZXJDb250YWluZXI/YXBpLXZlcnNpb249MjAxNS0wMy0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "3a02406f-4fc3-48b6-9621-c05d9d1c3cdb-2015-07-17 19:46:12Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3577d465-9453-43bc-93ec-93603396aa9f" + ], + "x-ms-client-request-id": [ + "3a02406f-4fc3-48b6-9621-c05d9d1c3cdb-2015-07-17 19:46:12Z-PS", + "3a02406f-4fc3-48b6-9621-c05d9d1c3cdb-2015-07-17 19:46:12Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3577d465-9453-43bc-93ec-93603396aa9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150717T194617Z:3577d465-9453-43bc-93ec-93603396aa9f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Jul 2015 19:46:17 GMT" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "f5303a0b-fae4-4cdb-b44d-0e4c032dde26" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs index 3ef973773934..4f8ef0ee1a45 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs @@ -54,26 +54,24 @@ public IEnumerable ListMachineContainers(string friendlyN return listResponse.ListMarsContainerResponse.Value; } - ///// - ///// Register container - ///// - ///// - ///// - //public Guid RegisterContainer(string containerName) - //{ - // var response = AzureBackupVaultClient.Container.RegisterAsync(containerName, GetCustomRequestHeaders(), CmdletCancellationToken).Result; - // return response.OperationId; - //} + /// + /// Enable container reregistration + /// + /// + /// + public void EnableMachineContainerReregistration(long containerId) + { + AzureBackupVaultClient.Container.EnableMarsContainerReregistration(containerId.ToString(), GetCustomRequestHeaders()); + } - ///// - ///// UnRegister container - ///// - ///// - ///// - //public Guid UnRegisterContainer(string containerName) - //{ - // var response = AzureBackupVaultClient.Container.UnregisterAsync(containerName, GetCustomRequestHeaders(), CmdletCancellationToken).Result; - // return response.OperationId; - //} + /// + /// UnRegister container + /// + /// + /// + public void UnregisterMachineContainer(long containerId) + { + AzureBackupVaultClient.Container.UnregisterMarsContainer(containerId.ToString(), GetCustomRequestHeaders()); + } } } \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs index a54e38f4cd51..7d8dd45e1b4b 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs @@ -26,5 +26,6 @@ internal static class AzureBackupCmdletHelpMessage public const string ManagedResourceGroupName = "The resource group name of the resource being managed by the Azure Backup service (ex: resource group name of the VM)."; public const string ContainerRegistrationStatus = "The container registration status."; public const string ContainerType = "The container type."; + public const string AzureBackupContainer = "Azure Backup Container for Azure Backup Item."; } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupContainerCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupContainerCmdletBase.cs new file mode 100644 index 000000000000..b1b623d832c6 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupContainerCmdletBase.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using System.Collections.Generic; +using System.Xml; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using System.Threading; +using Hyak.Common; +using Microsoft.Azure.Commands.AzureBackup.Properties; +using System.Net; +using Microsoft.Azure.Commands.AzureBackup.Models; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + public abstract class AzureBackupContainerCmdletBase : AzureBackupCmdletBase + { + [Parameter(Position = 0, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.AzureBackupContainer, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public AzureBackupContainer Container { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + WriteDebug(String.Format("Cmdlet called for ResourceGroupName: {0}, ResourceName: {1}, Location: {2}", Container.ResourceGroupName, Container.ResourceName, Container.Location)); + + InitializeAzureBackupCmdlet(Container.ResourceGroupName, Container.ResourceName); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureBackupContainerReregistration.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureBackupContainerReregistration.cs new file mode 100644 index 000000000000..4ae62420fa63 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureBackupContainerReregistration.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Web; +using System.Collections.Generic; +using System.Collections.Specialized; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Azure.Management.BackupServices.Models; +using MBS = Microsoft.Azure.Management.BackupServices; +using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; +using Microsoft.Azure.Commands.AzureBackup.Properties; +using Microsoft.Azure.Commands.AzureBackup.Models; +using Microsoft.Azure.Commands.AzureBackup.Helpers; +using Microsoft.Azure.Management.BackupServices; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + /// + /// Enables reregistration of a machine container + /// + [Cmdlet(VerbsLifecycle.Enable, "AzureBackupContainerReregistration")] + public class EnableAzureBackupContainerReregistration : AzureBackupContainerCmdletBase + { + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + base.ExecuteCmdlet(); + + AzureBackupContainerType containerType = (AzureBackupContainerType)Enum.Parse(typeof(AzureBackupContainerType), Container.ContainerType); + switch (containerType) + { + case AzureBackupContainerType.Windows: + case AzureBackupContainerType.SCDPM: + AzureBackupClient.EnableMachineContainerReregistration(Container.Id); + break; + default: + throw new ArgumentException("Reregistration can be enable only for machine containers."); + } + }); + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureBackupContainer.cs index e2b007cf3939..fd5bcb2d6b3c 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureBackupContainer.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureBackupContainer.cs @@ -28,24 +28,16 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets /// /// Get list of containers /// - [Cmdlet(VerbsCommon.Get, "AzureBackupContainer"), OutputType(typeof(AzureBackupContainer), typeof(List))] + [Cmdlet(VerbsCommon.Get, "AzureBackupContainer"), OutputType(typeof(List))] public class GetAzureBackupContainer : AzureBackupVaultCmdletBase { - //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ManagedResourceGroupName)] - //[ValidateNotNullOrEmpty] - //public string ManagedResourceGroupName { get; set; } - [Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ManagedResourceName)] [ValidateNotNullOrEmpty] - public string ManagedResourceName { get; set; } - - //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ContainerRegistrationStatus)] - //[ValidateNotNullOrEmpty] - //public AzureBackupContainerStatusInput Status { get; set; } + public string Name { get; set; } [Parameter(Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.ContainerType)] [ValidateNotNullOrEmpty] - public AzureBackupContainerTypeInput Type { get; set; } + public AzureBackupContainerType Type { get; set; } public override void ExecuteCmdlet() { @@ -57,8 +49,8 @@ public override void ExecuteCmdlet() switch (Type) { - case AzureBackupContainerTypeInput.Windows: - case AzureBackupContainerTypeInput.SCDPM: + case AzureBackupContainerType.Windows: + case AzureBackupContainerType.SCDPM: containers.AddRange(GetMachineContainers()); break; default: @@ -72,38 +64,19 @@ public override void ExecuteCmdlet() private List GetMachineContainers() { List marsContainerResponses = new List(); - if (!string.IsNullOrEmpty(ManagedResourceName)) + if (string.IsNullOrEmpty(Name)) { marsContainerResponses.AddRange(AzureBackupClient.ListMachineContainers()); } else { - marsContainerResponses.AddRange(AzureBackupClient.ListMachineContainers(ManagedResourceName)); + marsContainerResponses.AddRange(AzureBackupClient.ListMachineContainers(Name)); } return marsContainerResponses.ConvertAll(marsContainerResponse => { return new AzureBackupContainer(Vault, marsContainerResponse); - }).Where(container => container.ContainerType == GetCustomerType().ToString()).ToList(); - } - - private CustomerType GetCustomerType() - { - CustomerType customerType = CustomerType.Invalid; - - switch (Type) - { - case AzureBackupContainerTypeInput.Windows: - customerType = CustomerType.OBS; - break; - case AzureBackupContainerTypeInput.SCDPM: - customerType = CustomerType.DPM; - break; - default: - break; - } - - return customerType; + }).Where(container => container.ContainerType == Type.ToString()).ToList(); } } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureBackupContainer.cs new file mode 100644 index 000000000000..9b02d0e5530a --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureBackupContainer.cs @@ -0,0 +1,77 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Web; +using System.Collections.Generic; +using System.Collections.Specialized; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Azure.Management.BackupServices.Models; +using MBS = Microsoft.Azure.Management.BackupServices; +using Microsoft.Azure.Commands.AzureBackup.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Store; +using Microsoft.Azure.Commands.AzureBackup.Properties; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + /// + /// Get list of containers + /// + [Cmdlet(VerbsLifecycle.Unregister, "AzureBackupContainer")] + public class UnregisterAzureBackupContainer : AzureBackupContainerCmdletBase + { + private PowerShellCustomConfirmation customerConfirmation; + + [Parameter(Position = 1, Mandatory = false, HelpMessage = "Confirm unregistration and deletion of server")] + public SwitchParameter Force { get; set; } + + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + base.ExecuteCmdlet(); + + AzureBackupContainerType containerType = (AzureBackupContainerType)Enum.Parse(typeof(AzureBackupContainerType), Container.ContainerType); + switch (containerType) + { + case AzureBackupContainerType.Windows: + case AzureBackupContainerType.SCDPM: + DeleteServer(); + break; + default: + break; + } + }); + } + + private void DeleteServer() + { + bool shouldUnregister = true; + + if (!Force.IsPresent) + { + customerConfirmation = customerConfirmation ?? new PowerShellCustomConfirmation(Host); + shouldUnregister = customerConfirmation.ShouldProcess(Resources.UnregisterServerCaption, Resources.UnregisterServerMessage); + } + + if (shouldUnregister) + { + AzureBackupClient.UnregisterMachineContainer(Container.Id); + } + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj index feeed90c75fc..47f9c3cc3e6f 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -118,15 +118,19 @@ + + + + @@ -172,6 +176,13 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common + + {4900ec4e-8deb-4412-9108-0bc52f81d457} + Commands.Utilities + + + + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/ContainerHelpers.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/ContainerHelpers.cs new file mode 100644 index 000000000000..65678f8542da --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/ContainerHelpers.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using System.Collections.Generic; +using System.Xml; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using System.Threading; +using Hyak.Common; +using Microsoft.Azure.Commands.AzureBackup.Properties; +using System.Net; +using Microsoft.Azure.Management.BackupServices.Models; +using Microsoft.Azure.Commands.AzureBackup.Cmdlets; +using System.Linq; +using Microsoft.Azure.Commands.AzureBackup.Models; +using CmdletModel = Microsoft.Azure.Commands.AzureBackup.Models; +using System.Collections.Specialized; +using System.Web; +using System.Text.RegularExpressions; + +namespace Microsoft.Azure.Commands.AzureBackup.Helpers +{ + internal class ContainerHelpers + { + internal static AzureBackupContainerType GetContainerType(string customerType) + { + CustomerType type = (CustomerType)Enum.Parse(typeof(CustomerType), customerType); + + AzureBackupContainerType containerType = 0; + + switch (type) + { + case CustomerType.DPM: + containerType = AzureBackupContainerType.SCDPM; + break; + case CustomerType.InMage: + break; + case CustomerType.Invalid: + break; + case CustomerType.ManagedContainer: + break; + case CustomerType.OBS: + containerType = AzureBackupContainerType.Windows; + break; + case CustomerType.SBS: + containerType = AzureBackupContainerType.Windows; + break; + case CustomerType.SqlPaaS: + break; + default: + break; + } + + return containerType; + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml index 732d973175bf..31d0e6ad6ee9 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml @@ -1,5 +1,312 @@  + + + Enable-AzureBackupContainerReregistration + + Allow re-registration of the server to connect the server back to the vault and continue the backup points chain. + + + + + Enable + AzureBackupContainerReregistration + + + + When a server is destroyed, all its cloud backup points remain in the Azure Backup vault. If the server is rebuilt and given the same FQDN, it is possible to connect it back to the same vault. This will allow the server to continue taking backups and adding new backup points to the existing set - essentially continuing where it was left off in the backup chain. + To make this connection, the AzureBackupContainer has to be primed for "re-registration". Without this step, you can lose all the existing data as a part of the registration process. The commandlet tells the service that the next time the container is registered, it should continue the backup chain. + + + + Enable-AzureBackupContainerReregistration + + Container + + An object referencing the container for which re-registration is being requested + + AzureBackupContainer + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Container + + An object referencing the container for which re-registration is being requested + + AzureBackupContainer + + AzureBackupContainer + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureBackupContainer + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + + None + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + + + + + + + Get-AzureBackupContainer + + Retrieves one or more Azure Backup containers that match the filter criteria specified. + + + + + Get + AzureBackupContainer + + + + An AzureBackupContainer is an object that encapsulates datasources, protected items, and recovery points. An AzureBackupContainer can be one of three: +- a Windows server +- a System Center Data Protection Manager server (SCDPM) +- an Azure IaaS virtual machine + Before a datasource or item can be backed-up, the container holding it must be registered with the Azure Backup service and be authenticated to send backup data to the backup vault. For Windows and SCDPM servers, the registration is held with the FQDN of the server. + + + + Get-AzureBackupContainer + + Name + + The name of the AzureBackupContainer for which an object reference will be returned. + + String + + + Type + + This determines the Type of the container that has been registered. +- For Windows servers using the Azure Backup agent directly, the type will be "Windows" +- For SCDPM servers using the Azure Backup agent in conjunction with SCDPM, the type will be "DPM" + + AzureBackupContainerType + + + Vault + + A filter for the vault object, under which the container needs to be found. + + AzurePSBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Name + + The name of the AzureBackupContainer for which an object reference will be returned. + + String + + String + + + + + + Type + + This determines the Type of the container that has been registered. +- For Windows servers using the Azure Backup agent directly, the type will be "Windows" +- For SCDPM servers using the Azure Backup agent in conjunction with SCDPM, the type will be "DPM" + + AzureBackupContainerType + + AzureBackupContainerType + + + + + + Vault + + A filter for the vault object, under which the container needs to be found. + + AzurePSBackupVault + + AzurePSBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + ManagedResourceName + + The name of the container that is specified as a filter. + + string + + string + + + + + + + + + AzureBackupVault + + + + + +This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureBackupContainer + + + + + +This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- List of all Windows servers registered to the vault -------------------------- + + PS C:\> + + Get-AzureBackupContainer -vault $v -type Windows + + Gets a list of all containers of type "Windows" from the specified vault. + + + Name Type Status +---- ---- ------ +SERVER1.CONTOSO.COM Windows Registered +SERVER2.CONTOSO.COM Windows Registered + + + + + + + + + + + + -------------------------- Retrieve a specific container -------------------------- + + PS C:\> + + Get-AzureBackupContainer -vault $v -type SCDPM -name "DPMSERVER.CONTOSO.COM" + + Gets the container representing a specific DPM server registered to the specified vault. + + + Name Type Status +---- ---- ------ +DPMSERVER.CONTOSO.COM SCDPM Registered + + + + + + + + + + + + + + + Get-AzureBackupVault @@ -88,7 +395,8 @@ - This section details out the type of the objects that you can pipe to the cmdlet. + +This section details out the type of the objects that you can pipe to the cmdlet. @@ -100,7 +408,8 @@ - This section details out the type of the objects that the cmdlet emits. + +This section details out the type of the objects that the cmdlet emits. @@ -312,8 +621,7 @@ Property : - -This section details out the type of the objects that you can pipe to the cmdlet. + This section details out the type of the objects that you can pipe to the cmdlet. @@ -325,8 +633,7 @@ This section details out the type of the objects that you can pipe to the cmdlet - -This section details out the type of the objects that the cmdlet emits. + This section details out the type of the objects that the cmdlet emits. @@ -490,7 +797,8 @@ This section details out the type of the objects that the cmdlet emits. - This section details out the type of the objects that you can pipe to the cmdlet. + +This section details out the type of the objects that you can pipe to the cmdlet. @@ -502,7 +810,8 @@ This section details out the type of the objects that the cmdlet emits. - This section details out the type of the objects that the cmdlet emits. + +This section details out the type of the objects that the cmdlet emits. @@ -656,7 +965,8 @@ Storage : LocallyRedundant - This section details out the type of the objects that you can pipe to the cmdlet. + +This section details out the type of the objects that you can pipe to the cmdlet. @@ -668,7 +978,8 @@ Storage : LocallyRedundant - This section details out the type of the objects that the cmdlet emits. + +This section details out the type of the objects that the cmdlet emits. @@ -814,8 +1125,7 @@ Storage : LocallyRedundant - -This section details out the type of the objects that you can pipe to the cmdlet. + This section details out the type of the objects that you can pipe to the cmdlet. @@ -827,8 +1137,7 @@ This section details out the type of the objects that you can pipe to the cmdlet - -This section details out the type of the objects that the cmdlet emits. + This section details out the type of the objects that the cmdlet emits. @@ -881,4 +1190,170 @@ This section details out the type of the objects that the cmdlet emits. + + + + Unregister-AzureBackupContainer + + Unregisters the specified Windows Server or Azure virtual machine from the Azure Backup vault. + + + + + Unregister + AzureBackupContainer + + + + The Unregister command works on an Container object. It removes references of this container from the Azure Backup vault. Before you can Unregister a Container, any protected data associated with the Container needs to be deleted. + + + + Unregister-AzureBackupContainer + + Force + + When applied to an AzureBackupContainer of type Windows, this will not prompt the user for explicit consent before deleting data from the Azure Backup vault. + + SwitchParameter + + + Container + + The Windows Server or Azure virtual machine that should be unregistered. + + AzureBackupContainer + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Force + + When applied to an AzureBackupContainer of type Windows, this will not prompt the user for explicit consent before deleting data from the Azure Backup vault. + + SwitchParameter + + SwitchParameter + + + + + + Container + + The Windows Server or Azure virtual machine that should be unregistered. + + AzureBackupContainer + + AzureBackupContainer + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + Container of type [AzureBackupContainer] + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureBackupJob +- For containers of type Windows, the return value is $null + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Unregister a Windows Server with user prompt -------------------------- + + PS C:\> + + $c = Get-AzureBackupContainer -vault $v -type Windows -name "server1.contoso.com" +PS C:\> Unregister-AzureBackupContainer -container $c[0] + + The user first gets the container that needs to be unregistered using the Get-AzureBackupContainer commandlet. This container object is passed to the unregister commandlet. This unregisters the specified Windows Server from the Azure Backup vault. + + + Unregister Server +This operation will delete all data in the backup vault that is associated with the server. Are you sure you want to unregister the server? +[] Yes [] No [?] Help (default is "No"): Yes + + + + + + + + + + + -------------------------- Unregister a Windows Server without confirmation prompt -------------------------- + + PS C:\> + + Unregister-AzureBackupContainer -container $c –force + + The -Force option does not ask the user for confirmation before deleting the data and unregistering the server. + + + None + + + + + + + + + + + + + Get-AzureBackupContainer + + + + \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml index ab415da71864..500adb8d49be 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml @@ -37,6 +37,43 @@ - + + + Microsoft.Azure.Commands.AzureBackup.Models.AzureBackupContainer + + Microsoft.Azure.Commands.AzureBackup.Models.AzureBackupContainer + + + + + + 60 + + + + 18 + + + + 18 + + + + + + + Name + + + ContainerType + + + Status + + + + + + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs index c1299738ba01..ff6434c7eab8 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs @@ -12,7 +12,9 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.AzureBackup.Helpers; using Microsoft.Azure.Management.BackupServices.Models; +using System; namespace Microsoft.Azure.Commands.AzureBackup.Models { @@ -57,34 +59,16 @@ public class AzureBackupContainerContextObject : AzureBackupVaultContextObject /// public string ContainerType { get; set; } - /// - /// Unique name of the Azure Backup Container - /// - public string ContainerUniqueName { get; set; } - public AzureBackupContainerContextObject() : base() { } - public AzureBackupContainerContextObject(AzureBackupContainerContextObject azureBackupContainerContextObject) - : base(azureBackupContainerContextObject.ResourceGroupName, azureBackupContainerContextObject.ResourceName, azureBackupContainerContextObject.Location) - { - ContainerType = azureBackupContainerContextObject.ContainerType; - ContainerUniqueName = azureBackupContainerContextObject.ContainerUniqueName; - } - public AzureBackupContainerContextObject(AzureBackupContainer azureBackupContainer) - : base(azureBackupContainer.ResourceGroupName, azureBackupContainer.ResourceName, azureBackupContainer.Location) - { - ContainerType = azureBackupContainer.ContainerType; - ContainerUniqueName = azureBackupContainer.ContainerUniqueName; - } - public AzureBackupContainerContextObject(AzurePSBackupVault vault, MarsContainerResponse marsContainerResponse) - : base(vault.ResourceGroupName, vault.Name, vault.Region) + : base(vault) { - ContainerType = marsContainerResponse.Properties.CustomerType; - ContainerUniqueName = marsContainerResponse.UniqueName; + ContainerType = ContainerHelpers.GetContainerType(marsContainerResponse.Properties.CustomerType).ToString(); + //ContainerUniqueName = marsContainerResponse.UniqueName; } } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs index 6bfdaa7c5fc8..eba87adff331 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs @@ -27,45 +27,29 @@ namespace Microsoft.Azure.Commands.AzureBackup.Models /// public class AzureBackupContainer : AzureBackupContainerContextObject { - ///// - ///// Resource group name of the resource (ex: resource group name of the VM) being managed by Azure Backup service. - ///// - //public string ManagedResourceGroupName { get; set; } - /// /// Resource name of the resource (ex: resource name of the VM) being managed by the Azure Backup service. /// - public string ManagedResourceName { get; set; } - - ///// - ///// Status of health of the Azure Backup container - ///// - //public string HealthStatus { get; set; } - - ///// - ///// Status of registration of the container - ///// - //public string RegistrationStatus { get; set; } - - public long ContainerId { get; set; } - - public string ContainerStampUri { get; set; } + public string Name { get; set; } - public Guid ContainerStampId { get; set; } + /// + /// Id of the container + /// + public long Id { get; set; } - public bool CanReRegister { get; set; } + /// + /// Status of registration of the container + /// + public string Status { get; set; } public AzureBackupContainer() : base() { } public AzureBackupContainer(AzurePSBackupVault vault, MarsContainerResponse marsContainerResponse) : base(vault, marsContainerResponse) { - //ManagedResourceGroupName = ContainerHelpers.GetRGNameFromId(marsContainerResponse.Properties.ParentContainerId); - ManagedResourceName = marsContainerResponse.Properties.FriendlyName; - ContainerId = marsContainerResponse.Properties.ContainerId; - ContainerStampId = marsContainerResponse.Properties.ContainerStampId; - ContainerStampUri = marsContainerResponse.Properties.ContainerStampUri; - CanReRegister = marsContainerResponse.Properties.CanReRegister; + Name = marsContainerResponse.Properties.FriendlyName; + Id = marsContainerResponse.Properties.ContainerId; + Status = AzureBackupContainerRegistrationStatus.Registered.ToString(); } } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs index bf75de554bdd..332fb487024c 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs @@ -20,7 +20,7 @@ public enum AzureBackupVaultStorageType LocallyRedundant, } - public enum AzureBackupContainerTypeInput + public enum AzureBackupContainerType { Windows = 1, SCDPM, @@ -32,17 +32,8 @@ public enum AzureBackupContainerStatusInput Registered, } - public enum AzureBackupContainerType + public enum AzureBackupContainerRegistrationStatus { - Invalid = 0, - - Unknown, - - // used by fabric adapter to populate discovered VMs - IaasVMContainer, - - // used by fabric adapter to populate discovered services - // VMs are child containers of services they belong to - IaasVMServiceContainer + Registered = 1, } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.Designer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.Designer.cs index 58372d895579..515623e43787 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.Designer.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.18449 +// Runtime Version:4.0.30319.34014 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -61,20 +61,29 @@ internal Resources() { } /// - /// Looks up a localized string similar to The specified Azure Virtual Machine Not Found.. + /// Looks up a localized string similar to The specified resource does not exist.. /// - internal static string AzureVMNotFound { + internal static string ResourceNotFoundMessage { get { - return ResourceManager.GetString("AzureVMNotFound", resourceCulture); + return ResourceManager.GetString("ResourceNotFoundMessage", resourceCulture); } } /// - /// Looks up a localized string similar to The specified resource does not exist.. + /// Looks up a localized string similar to Unregister Server. /// - internal static string ResourceNotFoundMessage { + internal static string UnregisterServerCaption { get { - return ResourceManager.GetString("ResourceNotFoundMessage", resourceCulture); + return ResourceManager.GetString("UnregisterServerCaption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This operation will delete all data in the backup vault that is associated with the server. Are you sure you want to unregister the server?. + /// + internal static string UnregisterServerMessage { + get { + return ResourceManager.GetString("UnregisterServerMessage", resourceCulture); } } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx index 73ab213136b1..3abfe5b400d9 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx @@ -117,10 +117,13 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - The specified Azure Virtual Machine Not Found. - The specified resource does not exist. + + Unregister Server + + + This operation will delete all data in the backup vault that is associated with the server. Are you sure you want to unregister the server? + \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll index 4ed29f9fc5812bfae3da13349fc7b6474af50d42..d686b576b1bce649312c703388d11ce2c2ab5c18 100644 GIT binary patch literal 79872 zcmeFa33wdE(LdZX(yp{C$}E z^BPn$RbACxU42#c^voW8>eZ@3DOHKT*IrZVi@5UN3W0kEyO2Do<4cp&U9sQ`+;`%B6Rt`%$i1ueCLv0|f4h+mI{#IuO&61u z{|8rtl7xRBLcS;Q2KhEbcvJLmm!oPy8a~QVQ;L%Iigx;{3tKhtBP@XhV}skrfLG3k zzDSe08ofO>kT)&J=CWHr5Z$1oRCE!p*1r{Kt_9h_;S3n5tAfsAg9A$VR#{?l`wZ=h zf7H!Y5w-ClrCKjkDl921`vg+ZjXFR+q1-$!mGK@Go$Jw2MbdEz)6oY>$0bZhza$+O zO`oOQiUP5@N_lx29<-jtL(Jka`k*V;;R?k*mB8 z?WPk-#bIAJHwz6|pfK(~#d`|4S!g#}psm~{sT?lU-%TeW*e!;?H@hO80+wl%yr2^5 z@2cx?g^CF`Jz4rjMdPbZ^Q%rgI=@zBTaaz83H;|)+T_JPIbxHcuHl|k*_dvIn4i%$ zKMB^SMcm2)jps%RY%zCIWq~c~rZLi@ZU!~!Q3`GDstf*4=vQ8eY=K&~Lho|QKo7Rb ziMaBgTaj)PL;i;wg>}9j`AeHjilnFg|E^VZzq!!YvGPBup1n}IBJSB0r9a}H-BG#$?m4hzbm5*; zhYT^?bBM_}i)Pqwqh7x~Oa>DNY()XEQem)pa}CBT$2rL|uT5SQQ7b?MA<S^o!A?n<_5sLR7OK>E?S^x|mH-8xN(gQRV zO~`|nb zvrh`;aPVk~o7Z`+1tnYMsL^P8204|RJpowZD9~Lu&r9|s5YjVQhEVgA$;^gD#jF|3 zd2v)j)S8b;P=wraTxkf!gPc6x>^b2AN^`&*7cCO@l)JH z(2QyHw0L?Rvt#3tEoi=aw&8rH9W6x#FtY&EmQykdap_nnOOCW}7c(GRv%YwIi@Z#r zAIoVjk!Jp_9i zdmjV2*TwwM`!C+T1OR)uxh2d=XF-_FAp6`>5HtG&pbk2XHIW4;b3j1Oyb1SNOhBXA zo2gZ=B<(x`yy*iqTVP>XFHLUb$Sea#bLJqxRCTgCy_`3(WGsC!ZsxCXn+vRxn}`*# zT35O|*8nDCZW_~Fk7}-c@(ZY_n`c@o<|gB>Ho=xoBCffcL>QSJip*3prc+_8W0{vf zb+w$r87O3~p8DQfXrOCosvD&+6l2dfXg)Jz&@|~4EJ3*w)S6z6XG5v=N)Vbes{m6q z$(l6k7*EwEYtyJ6Yu#dMU0Z;w?$x^1O+!to^?kT;^Gr+Cy2-j%o2oJ4Ch9b|sda4{ zR*xrZbz*9go0w$kUA`K$Ng6XStKsH}WiUI&3&&A|JYnZIVG=#BEsMc0Mb)Jp8nvX6 zM^)n)l!mGv37D!+)~C^h;;DvYLmHztK7VHp-94U4xQRpoo=T8BfFd@ftTz+f-#ff#TR_1l1iXa|#$h5rdqH`|KT@K;D8oYaY*| z8^X3lOs9b<9YL=kJ2IYVbh7aD+gOe%y6&mbYA^Q=Q@FQUPx6%M69M%^h*LVaS=Y%) zJhRDgKGmM8bUR+vEhgPIQJL;%;#18koDfTI7NNN-F$U0|)mPBF|A`^}MGWJ)!1<5# zt3f*+b^L`zmqdU`G5rVMQDJa72k5a#7nn$7ACz8r7a0*VUiULMBu9XEE zHK`&6^g~?Jr$efM*$4M#aHu@d+N6tA*taLCq*m!O!CBLzs!#@f!H4R^$4j)NX1aN_ zXJsm#NbjRF_!h|ao{viQo=ZRnxOWtw2i4c^9@>HK-X>o1MA&k35_9Ii)pPgeCg*B* zk362c_d|3eH;*n-c||Mo3j2I-1=;iYbjIjGmDxW-rpV_*^U>$y#q#-tnx{+|pO3nU z&o?2Lqtd_ED?RM#q}3H`iC*pm%>K1N$Vpx1B#WzzhsdDPsuS zSdz%2{l1yLq+ux*6~B=RXDz>xd0BoVli6%R7pR9BwBLx)hYAMJ^9L8AV9#%)isCnt z4Spjp9^WGH6-a=7EGO(YQd0azCK*Yoc+hy!Y z_Gp)JUUHsx8P~#Phg*;*BL$HaSw3o$UnWFmA5E!Al43R$q)wG?) z{gV4>r*TPgiFO(b+G$+sCYBbqv7lB{^(BQ2QC;;VZW`^Zt3DHL@8-#?y~d@9rP^y; zs=dagp4TYZ<(W%riJRQtc#Zq(e2tBkXs>Ze$ZI^nO&m}-lci74;!N|sMk4eYF|UQq zWR|yOr$RvivFZ)w~_Oc zxQ#**w~;I;jTgF&yoTLI$Sga%64lM2yF}qG(kNBj+K(E!EH=7EGZ?S&+Uj|=)urOg zDj=?^$Ka4T88l%$)!T!X?|lJ-FwvVqmyg$}Tpl^5kTbemG*OvB{o^W@eW#Z$Y<;30vh}61?J7|pxc;dIWYE9{(S^U@XMm^;86-+GfZ_>V zcoMQnHjPeVk*jPmD$ zysNBumlmI1m6&d9WyAx6btk$Z-d$F_TZ_-AO3d)=1@(hT*o#L`=Ok4ckJ51P5AzHl z^pa&UmBypxS4@`X$D>42v!2QZZN!L_#d{6KI8)R?Zg3XV6Jb_aK24jFm3U^8VMRzf zn~|q12eK$8W~VWsAS7*(kkm?;l^z$VxhpZhW7d4j4oQ_Ks$*4HiLojP=^fy-V%6!BtXLJ(;~R-pKL_P{e}YQ({(#_7f^P!! za0I}p-h&Hv5KiiADc zAhxw+t=QJ42Jxy*4PslHT9((=sVKI!WrNsOs5*W=(D=tZ{+QP+|vm~4oGdGYup3MK(#i{(rZ1vAM+!Jal0GEp!|Itu2U*PV)@U`c8$ z6v&bHri6bh3f5T=hN56iW-*~CnB)nfU`&dB6dV}00mgOnIyZ8>eiY2wFbcki*PZZa zBnrlKZb!jP3`fDj-c+D;nJD-?X674epQB)V!ejKP=O!`M3iJugp*zc0JBid#wO=<1 z*418ExP+SOY9k7+^{TC-U?zs6U|~1aE*AysikGhk(}F0Nn2v(arwVz(GEuNyUm5~Y zur5R7k3hZmJqo^<1+_|>xrrr(cM{cAM-+^O%Z`G{`#MpuWS3_y;V4-0H8z?!3f{%i zLrYxH;!N|SU?PlyFAxFCOhr+!ZK-`U4x?b*5hk>Tj)LDvC3O`14r;5TU{SoWaG~f= zdQlWCBsk`AVL`ViC!=6qOFYzY6wJK+D46{J8wLMw6#TzYu=Tu=o;LOi{$o+F46=Ve z3KsEyKMEG{e?JNq@&7kba4-pbQLs$4r(*UBKb7^OV1^oc$=YiaTzhwV!RT2fu@@YlE#7m-JSq@}TEQ*4y1V0K^%8P@4YvSO)7RAAbMsyr}gDkJm z3I7-$HzPh~9Q<{QE{OmyfX2Ue+#ji*+0rcw#lfhdLYOLXFugy6R`W#V4eL7wSO$Yq7Dp6yX&0?z_{VF?{6Uju$OPiRNVLa-xI+FhQEntx%mKk5#~bld@mAZIr2P~Y=}g8@%R>juRsF4HXFtT5{yQ(Kt~g`UlJsz0(|kHiAZg9?U=bd92QY zFpZeqe;%vJEG86*l3YF#%?C+5m*eJTlwn1PdT0EuWElr?60xn{Afc)*jvRKVTK;llM2b)6(T?;2 zSuh`Ph+RD|FmyUkx~9cRJhKV4LWh3BJDn%CmJU~RIxk4@Pv^l0To2nr{3n=zK8NA> z?&{L>c|3z?pW6ew{QDJn`PUBYNbT!!UMo4Dhe=L+y~~kEUyo}keZ4E>8Y!?-dFS(F zVuXuFW#Qrx)h-_99=doW1n2Xn>9;!O@+@G5nhHHIwIuLb2{gtUbQ_r6{QD^~9}~8` z+yS1{qNq9sR}98P?lC4rD+=U|Ru;&t(mP?(=&RB1AuU(Hy_<$>9&b*c512_olXN3M z2AdyoXqQH0;yr^&Evi&t(0aHPl_Hp#?v?H^f zg}!9=_5A_$#pY&M-zMtYOnoml`eGxnSYOe@*SFg%-O{&GfvQ6Ken9m7pui6SrWbp1 zVq=Uq1v@2jKQua%A39SY8Yxi1SN%tCTy>NYVg6bt=pNC=p5ZCsDeu`j)Hgni(%t+= z0Mko60p#WN4Hzwvd)(+vUg%9`U*R89;r~S6nCX}9y^n;p;`>N7C{DVpydOzy?p!yG z-8>F=bb09NsyVn;f!|FZf_(5koDNF#yMmX&Gc`}>D$*EH5Y%$|eNIzOZKxb#EC&P4 zF6RipoK>ae@Tf|1 zn074t5u1Cem#3SkGCUYU z77wvf9t?GhhZxI0R@4o(p~(}&z~U!H{u3wU$5d(Y6SM1Q*#mPs>oqOJPt4L8W+6{U zh=&;Syu7pxr)d7p5I?aA_@N&2?+Wn~V|$(=b#!xBOyWG^jWGb#{PyJ7fGj3ptG>i6 z{Y@P)y;(fOEFM&u`Cx9bc!*g%rY$g_EgoW}JhMVP#7cQ)hj@rh&_<@*bcmmrl_#2m z`eVAVbR%Z*n0!F7c!;swiTl!m5I?cK>xre!%AZ)N4vRuO#7cRv*jV`xE9KcQ#6zr< z2h+cm53y37r6C?-7LVya`-galSv~J=C@yZ zUWGKwjNW<`)8&!szw`Vxth<=f@SaPXn@1HYQ&SRC_VGQJ<00F7TLr+41lJK<1<=FL z?oQ-oHcN5vj%SB3T0PGs|6e7ke+X=q|9DBN6AfgUnz<6@31^Q7pMLhj0!v22EQbax z`aPUaAuB|{pXMb`grP6h-RYfPnwFfV-@_q~w_VGc=o)(4wbb5~T6q*|>`F~M%9A4X z3FMZ(iLi+G8u>$y_!wcWlMKLE^9xNJdBv6fM82k zL^V~{u}H*|2sUyp3F`opO$|0@ZECQQYg5beYTFiTqPJcDn|8_*hPGWvu(w@l8`*Yc zVfMBw8Le$sCeti|iR)?S`RH(k&mzsu2hiJ2#e(K3X@W=H;+pd397`ZRI051~od^yLk z-gebl5T@S^^}W|%G?~SOwp~e{VB0lF(%Y^w5>BOUv6f-0b>}Bp2G%TYy9U;80Ee5` z#gW6_cI`-Z==WqglbykPGMvWTL}%e^yzcxcV6xLqBkJIJk+vrvspkB|#8ju7>@x4k zbZPdc0;Q1~=6k$b-RZw4^EqbLSol0IxvP;__yTX;JTEr+izEv*%NWVclaRSaSIeK6 zGV4(-%uX`fY*LaVUJ@X0_FBvZRpliz*IQy~RVAmf%{0ULPO=rI^m|aE&V<#amRSa8 zhMDuH#bT(}f@+jnhQ`K0eb%%V@}fACGuHv6rt?LFo_RR0{9d4SDp`?+X7N-dZf@XB zgf9j}tP&J>vrJ(x{|3%)w|R4IDly$NL^YUlV8Z!rqw>wLMYX90j7{^mG+%id--vi0 z7z@%Yrg!i@eIuy3n*cI5Gb7z|GPjU$D?s+c$S{2y(f3PwW8rRy1!JWAjygnD@5kWa z^xkgR+M?c|tk+wV>W055qv_g=sYKvU-@R$N+i->-N$nmt2oPZMxR=GZ${2MM>B85EYJ;R*eh5g9@aHRO5c2Asc0AkH??uhg??uh=-iwm#^2{Zb zc9V0>dr@q?L@fKevb$Q#!H5bhw;$kG%F5} zWt-tf71?het;Hi^y1z_l9=!1a^SqH-<0vIgTz-Y>=MKX(qifPw_^MQhbiMb^u`Mr3 z3F!nht+1dpa&qsT*YMsutDD83Qn^Era|&}k&4l-n)&ez>GL!D*oh0UQ8M08hW0*&E zB8r!i4yJsfN~TjSTlS?S>U^xqVK(6#N!55G>1YwO-*hSaMiK?(jii%MPxD3+<~{@y zG%qV^y=GJPy(E)^|6WoQ?|Rc&)HkcmwiQv@;eZGG-W;rsnmQ~RC*Kh z<<+*a&6wm<%?htAeTbE zDHxI71D*2IA^H3VIz&?Kc)i76!uWa%$EQ~eAL+<=?Gw%LdP|6vQ=!dDJhREL;+f85 zzTP5(SmrjI1q0&0-eM)Rr{Ue8>T}h~o#-^E5*~A?mAIaTYX`3UNBYIJN}*q?@8N3G zUjyI%_*+^hJ|EeI|7VyZE{ZADXVE1Q;0neb z$at<(QMgmCl?4WWJnuuFLeBeqLf=FR^zZOg2#oOpv*epFtS+7k5!FwHP%NJck&s3f z`l$xb{d~4csacF=;Yi(&)Kq1nlA$cBCv|GZm49IKzu$$A2OR^vw;T2Cokq|GAQ9{y zWPw(qn}T;JizC=?l%!e_td1_f2^P%y-{K`t#LMdKUUV5vMs;*ao^W)@(!I!0N0%(o zqdY0GBi&FfMg1SR`xjJl#&^4p-ped5K6C54)&Oqp1cb(UCiLM|&DBM*ZnDIka? zMO0JWJZn@W;zM8=LoCUQ$G3=sgaphrEGHaGQc_|` zCYe~$(}qGOmLy5XlDzYpqbQb?q{hOdLRIIsP2>CF}I1rYBQ39hkfWyt};>cl#ko>ORatO$0y5KVCuXAzwa1+&q zAMm>K0l;LnJPU$@S@Yz2Oc8FLX{l=0`~DWr`3QGYfx`Ia*P&D+S?x!V-(_CD{Saqx zUgjU>AJr4@h3}wxuYlt$vyVMr&@I>Fn{`O9V8-wc%U4#17glAl9C+bHJQ>&F1;5U< zMpw2)^mP+8g&$EtUD+BpJ%x&(viQavif3A?#`V6tm8jL+rm{6Ux~MVHMV*U}cIoPt zuLjeC=z^GzE*_%>c|z~a67*y5z>ZyARu2bubQvOl1Zrc)5tEXWbR5BxJL_3h^HHt_ zp3wOr3u-kruP;1KRM))TO;0s7A4FTYd9vy-q5?pYHk|3lFUiL3=aJ4$jQBnUv>z_Fc@1ec&x}j4GB4ZzJ2$hB#LR7mU)6h%chL8}rA@c3018bB@ z(+|OsrTmYP4&Sw9ANSP14FmS_gLvgUlAj?jw>umRsdj=U0IsllcUxyc7<#=`lUYp2H6eKd*Ca^Nu8E9}?I`^Z6AhUF~UwKTuO$ZJhP$l%*Qg#-mo0&&1R;H`!tKKsz+M zsrEGOrA#wkN++KY=!%!G2h##Cg_!nIo}~(TLeEP<-}b%&W!IPW!xEs&5cy&+r7PK` zy_D(6>7m`uZa2|gc%B8dnyODP{E?`x`gE7Gv~KZlSF-Bl)ouzt6{6jgZtbRYd%K;I zU7oq5rn^aO1!J9>oS32WH8z^A-IVDeH)W=qm|6G@OAjp?L5nlZcT}O6&OoI5Nvf`7pczqSV1$C({9&BeK6o7a`srYvIeGPg$bGB?} zz9})=+RjYiLr{7Ch-NRk4TXa%i>17vwN_c+32}ysl;r$=rnXS zm~!NX`@miwj5se2C_k~0&yNF$q?)js>6gGrfCJJihLL~_&_2-&yO|+YndOW|WF?;2 zWLUAA+00l#MyYG!iG_RzjhFg)cclPK1r(y-;sg=ZRBg{95l2=(vPmQ#9X-4Z zem74TiXKR?qX$|{q6doF(E}N+=z+;JR$%xbdiV#@+EQ?e=B;>SrCSz2Tf)% zq3D6+38IG}Nk>KLJbP6}4{dOU9nufGHI}x`IT$dWM~>#h54Y5qn{85@~$n{!r?{@5?h4 z^TaF6)VJh5M-TSILSIr(1guSZ1xrBmP`=tada$Z(MGwhjQb!M|WGaXrbhT53%AndQ zm%oHU7drOjX;@A0n=-6+%1t(!=%G=wn`)g1N;gdJ+$iRq1B5XB)dFwNwv7iHWNLx>3ofiT6FZ#5{e$$-9&rg zRjGA(OEJxl9*8h{cufQ>Gnpl5*>et-?{Lr9N8>Ph&>dkyYixiIfgcol1C>OSjbI$V zlZNP_9|Kk^-dJ!*$&;?52TouTJqYOpw4|`0G;%U};5F<}vSVNtp-N25UWF-M9;eq- z&8sc?EGzSGR#ozORQ!Gs%~zdy8{K|Sny1l3x-K@aw&=^OEa^&?l)Duo_~gH2fUsf{ zbBJX>?3G;pbFwTPaYN{HvNuWDvFulT(XyYDHKL)<$=)KOQtzM}crI=EK14p>r6rPz z!=;URehXb%_7b|ZERlYy^qM}IXyDR@SY_y0ti)}XwuUaPbS0TW@m1PSG9UB(Nh=|q z{*)Bp|0cqNm}#!V-zo6lY`-;+VHiVO@tM0vXM6D9XF%g$JMN9&%89!o{b}SqSHBa6 zdQeWDw{vx--%3Y}ek+{@`mJ14#Bb#+1Hbh%5HH9Q0Kb(=!*3<3{nlB?5PmBO>Cb|* zMt&TD&)Ij>C^b*^w_EYUUFeu8e9m97+#<8-W`{;(L zZQ#XnH-(y~Oc{5Rx{13vA(!Q`k%u0X6!1@!uU$3~)h-*3&S5G^vuzr9nAR2^Xy+9m8R54P{SrwiE>ZkN zsfP72MKW6cqF39%a`hP6dbc?NR=hmtL(dOf2$j6uX4XvnMY6$P;_7}O^x*Rr5@lf@_xDkJm!`n@C6xw**i64-w zOm?{JG4viTtc&(%4oN_ND@*k=vojO>tA!_=_oK=38=~{Y85+puea` zGHc`ei{-1W{Y9(VmcPgy*ww5ycVO4(YPX2uZen_2GBwrJ#+EAvrLOi4Syh?Hoz!mQ zFLrBoQ|;;6U&KyoHGk1*hKrq6UGehuU|QfW64U-7K7s;c5qkb2`nKmU+Vy4q;4kVj zM84QxoSB@d{l!_ySs{OMwwst;z|#@>i@L>U6{Zl?RiEXiG4<%GpC=Ild9}Yd8+%al zP<*!b7iW9^qGXq6F4$mAn&Y!Lvn%-;8_m-G;;fLrCFj3RUQ4OKEV*G zF0|gjj#~T2Ww)Ox2uIZ0eok=z+1tRbw)U>eZa!1k+I)^-^LaOGimC<&am(&I8%b~9 zIfi}b+l^$fV_kO3*+_a@&M|B`f51ovo7H7^n~h|H-at;ou%8TTi?+c&buy7e!z4?( z$^7l~74<&#JhM+d&)TO>DQrZ42-)FB2U6BPbyH05Q#azw?nk7w#5}!EO?9|W-Rik( zsl+^b+oV^6DM#)n&>PUPvdkC>%Wlx0^0#Dq0+}9PM)!5=Q~u3~W>l-Wv|4RAF02jG zqI)cU*#NU3rfUw0V2<#DiSiQ+`TSslNU9CNgs&xo2~HuNsthJ%O7Vk<5Ub3~#u8*D zZU+S=CCl!9VxtCRrT@8vm^LgN{H&`fjKLWxU^Ho6kOl z-(;h|!T5t7CgTq}CyYNh1taYE5~K>^Ng(WC^$>Ot)nNznW7t7L`W|rVutUz(JOUm3 zxMM09-ay>Z582)t%#FQK0{l|F>U{-u?t!`VY26vf5bMZHUh+h|j_iNQ-j6%Th*0yC*;^zsAy?q* z7s$g%L<%^^|0P>3%KCWSdz#0kt2t2?K`_xnMk|#APrwy@Szu^lnrLc zhG2#lk57Ub5>RuNGeI!JBooYd+EB;@GbHI?hId}m76mhs)L58Hj=VRB{;gm}XF(VW zW;B__gn}88CkSSOBpuAi7_ozyZkAz!nZWuwn9;?NrU`AJadSMAQ z)zwBYgPGJ0W|$ZbW`x~TyIe4%D_*`HObdb;Vmg?aM-}pfWr7*IzN{aD8C{0RV;K)^ ze(yb)*^dRaN}KUj$E8Gd)e+2Kp|XP+^1eGDG5P#phDd2J!zsk`_86halu|yJk$Kq)W{8&rGcwP}Y+Dq}SP51z+ z&quLE!Oy{RRPA!BR!Sp6rc& z;AF{K=YMSK_sjA=UY1&x*Vd_JVx5AMKvKGn#15fF^Ms+3KqT0~5UnV|5Jl~iKxDLn zAtuv+L1P5L(4k1f=d*n11vz#w#B$`x4%rY4@#67GFhm0SG0O=DLzI*!J4`ackf#lW zOfW=}4u*K=HCItEBuR~h739c!!*8Ns2#*`^3IQgV-X?+u01h?%9)Zq+Fq^?g#dAyP zt?tjUjSqZD_ADzD5s^GWL=+_Hh)4#G6%k36TJ{qdJXvTq>YWr?hHSlHDQF!XENM;1 zVFyd)KVD9A@Z;r2@w)Q>Kz_U&Z3x%7_Q~VrF#yxTA1@c~rUHe_e7t-m^J*-t;zfT% zXEkr#JTEqR4aq_^AJHMf`y>wMHkrLLx9KTNra1K4Jh`&pfJMyg!zoUf((hq=TqAQW zilYLd&&Y^krlELW`WYE%l3SPyPDsSFzeOS8&&aHWSkQ^e$AOSnz1OoJ-DY}EXjWxZ zpyx%FmR_ON-C4dxbsT85=t{8f^~3DCMQaO3Q&Zid_%J(0o3!XIEFEs1Y2gpE3%6;} zavx^b^|lv>pc+gI!a!m=3_Oe)~ zNgjPWhN!MSj=o|4PO7iJ&Q4Yx3gUwq`ngs@Ki5il&$T4CJTnP@on5jucAEI>?1!`P z2^yVgeke$Uq2LiBV42D+!QR)|ZENkLZTNL|-4`Y@#u!?{eM5EBUuR!OW%bwDMeoMK zk)l57IuhjUEswQ?B#|IlP#Q0c1bGcdf|Thr9J0CZeVv_USYKxkOyzmR<$ERhe2dDNBYAonEtTX)$@l#UuS3kv^j~}?rDzLZp>NAB z1()`8%qInz_us$Tna_H&2?mP}Ki4RCF5l;ahkURu? z3;6kRki#F46!xY9rOSLk@-$}FSa>Th+V_1MZ{0jEHo1>vp&H+p1kd;7Bq!5YW~cFe zO^3{rD;ulvCmqgp!c^q@Qh|`~D~jc{eRyB$`-;i;=KF4fSkOPp`@V3SRqy-QF>d#K zUwe9`)2OFImgf7u<(pLdzE+d2418an<5~?g#cwID!Hv8=tedpEa3(d?P1^0I5vB1# zK--h}{4UC8VyatSjYSjl)mULSP1>ywbeYp$DS0VYSG;^Zm=-v{#I*C@-Wv?tS~>Fi2bwp{6Y@LW#agxA&y&}!O~i#Q}U445K&$K z*=`yEs;R$(bL7?DZ#t3I-fvoaziH3=mF)7&B{kbk&M|KR%+dK8L(SHwx@Lz?b;+@( z%`82%ss_!@G~fFrLhpBr2w1i{5H?80oMPkEI+`fnt?qyIS2mAS-79_~v{_{~O?X|#>=qm36C$*sQRgdc5$WR0$8 zZ8aW#Txuk*^d<3z03M6fl{5qE>3yuR8ZQrHArlMT>Pt@enMO#~r@zWk*-(uags~kV zlArMlop^~AT= zUt%pk`LZ-W#v@Yt!A2I(*p1~e$`f_GC@=iMM$W`GD{(u_lMgn^q#{!*KG^s*RLeWU zWhJzy?`4AW-v{|4Cf*OCD_n!P2hNiG2;F1RO|tqeX#BI{Jo+dV>HCoP z+~9o>Y;8!KM^}h(9-|Y+dGsL|=h49O41=>M0=}<9ydd5V0zN8@fRCsS_zr-A2>3`y zKLAcSnC1Q463&1{7V@{PpgBC7w}aQsZxuK!a2ut+gic}qF4tR8F*sL=+;5qH z-{qnletU_6_{}IvM)9k#l=Xj#>33kwJqR^IKhyOl=$P&W$m~H9^iF@n(-dX!cb=MY z6&?B8QIpJ1b-@kL3i;Imum0_;P<=+Aft$|=90laF98(kKjpYirXJ)+Jt%;B zP{P;$`F~4){o7Z*{`$ACu!x7XFRS}mDBaCtrx-8?$SI{rcVv{v{lVx?e&|jC=uQb= z_dovUbVsKuuR9WgeuV8PXgx0QY(Ng8BHhvQiQEfDck)Ab3P5*C_`3gzx<6FhZxA!| zq?fVZJZ$>SH$(kK+g)@Desc^(7VEBmj}9F$&>e9#bl(oh@ny8ueeoFd7nGdH{n_YE zUg%9`U*W${;cpcyd=M30PKCd16#h=2u=jg(qKE(cZotCo`h7g4?+(%TT!DE&j`bp2 z!%&IbUyaV>ht3p$ttsKF{^A=~UFMNS*u~S`{JtB^6jr|I_uce-vlFGe`2t`Xz!&^OK#ea{!T3own2S!C;j zsq^2B&g6&A6o9QM;j8`51&bCeS+ry^T0^Ob8U}n3lTr71N^Qaf{t6bb?hRwvp^-Ck2o!p zov=Zz*($$}sJah7Vci;}Z3O;63({5%XEu`=|FG^kCv|+FCWZx4{bS}5PSz}a0Dn+Q zp~4FFR86>|Q55Q;u-z%?sHv=nD{vjdUn~CRAr3>}U)ZTzQaMeX)Vit_?`E_f)pWnQ6h@1xFXH}Nau1$X<~*m3dG@yL zj!jqV0Hf-yLb(z5&FYtJ%(=6@y1iK)3OHSz*}kHxT}qs8Y(+}5dZN7pbn4KoS|`(< zt0w=Y0{no})U}gWwZ_$*lOwS9qm!%KXQ@e3+$m8>jjHuiSi6BKtk=dk`F}cuy#rbW_{d4AyQ6;54;z2Klue?wR!$#-*l*aqQdw-;EhYR*JusW2qUa)@%mQcqER^zUBdNElYC)hM#%kj&b zCn*O*YB8`b)uc|9v_pW^;g?u7wgK2wHBG%$(#8bqRGS660oV%Fr3MB2jL4zA1$!9S za(p*)TuOKvSQk9vos#xv;ap&_$_kdZP@OMnGX-0wt`}^HU<4-0k;u&J=v#{~OC#Tls2O7(GRhpz#vLo0qt+Tl^bR;#;J1={aY%u%Pf*y1$#j~E!cYni#k6S?CZ10Io0{4 zU@y%kw!iah!QL^4*s;!U1k-xH-TAFxTF(*Z_kw9X&vO1CnAUU5c|ov^SPSaZInJL2 z%L=x``Kw^N1>5QTk6_;s>^$f1u>5(^Er6FtPY1j<`gXwG(GkE01U@UNFAJ=yIt%n< z6?%(msQwG!!LhHPYigLR`Z4Zz#+cjvvFCCB=U9X5sCb-|DFT-YBu_MYN_<3}xT`-t z!##1=kicyM&k{H;aHqg40Uh;Tk$ozD6z;2QP6Aw4lL6dab0Oe;HFp5MSi{s=wVwst zT+4EA7xYzji;2jBSOM6Du@0&*e>swC8j6bDi z6!7LG^i+2w$8dj7ay#IxmOEUm1TCZ=CGfPCouFss{@Rv{aDR8pWq{ANyc;mudM#jm z>-zwwv{LGAtskj$)NQT*1^9{9PXm6h^|OFKZ~Y2*JRR=B+^uzZB>6N-v~~FG6zZ^N z3Um9Zz+X?H4zCETpGx|)snlfgRBEzzDm6K2DmCe!`W57y5uQt?Qj;5}2AX_qDmA%# z>fSVYqQoX|pGJKO(^&2`0&kf{eLgF2k5GO%jru${jrzPYjrvULpgye~)Mr))We@J4 zKF4(g`fTc;KBFDBK6`7O4|PzJFGz0R68NJIYVrrUf2D&u)OS*c?oR5ke)`JX3)-O&0wAv3%q&;?RxoCQDy7lcgUc@RXS>{q=ep?eIo=+ROFj+RL`XzuVv3hJEXAe$PpGn#59^ zqih{MBG$ND?C>3dKNf4eAkdvfD`Us?RTGv334O@{G-9>5a45Iz0jp5z5iCsn4d_)Msoq^|@p= z^|^XB^|?)WJ~x~CJTyDd=f|_D&vUbFee`U=F;$m(DH*m5KD!7_=A@~^!2*v+QONOF)54yroNHl!tXybeO_3!Qwmh;>P7LWh`;q4Qd0rCf zQWB_uvZwBrNUw$cH_|G7&ij!TU_Xc)jJRL_+f(<8$SPpRbrOFzMy(_2OoLJDh}vZ^ zY8_GUGZ?jws81V=T1V792BX$d^#g-Z>!^ChVAQ%wy<{+IU8PVc{yiI`*41i?!Kih$ zN(;6pMy+FNg~6zGOr0#)C9Q2$JAmEeV+CNR!N*pLY43y&`@E064^hK$-Co*lh>c$K zu{*I@aS^<6>}sfGRd>l=1hGAl3#z`VCi52m_C!8f^&P}U`rn?&o~kF56fJ3g1?NoF z2v1$93sL&>h=zECh4pK#{u}n!pIac9!#wAx>$vHmo^_b#Jax-@jWN%K>e3T6#ypp( z&Xb5;ujW=O=K!_SU>8)?I0vfl8f<-aJL0c-Cu`1+R?Tz{RTmj-uzIPpNNN|K6ZC?zjK0*JqS#MK-m*{qSMP!XZqNz*vFl%>Wh-mCDrR<_ckytUAue9&@tlLx%Ggktdunb&tWav7ZCm<8$snEc*kK zc1f%Y*z*RvHr5O5C4+q{_M&sPYIuv*kam5tPR+S z7Uy==AHs$W=cIU-+O94#SW~qXxt8&;Yy3V9StpuKKpYRwM0P^&^dm zW_k51lg9ex)hh;L{qib$n$$=*cdAB>ReuC|?o{&(_9f)GQypM&7StM(_Ph8oZb6-9 zu$SY<13S}Ttu=3P&r`b$)>E?y*yS3N^3GT9Gid`gIrn_^X@k9^W;?JiS)9AnLniHx zns>Ro)H4SAOwDz`erIuBpem({UQ+$tnmgSK)D(mLqUMvp(gt&Ck8$6jRv0W%dpxl9 z2J5Z;f_tGFFxb(x_W&C;*m!N1x=3AWuy@t=0=v#&pF-Nj>f;8x7ikx(FB(U?<0Z0Bn)LE{EJ@ z>Ij3~2)WDD@fwp7E?1jO+K<3_x!P{9XTf>7dWXgNE_JoV`7ZTQi}PLTE`zZ~SEz3r zj5WGK{n%hlle*NE>Q4sinbZsH6@#6Cw0EmU>^gHy4@SdekNUL1;`LqXTJ?~@ z+Uk3O{lH+$>wn{3r=B<1k@e35d&yw^NPDkp*re;Q4QcOH?HUtXU$4?8jpO!uwZdQ= zx7Vv9EzTR%$tLYN=yHP^HP}ngV4`ugDq_61$LXpq`Vu|$4y!eoHwcm z40b6vZ&Z(1oHwZ_OxlAD|8#FsFBFpoV!(Qv%){U`tDX!1kl)*#c8~g^VArc>5=$!XRWt5q z+V$$g)hj99h*xLmE@NyN<=?*iqv5=(I{_qsG+tkXGqb`~JiZ6>%Cgrc%@I zj7OZM(tETnQD>+09<58%QD+79t8!|kFX^-@=Td{Qe$~#>i-WpXJD)Zf(_+r^($BP9 z%sKPwAkVlnEWJ*r#hqsiM!6cNSNfn%t8wl!7}IKa+%@R%5CMX${W3R$9V&$fWJx zb4*jh*(v=~%O#zQG^Wnzxv44X^hl4?X(?x^#?&Q9OF7S3X^qaGOxj&Ncg7o?8>D|~ zxh7|~#?;SyqRo8Di2b+Z8-pi;-$g{J5K)Z-R;mjmhhn;;E-Opd{E-P$wbXSYdo!Sm z2%2TxBa}xbpgbWw zy(s0r>gS0_6!(s_pqFaf&6e61dJGS$!)>Hhy1H6Yq3*yWM!MkE|z>&iZ8fQ ze8AhCXxoF8w>yn(4_AK7S=iR4rU>U0wYKetpr6$CY~_81IE{nen@V3bV(H-i_$y=iby7x{#E8345ZIAxk`Q_yE z0H2?HVRW6_Hswm>ke+fIQs*PYIYr<+wf~e4MdztiQ=*YmT(&3C#n#d3$G#9=9MSjrlfQii3JVJYP?=Z?<%s;&`z9JjgaYw?R zktft0H4D)S3)|jN`)Bvr?kj6whU~Sqr#S!Wz8O%r`;zt#)W#~Vocz&Rr(*GpPu0#* z+^w6#--ia|4&1LK=R^hL|3t+dH9x6+UPiR85`8`zc}1jN5vf;1>J^cCMWkL4sal6UpRM_$RIS54 zQ|qwL)XIpiMgKgns@7pYsdd;-8ZpYgAD@D;(^E48L%P@C_G!#Ww@_VZvlOY@EoN!fzqQo0Vk^;fPRo#g8S8KRm(3$ zYD*<$FRc7o#eDaJ0`C|2OMxoVQ!%MZMScmMiU@f+L3ymYQz+d+St0i;Kp&5-7Rn~v zr{kN1zC|dzB2tRn@0R-y%Kg1^f4|&6Blo|Qdle;rMN~?Z`);{kA@{50ev{m9k^2h; zeo)~30)Hv6qKY|m3tTO5i@?ri)~K_&r{apb6>`4<_d6zS0=%YvlTdaU*i&(H!*03X zjno$t_sadfxZjn02CyUbj8GITI^R_-Jr%=^oh{UVg}_Y$cM04r@Lqw>2vn`)>=d{{ z;3k2)1nw4iufS&nsy4~FZ8GY$OW?f%RXZswCJSBQy#mz~p$pt4@LqvxD(Qc(_-BQ} zNzz#5q{>5aTJ+S)|BAl9s=NBo*k5ArjejnFNX;oVSJd2Gb7#$$YwoRiu;xcKKdX7V z=2tbpt@%gIYc-X%vD!(ssoLMv{=Tkj(qogV>YuG&+z?5eoH#Q1>*PC9Po*Ah{9|KR z)1szBn@(3^CM%||x7@KP$oS4iPGRwM3sDzF(Va|@niwW)eMmukSt zwj`cGrSOfdMm&9Lf=AJ;y1{`N5c7JwnvY)Hi`Di(a2^EC<={LRUdJKeJ`~(5unF*d zSs?J(C{z0djzqaBvOUU8+J8@~yZWDyJtOvQMC2N7kNyVt zKaa7L-^Hq2o>=YxTpuUpSb-Y_YMw{r{*ao}!Ly{|?SMD9=K+4XhTmav>b?$GU&qwR zb$bBk)iIyNF5w|^|51Tw#D0p@&&&PaEU0;Q)RX^R0&f%eDS^7&&&&N+1wLH=7v%GO zfm+)&4U|1j;H?5zRYWV4`m@^(SXr?E@COO%Mr-JHc5#j1uL93OUHHo}w0=Zj6mUlp{!+jh*zyY-$_qBL_>4J*a5pfo^39uf0z(xOP15BU~;CvmR3y!I{Zv=F~ z*Ma+HfvxBd7@7jx(1Tp`otc2M@gL5%p+C9kJ9BWq60@bNRtQ{!{^h8(0*`>V>f$Ua z;X16k4u0QeG49u6rghZOfG*CT?vML73*4aI1j_LOH==(!c<1IoP)QP|+XW7* zqd?y#Fay0@H6n0S&dQzz=&CGqbg*)~8TaE@O&oPLpsUV-jt-u;5uOW8T|8eS+=+9d zjw%S;1$|wdXC=HqPR_mq(8XHP2cC-nT|DvW$NeP&FNN+dp5E{*-{q)*3lE?0T{to9 z;AsiryHO7pPe%x^!b<1hsm4~^UxRu$cv7(q_t&Zn?ynPg1GXex?9CG1h+S`J zTi)Xw1bCfuFnY@MxSy%shx=LTCfv_bx8Q!Z+AZ)lQ0A%s7I+sZ^VJsxejbzs>K@!L zP+!9RLiJUF_kyxWJs|Mwpe$B<1U>}He(IaJ-%ouT_e<0xxL=~ai~AIM>~|_(t2{k& zQ{)qodm}GJUX4Vewb5@>RaVzkKN#<>*}rCUO`+zZnn!B>QnRG?#M*7O=hl9=_UYPa z!_35Si91t&Z%j6|HT5^`Y`U=N6HN~_J=!$6`M~Ct&6T?tG1~v`!TJ44i+~syV>-+g zR}o>sF!%q(6~EbDEUV9%+xcCkI;zOWIl%kp(V`v!*IO(1LzK&1DeflVAJlxZQtM*p z=cvC;X7UWoBQxM_Wus8%&4or^DLQVdd#K zq27(L+pP}3-<$B)i@yW$w+w#=;cuZ@R#{NzMhfa-{B=jatZs@vs;;hjTs?}vALH-Y zsz0j(V~?xj@%I+|4aNSfo{tq&BwkRH@HZv?sJbfdIIqPkoT)XAlfj<-_L>gopxO@S z^Z0w9_9W-mbsf&D_^X=K;WSM;$@vzpzrx=i@b^#P&(y!gnbhzWrv-mA8wQ=%8n!y~ z6I-1F@V6#$j@CyMsPg`*Dv9EKdy6{E1V_GFzxcAGXvwpgNLZ2hqh!hxyff?;e00NL_Uxf8gE=cZ_OZc{+)!pDr`D~`jEwaUjSOaw9UaW}j|p)fX?8YJLn{k0lcmbOS8@StJ~*6H z#W}3b4)%`?9-BR3bO6`m`m_Dp2FC`orHqFUjvYUk8%6B~OEOtMl$$v5xNHVC7#kYQ z8AGq?&kY{C`R#*S#w>!Lx2|0%$JOJxvCOu??8Y6VgGwXE51utXm>WA{uz!HcYUMKH z*)4+`#xhxSA{hJhp)>qkncva<*<5KGOw8h^gaobXgy`kDMdjoB&sj|ioIbP#HeS<@ z$GPAZZ7urBk%5(~H>?>%zd<`~*g9^NWGdw+>N+xWi%B=39uxtCv6K=zT6^Gx(cw)0 z01Mu0l4)wc^ZE5F?vq8h)qS_+wq&xyLz~rx9l5c=ZED?`A>^9t-#k31j@Z$^b;0V) zwr%+J6*GkOxZSi^na;7!(0vthNGqN)Ocq6C-@fc?qS3(MK!~XOu%ESGyR{?Z+te9@ zV|^<}hfYM-!pK!8WQT;r%y_?Hd~51>me*w~-jnp1=rAbPAV@Ke?5{*f(%!^5%&ZOm*P98qgWI0TDkuk7F% zm?QOCwKBJ3WQ!`9GjpqUaLRd|)RBS1vRHrzhIg=Zu7dQ|P7Ex~LUhGdPU3QQsdvIOgAY{VlZg=v3M;xLdWuW0g*! z6ZEugWCQyK)3jMPGhpdlXwLxvb-J-z8aet7TJiHbMN^uMA%js3x zTh&=&(Lzs&B9fiKaIsf|MD3w5uafcWr!w1#Q_;AvqZr^sxg)#2)39$#|H$!!$IFB< znAMgFQ7C|E$KnYlJI}P<MR|F7#3EU5{r1Zc zK2l4iN$uNWJDk!HY=Q{cguc_Q2~W%snqtTwB7{xjYlSNM_g+oH1S%KGDX6Fn08!O5 zhCfjJJcQCWJ~9N~Sw;={PY6&dYN25{E8*z=EoUOOft>=cR`&u67b{t~<>{)vGw}6; z{^6Bdaz|uxW409!d+rHem4sB>#IEoVHFx|WF8#{A++vZVxEn-Y;wlP4-W}yfa2I{8#2_>n1p-X7ZOllvLdLz%f_uMyzSVt7U>cv~)z?(a)8A4sDB3H{o6`K= zXf11^ijCXM=Q<2vZa9_^C=S_GLtf7e{r!!Q#fvv{9Z4(l-ysBsW0PgU6{Ey2wn72X5;pK z*mY9cYhs8#VVEx7nt&n?NtHN9pm^b{@r%^ivPfl3eb|$ghXlU2?cjS}|Cxbjy+!+- zTfE5=Ro07uS^T|?2CRHV&a^Kg9WAsH_y){DM>zPR+Gw!FGL{)t# z9K&~RHjiVhdLo0T8!u6<%;g5RZ5~D#IyO8QFnZ)QgMQFlnrKQaO*m|5cyPi*tWenG z88<* zI6+~TNH$g$cTUm~*AeKwo2DA%2nas8ggBU*pI(qQ7FIHyH80Q}FG2_F-YqxJ1lzkSJ8SPtp z);N~Fu^p;p)5Yu=44pd|+DkGfgh9pzM-dTc#?Lr2sLS%#4KF3+I%J@)ZxJ>R;1kOb zUnf*qX*@^h=*-!J40^DWH5N)(e#qiJEFfIlM2a!`(Su`WW(HP`4-I4M60y|sL&p00 zHft2f(mr?yLpilPcV=dMcmUmQ%itmV_w|8sXyj}&$kz>!w4Yi&o*m}h5}7=i8C<*U zj$j*?iA&XTJ>v=M{<5K9CYYlKb2)}Z%Q+Pq8buB;Ogfq<;?hL2y~*o<*sKr3t ztOLlB)zShd|bH)&c@vFma>S&Wa2%)Rr#E4nP4p^!- zX7snk)S4lQ#{087HtnZY4h(QV)uOD0!LWNI-yx%}SPrBRIBx#Li)C$XZcG2DY(g7W zdJL;GnEBN@Zhqo%1!f#n>d4H{h-9#Gb1pNCDc=jD)(?)HF?OaTtv(Zb>ariIi#>jD zbeP^ahr90Q;`Ld#rjs!*GkJL%T?@Q5mcoY3BT+~1p2^-l$MiYtPDeoHugXRe+r4aU zg{dCTk8)O?G7y8tl>R`^L~i_s;grbTo&hEF6Gn3Vrw<-G5|AN*>73hk8?f1BN;MUi zLB*!r$`(PgF7x=oErUa6BXG8YbZf*=N7L=KarF?uwsk);(5fu(!OWs ztF0YeZ*YfZ3a?#Qjs77#2!oYm=Jc1U)tRjCJIJsN`kXp!D4QEQHoIocZ(R}qDxd%|pa6YH(H3Y6 zKcqnoBrOUw4}ECU?>jSdckbP#rI=1%5=wh_e$Slw&Y3f3@66mAn&Ui7ZXH9MFRCY3 z=CJ$&rv_t{)+s+6G0yps8dIDfwMkXGizgAr%xfN|QybL$jB8Qzvvo~s9)@i#YA5qC zyOlo|wPS<1SX?U|1RScIdUkAWZF)1bBk(?9M^M7Z7;!0kXk%>+wwSrSA!uqO z4pg?d=N%$91W01Y4FQ@saznty`X9if4st`l#er!k!~|taGPe%_k~mC503{035Wvwe z4QXHuOhXPH4on4L5`(D_gQXCIr2tr5mNG0X5jF zMr^f(1fWQ90#J)BRFV}Q7Z+mO{=6NZetnb8k#{|>+06@~{)+fT#T=yomuq^{fEhWX z>RGeU{NyxupE%npqI9d?v`l3jh|ufm&+ITYRPXALuNm>-fRBv#`orDPZo_jvHrhEg zxoVq_sWs*#Dp3d?BNJw|nT`X0RXqboM`n9wPEIeB)N}Kj(x-{(r8T35NK$mY0q8~C z)P)uvU0FLny}r(S1jcet@)yvN3$rU+l$3T)PaYjL9;uOp$kK)#hsQb&$LHskrs;?1 z1YyIiBQDCbaO$|FWK%uqEXm1KU2C~G!^SNar&(jUIK9@fT%2JY%f;z6X5cx`#w{0T z+oP!-Vx4NcJe}>>U4xN6$n3X?mU=#OppL> zoP-002A^XpOelbEtoZ`y$D1#JxM{us!0I$#0C2In6UW0{XbZqB25kYL#i1<#z9_T> z3=a)$QQLbnDHJg#to1jV#vxk-!Zz8Aree(K7Xi9Enu>rW5+CMIGR~+3D|V|g#I6WX zV%QY{P8_=;kTKX5fk++fia;iYT@lDQYFPv*G3<&!C63)N@QGqK42(2(!x|QY-7pZb zAUW9KS7?}Qup5qHGfcbg_#MMgmq;9_)ZEMsF&hRLG0cVmN*uFcAYw2Z1`>5J8wMf{ zK*J##D62h=k@~ZPD2)^{9UK8LAA55)H2Wg}tD8trRyC3bZ2)%yn_g_NV9OAE{PCvr)D522aijQCc5#xl~6BgE80HB?E1 zJzGFKq_T#R>>pbnL&_$;XStL8(E*&f*Z{o};_T~cSgwSAs(k}O$3?h`qm+1P0CkA$ zMbsve z47^ach)o~P+EDfj;8e@sYb8H@h~o@M-)jh+N2m`qmcfJ8jXrSYO0`e0@_x0pkCTwi zD$1%S#!-f{+gi%l7md=kh9g&CL=Cn`*Xjo}seRqF6bNSl&mcA6lkI}6mP87~5|0jQ zy$D*%=pVT1*g#*GjDCh=twU=7`CbFZ>@`~0a}F_$z#QstR>$4G+J2uxJ&xQ}JtFph zTnRHOfgUAMR|EFABZ^#EloZaQW5l&kgTzj>SR7QAqx3cKLF6w$OVx`%y9_w$k8aU# zS3+B1<4B`5kp9gn=;h<5!4Y-H)$^@2!)dAe{mUB+l8^46ZH z$Ec;We0n@sq$iNFBD(D8L^n&lig9H%g}SDx&Et&=q&f}Vq{eAW;OZEyotE0V)Q66J zeibS4)P6`X&SU*@b$R^!AyA~%Wh*BUK8;??nYe>&vLu#FL4(+HaPt)H&Z>-i7oh>1 zilYs@fb%;6db=n*bADOJ_}akr9PGuY@*X;jG+K7H?6j19TGE`9Cv*yR-?hygMO8^? z=@H=tm)fBL)N#w{v8Kxnz-C(Pw=ShRh>+W|%wrElYgkQC`|78k0v8%(g=ZX4S5&(l zaZX=5YUdze{Tp!(Y-`mKbiWyBATl3SXCGL>)-FM4mG#Hpk^tojaZW zJ;B+~>Q|KuqEnTn?Hwsry#uxI$?Nh2f4vs!j)^{Z4AigZ^k`3Y7L3loUQ82?qlfev zmaF!8-~GmrdX#gqwkfXl2rWgis=<0B&ⅆ-J&ODZBGozuY8hP{gChj*fT*d-u{xz zv)1-G=siN;r(O@Wzg0g^buR$L6`A+(^afDC<`MA5Ij#i#qBlUVxVF?W)G9#}Y-zQx zw#@T5RZP6-2b_n0T!Ph_fmNFaRd{P+ua{wG^xQ`;R_!F7I&BgysE&2my$$5dfE)S+ z^qJKT`Z%P<{_?N)ht1dDNq*zGKmB0;XIFmvvmdF{U%WnbW>4Y6w^I4P9zFBk@QGq` zhu`A)ZTQOK3tn5MF;IRtFFlB*8UxRhi=^*ndeCqHr4FzZE7_}Yz607_m<(CB3{evjXs3>qYqy7tsdzmxsD^cR}Yh~L*5G?@Z^UsxC+&(l0+ zf`$%1@A>6R8UI+eXrmL^ml@p|G)gX_k}Wjb(0ChpZXkj;7Ik!7M|YSGCE+f&MVekCc zn7zyNr(DkXUt$oo?js1UCio|tS)ACB_YzsJ-;gzC>_v1O40$7 zgnG-Yw=DIRS#P%|t*MZ$sgz-BD$$$(?F4D#fg#z0ppiXD8rg%Ood6vKn*Fn+ zeO73nCGE2)`!YUbEI%gY$5?g@W!G7DUCOSr>^josm^LSAb4;5<+9J~yC2f&ui*2gO z@AU&M;9bhd+a{!;96A?jV?-}`$Cxv&gEq%RTcBz=KY-A87#-9x)`V>``ziBr^nu2)tIJrNO}ntK?OT1+f`FC;kPA7t4-(qK}&N-w){3m*3;%{l?~O`8y2#B`=p!x%W=~@X!DF&wk7p-i(kfe>c(GDa5`9 zV()`Mw){OWgLCT%e9}qK`^QA4Gl?@M z_~oDY<^Rr>{|AM#<-bWF8(gPs_tUvV!rQf1?b_?5(h1~b%kKbNFM~>%Afb)f`+x)J zm`FPCQ2PV$mmrxB*zp#OVD`LSF-fr4kxtkkXhLV(aTcD0D=osqcgSdEN0MVd?`1@5 z(R~t>FTmK=;a9RShwp(KG|?a!wkKK*<&2^0k$3`%4>6H#w17{CX{`geCV(H_g zl|6`n;;klV)Ik9cLKbfJ0n|hWilaf#wC(b|z2FZL*sB`S;F3M)6uc`vUrBZ#i}KAL z1kRWIN>3`02FL>Accm*}+@fH=brO0h36O8Kk2(e2&?2oAS3LFA2i{4EQ?fN@$sfD_ z8gqC@Hz#j`1P|W?&`Ay~C`MBnYV(em!aS09CmRsens7;qa#)zrG=YIM(WEe1KT7Jn z39D3>BkFM35#eQ^31M`msR)&W45w@WDpwiv{3!@5jdXkg=Ue4(Cm%P!`;&_HP?O;88PLoYr-1%^$QrV(ppZ-kF6LUw?!g706XSSHF zyy#a>x1=qlcGw;gV4=JTVK8F28AE(YjBaIG8(n-OYgZEH^7j$w$m#^KWpGF*I#Y(n z30hUl9LA?^Z-TSu1ZE$W#o%S_i43XzkqOpf$V^e; zgi?9K*y%SSdV0;#(`&G0Xc^3~TKN_``!*UW|6#J<+OWzJI$|1!6W4`eeu0-|TZXI#&7~yltaxG2SkC(XsvR~7{Je<`k?kNdizlUR4~ggRx4A~cb5r2CDe#Qzkuh%V zUk>o(3_Ljt&+Q02w;gzH)8N2`>MDOD*;mDhFg>7J5zGXB^?iy!TGg`OC-GRjZ2(L6 zD6}qxVPjry3y8M`#GD2(#OqE3uR9K2cYf1TFK&~UkJ;~|<$Fh1yAxpzVtvhu^KOK_ zyAFGIr#$t-HrT6KoDXrs#v0AsU2%5q3Ul-$^v~q*2Xh&W;+=!|L2rLUmMz=&B5dDt z*uIyy-6|PFXKK5$lv;7Sv8zFP*Yp?Ud2Wp%>OGPTAl3m@%u-??RXp1UUfP2l*{53mtp95s5sLivqKI;TwPJpugp6UrlVIWUR3-qqwp!xv1V0>w24QH^F zdd^cvu@m*;5>8?U=fg+W1?RAPn8`|L&u|_Vv%bl191tFHD`Ep1~gW(%f%N$u{dgg!%wV--Y@0snXi) zl$|}R5KlP|shiRQuuwULR%X6Bg|lOYVxJrWnhL@B86GCMIyb}K{CxlJjT`XL%)c`n z)Nk)Yr(CrJ&gQKhUS2+q<5Wr>s5U>}&u1X=@2B0M#T(?%!cVJW%D1hoe|Q<4%ERu#R?)>udPyl3J6<<-V8_@||58 zQsP=8?>pdU9M<0S8r(u1O8

)gF3n{}r%i2MpA^@|<7pDmagSdS??>;;}a9?*A%5 zwd(DU3&1CL4{^m%@5j>XgX>r)XCBwO1MGH+?-~oRn)y0vuA#*svSJ^gA6z%&&NHrV za;F{t3b<45VV#$Ja^>@ayY~qBwQVRoU6}6)wy1I+M(vI`(yp!har|+I&INqjeS(4P zFPZ`0lp|kVmV+U!wtYtWR5BQ`%{=;*3qK0aCB|M6k-Xjq!xomS>$i1y>~}EiM}93= z(Y<+bTWoRCLErag`;e^PqqG!~w1+4mFomZq0O$+d3+*v#sx4z6tV+~aF z4hX9;3U6Cv-%lFaTt#Nzt=t%sU0wh07);_R;CQE?oH)RQI4C;y_Z~?w$uB)4W*P`fkJ`Oma9M-lA#TxnJ|+;%XFm3 zRRj@4Km`R+6a|GxQ9x7>L=hBG-^Uv$7X|e}R6qqmc>n*k_c>>unF$o%=ly=)_x+y! zI_vDU_F8+dz4mRbeJ(ltgb%4QrBpe7Z@s0|UAXe!DuHhg_9A;++dbpdSE_!{aaU;L z4?4E)7|6B{XVTjyF&gzBApQnp;~N?J`AgTCdc` zP?@^t@Xs9W*7lTgI;um}O0|cSs?^lUE0JzTdKIop)k)gXdXo?#;J>}d2c7@Q)V2%A z%K!e=pd{hnqX&f4kxZc6x-b(3|F(rx4M!*(Z>guk8i-m~wKslt*W&$V``xCX$Xzkd84(Ixayv#wF>v zX!Vr`k)DuOKUggru<~zzA z&`vU@R224gvQyE4c?u)_1*R$BWT4$}p0;utq;a@Ve1DzCw1`ulr}3O{o;~J_E6=k>og`*j#7Uzivy?)gJL=s38~T-2B9o_<&Ct7)GSGv4 zatyBg=aeN|#E}2Zox(O>jq;^W#)XrU|6kWDdfc4n=~({XspG%ZGqlu*tge`InkpM1AsTUV9Dp(kk>)6rp@=kxqKrqRIUHpeAkB#-vkPf1 z9Wup`<`k287D;p5M%;0GkW3~{*s?rexx!>~*BZ=M&U2DwU7IjJtiD$(BPrIDnCj%# zA}5iICENaW{CX%V>oBIK;*U5NXe3$DnyU&5<-DeZ9(cQxUm_JUkjbnKO z3Uuo8hw_pm0)r%G#AeJn2^{Ui!JlRg9qLIvZFd3ZOL7-fUDdD82fUF{! zr-ghl$eQBhbiwOE$yA5ba3tA9PUU0{29`ezbjQi@lGy-4aw;nlYK}7LX|SA_kEtlu z6VYuB7CRAgN^vEpgVis|<;@HPD=01jYgwc~*j4TWrDQWVm85>BB=zBv)RMe*tFXw9 zrPI^F60=F#ZX+$4Bh0*p{PYYEm80_xmpsDEbSKzRBs00(!ZPeI zEht6`jNs$hppyX7i(ENOE%<-vk+p!Fxa+Y*$gH(z>#X|jAAsEbCc$e2uK>UlPIfU% z(nSy^mjF*M1%UdRO!Z`6N-y)t>29PmDJpaU71~d-_8h_@mTNZOxU#L9(#VnC9~_P8 z6@ZCZ@ma|On3x@(om`2;ob^s)o~?0Wv-8;R%AGyy0OPZrBv!>)sxdM3$)+l(o?~WW zwiBQ8W&?~Kip|mN4I+)wR-rT%pRIFYs7)-)GgQ;@>#E$#DdCp zI5}cz=o-x*MHO;{?cak<^uoA23dV24CeSEomrpU0xYrAi7m~8j#ihp z6!Vf>!AebtoQ>)r8Z?tx!IqyIF0#}<8fU%J@=n%hicp7l)5yd!C$=mP?aQ6)Hmr48 z@%lWxX6R3P63M8nYzdA8Az_9^g$1>db9PK$)39>1E&66?R;Wo)X8D<1cCvjax!TFm zC>7}*AVw~81=k1++-ObZ?3&7A@#UO~s&WJaF_cETqKWQV==ttHV-m)?(Tz?~4a5*4uu zh*p#ot!I#TU{he zjjNL*+fa%L=wX$ny80t zeLCgJp5)0k#2O&mP*S!**V_o$#`I2+MIWE#$u`BBAlp<@wn@u2qo117SfgZkz#BKi zqb1e?(Uy{;En2h{qODw$MD!w0bV6(bL?@IKouEZ0LUbY*Fo<%vZ=(q~t3v;J>#bk6 z#iqJ$Q6kpux~P@l!#s$pC%6=Fa%QgZ>YNmtggPe`*IBP(lXRVvD`Jz=nB=I^i2H_W zi?u<#t)zIH7H_YJwHrGbao<=Su?~oLloapK;+++-PGc)0?i*}MYzoAuloX$$#k(qE zU9P>LzP|{kPoYW7K8DpOnz@Na=|{@7A^gJ}mKm&ivL5?P7;VucR_$4=SB-ZW`RgWCkTETZsRpT;tI=94o9c3S2T`o6AH@!cP)z=j{yQwy$06^4T5hgB{a*0i zTBXzui*B;jM?m8bv8}?^9a^fl=(6Na)G<@XiLHZerCt zp?~);(8%te5&Ld1tQFhZR6ky|seWv0Q%myNIyH^0lONkki8_A8#6i~* z7RR<&9gs(8Vq3pQF*e7FZH0eUx!cuaM8M=K5yomw7y)OFlp@GiA_}I$CB#k7Sy3<< zttgl+X9xR(WjqX~qu^7K=j43oMz{0P)}knwY>0w+arqX2FHZvI7V8-!3TBpxf?aJW zWTIe_bQH{#JDdulV9Bb_V?l<(?vn6tMZvlV!ax+P$*d+21(Q5R6ugZ^EaysP8@CR| zb#l5ia=ddC%+@dp9^!Qm++B%+E4XC&Q7|)uQLwN#3dTkZV-c2!g6;Ow5Qu_x9U{L0&D{4W7&{`PVBPdZd2D-b(-8$@Q?{dE^1ee9 zEXCzmN-zqRa*d6~j)G5P?SU=M?{VgNQ7{ok!KaIWWu}5C*tXO@8i!HvJ6Jc%y@VzTmz^R zYpQW_IGHTx5$HbNy1fTx>0SxDbni#7m|z~jEQZ6QC<|T3Z9Ec_hcS3&83>1WfdyOt zZeDUkT;}84aJV8~k?er&g~tttS&lA08292x){A>}nK&&i&%6hLPeI&!HfwZpyjXFs zP;-j-HR8t+Ro`Sg7;>!4OuTAyu>Dp93mbIyV+-p-y z^4dBT#J#rcM_^BV>)N8~{wOekxu=_>wR41aOe_RD=A?z?&MS+}STQFht(cS9G_K!K ze$2TCc}~uUZY((;W5|s;S&!U#B^zQ+UR=Hf9BU+C0JEN8%t=YP^U5p}bGq74$i$o^ z>6nu#cNi4JoRU?a&y&NOcVoqzk77OO{ujZk1TO<{j_EtEx(LD~=C60>Rg+mwAm$`_ zjF=PmM!cBQH*TH8oVqk}*fD2iyi(tJt%_IaJFn|-=as976RXOf&+DEnV7$snV(CN# zQuE~3ur@k5<|V3}c+}i@jcV=&5k_IF&=M7|@@~Aomt}c&DjjlON84Nx0{Ez779o34 zVF03+1+mp?)_{<+bgOm9X|>u4IjiH<`o?Qbyhh)6U56X5y45xL3;kBtI7zJH((3!M zEIK*nC2E{_t-0@7tGP|9YxI5B8gt)uoD&TuVZeE=2v}A!o6qu^VngktZPp>+)WcvbW88zXop;s7M7);&ND^<71-0?Qc$3#)yh)jM!y$J?!+}e zyBhn=ReZ<6x-qO3%_g8B@^If(D-Xb+W3B49?Oz2n0*gqobmm*3e)$aFGb&v zcBSvfH4Aq+aEaz+eTB`?yCepwdru}Yzg#6;J)E*~5lnZwwR;MaZ;H$3>U)Xk z`vHNM0@6(|T2tqv!5^c}KQKCzA39SY63$b?Q~ihUUUk?dtm<8zpnF&=4>h$CuJW#} z6YL+wuPgMi6-t^mq%Z4H~mvX2?P$qT*7>?!;sDtsOc8L%~)JBtrZ&q`y966I zvGiE{#O(H2_Gs4anjGLKX6f9bdD;Rz#8_sDKE(RVK5q~36B~mcW+#6~fS(xq6N?PG z(8*#^i6&1e>QBxM$YMdW+DpvR-?S0yhQ&k7;+d$+!DO{~h*>R`S%a-6SH(M?OhSzA@=rVVwbRVAT|a+mKWLq zn~}v&tcc&8S5kB5<) zA=~|lGDiOdR}oweFbivQ?n;zp4kPhk8{Z7WY;`@8+=q*D6JbC1s-oQK1-WTBl6>)l zL5eBA5z2M07qo5-|;Ke#J6>5$$>08mj;A=26g&diV z$z`1vl7|t9RNx<(im0aQHWrAu68=G{C1E`vWK;daPn+r=l-ksiyxO*fn&=0BK1Ms` z2m^y#*}h zg_--B1Mms~pWo&j)`y+C2*TuLP~UycM3Y%f;INbA(ubWnKZ}odIyspM$I!O>pqpKr_eHz*pZ_}rt?eTX1JrpiuPOLruSzh;i2r%C6@I_WWkJ0kv z4=cGoF*DKb#5>G!XoqHR$Wt1nVI9VCXuEeDdOZuP&ttd1u@HEod2B4SJ})-;29kxE zVT|PDNJv8qK3F8{!3wq+!4+30S-rL?DG|p&kMgCzezd8Q!`qELND3 z7{5_n2%AeSGYrlQGuKax#ZXbYyiSLaxcq|(|3t4ES8-;iv2;fhoqW)L)@(cvj27W3 z|9Dvv-5E`kBY{qeCc=F1K5W&Xz`Kn(9Od7|^U*EtTAPSu8Mm_E@oQqjyKC@=}mXc}c9 zzdnB>#QZr@`k)&Es{57@zyoG-1hxwveCoxVwRz80l^)P>)EgMkYd|p1R!xad(FfgK z@h<-jBR!zI^0!b^J)pasWW76}|HYG}95WMLPJF64>7J_D&4BLGC*57Cw*jQr;)*er9@i6!%&C#nsSbdn9OL0%}QLCC8Q!0}YR zJ^-Jg55Q-*2jEg%j-@1$PJE_00H3MLHI_^21Mp?(M1r$UxfEnD)XAL@Lh%3>Yk8$XqJ;|D`h-uUq! z3n}@=4+Z6opA$K5^&3A}93#|2H`IEKrQ~}*rUdW3p9tRj!9pGN+eSu~`t{%jGsoXx=C~V-^pZa#-TN%1mqYS-cSwjNTJidbw}tT@3FoI<4eyc2 zeBB|M;lY^zE0;o>mAHMAWCCxJ$Rw7v4bNI(+IX*zSQ)KJxG`w@OtpFs1`V2oBY1_0 zqt3v!4Ojjn{el|YBf<5@xZ3o$z_$dy#fatL^T|K*{|alw`Bh5wSag%EE(MLhRuGQR z&(qM!DobKHb?>R5;k)3M1Gr73EqHtd1`K11wnezsyUH zh+EWYZgd%mM|5;ao?vvz+TF-eN0+S8r93UM~~d10_=(DT*b(0y^9$UaVMB zs5#1%h$Y!(i6zJ6vcfU)Fldqr{8&;%HC5ZQK*W{sV@XTGiY0BTA0OIOKbEwqC3&43 zEm^3EjwSCzj*}w{#F8Y~u_SFHu_P=_r>hoVC zhc~fGy@&sMOswvf5I{WuCy@>zwIpFOgVwnrq$acUKnO|l7$Kyer9()W0LRdzCWO3$ zb(j#+H+mg7oSd$X9CirF=iLr~QVBj;vl59pe4vKQhZC#J-^=TsTLI&hPO^!OYOH>8 zBbEp!$Gk+P<32Kj$8UtYL4;A*Dio&Tm0kpS7t8YOhd6`lEPq^&W<|TN!KM3BW4OS2 zLAPAbZ??e;FG@Eyj%ovqT?2v%FQW0N4lnpX&3fI~CezsJ{5PqfZfv!aY&MPUfr?I! zd5LN#ZXT71)o5XCE>D3Uyi~BE4-AJVOj6%xOroxn4|Zvy;#BVu;lIdZ@zPl<33Il5|YCdeDav%ep>H zfKxia;w0|7FwM2}U}O@BRjZ5xqo4Bd>6O0!vQf{4kC!WTB}UvFOp2M95d6nE@*YgN zH}E^wqDv;gd7$yvjI{AbIAa6;NDuO+8h?Zf1N{+hvGhl{9nc@)Y9js!N1E$~$lQk; zLZ#t`5Y=u-D@F<25E6VhMBaDZuUe^T^h59@QSLtE!*^}k$20Xu;mvjP;~}Lyk_S+h z@kp9u&4nJxgGIST9?5sXf&uhBUUEd(`7FxwNLu18+9M%P&?8~(uK%Gu64vNao)(Yf zJ08W!=~})GN@hy2NAfV}*l&2TJQAViC{w~Cp`zlEjLBtf>g3_pD;4-2iHK^dlVght zL|h5qBe5hbkHn_>UWQHeJrbK*lGn-6l7*URkL3HvadLzKkAwuM?yx+ zBVjhp;+xp_NFG6+lk=hLY0Sqe=XxZpM?4a;!6V_t^u%rYK{ zs||&WM?#YJNSJcFqrfAPtor<;VJ+`&C1?Pcg+)cXCb|g1!0V%$%xVIz z3CUx)CVrN7O=Kq6uE|5JV>wI&>-g5!u8FRW9JXuH8gJFE$%Oa>|8$!RiW8fV{|T>q z?gxxdkjGSbx?TU|HxcbPIc6p%IPr<*bbF#^Z^%;`rLCeK@d=)9@&gv;S@LbpK!aad zvX>Cm-45pYUJ5borTma877n;lH2r0 zv1K|r@@h8)pW@JN$`tLUOmR;;rMMhRNpw1K90gbND@$FvTw|k7?WS}F+?1(KY-;{7 z)*je2{2phX=cW*$oAM(Ou*_sOo8?=uz2R`vw$wfvhliVbAdG2^Z=!JLT{SWxhvAP? zTkTYd;`R9-i~gkR!%Z$=a=0lZOzo(!pf+;yaFf^I;U))0pM&Pg;U>-{SayYbv`K#d zXtTsumMDHcr1iOGZAFzn)U345G;zj(53dwgJLd>mq(Lcw>TXe4~Erc#$sRe?_|eUfX9EAF3Y zMq^QkM~fAJxH;sjuE1B8Zm`Au1I?OP4a93oir47cYb)@fr5kN=|2%VCY#hYLl@uSR z#m86RTT2(&;{I_aLIH@^6^rkJ-&d!PGpEaO=Casy>o_xp4=w5A%s3LCM&Y`yM1?-h zjN=PSpOGpdwhamK&hEu&X1(jGC1TU*qSMfoVCp6J6S{-^8Ry0Ur585xd2s-dL<3GU zy&4z^a6-D(FcOdnxX=Z>`Rym^)S&93hKx?9rvA}&G>a{D@7&y(eG8(*Sz<&>r zLuVsew-MJiwi5q1pU{))Ev)%p1RcA%{3AVu=|57T)GsW$$;MaCFqH9w=kCS{+&+uq zgy|+u_%<>bC(un~obaGr!};&X74HFZ1#{yB*@zJ*+$XdgQ5`2thJuI_NGOOCep{tf zQsRUvC-*bt<0eAQKE?@WL3Yd+0e^|IOq_uG4ux^TuZnVu;)Gv=1uOV(c*zmr;A2r< zoWSt91H(ahf^hyhYzY=|Csarq>AAOTAV>j_2=l$7X!StfdLwV{xS9!S#B15<7%6+{n`RiA&B z9NxV9x1tAK1Ysb0&}3EoN9Xagif#+Ta zKp?>v$yOpE-)QAB!vnBC^1A2efN{JzhLx4kL)DX8#EoVq-w4A=7J4Ow_s)d9Ax~+P zwu*Yh@k$tTu}=J!g?X0T=jg#+Sm;aYg@CQ`qKDGWj-!4jXEl2b2qt=n$KyJBNW>F< z^q`xa$iF~Mb+Z%lC2QU66S12(Ic6pjPQ2bk5A~YeG&`ZAhlGh98k|^zX?W>&&?tWN zKukvuzoQB{LN|KA*mk1_yS;25q6ckUkuQuM8sm*RdT5F_1)_&$C)S+*FILnnedffP z@_!<#o8IJb?bc22Eo0NktD^__6*_uo*3m<=8$C#IIhK-Wa^fu}dT7z*8XGm~=%FbP zJ+wNp*8Fp`8BQ7c}b|AXjHx{e;WfJyWqB#9o#g4%dt^uTM-q2$1L6|FT)nLDw> zi}zk#F}tSVv!^V-QB}z2NAX<&ny-?MXT+2CK7LwTHM^$Z%crdAGS!$0 z6Inu4<`K8%(w}Q(<%k;spKHBZ>aNN>>xq{9T&occe6ICc5tVlP!@zZEOV2j)c`hxH zL=-MJK{dKKt%!Ih)7%cC(Xv5%~#xE_EOM)*8rme-*Q=`woIz2|f#eHk&UtzJdZV z|Nq8IjtKh@52gEmdw>T-Sihpeuee!6>Z7M9~eS2S6K0;INp{bI%tEj(%XnmsJ6m+9iBgG19 z6n{~gaTFeNHJ|J!qvbEUt@SPE`-`uE)yetL^#kWaCD&hM%fw$K8~jCHTt4_7(L4!g zIqM1fiae(pFIq9?BYj@pTsJS#qEK zMSC%z_n>DoTjTkQrJJq&MXT9sppfwwc>=qR&E^U0dL-nV{<_(n`7*!RICAZBo4s3h zRc7)eb&By9r)YN5>`v`3;v}__-@fm1aMG$9Ub-F3^Zi9)+FyJ_j78}Bix}Ikzi79Y z?SsFl>k#=3XpVi_JT*R5`-{`!(*pkDbSE}F@35`S(r0`+xZH30G>6NB?(z4A+2iEZ z{^E3;K^=*DaM`3UN8y46T#C!F6dbU|&EvCpW>?BJHkzjW#c2V5Q6BXDm$bUHrI_dW zi$v%zz9|BhnasAaJdE8I{-SNEeKZdJMLiJ4w8k(B#~=847mZBJbYe5}Z&BOq!I+L( z@%lXe`WfZ~>Dpi90w(^VkTA8Q!h+h!Nq>>opufn0(EvxnF!`S@Ea5Mb_tV&T@%V}L z0smP%v+TzDr((0@*s?~ST-Q1|8aRy!5~)hx32juRe{#(S?Qk4gLYs?Ofqp1g&Y|~% zJkO!|io@HSL$mSjGr9T{8bcX^5$gcEkDRM;i~ ztHOEmMMly;r;f+s=$LrXFqyN9zM?*-o^8&lXItmg35A2`n@}7+>YuRAsT->FIdwgr z+5L>v7Mq>kMn0;;bLwW-T}#Af)7vJ!5=_11h6l=l^bl9}bp%<^RPShqfv z-xzB|vl@$=)q=-`wLzNnh{azH!0ImjuL(|$YlIt2lwM#s)V*MWNTLP7gr_Bg2`(Y7 zsthJ%N%4Y-0IRIa#u8*DZU+;s3?^iqk^ME+n*1tlWr7JSqb2z@F*#g*?|I+vAuiYm zydJ}}4Ojl-to|uB<`E-Yyaulgo-k$iqlPDj4woYM2&fd)(nY+2zvB9IFUFn2{oM1cUd0++e1T z$sA!Im?5Dsv|unpNjI1wPl;egSadK$YmX7k2$vnqkWg5o1T$g@E0`gp70fW3reKF@ zsSsG!8*S6 zbugo=BgZ=jGi)w{89btlU?u{{U}id30Y8{wW-yo$cKmfz;ZLrj9#$}uU}2sm_c@rc zR~QB}dNE*YykMquvvn|IHG2&ddfQ+|H@h=Gftu=OBbZ6L&DOyTGlRj5u$yL=3TAY} zOSgl0elSB!2Qzps9L6Fn5zN@_W&04!=sHCH-32qPtf*P~jKR!AqPpn_W@fle*TD>V z-yxWh;&Ln{7|cky#ztcYGkD|-tuAdT=6S&k5e74jB4C-RAegZ&wU5SOFrx>;nAXt2 z%)4o%4rZFDtqx{H@%ntT=udh0n0IWh)wSiy|@?&2iGB#dPSaJ6HZ8Hh_5%UoYTztY4qYvJ3& zkC%U7Q-{F0XDl;h(M`7cIB5J?u?+oyKrGV(=Gi8ep}WCYh7K`f89JJbW$2^Gy%a9R zZcrm01%etj6G0789n{Q(f(U9zu!0)iOQ}SgY8lhup4}v5zl(2yUysnQo3CMYuOir= zU?~7hfe)>rEOaUN4Suu}pWg{p`XAU~Zu)w7uR)drd=~u%;}q~=JL=*kN5n0!_;cap zabqG@rB!faqNgQF>Hv>>8%CFj$Fj>ap8Hs*^^m_!l2*S)yIE(IuQ|`X!sPkA?AR;1pjEKn3(h-qN94jKq`3%27Z5e3h z{Wa%K6zc{{e(&gDNozt5J6J0HO>wS9{HFLKUiVA}(P}uZyhBivvsdsEz}z9$n+dfu+Bfu6wj5zl56V9>w?4vC~P9?#0&Ou?~Gk^+v?B?p`>E6*5Ng;)? z;M;#ReKBimmNCgk-HkMTa;!vg%N9%#Wr^X*m`W{AjuqYwR@kN7LuA z@-aG{d0r?;grVSk5wJ{UwqW<8>9)1@(Kh^Ox*iK-8Dj)J;k>Ih>W`)`ptAa->7sXi zexayOx{d@nQ{}dnkR%c$3u@zqkszeb-H)cT4(p@ozNuV~xb&zbpXU)1 zDg4|y?MQ!^71JLUySn~x;B)63pEf6P+Z~qAor|qyz!iM%+|TenckVtX^bpq9doUyS z!pVd8DE}}*)w!U}!1?{>ExO58{|Op@mT${tyXafz81iyX&)tE(E!R`}w%ldt+j2<3 zr9BJlNnX}{xU^IiE-g{*($2-aflEt*|E+WV_g*K$p+&a-rsOg(yo+y2eyIkFBmO2b z-h?N>-80qwJ^*oQm!mA>vGOA?aB2_0GHkwfo!h@C_oRZ{^o@GI;1n_ieAs8vF7HZ| zf@yakFF7JEv-jw`_en_dxGpahadK49b$MC2BTBiHr^N|g;ql-Tqewfs{Qxt6277@M zyo$L_ju*=b7OKdUaDv$?ae~L>viw-`(1()>20S-ZL^W0Grt2wif-NrVZ|2z4n@W`^ z-kE;p$>x1{-+67F3Y=iOL`)k=R~~?_0V{weM?nspb3fIWFAtk0$snMLe&fAL!CuIwik}n(8i{ z;v_NQc5NDA4&>2oMRWBM?*lMi!kWP+bgJRFHRdHolIlKe#C zk*uv*1|=WzI*O=n|8ysbg~YU9!a4G4?>8As>ZiJr`l+s@`xbx{mt!gTBlqzc<}H93 zx?E$Z>H4Xz>4B%Z;PoPk>m#HrGBHhc`m> zXc*HPC*fexc~^~0$Oj=eQrqljG3T`6_4&g^f6}%4%e7hDUm=P6OBU3|3*BE{gYGX! z$G!CZbf*8~8YexH%t?MaUL%|_H| zw2ktkjeCtG4v9^jV}7&|lGVDMHI=yealVoKmM4if1aMoVwx}D}PWNMtm3Vph5+nJT zCpqS48X-A8`AyE!x=Oqt{6Qo6tS33<2O1$6(~|K@JhJs6Bl)r?Ip(JsA?bdau@YZq zywpfOjmNchuZ;OoMo2bj3pG~aF{}3)$*O8s5+AgIg_=rQs7XsUSK>{g3q?}Ku0NIC z=u9STA8Zo*lU5uS@UU`pl$~4wQwr=!ELO8vwJh4D7hl%q#dt)DKiJ5U8N0DQMtM@x z4wMgd3qIJ$mDpw_ZijjD!A4nBWNF0*8^6VJ%p+V@Mr-musla<5Jiu35BlqK&+*$5W-JQnX^z+sU%kFF5oJVqys^XNk` z&ZB|l9tKxY1bp9ycwW361bkE)0UuEv@GXRb2>3`yJ_t^EFw6aOOQ zG>2!i8N5zzi@>b{kEZlj(R23SxjG5DVke4apJoRB&K2eGx0fi0zZpfz2;R1)toNsw zo&jt2J5VF=r?z5*fm*Q3a*|Mpd& zJ;y);CwHvC;{f>pT*2SIf|X*~XH7fEk9JT1?VyCG|8M^-{q^6z^7Pk#`wFHDYF|?K z<59blJ3-)k0F(E)Vq%x0VHa30mi?X4o&3<90??fjp6<{6_vsFEmDU}d=#QflQM;2n zN#MzVNt~`1*nJ6gf8OX$e&|jC=uQbw_uo_Z?-h<4NY6?lBAJzb*o>R+2gZ%IyXfTq z%`up(PY*wBCrpT3s!-xQEx2!Uq)y0LuU%W)|Bv6 zf8pJ$4xO~EUER&!cS8pSl`r`FZhF1xN9|571<19m$kurHJeK{F(VM)`o6MfVFH+(2 z3T+*utr2m&i@)y%?StxiwnlX7kBw7B-|Yf-0CHU|u=W1b`OijY@deJ+=g(aOJMcfJF5+U%+WYZim1wX+J5>d)=nsXqC>(bx?jNv| z?1!sx9l;NxY7TysCl7J76aS*7MG^H{*-K?nyp0epkEo7vrjtmIQ~l*z0e1_$5HO;y zM{Zo*0XRa_;8sI&1=$o4gozO#{1pB7lwbZk|lTGiB6(Wp{@adl18rA<-wwWe_SWYyH{ zG)L6@W~bo+bx1R7+=cWbl8&monpyH6n_1>-&Bs=Cs%Q&aJ-LOH6Oe9HpKf8ve`tBU zrBPM3KHk!)7PPLaXq6f}jjc#&RG(>W1D!fFs;7~TsOkwXm4P2{vN~~s(>z%X14h(Y z6Ijb91wK0A?g>%#)Pyj4Aw2Q%mT79;#O{f(A*3Se?1^mkl@rL@AQZA@R(#-93Q z8!2Cs^uvJD)N_)413Xdn{&rg6m3G!x(|K&wWHqJprKZVh0boQO(z&9uQJv69ZAUuU zx{ClOt6MwCukG;o)R*A5=}|`*Qa1uyqcGS73*qm1UI8ouY@9kbRHyC)R*Ny&DV)y= zCo#^JS54kj;j9Ufvl@2;SmsP%3fO#lQ2ztOYZ6gjVM;9k)}b2k)IV!q39J@> z*;Hd&fK5`9)$x)yB3QdRS+Hw>tx_GTSFk%ot`qZ{r92F51-^%KhScyIU>)#?cS+t~ zg>$aK%F9^aJjFMl>eN)hma8iTTO`>2>LY@!5$piS-a>@dMDQ;!LD6|n2o7u7EW``J`t;n1%HtDR14Qs_y+u1OMG7W$1~TC>ferv=lR9TR$1 zFs<3~q2CF1=uB#TV(59n_6XJ!`h#E}6RbD%UxIy4u>R1W1pAv{r-uFv>%KSA2Y5;3 zRKO2MP6NClG6eXbz~?0QHGvfs7z-+1F$(yHikARisr&|ppN8>@pCi4filv=h^#anL ztEzKC>VBd8MBsl3Bu^w#7adZ^>}`&AImhg67uY2*DR8#HMFQ6WhVaEHmi&?EVMu=~ zdMu!-P6HlWeIDSh>dyjxp_;i*R(~0=rH1^+3A|XKQ%lM#m5(5I3DUj}zkv?BYJUUz zUg6PDOWiG$R|PH~#}dvIs5QAt(sv5{{kUgQ!uauoy1iG9C;ztuHrFwos{03WZ?CH^ z3#pgt+5k_EQCr$GqCVO<1o(}{Q?aUlzcCHCIsO|bqPE4eNRP(P0{m&?XF++c5&Emw z1V)>3ptlQL*hKo4rt?7A-E=YF%}tj9KGbw2;A2hK06rl+lbb(Xj@p}V0o>XAMZhbY z?*P29`Rm{rOOuP@EZ^4WFB7Rx*(B1N1a?lMKKlvWD3te1qCP{DsL%T*QJ$Ka}*d?Vm>ajrP+}!u$@xgF4uv<2%@*(>mCq zY)2aOy&aUjx`QpcrNeL0-5qSv!yUF&OY3QC_;4p}`$Q+p{ENWXJ89ea6jC~-P{YMj zsL3HysL2Uas7e2nboD#;={wi{@AfS1urEF9_Sb&nOZAs+htE!-9qy4<|4`sBrqB+5 zk@Q<)hjxpe3tNha4I#qajLJ$ z9aE{v{ZmV8qQ`KtKL40XeWKG??__~9rcsks0=Ed|lxfswbQ<+}|1|3J@oCiOGt;Qg zmxbs1)2Ppr(|mpYG>!WFYnrW(UI93#9*lR#gO-^!otmtiPE9roJZU;L8IkmP)2YMN zlD>61=g~K(a|Zoh;9JwFTOvu_rY5P|yd+nK1ClIlYm&NcPx`u@m85PLC2ie)27UB= ze@15dOYx@*G`urO4ZkO4J|Xb=BsF|f(zP?FVfzf$xO4_JJY)tnObfhl1~vTH3~G4m z3~Kn*8NWmM4+{UUz#mdC&hRySa|SgWHp&j7B;on2G zpDORbZm9n~RC{OnR15nx{)nxg_hR`x3u_23val85dGdCxF0&VTj#uV|;SMFvKPV5? zUKj4Ru>U|_xyShc@_g*4;R6s$>wgc`J`-L8Y*Rb&=c=f6SnV(vwGOMj2BX$tb*;gu zby(eQFlrsfI>q<4zVAQ%&B?Wt^ zidt8xRR*KhRq8mwE^Kb8*bVGn56c5P5nilP%)1C4AbH}t=U!jD!wiTJ4=-mg;Up}rUJ z-G4rC!WR9t;_vt}|HU}D0~TT_)6|F7XpE)IP?v7h7)zO>x^O#HsjF34r3%egdkuDO zMRjPA`nka-Rz1#s84knY<$&2z~*X9daPfq@UU*gWFwYbN?mHnrPS3P=WcbX`m~2V9y(RM zYB-+>KM~rY>Ne@xXH-26tW{%D-+)S*yaTE_)PP!LutTf5fo(L{`>I|Eou>K?c3IWG zfDLI(N;zF!Z1Qfas&`ITHyG^Bsup0Mw>SsYodN7V!}%T5KB#_fut!n*p!%)Beu2E5 z>J5WEgS?%pQo7>8%D*CSNVOa6pU4|hGc_ifrB%1dWBbx-lfl@&v^v4!99BC_-bv98 zHLUg;?2KqPuuCk?Gt{*v@5bm6&Kc@z<#YU(JZT8 zFnJTIvrbl(Z`OUZU-d3v<1{9mBWj|_JGuG;&WKuUupQM`0b6Ntj;iBK-bK})cShB) z!9H63MPPdjc31Tg&Y9{egMF`hGq4*B_UG!aIcKT63|3xqFR%vWbfBkye0Ww6g8?`$OU>c zbJTAw&U4fo7Uwyta;t71TeMfT8;mX5t7aSQQPgm*T4%6lP{X-ulfi1nb*T5L9R`~+ zt{d2h!8RiAJawtTdXaaYy4GOtMc(=9c7weidFQKp4aPBef%>VzI0i3JPZ{ib$X%#j zHP|hXyHJ(OvUOqQ{m8pWO*Gh#kav;d;}Kk?ULNr2!glgD{`iMq;QoVS;#PgtBEP`8@APmb?UA5ae(>`UXjf&Iu}k0b9= z^?QRohrCPGOB$2rT^3uryFu0vg>nvc^Mh)>$=g%+y7NJGh{3L| zQ)M4in=Q`E)iw`PWtXdK4d;V(gs{r<8kiBsp9uMtiJ3D{GlAJOMPrg z*_Eo|S7-EzYadNrLG;^(r+inBG%AqMk~z zzUM;R)jpzzhcw1r?PKcNvo*$D?GtL#1sdb7_9^uvs7g8RYB#IvKA|!0YPYCew`h#J z+HGpv*EGgm?RHgj7qP3=HL*oyUs1aZc4FnKvb)t!4R&+vsIqUW?z=VTaOH_*-&P+o z*loyrNWEgPJ;?jM+IWxVyd!pc*$>t22D_m0%(5S=@~`W>@5e4E`%ksaU^i7>UiJ%h zm%$#3U0?Qunuwc|)a}zGeRgW6%p~?r!o>yJp(42pZ{iN)V>SBXE zS@~4ii)xj4EKi5_Httq0sa=c6`E=<0jXmWrsTT~!yqDEp@n3Y_%jyk-G4B<%N4y!G z_lkN^FzuiHO}(lyb!yw|Rew{T6n8`C{at-dV`@_S>s5bOCyM`~^ZudwHKtB(zd8C3 zb+L>Bt>>%iM=}a@eXpvmr)sUK%WG`==_;`EswTRWe?5 z-s|dKgHi4cb)SqLo%e=Xe5Eh%zOt)QyeyTAwd1hC=3Vlq*na&G^KCLme2zjBTR`s$)`H(bgr^YU%myr1-BLm!J)~BZq-*~0n7LZ& zFp=F1=-@Phb&Xn-i-baYxuIW$bddA^yo4L1OzKc3I)v2QQ>ayW3C?0VwGEbOQ)pX9 zeL;Bc^vVpImfE?t1>PziO%IhQCVqQGquK zyhY$00`C@hzrcqDJ}&SV0-qN62f)9Uy#|OAx{#bX39JDH5uo~PL!!JT^sR=L^5fMb z4ejL}$n91e)Snurm(K`A8|Rg8kaEbsw!8)>Oox`Yi0lF>XSMiVtHtNKG4$Q$2g+{@ z{jcWlmfsTkOLK>sD4Y{jq~#}|H@Ez@{Ql6?mY2$pQnOn+P|JZWua%&inA}xo72ULCQZZ#vcwDqWP$T_0*r0}_+lUn=3?+@*0{k$_+ zeK~k;41Kiq!f=&ySL+AEi`5aWp9!x}C$-)kUZ=>pPF>#m%kYh%Z@2y?+#C9F>+^tr zYW-8V#d)pucc2uL~OM?blZeWkbB#NDd;6J7_rZDP1`w)*nKMCIe5Ic*EW zi27l-JtDhDWcP^F9^v03{CkA|3Mn(>e7J2~^nBQ)BRZgNZkryx#ra0t?C3|GC)*ZA z?{@yyc1-kASntf}Rbrp(g!9uvxm74LWXvp3d)m7(Td3!L0>2{gUX%Najt=#B=(&!C z;Ri*-$EEhiofkXKuihQ{N5=_~1*)v`(&|Um1ru(n{;AmZ2{obfm*FSW$<+&C&%ZQ( zyZW!rQJp`iehsoesXjimqw`mQy0718d8WFm?3f9^uMU-6*ZJq_8H(p(GZZ7~8H#6J zzm<|>WsJ0AWhYm+)Vv^b;X$$0gJP=(#a0iBtsWFxJt($%MRa~eIA0OYSA_Ew;e16n zUlGoZGR~Segufi)ygdAdNWCFaZ-~?zBK3wyyD{4aQ@tP2OydJZxBRUbY=FDgpX38(avxTx)C@X}rPAD6NvQ;Q23Z-8tgF>lP z$El=KsZLaL0Jo`yfc5uW6li|2ek-Y{1s)b9Y-s`r7?ryd5}Uu6LgQ#Sx^0q3(K)mKj0^U8lx zHpjV1-~$4mDt{LAr^>TsS5-VK6cr{#g|lUwE6c*AeE)6R0LguE4zl?-QsdlKzjf*UJ>1Rjeu>SAHO#M?9hYH<5{zk5x{pdaf!Qy*PSJ z^p5BsqpwF*b-22*dO~$ubyxL_>gCl3RvubC2Ua$$xvlUCCg3@>iCEVrVZ=_x zQ)+GM0Qe9q!F?dOS0PY;A$&04Kf;Frz7^*2dv$~dZ*v768DVa(z@fZLYJTP8u9|NHK2*cpAJ;qt_-qZ!S>O=)k2oQGt8Mzl3rw5va9&UFa2cEMcp_HDwXpto*Cf3Rqq?7w`iy>PBnmes*vT z<5z||f)2dXD)fF>UJ!6+cCM9+sntwlPD5fB1(Jkm9|lZU7ehpcB5K?^x*=J#MAf=zHm&q z2{nY&QGgEC(*2R%3drvqAAt0+fDWE;JP_#<03G!n)EUB>zZ&V2QD+Em;H*Wu7d3~} zDS!@kfrF7w3EYnQ9o#!3+#yd~4hTFQx;W}IfrIKu@b3h4aBt}-q|<;7o{+>-n0T&m z3({G2G}0pi&xBr%8Wp%pp1*{jgxo#Q&cXgdn8(x7cm@y9QRhHMJb?!2;7$Rb$$X!{ z^Rb^e*gN?A*oDy7Q5Oij2+yO2@B|~_CAdfDz?Ucd0CuVn&c;ti`ZDMnQXd3#@C0KT z=?@9~Ftm2?j3(hnpmhi*q*1paJq-Uy63;Yx) zv((K3KL^Te^?9Uct6Pztqiz@YMNsCd{}A{UQ0A$xB0W#th4g%NufTgiS)jft@IFuy z7^RPt|Ev78@b%%_!w-aC4~HU^k@1n;k@rRZT3H`WNB2g*9{ol1>FBuXh1J>WtE+FT zzNfmbrmg0n@u|8G)%`KPtbTL-@%1;>-&_Ac{h#V98^$-hr(t))xeeue8SUBs_~DCk zi-4#4Fpq;=Q56;zOl|L9RPig|g|aV+tX2ocHcOmlkmexPH9+r6!`RLpY)4 zugbM9c6lK+dm{M|5us=B%n*LlvAQJjn}OdOfR)IzM zEyiyNeoOINhF>>+`{6fFEiXSu<-_NwNAa5$`GNXjhthq0nj3x75S9{vjpwQ@jDa0^Xo=K=f?&@*W-6HeqV`= zhT7uKs}=aI$8Ssguj<}-F7z^fZ{QbATokIRe@m^y3G(5%ei7HN;rdTp%NpKN0}Y`N zdmaB)9G>nU9ZaoMhY$2+(%JN>BXd`uJ(@|)J-m0QcYA7QYG`Ecn%=(CM~AnhGG`9- zrLtB=|KOn7pmUGu9UUAgW?4HpfD-n-aJ4U`?E}yHT_dTX>_B=bt2V4n4~_H=45czh z4yQ7`BSPFqnq7>v&?-XAWT~?6jhqXcrv|gCu!OalRPRXY$js5h{kU%G&Gha}jifTg zj0dMiHm9<~XkDtPkc|V`u`@Si(y+nEKq_kty{0#tI`Wj$Qhg&9!7E$0E>Pmy(dBn?EhFg+1`&*X>cDodRF-#mZzfyZ2V=8% zIRQbdIRScUZc%x2?^$bUfl~+iVB>YYBfSdTqOC<=J=DK??Ur>Zj2raRmeWVAnoOg- zOx;EnZZYXD)RV$zFqTq6M{oBZJv^B1?PtYrn`OG%8+=~-3ddvtZVlg^*}imUaNrcR zWp{QYwNq_aH-J*Jy{8PO)FHcjPoKLsy>n-JNSP_D=k2xy$_$PThVH45MPA{OVTvdq zd-mm66OH;){Q;sL!(P!|>(&pA?o``TBR#8!2adte!pv1iX9k4C!kFGNdP=r0Gce3) zy>>7?+E24$$rGZ*=5ij8mlfaIlbE%)7TC>|_ zmA=#&dbKsOzV-ao)hzd#yJy(n1!)dz+2+i*P%FtCJ&k&XQoBYr4h)?xQ|ky9A%lmQ zj$fM|9K_a2k7Mq^DR>|QeQE>SgR!Bu$;H*q|lk`e5cu)59QK=7mk?`@#U(Z0l z&^Po88JC_RE*@-{3~kYil%5f8*`(7#!Yv7i2%{ip_70AwdV17`A*4|Bk!!Z7E%>e5 zbU0{-V>4IU|LgbX@|H6OH}&>zQD%sloeagYEr{W9OoCVMj5*F_I#?PHEWF*E_U1wb{&9 zZK(i-0$4399)FE;P3x{%#x7ou06%zi03*R$)wYcE?i?-@bBR)wTb4^Kkaf3RuMXiO zwOE?eo<7@8l!0IqM93!eoN6s+Vh($KlS%@FplLj<&_plowj@ZPa)FZkhROsGRb69v z6U8e-C_SS?18{j|){y^bA7#TVG$?0f9Nycv10f0Q-E_~$j?tZ`4C4aq6}M{?V18s_S6Dd<=2*5)p0-e|P8 zHBrUJZDx%35#5OvhbD^g{4hilEiPrHb*5XeM5=|V_(ZE{Kj%hgmo;W1likMtl1O{_oTdciV3CkcVg;EyC)82?e!xLy_MOxoesKA zN_$O=tjCP5#ak0l;326Z=Li%x>NI|lI#V{OjA;)?vT_mMWw!lt*ID1;JH&n3tLzIb zo_ZTF+rN84fW5E43l6OQUI{RoXTU6UgkLVI4f`h}Bk5r^D#s<_C|Tp!4XCXJR)nP( z*tbONJ($Ls0E5h7-$Bfl9H1pep>g>TT8?1BnQP)zgail%G8j?^@igbGbmsKcBlxt* zDWjOHu1M-s<0Y!q*=%a(DT9a}M+Q?qqf1_w@?zcMOjBcV#z6yvsWCILL*Z;@RG*6# z%Oa#7?j71)oPpWeKiW4^oUt}NygM_neMgC`tr?sU?d-Kp;I?cn`WB~-esP{{^w~^S z9g!Lx$@C7w0h7a;?8e@q?W6EVi$vB9^ll%*o;c8##l$&fbo+K5a`>==O-w!NK*r`ciT{g2~jg{)|y31N_t)Gz|s^yu~-ep^-)xxjY#y0X8gXFfuGxWcl9Y>@a%HW=6c zIXr!4im?vPokju~D^@P(!M?#QO{5r6AD$Z7k?vnJIxvWXMubo+R*v-aoT5=6i+kW0 z3}n@c?2h#4U_VA%Uuxx&o*pm`44rA__J)3v7OEAanL(x&$(qT+;L&Av`-iT~T&z~4 z`*B2w8HA{slqG6~Uiw6MsT>HHmFDnNHp}>E1=mDFqsTJDq{E5=E=?p`w>uJX*dP)# z$0!a-`%xqfq0?mDPxqeRu`5!$NbglEuxeu_5jjN=31u+HaT+evKFp)DMi7tkp#RV; z*17_GE+X4A)S>!tg2hP*>(YHJQ@m?gE>ivMkkx1P4vfeVqPvV(boh5GR*v@cboG)e zl|eJuUua6->GaY|l_Q;M$($N2V!?bRYyW)3&czg7-QPQmqKzZDeu%p0xRZklL9Ey7 zh+apQE>>I9`omIc-GId9y_wzH7OK_#{X7u0DC=P{9RJ8isHiM92B`!toVNsHds?6E z>m8O;WW!3|VQm_FfZD**OWbdOMrhTc>470BVD%~4^dJ_0H=x>>8rnXxL$cQHz@fMt zXzFS=r-ldVmviFlp)YLo0_c4hl6FMo1fFG@<;*>?n(OYlETmu?rml9jo8~M(Ys0As zvAkW{NW!-4c7??sH-fTOnKDQHUX_7CUqupL2XT?)`A@$R`q4w#-cwUY4*6tAV1eiP z+ZG&dnOcnjWOlJjPiM~{Ti3Zc)t4GL6QQ&fwp&w&I-2pXjjZPa&YycxfbKP2(AH7t zwr!DcZNL%v0xz}DOD$6Vq|-i{TA#__pm0N$OYM=F^*e{LxMCH-of$oeJm;BZszX<2 zGQGRK!2#z2g9EKLg9W(Oax{~{jOD#6_XG)iT)%e>4-WJVz&?80^7C<{%PK^l?(4DR zIhLM{IA#iL1U3j$&~SZ~9r%pn8)IIs7&6zL2qmoj^Vp9N~hM0^~DV{bksPDi;HEx@v0xHl{+ z-W(QS**Ckx0<8BX_Jsv_QM+JcSgSC<+`=fNl%D$c+&cDIl-D?MX zvsn~8mYcNl6naSde!)S#yydW4=D(XhXmqF#`_p#J*CTklfvfM9z8xvvvezqxJJpyY zD-zmSD^MynqhdejmFwrIS1!!gq-J;^w zEh^EvMMbS!

5pmmF^k!wxC#TdN>i|^us0lc_i059fpV(n3j&0^%)WHAg-(Bq5I z{=yz#3`3Y6UyR0==<&rcLcvzP7)G!L!D6((U=S>Z0SX7fVwfU02o}Q}dJrtp7BGWg z2^#O(!!pwn*uW*5wQ5O$8J55dwpo^7WCZY~40E`1aVaf02=r{X1V$;a-4Yn5&~{5; z8DqO8ut*8pErDeUY_|lKv23>lMk%n}5?H0sc1vNOpzW5zM%s2uwONeqmck;gku2LG zvh&Esc1sIvvlJu7w$)M$mjDi{6djd%Hd_i~6xeJjj8bT`rLc&x*-}`dgw2-1B9?)c zde#7MRzmb;GFSw)TDVLGjZjSkm%%V^d-UmTP|IMn68qLN7_G1;mT|2KIHb#9H{BD< zU@_R<^u#jQt3*#M!$@+;uA;D=ZR!8r-qpp%aaG|vzym+uckayW?2ntYPI+lJnc2C2=brPObI-lr`!n|fxRNkH zD+vR+il3+hP23B_$~2J%V&$4h120b#X#iD46KS9l(nLByBhW+|U{sDM(g37vNC9Bh z{#iLtLmG%xQ9~Mtm8&65b1P9p8lY)4qybk^4QYVo;~g@Ww06wlA8*nCE)4T_pjHwF zVkKd~RyrcmqgAi-^#*)YOJ4JmnF40O|8eJv@ihWt7b0-0?pA zTR{3Eu36+^Z7j{5TStUmFIK(JBMvhsc*-MX5qXyJ7Aodo-bqQv{0?>^oCIC)i*xv} zs03+8Kye>pjv`Fi@IxfNCxy!;gw_3{D9!lYh-J)<3aVIH3c5b+VdOc9dJl2=_m)2F zH8_S{40(hpT@IAyg+d;Zsg6F8A&hAeImxlH4`qnuag-x=rPw_4x#T7YHG_cc%T&#lO*<&P|LI6P;1&~pr(@u zW6wjwal~fv4BfRIL;Sp_vA_b`G)mO&l3+}2D%f1P4LkxA)uzM9HIKZsn=GUV=yX(; z*bjQN^Bne^pzPKU%Hi2CY>(2=vUts+F4_=z!|pYaN!uP{e9KYTiwyepv~_7!^*+8T zL7P4S3be*WXjmmr0GkC+O#;KLCkt_88!K9K5-B(({D}{5#YE#Jzjek^TQQ=3sELUj_a9iav4))UwYY>qxbYfEbvHg{LG*j{L^oX6_qeg(^+L3LD*-w!S{swzr;a?rfrc0#hYRr+mU{pE5F{Mw3b z;YMD&uf&HJJvO{*L#H5=qd&cYpDydS`+W)6PnGMZ*x!WYyPrL`Z(l_&h)z+LzI3Em z^f+qvqnG9G>uNPrZ4=3G8>n6`BvHc{>}?#ad>1@$(RY^ib4Hm}?1r@LbF)Ps-EpJ# zq_(h6(|u6blLTI4uxQP?RZmN6rVrz|!}mjFs6P2oO7%k9H{sg^$@2Q=r4RT0U5c_fV{8-*c!(z97k5>+J#biScRWkbyVirhh3+{ zi?kOoqRhjCO~J#>fGS2i;=9>L>K=__KDB{(>bP;#pxTz<1CJqP3fypPz>%YBV!usl zloy|?uS^_0b>-2Q&%T>({@U?xtJqJU%^ch`@aCyl|1Z-AFWj?du&&LnH|$1yCGdsu zjuml~-NoBBgkllLFytojt&DeSx{<4!xp3QtP>c_)yg6o_Ra0ko;o4@_#qiaN%K;^$ z-ia8NWpA^)qE3xG#a17D>g$Q$$M35}C3dpGsr540$sjYH3`6s1IW=u|zhRFhp0;-- z1~)hnKWH)RC%Y>W6q=2wypcRNlDWpXsz;Bg`a(S;}3p zTk+_Z@`BAyt+3DoxwZuqqBZy>ykLViK!=90!7BqZk#HkQxh{&) zNSZw!f(QZOWKGntB2feF6}N2&#rV+5n^OyU-BWl?QNn$(sg4-CFX9*g)9$jn;weM7 zz0E2Tr+0`NCbOV`-zr;FZPc_IP10)AY2T04wI$rMXs5vQHe9=)lR@g;{So-6v)v24 zU5wNv+*kSZGvpbIr7rCK`%ixO<98Tym1(b;b?x;e^;=YU5#{-0VehhuD;@>8Kbcm0 z6fK}dwHUGI{_*@De(}o5Z#5~nnRW}we?c2Te zK@d-wrqR4vHE%XzaT5s%_a(qFd#mDSnG$ zlmOBcH~mM@gxR)WV>JmE>V<_@$!DP{%I4p1SYo)qfRyD6ST?rVg#>)t1#p8ZY6Qp@ zv%#Zmd2|gDH(~ow71>4&xZ1qh+5oO;!GNGPi!~QE0SN@!@qQsx(81@J{{SHiU51@O zepGrDUvYfZ!u*Cv1880)*su&?zaOeFEf|~Dk=5927@I*A3fqiRIv^HBZWsL&w!7z} z+mS}Iu*X4(|1-F;CSLXgZmf@i#E|#EI{h3~zfJTEh3zpj4)ux#UlSC8nXdrdBGT7#h2;F#n@oAfO9bcwB<4%x@)Zh z?M+sE0Hh6Z@YEiQqBZe}zOAsEPT(=K-HU=(Yrid`RANw458R$I#B;FGG23RULLP#mMOSPU@Q!-IZq6@B=*f5$vD_cZD{GH=to&G|iE4~^~xbZ6aoD9q!b$Lk1sd;>hk4vTJv zs7N10Hw=FUMia1r zOUFH5V)ExgCVviY88w3$7IUvs*cVZW`*O6`YYLD8|GmmF2NV+6ze!&zLF!TnsY~-wI95F%(IXE# z=QkS@e;$-Ik@X;Q2yfh59}@d+w8TZjb4lR2B=C&tmNDx4zZBp}dGMrscrKT~b2$Xh zWjdTLcwqNC(PR-PdY79tD}rg_ucliFq^}qKT>d|!o%lXj2yA0gpxtGfV;$;Cb zr9lkvx>ADIl@MN6@PhLv*2&8UEIHBoy&|k#DPaw2J>jeKS_ymCLhN0`+t?pp2YVHh z!2xbq+o74eCS#jx!W{c{J-7=7eJ&V%j(xD}5Byx8?dv6MUk|Z;J&M0RhM{ryo6(+- z70%JPaQS~QggZOQFSj5TLq_*j+TpsvEZadCfQjW98qDhg=5-CG>w)R|1I3e}T z-QxJvEg7G>!T8jb@u>?(#{n(Pl2y2_5Pb^|e#9e&y1jSL&hcOqVvn~Wa0oABAH<=A zR%?*tEnVhjNtaNTdkHxvf16( zsG{V6tC^Wzo=L~gf4e|~KPZ3t`9vVVx34ROmm9dH;(%Mph3 z=W+x;cBq4xeSHe|otR78kF_p)G3SPJad3YK&-`4C{PREhluX|y^*2`c$cH591HzvX z1PoB+N{NRsug0|mk6?D~FlXKH>6DW=$C1hvGkK(k)^SLV)d+tOnDC@ z*4YoaQo*Hgnk`n7i01W58P Date: Mon, 20 Jul 2015 17:05:47 +0530 Subject: [PATCH 03/15] wxi file --- setup/azurecmdfiles.wxi | 710 +++++++++++++++++++++------------------- 1 file changed, 374 insertions(+), 336 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index ef6737be3aae..4ac014cca846 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -44,15 +44,6 @@ - - - - - - - - - @@ -98,9 +89,6 @@ - - - @@ -159,6 +147,15 @@ + + + + + + + + + @@ -189,6 +186,9 @@ + + + @@ -198,24 +198,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -225,6 +288,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -257,15 +533,6 @@ - - - - - - - - - @@ -305,9 +572,6 @@ - - - @@ -418,15 +682,6 @@ - - - - - - - - - @@ -514,9 +769,6 @@ - - - @@ -759,15 +1011,6 @@ - - - - - - - - - @@ -825,9 +1068,6 @@ - - - @@ -860,15 +1100,6 @@ - - - - - - - - - @@ -896,9 +1127,6 @@ - - - @@ -925,15 +1153,6 @@ - - - - - - - - - @@ -955,9 +1174,6 @@ - - - @@ -1026,15 +1242,6 @@ - - - - - - - - - @@ -1077,9 +1284,6 @@ - - - @@ -1429,15 +1633,6 @@ - - - - - - - - - @@ -1492,9 +1687,6 @@ - - - @@ -1521,15 +1713,6 @@ - - - - - - - - - @@ -1566,9 +1749,6 @@ - - - @@ -1586,15 +1766,6 @@ - - - - - - - - - @@ -1658,9 +1829,6 @@ - - - @@ -1797,15 +1965,6 @@ - - - - - - - - - @@ -1851,9 +2010,6 @@ - - - @@ -1880,15 +2036,6 @@ - - - - - - - - - @@ -1940,9 +2087,6 @@ - - - @@ -2215,15 +2359,6 @@ - - - - - - - - - @@ -2365,9 +2500,6 @@ - - - @@ -2453,15 +2585,6 @@ - - - - - - - - - @@ -2525,9 +2648,6 @@ - - - @@ -2581,15 +2701,6 @@ - - - - - - - - - @@ -2701,9 +2812,6 @@ - - - @@ -2730,15 +2838,6 @@ - - - - - - - - - @@ -2862,9 +2961,6 @@ - - - @@ -3165,15 +3261,6 @@ - - - - - - - - - @@ -3228,9 +3315,6 @@ - - - @@ -3278,15 +3362,6 @@ - - - - - - - - - @@ -3407,9 +3482,6 @@ - - - @@ -3670,15 +3742,6 @@ - - - - - - - - - @@ -3820,9 +3883,6 @@ - - - @@ -3840,15 +3900,6 @@ - - - - - - - - - @@ -3912,9 +3963,6 @@ - - - @@ -4000,15 +4048,6 @@ - - - - - - - - - @@ -4054,9 +4093,6 @@ - - - @@ -4077,9 +4113,6 @@ - - - @@ -4095,7 +4128,6 @@ - @@ -4114,6 +4146,9 @@ + + + @@ -4124,18 +4159,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4146,9 +4264,6 @@ - - - @@ -4162,7 +4277,6 @@ - @@ -4199,9 +4313,6 @@ - - - @@ -4231,7 +4342,6 @@ - @@ -4302,9 +4412,6 @@ - - - @@ -4324,7 +4431,6 @@ - @@ -4335,9 +4441,6 @@ - - - @@ -4347,7 +4450,6 @@ - @@ -4356,9 +4458,6 @@ - - - @@ -4366,7 +4465,6 @@ - @@ -4389,9 +4487,6 @@ - - - @@ -4406,7 +4501,6 @@ - @@ -4520,9 +4614,6 @@ - - - @@ -4541,7 +4632,6 @@ - @@ -4550,9 +4640,6 @@ - - - @@ -4565,15 +4652,11 @@ - - - - @@ -4595,7 +4678,6 @@ - @@ -4640,9 +4722,6 @@ - - - @@ -4658,7 +4737,6 @@ - @@ -4667,9 +4745,6 @@ - - - @@ -4687,7 +4762,6 @@ - @@ -4774,9 +4848,6 @@ - - - @@ -4824,7 +4895,6 @@ - @@ -4852,9 +4922,6 @@ - - - @@ -4876,7 +4943,6 @@ - @@ -4894,9 +4960,6 @@ - - - @@ -4934,7 +4997,6 @@ - @@ -4943,9 +5005,6 @@ - - - @@ -4987,7 +5046,6 @@ - @@ -5076,9 +5134,6 @@ - - - @@ -5097,7 +5152,6 @@ - @@ -5113,9 +5167,6 @@ - - - @@ -5156,7 +5207,6 @@ - @@ -5233,9 +5283,6 @@ - - - @@ -5283,15 +5330,11 @@ - - - - @@ -5313,7 +5356,6 @@ - @@ -5341,9 +5383,6 @@ - - - @@ -5359,7 +5398,6 @@ - From fcffeff3abc01c4cc20da9471c55f794ea11ec53 Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Mon, 20 Jul 2015 17:59:26 +0530 Subject: [PATCH 04/15] wxi generated after upstream pull --- setup/azurecmdfiles.wxi | 710 +++++++++++++++++++++------------------- 1 file changed, 374 insertions(+), 336 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 381c13af438d..403104afdfa9 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -44,15 +44,6 @@ - - - - - - - - - @@ -98,9 +89,6 @@ - - - @@ -159,6 +147,15 @@ + + + + + + + + + @@ -189,6 +186,9 @@ + + + @@ -198,24 +198,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -225,6 +288,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -257,15 +533,6 @@ - - - - - - - - - @@ -305,9 +572,6 @@ - - - @@ -418,15 +682,6 @@ - - - - - - - - - @@ -514,9 +769,6 @@ - - - @@ -759,15 +1011,6 @@ - - - - - - - - - @@ -822,9 +1065,6 @@ - - - @@ -857,15 +1097,6 @@ - - - - - - - - - @@ -893,9 +1124,6 @@ - - - @@ -922,15 +1150,6 @@ - - - - - - - - - @@ -952,9 +1171,6 @@ - - - @@ -1023,15 +1239,6 @@ - - - - - - - - - @@ -1074,9 +1281,6 @@ - - - @@ -1426,15 +1630,6 @@ - - - - - - - - - @@ -1489,9 +1684,6 @@ - - - @@ -1518,15 +1710,6 @@ - - - - - - - - - @@ -1563,9 +1746,6 @@ - - - @@ -1583,15 +1763,6 @@ - - - - - - - - - @@ -1655,9 +1826,6 @@ - - - @@ -1794,15 +1962,6 @@ - - - - - - - - - @@ -1848,9 +2007,6 @@ - - - @@ -1877,15 +2033,6 @@ - - - - - - - - - @@ -1937,9 +2084,6 @@ - - - @@ -2212,15 +2356,6 @@ - - - - - - - - - @@ -2362,9 +2497,6 @@ - - - @@ -2450,15 +2582,6 @@ - - - - - - - - - @@ -2522,9 +2645,6 @@ - - - @@ -2578,15 +2698,6 @@ - - - - - - - - - @@ -2698,9 +2809,6 @@ - - - @@ -2727,15 +2835,6 @@ - - - - - - - - - @@ -2859,9 +2958,6 @@ - - - @@ -3162,15 +3258,6 @@ - - - - - - - - - @@ -3225,9 +3312,6 @@ - - - @@ -3275,15 +3359,6 @@ - - - - - - - - - @@ -3404,9 +3479,6 @@ - - - @@ -3667,15 +3739,6 @@ - - - - - - - - - @@ -3817,9 +3880,6 @@ - - - @@ -3837,15 +3897,6 @@ - - - - - - - - - @@ -3909,9 +3960,6 @@ - - - @@ -3997,15 +4045,6 @@ - - - - - - - - - @@ -4051,9 +4090,6 @@ - - - @@ -4074,9 +4110,6 @@ - - - @@ -4092,7 +4125,6 @@ - @@ -4111,6 +4143,9 @@ + + + @@ -4121,18 +4156,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4143,9 +4261,6 @@ - - - @@ -4159,7 +4274,6 @@ - @@ -4196,9 +4310,6 @@ - - - @@ -4228,7 +4339,6 @@ - @@ -4299,9 +4409,6 @@ - - - @@ -4320,7 +4427,6 @@ - @@ -4331,9 +4437,6 @@ - - - @@ -4343,7 +4446,6 @@ - @@ -4352,9 +4454,6 @@ - - - @@ -4362,7 +4461,6 @@ - @@ -4385,9 +4483,6 @@ - - - @@ -4402,7 +4497,6 @@ - @@ -4516,9 +4610,6 @@ - - - @@ -4537,7 +4628,6 @@ - @@ -4546,9 +4636,6 @@ - - - @@ -4561,15 +4648,11 @@ - - - - @@ -4591,7 +4674,6 @@ - @@ -4636,9 +4718,6 @@ - - - @@ -4654,7 +4733,6 @@ - @@ -4663,9 +4741,6 @@ - - - @@ -4683,7 +4758,6 @@ - @@ -4770,9 +4844,6 @@ - - - @@ -4820,7 +4891,6 @@ - @@ -4848,9 +4918,6 @@ - - - @@ -4872,7 +4939,6 @@ - @@ -4890,9 +4956,6 @@ - - - @@ -4930,7 +4993,6 @@ - @@ -4939,9 +5001,6 @@ - - - @@ -4983,7 +5042,6 @@ - @@ -5072,9 +5130,6 @@ - - - @@ -5093,7 +5148,6 @@ - @@ -5109,9 +5163,6 @@ - - - @@ -5152,7 +5203,6 @@ - @@ -5229,9 +5279,6 @@ - - - @@ -5279,15 +5326,11 @@ - - - - @@ -5309,7 +5352,6 @@ - @@ -5337,9 +5379,6 @@ - - - @@ -5355,7 +5394,6 @@ - From bf2bf42208c5c1db55ad890f71440a16b9b7e47a Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Mon, 20 Jul 2015 19:46:26 +0530 Subject: [PATCH 05/15] Excluding Enable-Reregister functionality --- .../AzureBackupContainerTests.ps1 | 4 +- .../ContainerAdapter.cs | 10 -- ...nableAzureBackupContainerReregistration.cs | 58 ---------- .../Commands.AzureBackup.csproj | 1 - ...ft.Azure.Commands.AzureBackup.dll-help.xml | 101 ------------------ 5 files changed, 1 insertion(+), 173 deletions(-) delete mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureBackupContainerReregistration.cs diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 index 73ec09b22dde..466e97accd08 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 @@ -40,9 +40,7 @@ function Test-AzureBackupMarsContainerScenario Assert-AreEqual $container.Name $ContainerName; Assert-AreEqual $container.ResourceGroupName $vault.ResourceGroupName; Assert-AreEqual $container.ResourceName $vault.Name; - Assert-AreEqual $container.Status $ContainerStatus; - - #Enable-AzureBackupContainerReregistration -Container $container + Assert-AreEqual $container.Status $ContainerStatus; Unregister-AzureBackupContainer -Container $container -Force diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs index 4f8ef0ee1a45..26376ea2dda3 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/ContainerAdapter.cs @@ -54,16 +54,6 @@ public IEnumerable ListMachineContainers(string friendlyN return listResponse.ListMarsContainerResponse.Value; } - /// - /// Enable container reregistration - /// - /// - /// - public void EnableMachineContainerReregistration(long containerId) - { - AzureBackupVaultClient.Container.EnableMarsContainerReregistration(containerId.ToString(), GetCustomRequestHeaders()); - } - /// /// UnRegister container /// diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureBackupContainerReregistration.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureBackupContainerReregistration.cs deleted file mode 100644 index 4ae62420fa63..000000000000 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureBackupContainerReregistration.cs +++ /dev/null @@ -1,58 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using System; -using System.Web; -using System.Collections.Generic; -using System.Collections.Specialized; -using System.Linq; -using System.Management.Automation; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Azure.Management.BackupServices.Models; -using MBS = Microsoft.Azure.Management.BackupServices; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; -using Microsoft.Azure.Commands.AzureBackup.Properties; -using Microsoft.Azure.Commands.AzureBackup.Models; -using Microsoft.Azure.Commands.AzureBackup.Helpers; -using Microsoft.Azure.Management.BackupServices; - -namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets -{ - /// - /// Enables reregistration of a machine container - /// - [Cmdlet(VerbsLifecycle.Enable, "AzureBackupContainerReregistration")] - public class EnableAzureBackupContainerReregistration : AzureBackupContainerCmdletBase - { - public override void ExecuteCmdlet() - { - ExecutionBlock(() => - { - base.ExecuteCmdlet(); - - AzureBackupContainerType containerType = (AzureBackupContainerType)Enum.Parse(typeof(AzureBackupContainerType), Container.ContainerType); - switch (containerType) - { - case AzureBackupContainerType.Windows: - case AzureBackupContainerType.SCDPM: - AzureBackupClient.EnableMachineContainerReregistration(Container.Id); - break; - default: - throw new ArgumentException("Reregistration can be enable only for machine containers."); - } - }); - } - } -} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj index 47f9c3cc3e6f..b7a89c251bc2 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -123,7 +123,6 @@ - diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml index 31d0e6ad6ee9..3308e22c0faa 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml @@ -1,106 +1,5 @@  - - - Enable-AzureBackupContainerReregistration - - Allow re-registration of the server to connect the server back to the vault and continue the backup points chain. - - - - - Enable - AzureBackupContainerReregistration - - - - When a server is destroyed, all its cloud backup points remain in the Azure Backup vault. If the server is rebuilt and given the same FQDN, it is possible to connect it back to the same vault. This will allow the server to continue taking backups and adding new backup points to the existing set - essentially continuing where it was left off in the backup chain. - To make this connection, the AzureBackupContainer has to be primed for "re-registration". Without this step, you can lose all the existing data as a part of the registration process. The commandlet tells the service that the next time the container is registered, it should continue the backup chain. - - - - Enable-AzureBackupContainerReregistration - - Container - - An object referencing the container for which re-registration is being requested - - AzureBackupContainer - - - Profile - - Non-mandatory AzureProfile input object - - AzureProfile - - - - - - Container - - An object referencing the container for which re-registration is being requested - - AzureBackupContainer - - AzureBackupContainer - - - - - - Profile - - Non-mandatory AzureProfile input object - - AzureProfile - - AzureProfile - - - - - - - - - AzureBackupContainer - - - - - This section details out the type of the objects that you can pipe to the cmdlet. - - - - - - - - None - - - - - This section details out the type of the objects that the cmdlet emits. - - - - - - - - - None - - - - - - - - Get-AzureBackupContainer From de28d93dda06cfc666e5dd6662afb041bf9cd93c Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 14:46:17 -0700 Subject: [PATCH 06/15] added aggregate format file to the psd1 --- .../Resources/Commands.Resources/AzureResourceManager.psd1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 index 88a5772a2431..adecd3733f1e 100644 --- a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 +++ b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 @@ -73,7 +73,8 @@ FormatsToProcess = @( '.\Network\Microsoft.Azure.Commands.Network.format.ps1xml', '.\Storage\Microsoft.WindowsAzure.Commands.Storage.format.ps1xml', '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.format.ps1xml', - '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.format.ps1xml' + '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.format.ps1xml', + '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml' ) # Modules to import as nested modules of the module specified in ModuleToProcess From 5c5b263f60944b7c873d05d753d2bfdc3f9bc267 Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 16:40:26 -0700 Subject: [PATCH 07/15] Improved get-usageaggregates help file description for parameters and some misspellings --- ...Commands.UsageAggregates.dll-help.Help.xml | 209 ++++++++++++++++++ 1 file changed, 209 insertions(+) create mode 100644 src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.Help.xml diff --git a/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.Help.xml b/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.Help.xml new file mode 100644 index 000000000000..d97ea8ac4901 --- /dev/null +++ b/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.Help.xml @@ -0,0 +1,209 @@ + + + + + Get-UsageAggregates + + Enables you to query aggregated Azure subscription consumption data based on when the data was reported. + + + + + Get + UsageAggregates + + + + The Get-UsageAggregation cmdlet queries aggregated Azure subscription consumption data by: +• Start and end date/time of when the usage was reported +• Aggregation granularity (ie: daily, hourly) +• Instance level detail (ie: for multiple instances of the same resource) + For consistent results, the returned data is based on when it was reported by the Azure resource. + For more information, see Azure Billing REST API Reference (https://msdn.microsoft.com/library/azure/1ea5b323-54bb-423d-916f-190de96c6a3c) at the Microsoft Developer Network.</Description> + + + + + Get-UsageAggregates + + ReportedStartTime + + Set ReportedStartTime to valid dateTime values. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. + + DateTime + + + ReportedEndTime + + Set ReportedEndTime to valid dateTime value. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. + + DateTime + + + AggregationGranularity + + Set AggregationGranularity to either ‘Daily’ or ‘Hourly’. This is an optional parameter with two discrete potential values: Daily and Hourly. As the values suggest, the former one returns the data in daily granularity whereas the latter one is hourly resolution. Daily is the default. + + AggregationGranularity + + + ShowDetails + + Set ShowDetails to either true or false. This is an optional Boolean flag, which can be configured to specify whether the caller wants instance-level details with the usage data. By default, this is set to true. By setting this flag to false, there will be fewer aggregates returned by the API, as the service will do server-side aggregation. For example, if you are running 3 websites (web1, web2, web3), by default you will get 3 line items for website consumption. If you specify showDetails = false, then we will do further aggregation and provide a single line item for website consumption for that particular time period. Setting this flag to false, collapses all the data for the same subscriptionId, meterId, usageStartTime and usageEndTime to be single data aggregate only. + + Boolean + + + ContinuationToken + + Set ContinuationToken to the continuation token string as retrieved from the response body in the previous call. This is the bookmark for progress when you are working with a large result set. Usage API responses are paged with continuation tokens, and this parameter expects the value of the token retrieved from the last call to Usage API provider. If not present, the data is retrieved from the beginning of the day/hour (based on the granularity) passed in. The recommended way to page through response is to follow the next link in the response. + + String + + + Profile + + + + AzureProfile + + + + + + ReportedStartTime + + Set ReportedStartTime to valid dateTime values. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. + + DateTime + + DateTime + + + + + + ReportedEndTime + + Set ReportedEndTime to valid dateTime value. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. + + DateTime + + DateTime + + + + + + AggregationGranularity + + Set AggregationGranularity to either ‘Daily’ or ‘Hourly’. This is an optional parameter with two discrete potential values: Daily and Hourly. As the values suggest, the former one returns the data in daily granularity whereas the latter one is hourly resolution. Daily is the default. + + AggregationGranularity + + AggregationGranularity + + + + + + ShowDetails + + Set ShowDetails to either true or false. This is an optional Boolean flag, which can be configured to specify whether the caller wants instance-level details with the usage data. By default, this is set to true. By setting this flag to false, there will be fewer aggregates returned by the API, as the service will do server-side aggregation. For example, if you are running 3 websites (web1, web2, web3), by default you will get 3 line items for website consumption. If you specify showDetails = false, then we will do further aggregation and provide a single line item for website consumption for that particular time period. Setting this flag to false, collapses all the data for the same subscriptionId, meterId, usageStartTime and usageEndTime to be single data aggregate only. + + Boolean + + Boolean + + + + + + ContinuationToken + + Set ContinuationToken to the continuation token string as retrieved from the response body in the previous call. This is the bookmark for progress when you are working with a large result set. Usage API responses are paged with continuation tokens, and this parameter expects the value of the token retrieved from the last call to Usage API provider. If not present, the data is retrieved from the beginning of the day/hour (based on the granularity) passed in. The recommended way to page through response is to follow the next link in the response. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1: Retrieves data for subscription -------------------------- + + PS C:\> + + PS C:\>Get-UsageAggregates -ReportedStartTime "5/2/2015" -ReportedEndTime "5/5/2015" + + The final command retrieves the reported usage data for the subscription between the specified dates of 5/2/2015 and 5/5/2015. + + + + + + + + + + + + + + + + Azure Billing REST API Reference + https://msdn.microsoft.com/library/azure/1ea5b323-54bb-423d-916f-190de96c6a3c + + + + \ No newline at end of file From 22ab874d68c2949d6020586624c15a5eaa1d973e Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 16:59:16 -0700 Subject: [PATCH 08/15] Tooling updated wrong help xml file --- ...Commands.UsageAggregates.dll-help.Help.xml | 209 --------- ...zure.Commands.UsageAggregates.dll-help.xml | 415 +++++++++--------- 2 files changed, 212 insertions(+), 412 deletions(-) delete mode 100644 src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.Help.xml diff --git a/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.Help.xml b/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.Help.xml deleted file mode 100644 index d97ea8ac4901..000000000000 --- a/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.Help.xml +++ /dev/null @@ -1,209 +0,0 @@ - - - - - Get-UsageAggregates - - Enables you to query aggregated Azure subscription consumption data based on when the data was reported. - - - - - Get - UsageAggregates - - - - The Get-UsageAggregation cmdlet queries aggregated Azure subscription consumption data by: -• Start and end date/time of when the usage was reported -• Aggregation granularity (ie: daily, hourly) -• Instance level detail (ie: for multiple instances of the same resource) - For consistent results, the returned data is based on when it was reported by the Azure resource. - For more information, see Azure Billing REST API Reference (https://msdn.microsoft.com/library/azure/1ea5b323-54bb-423d-916f-190de96c6a3c) at the Microsoft Developer Network.</Description> - - - - - Get-UsageAggregates - - ReportedStartTime - - Set ReportedStartTime to valid dateTime values. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. - - DateTime - - - ReportedEndTime - - Set ReportedEndTime to valid dateTime value. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. - - DateTime - - - AggregationGranularity - - Set AggregationGranularity to either ‘Daily’ or ‘Hourly’. This is an optional parameter with two discrete potential values: Daily and Hourly. As the values suggest, the former one returns the data in daily granularity whereas the latter one is hourly resolution. Daily is the default. - - AggregationGranularity - - - ShowDetails - - Set ShowDetails to either true or false. This is an optional Boolean flag, which can be configured to specify whether the caller wants instance-level details with the usage data. By default, this is set to true. By setting this flag to false, there will be fewer aggregates returned by the API, as the service will do server-side aggregation. For example, if you are running 3 websites (web1, web2, web3), by default you will get 3 line items for website consumption. If you specify showDetails = false, then we will do further aggregation and provide a single line item for website consumption for that particular time period. Setting this flag to false, collapses all the data for the same subscriptionId, meterId, usageStartTime and usageEndTime to be single data aggregate only. - - Boolean - - - ContinuationToken - - Set ContinuationToken to the continuation token string as retrieved from the response body in the previous call. This is the bookmark for progress when you are working with a large result set. Usage API responses are paged with continuation tokens, and this parameter expects the value of the token retrieved from the last call to Usage API provider. If not present, the data is retrieved from the beginning of the day/hour (based on the granularity) passed in. The recommended way to page through response is to follow the next link in the response. - - String - - - Profile - - - - AzureProfile - - - - - - ReportedStartTime - - Set ReportedStartTime to valid dateTime values. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. - - DateTime - - DateTime - - - - - - ReportedEndTime - - Set ReportedEndTime to valid dateTime value. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. - - DateTime - - DateTime - - - - - - AggregationGranularity - - Set AggregationGranularity to either ‘Daily’ or ‘Hourly’. This is an optional parameter with two discrete potential values: Daily and Hourly. As the values suggest, the former one returns the data in daily granularity whereas the latter one is hourly resolution. Daily is the default. - - AggregationGranularity - - AggregationGranularity - - - - - - ShowDetails - - Set ShowDetails to either true or false. This is an optional Boolean flag, which can be configured to specify whether the caller wants instance-level details with the usage data. By default, this is set to true. By setting this flag to false, there will be fewer aggregates returned by the API, as the service will do server-side aggregation. For example, if you are running 3 websites (web1, web2, web3), by default you will get 3 line items for website consumption. If you specify showDetails = false, then we will do further aggregation and provide a single line item for website consumption for that particular time period. Setting this flag to false, collapses all the data for the same subscriptionId, meterId, usageStartTime and usageEndTime to be single data aggregate only. - - Boolean - - Boolean - - - - - - ContinuationToken - - Set ContinuationToken to the continuation token string as retrieved from the response body in the previous call. This is the bookmark for progress when you are working with a large result set. Usage API responses are paged with continuation tokens, and this parameter expects the value of the token retrieved from the last call to Usage API provider. If not present, the data is retrieved from the beginning of the day/hour (based on the granularity) passed in. The recommended way to page through response is to follow the next link in the response. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1: Retrieves data for subscription -------------------------- - - PS C:\> - - PS C:\>Get-UsageAggregates -ReportedStartTime "5/2/2015" -ReportedEndTime "5/5/2015" - - The final command retrieves the reported usage data for the subscription between the specified dates of 5/2/2015 and 5/5/2015. - - - - - - - - - - - - - - - - Azure Billing REST API Reference - https://msdn.microsoft.com/library/azure/1ea5b323-54bb-423d-916f-190de96c6a3c - - - - \ No newline at end of file diff --git a/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.xml b/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.xml index 16236926b65d..e87a1ae94781 100644 --- a/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.xml +++ b/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.dll-help.xml @@ -1,204 +1,213 @@ - - - - - Get-UsageAggregates - - Enables you to query aggregate Azure subscription consumption data. - - - - - Get - UsageAggregates - - - - -The Get-UsageAggregation cmdlet to query aggregate Azure subscription consumption data by: -• Start and end date/time -• Aggregation granularity (ie: daily, hourly) -• Instance level detail (ie: for multiple instances of the same resource) -For more information, see Azure Billing REST API Reference (https://msdn.microsoft.com/library/azure/1ea5b323-54bb-423d-916f-190de96c6a3c) at the Microsoft Developer Network. - - - - Get-UsageAggregates - - ReportedStartTime - - - - DateTime - - - ReportedEndTime - - - - DateTime - - - AggregationGranularity - - - - AggregationGranularity - - - ShowDetails - - - - Boolean - - - ContinuationToken - - - - String - - - Profile - - - - AzureProfile - - - - - - ReportedStartTime - - - - DateTime - - DateTime - - - - - - ReportedEndTime - - - - DateTime - - DateTime - - - - - - AggregationGranularity - - - - AggregationGranularity - - AggregationGranularity - - - - - - ShowDetails - - - - Boolean - - Boolean - - - - - - ContinuationToken - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1: Retrieves data for subscription -------------------------- - - PS C:\> - - PS C:\>Get-UsageAggregates -ReportedStartTime "5/2/2015" -ReportedEndTime "5/5/2015" - - The final command retrieves the usage data for the subscription for the specificed dates of 5/2/2015 and 5/5/2015. - - - - - - - - - - - - - - - - + + + + + + Get-UsageAggregates + + Enables you to query aggregated Azure subscription consumption data based on when the data was reported. + + + + + Get + UsageAggregates + + + + + The Get-UsageAggregation cmdlet queries aggregated Azure subscription consumption data by: + • Start and end date/time of when the usage was reported + • Aggregation granularity (ie: daily, hourly) + • Instance level detail (ie: for multiple instances of the same resource) + + For consistent results, the returned data is based on when it was reported by the Azure resource. + + For more information, see Azure Billing REST API Reference (https://msdn.microsoft.com/library/azure/1ea5b323-54bb-423d-916f-190de96c6a3c) at the Microsoft Developer Network.</Description> + + + + + Get-UsageAggregates + + ReportedStartTime + + Set ReportedStartTime to valid dateTime values. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. + + DateTime + + + ReportedEndTime + + Set ReportedEndTime to valid dateTime value. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. + + DateTime + + + AggregationGranularity + + Set AggregationGranularity to either ‘Daily’ or ‘Hourly’. This is an optional parameter with two discrete potential values: Daily and Hourly. As the values suggest, the former one returns the data in daily granularity whereas the latter one is hourly resolution. Daily is the default. + + AggregationGranularity + + + ShowDetails + + Set ShowDetails to either true or false. This is an optional Boolean flag, which can be configured to specify whether the caller wants instance-level details with the usage data. By default, this is set to true. By setting this flag to false, there will be fewer aggregates returned by the API, as the service will do server-side aggregation. For example, if you are running 3 websites (web1, web2, web3), by default you will get 3 line items for website consumption. If you specify showDetails = false, then we will do further aggregation and provide a single line item for website consumption for that particular time period. Setting this flag to false, collapses all the data for the same subscriptionId, meterId, usageStartTime and usageEndTime to be single data aggregate only. + + Boolean + + + ContinuationToken + + Set ContinuationToken to the continuation token string as retrieved from the response body in the previous call. This is the bookmark for progress when you are working with a large result set. Usage API responses are paged with continuation tokens, and this parameter expects the value of the token retrieved from the last call to Usage API provider. If not present, the data is retrieved from the beginning of the day/hour (based on the granularity) passed in. The recommended way to page through response is to follow the next link in the response. + + String + + + Profile + + + + AzureProfile + + + + + + ReportedStartTime + + Set ReportedStartTime to valid dateTime values. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. + + DateTime + + DateTime + + + + + + ReportedEndTime + + Set ReportedEndTime to valid dateTime value. Please note that this datetimeOffset value represents the timestamp at which the resource usage was recorded within the Azure billing system. As Azure is a distributed system, spanning across 19 datacenters around the world, there is bound to be a delay between the resource usage time (when the resource was actually consumed) and the resource usage reported time (when the usage event reached the billing system) and callers need a predictable way to get all usage events for a subscription for a given time period. For that reason, we ask callers to query by Reported Time to ensure that they get all the usage events reported within a specific time period within the billing system. Even though the query is made with the Reported Time, the usage response is aggregated by the resource usage time, which is the useful pivot for callers. + + DateTime + + DateTime + + + + + + AggregationGranularity + + Set AggregationGranularity to either ‘Daily’ or ‘Hourly’. This is an optional parameter with two discrete potential values: Daily and Hourly. As the values suggest, the former one returns the data in daily granularity whereas the latter one is hourly resolution. Daily is the default. + + AggregationGranularity + + AggregationGranularity + + + + + + ShowDetails + + Set ShowDetails to either true or false. This is an optional Boolean flag, which can be configured to specify whether the caller wants instance-level details with the usage data. By default, this is set to true. By setting this flag to false, there will be fewer aggregates returned by the API, as the service will do server-side aggregation. For example, if you are running 3 websites (web1, web2, web3), by default you will get 3 line items for website consumption. If you specify showDetails = false, then we will do further aggregation and provide a single line item for website consumption for that particular time period. Setting this flag to false, collapses all the data for the same subscriptionId, meterId, usageStartTime and usageEndTime to be single data aggregate only. + + Boolean + + Boolean + + + + + + ContinuationToken + + Set ContinuationToken to the continuation token string as retrieved from the response body in the previous call. This is the bookmark for progress when you are working with a large result set. Usage API responses are paged with continuation tokens, and this parameter expects the value of the token retrieved from the last call to Usage API provider. If not present, the data is retrieved from the beginning of the day/hour (based on the granularity) passed in. The recommended way to page through response is to follow the next link in the response. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1: Retrieves data for subscription -------------------------- + + PS C:\> + + PS C:\>Get-UsageAggregates -ReportedStartTime "5/2/2015" -ReportedEndTime "5/5/2015" + + The final command retrieves the reported usage data for the subscription between the specified dates of 5/2/2015 and 5/5/2015. + + + + + + + + + + + + + + + + Azure Billing REST API Reference + https://msdn.microsoft.com/library/azure/1ea5b323-54bb-423d-916f-190de96c6a3c + + + \ No newline at end of file From 44a6a8c5c52e6d35aeace3c566d4b560f3956cfa Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 17:15:41 -0700 Subject: [PATCH 09/15] updated get-usageaggregates formatter --- ...ure.Commands.UsageAggregates.Format.ps1xml | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml b/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml index 835a5678e63f..ccbdb75f33cc 100644 --- a/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml +++ b/src/ResourceManager/Commerce/Commands.UsageAggregates/Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml @@ -27,11 +27,23 @@ - + Left - + + Left + + + + Left + + + + Left + + + Left @@ -42,6 +54,15 @@ + + $_.Properties.UsageStartTime + + + $_.Properties.UsageEndTime + + + $_.Properties.InfoFields.Project + $_.Properties.MeterCategory From 6a50d367ea2f53178f5b68399c5e3100cd498151 Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 17:30:18 -0700 Subject: [PATCH 10/15] Merge branch 'dev' of https://github.com/azure/azure-powershell into dev --- .../Commands.AzureBackup.Test.csproj | 186 + .../Properties/AssemblyInfo.cs | 49 + .../ScenarioTests/AzureBackupTestBase.cs | 151 + .../ScenarioTests/AzureBackupVaultTests.cs | 29 + .../ScenarioTests/AzureBackupVaultTests.ps1 | 46 + .../AzureBackupVaultScenarioTests.json | 626 +++ .../Commands.AzureBackup.Test/packages.config | 21 + .../AzureBackupClientAdapter.cs | 113 + .../AzureBackupClientAdapter/VaultAdapter.cs | 130 + .../AzureBackupCmdletBase.cs | 140 + .../AzureBackupCmdletHelpMessage.cs | 26 + .../AzureBackupVaultCmdletBase.cs | 34 + .../Cmdlets/Vault/GetAzureBackupVault.cs | 83 + .../Cmdlets/Vault/NewAzureBackupVault.cs | 70 + .../Cmdlets/Vault/RemoveAzureBackupVault.cs | 35 + .../Cmdlets/Vault/SetAzureBackupVault.cs | 55 + .../GetAzureBackupVaultCredentials.cs | 218 + .../Commands.AzureBackup.csproj | 179 + .../Helpers/VaultHelpers.cs | 54 + .../Commands.AzureBackup/Library/CertUtils.cs | 127 + .../Commands.AzureBackup/MSSharedLibKey.snk | Bin 0 -> 160 bytes ...t.Azure.Commands.AzureBackup.dll-help.psd1 | 88 + ...ft.Azure.Commands.AzureBackup.dll-help.xml | 884 ++++ ...t.Azure.Commands.AzureBackup.format.ps1xml | 42 + .../Models/AzureBackupBaseObjects.cs | 46 + .../Models/AzureBackupEnums.cs | 22 + .../Models/AzurePSBackupVault.cs | 58 + .../Models/VaultCredentials.cs | 178 + .../Properties/AssemblyInfo.cs | 35 + .../Properties/Resources.Designer.cs | 81 + .../Properties/Resources.resx | 126 + ...crosoft.WindowsAzure.Management.Common.dll | Bin 0 -> 1322440 bytes .../Resources/Security.Cryptography.dll | Bin 0 -> 47560 bytes .../Commands.AzureBackup/packages.config | 18 + .../Commands.Batch.Test.csproj | 2 +- .../ScenarioTests/BatchAccountTests.ps1 | 23 +- .../ScenarioTests/Common.ps1 | 11 +- .../ScenarioTests/FileTests.cs | 18 +- .../ScenarioTests/JobTests.cs | 62 +- .../ScenarioTests/PoolTests.cs | 139 +- .../ScenarioTests/PoolTests.ps1 | 16 +- .../ScenarioTests/ScenarioTestHelpers.cs | 53 +- .../ScenarioTests/TaskTests.cs | 84 +- .../ScenarioTests/VMTests.cs | 52 +- .../ScenarioTests/VMUserTests.cs | 10 +- .../ScenarioTests/WorkItemTests.cs | 63 +- .../TestBatchAccountKeys.json | 612 ++- ...tCreateAndRemoveBatchAccountViaPiping.json | 812 ++-- .../TestCreateExistingBatchAccount.json | 413 +- .../TestCreatesNewBatchAccount.json | 484 +-- ...stGetBatchAccountsUnderResourceGroups.json | 1187 +++-- .../TestGetNonExistingBatchAccount.json | 20 +- .../TestUpdatesExistingBatchAccount.json | 573 +-- .../TestGetRDPFileByName.json | 96 +- .../TestGetRDPFilePipeline.json | 96 +- .../TestGetTaskFileByName.json | 314 +- .../TestGetTaskFileContentByName.json | 358 +- .../TestGetTaskFileContentPipeline.json | 275 +- .../TestGetVMFileByName.json | 104 +- .../TestGetVMFileContentByName.json | 140 +- .../TestGetVMFileContentPipeline.json | 104 +- .../TestListAllTaskFiles.json | 246 +- .../TestListAllVMFiles.json | 110 +- .../TestListTaskFilePipeline.json | 280 +- .../TestListTaskFilesByFilter.json | 250 +- .../TestListTaskFilesRecursive.json | 232 +- .../TestListTaskFilesWithMaxCount.json | 250 +- .../TestListVMFilePipeline.json | 96 +- .../TestListVMFilesByFilter.json | 110 +- .../TestListVMFilesRecursive.json | 96 +- .../TestListVMFilesWithMaxCount.json | 110 +- .../TestDeleteJob.json | 693 +-- .../TestDeleteJobPipeline.json | 707 +-- .../TestGetJobByName.json | 747 +--- .../TestGetJobRequiredParameters.json | 687 +-- .../TestListAllJobs.json | 966 ++--- .../TestListJobPipeline.json | 689 +-- .../TestListJobsByFilter.json | 910 ++-- .../TestListJobsWithMaxCount.json | 914 ++-- .../TestDeletePool.json | 2009 +-------- .../TestDeletePoolPipeline.json | 2081 +-------- .../TestGetPoolByName.json | 1995 +-------- .../TestListAllPools.json | 2162 +--------- .../TestListPoolsByFilter.json | 2111 +-------- .../TestListPoolsWithMaxCount.json | 2105 +-------- .../TestNewPool.json | 2029 +-------- .../TestResizePoolByName.json | 184 +- .../TestResizePoolByPipeline.json | 182 +- .../TestStopResizePoolByName.json | 759 +++- .../TestStopResizePoolByPipeline.json | 1367 +++++- .../TestCreateTask.json | 823 +--- .../TestDeleteTask.json | 793 +--- .../TestDeleteTaskPipeline.json | 869 +--- .../TestGetTaskByName.json | 737 +--- .../TestGetTaskRequiredParameters.json | 687 +-- .../TestListAllTasks.json | 905 +--- .../TestListTaskPipeline.json | 893 +--- .../TestListTasksByFilter.json | 847 +--- .../TestListTasksWithMaxCount.json | 849 +--- .../TestGetVMByName.json | 104 +- .../TestListAllVMs.json | 335 +- .../TestListVMPipeline.json | 309 +- .../TestListVMsByFilter.json | 335 +- .../TestListVMsWithMaxCount.json | 100 +- .../TestCreateUser.json | 186 +- .../TestCreateUserPipeline.json | 200 +- .../TestDeleteUser.json | 211 +- .../TestDeleteWorkItem.json | 766 +--- .../TestDeleteWorkItemPipeline.json | 730 +--- .../TestGetWorkItemByName.json | 719 +-- .../TestListAllWorkItems.json | 709 +-- .../TestListWorkItemsByFilter.json | 763 +--- .../TestListWorkItemsWithMaxCount.json | 763 +--- .../TestNewWorkItem.json | 2073 +-------- .../Batch/Commands.Batch.Test/packages.config | 2 +- .../Commands.Batch/Commands.Batch.csproj | 2 +- .../Batch/Commands.Batch/packages.config | 2 +- .../Commands.Compute.Test.csproj | 7 +- .../Commands.Compute.Test/packages.config | 2 +- .../Commands.Compute/Commands.Compute.csproj | 24 +- .../Common/ConstantStringTypes.cs | 4 + .../Extension/DSC/ConfigurationParseResult.cs | 28 + .../DSC/ConfigurationParsingHelper.cs | 245 ++ .../DSC/DscExtensionPrivateSettings.cs | 37 + .../DSC/DscExtensionPublicSettings.cs | 100 + .../Extension/DSC/DscSettingsSerializer.cs | 178 + .../DSC/GetAzureVMDscExtensionCommand.cs | 153 + .../Extension/DSC/GetDscResourceException.cs | 26 + .../PublishAzureVMDscConfigurationCommand.cs | 460 ++ .../DSC/RemoveAzureVMDscExtensionCommand.cs | 77 + .../DSC/SetAzureVMDscExtensionCommand.cs | 434 ++ .../VirtualMachineDscExtensionBaseCmdlet.cs | 86 + .../DSC/VirtualMachineDscExtensionContext.cs | 28 + ...rosoft.Azure.Commands.Compute.dll-Help.xml | 1063 ++++- .../Models/PSComputeLongRunningOperation.cs | 6 +- .../Properties/Resources.Designer.cs | 296 ++ .../Properties/Resources.resx | 125 + .../Config/AddAzureVMDataDiskCommand.cs | 1 - .../Compute/Commands.Compute/packages.config | 2 +- .../Commands.DataFactories.Test.csproj | 41 +- .../DA_CuratedWikiData.json | 27 - .../DA_WikiAggregatedData.json | 30 - .../DA_WikipediaClickEvents.json | 29 - .../DP_Wikisamplev2json.json | 57 - .../LinkedService_CuratedWikiData.json | 8 - .../LinkedService_HDIBYOC.json | 11 - .../LinkedService_WikiAggregatedData.json | 8 - .../LinkedService_WikipediaClickEvents.json | 8 - .../Resources/linkedService.json | 11 +- .../Resources/pipeline.json | 2 +- .../Resources/table.json | 14 +- .../ScenarioTests/Common.ps1 | 8 +- .../DataFactoriesScenarioTestsBase.cs | 4 +- .../TestCreateDataFactoryGateway.json | 509 +-- ...actoryGatewayWithDataFactoryParameter.json | 541 ++- .../TestGetNonExistingDataFactoryGateway.json | 275 +- .../TestCreateDataFactory.json | 339 +- .../TestDataFactoryPiping.json | 386 +- ...teDataFactoryWithDataFactoryParameter.json | 317 +- .../TestGetNonExistingDataFactory.json | 146 +- .../TestHub.json | 367 +- .../TestHubPiping.json | 385 +- .../TestHubWithDataFactoryParameter.json | 369 +- .../TestLinkedService.json | 432 +- .../TestLinkedServicePiping.json | 450 +- ...LinkedServiceWithDataFactoryParameter.json | 378 +- .../TestTable.json | 560 +-- .../TestTablePiping.json | 616 +-- .../TestTableWithDataFactoryParameter.json | 534 +-- .../UnitTests/GetDataFactoryTests.cs | 15 +- .../UnitTests/GetHubTests.cs | 11 +- .../UnitTests/GetLinkedServiceTests.cs | 10 +- .../UnitTests/GetPipelineTests.cs | 11 +- .../UnitTests/GetTableTests.cs | 12 +- .../UnitTests/NewLinkedServiceTests.cs | 9 +- .../UnitTests/NewTableTests.cs | 9 +- .../UnitTests/SaveAzureDataFactoryTests.cs | 10 +- .../packages.config | 3 +- .../Commands.DataFactories.csproj | 9 +- .../GetAzureDataFactoryCommand.cs | 21 +- .../DataFactoryCommonUtilities.cs | 5 + .../GetAzureDataFactoryRunCommand.cs | 26 +- .../GetAzureDataFactorySliceCommand.cs | 27 +- .../DataSlices/SaveAzureDataFactoryLog.cs | 11 +- .../SetAzureDataFactorySliceStatusCommand.cs | 20 +- .../Hubs/GetAzureDataFactoryHubCommand.cs | 22 +- ...GetAzureDataFactoryLinkedServiceCommand.cs | 20 +- .../Models/BlobDownloadParameters.cs | 4 - .../Models/DataFactoryClient.DataFactories.cs | 18 +- .../Models/DataFactoryClient.DataSlices.cs | 109 +- .../Models/DataFactoryClient.Hubs.cs | 20 +- .../DataFactoryClient.LinkedServices.cs | 21 +- .../Models/DataFactoryClient.Pipelines.cs | 52 +- .../Models/DataFactoryClient.Tables.cs | 19 +- .../Models/DataFactoryClient.cs | 4 +- .../Models/DataFactoryFilterOptions.cs | 2 + .../Models/DataSliceFilterOptions.cs | 33 + .../Models/DataSliceRunFilterOptions.cs | 31 + .../Models/HubFilterOptions.cs | 2 + .../Models/LinkedServiceFilterOptions.cs | 2 + .../Models/PSDataFactory.cs | 15 + .../Models/PSDataSlice.cs | 18 +- .../Models/PSRunLogInfo.cs | 18 +- .../Commands.DataFactories/Models/PSTable.cs | 9 +- .../Models/PipelineFilterOptions.cs | 2 + .../Models/TableFilterOptions.cs | 2 + .../GetAzureDataFactoryPipelineCommand.cs | 26 +- .../Tables/GetAzureDataFactoryTableCommand.cs | 19 +- .../Commands.DataFactories/packages.config | 3 +- .../Commands.Network.Test.csproj | 45 +- ...lityTest.cs => ApplicationGatewayTests.cs} | 6 +- .../ScenarioTests/ApplicationGatewayTests.ps1 | 94 + .../ScenarioTests/NetworkInterfaceTests.cs | 14 + .../ScenarioTests/NetworkInterfaceTests.ps1 | 127 + .../ScenarioTests/RouteTableTests.cs | 57 + .../ScenarioTests/RouteTableTests.ps1 | 376 ++ .../ScenarioTests/TestDnsAvailabilityTest.cs | 29 + ...tyTest.ps1 => TestDnsAvailabilityTest.ps1} | 12 +- .../TestApplicationGatewayCRUD.json | 1124 +++++ .../TestCheckDnsAvailability.json | 64 - ...estNetworkInterfaceEnableIPForwarding.json | 2062 +++++++++ .../TestNetworkInterfaceIDns.json | 1448 +++++++ .../TestEmptyRouteTable.json | 1113 +++++ .../TestRouteHopTypeTest.json | 1064 +++++ .../TestRouteTableCRUD.json | 1682 ++++++++ .../TestRouteTableRouteCRUD.json | 1916 ++++++++ .../TestRouteTableSubnetRef.json | 1392 ++++++ .../TestDnsAvailability.json | 112 + .../Commands.Network.Test/packages.config | 2 +- .../ApplicationGatewayBaseCmdlet.cs | 78 + .../ApplicationGatewayChildResourceHelper.cs | 181 + ...icationGatewayBackendAddressPoolCommand.cs | 89 + ...pplicationGatewayBackendAddressPoolBase.cs | 52 + ...icationGatewayBackendAddressPoolCommand.cs | 59 + ...icationGatewayBackendAddressPoolCommand.cs | 71 + ...icationGatewayBackendAddressPoolCommand.cs | 51 + ...icationGatewayBackendAddressPoolCommand.cs | 88 + ...cationGatewayBackendHttpSettingsCommand.cs | 59 + ...plicationGatewayBackendHttpSettingsBase.cs | 50 + ...cationGatewayBackendHttpSettingsCommand.cs | 59 + ...cationGatewayBackendHttpSettingsCommand.cs | 41 + ...cationGatewayBackendHttpSettingsCommand.cs | 51 + ...cationGatewayBackendHttpSettingsCommand.cs | 59 + ...plicationGatewayFrontendIPConfigCommand.cs | 94 + ...eApplicationGatewayFrontendIPConfigBase.cs | 75 + ...plicationGatewayFrontendIPConfigCommand.cs | 58 + ...plicationGatewayFrontendIPConfigCommand.cs | 74 + ...plicationGatewayFrontendIPConfigCommand.cs | 51 + ...plicationGatewayFrontendIPConfigCommand.cs | 95 + ...reApplicationGatewayFrontendPortCommand.cs | 72 + ...reApplicationGatewayFrontendPortCommand.cs | 59 + ...reApplicationGatewayFrontendPortCommand.cs | 53 + ...reApplicationGatewayFrontendPortCommand.cs | 51 + ...reApplicationGatewayFrontendPortCommand.cs | 60 + ...pplicationGatewayIPConfigurationCommand.cs | 65 + ...reApplicationGatewayIPConfigurationBase.cs | 54 + ...pplicationGatewayIPConfigurationCommand.cs | 59 + ...pplicationGatewayIPConfigurationCommand.cs | 47 + ...pplicationGatewayIPConfigurationCommand.cs | 51 + ...pplicationGatewayIPConfigurationCommand.cs | 64 + .../GetAzureApplicationGatewayCommand.cs | 84 + ...reApplicationGatewayHttpListenerCommand.cs | 75 + ...AzureApplicationGatewayHttpListenerBase.cs | 94 + ...reApplicationGatewayHttpListenerCommand.cs | 59 + ...reApplicationGatewayHttpListenerCommand.cs | 57 + ...reApplicationGatewayHttpListenerCommand.cs | 51 + ...reApplicationGatewayHttpListenerCommand.cs | 74 + .../NewAzureApplicationGatewayCommand.cs | 214 + .../RemoveAzureApplicationGatewayCommand.cs | 69 + ...icationGatewayRequestRoutingRuleCommand.cs | 75 + ...pplicationGatewayRequestRoutingRuleBase.cs | 93 + ...icationGatewayRequestRoutingRuleCommand.cs | 59 + ...icationGatewayRequestRoutingRuleCommand.cs | 57 + ...icationGatewayRequestRoutingRuleCommand.cs | 51 + ...icationGatewayRequestRoutingRuleCommand.cs | 74 + .../SetAzureApplicationGatewayCommand.cs | 59 + .../Sku/AzureApplicationGatewaySkuBase.cs | 48 + .../GetAzureApplicationGatewaySkuCommand.cs | 37 + .../NewAzureApplicationGatewaySkuCommand.cs | 38 + .../SetAzureApplicationGatewaySkuCommand.cs | 47 + ...ApplicationGatewaySslCertificateCommand.cs | 82 + ...ApplicationGatewaySslCertificateCommand.cs | 59 + ...ApplicationGatewaySslCertificateCommand.cs | 66 + ...ApplicationGatewaySslCertificateCommand.cs | 50 + ...ApplicationGatewaySslCertificateCommand.cs | 81 + .../StartAzureApplicationGatewayCommand.cs | 56 + .../StopAzureApplicationGatewayCommand.cs | 56 + .../Commands.Network/Commands.Network.csproj | 101 +- .../Common/NetworkResourceManagerProfile.cs | 47 +- ...zureLoadBalancerFrontendIpConfigCommand.cs | 2 +- ...zureLoadBalancerFrontendIpConfigCommand.cs | 2 +- ...zureLoadBalancerFrontendIpConfigCommand.cs | 2 +- ...LoadBalancerInboundNatRuleConfigCommand.cs | 2 +- ...LoadBalancerInboundNatRuleConfigCommand.cs | 2 +- ...LoadBalancerInboundNatRuleConfigCommand.cs | 2 +- .../AddAzureLoadBalancerProbeConfigCommand.cs | 2 +- .../Probe/AzureLoadBalancerProbeConfigBase.cs | 2 +- .../RemoveAzureLoadBalancerProbeCommand.cs | 2 +- .../SetAzureLoadBalancerProbeConfigCommand.cs | 2 +- ...rosoft.Azure.Commands.Network.dll-Help.xml | 4 +- ...osoft.Azure.Commands.Network.format.ps1xml | 100 +- .../Models/PSApplicationGateway.cs | 93 + ... => PSApplicationGatewayBackendAddress.cs} | 11 +- .../PSApplicationGatewayBackendAddressPool.cs | 41 + ...PSApplicationGatewayBackendHttpSettings.cs | 25 + ...plicationGatewayFrontendIPConfiguration.cs | 40 + .../PSApplicationGatewayFrontendPort.cs | 23 + .../PSApplicationGatewayHttpListener.cs | 46 + .../PSApplicationGatewayIPConfiguration.cs | 32 + .../PSApplicationGatewayRequestRoutingRule.cs | 47 + .../Models/PSApplicationGatewaySku.cs | 24 + .../PSApplicationGatewaySslCertificate.cs | 25 + .../Models/PSBackendAddressPool.cs | 3 + .../Models/PSFrontendIpConfiguration.cs | 7 + .../Models/PSInboundNatRule.cs | 8 + .../Models/PSLoadBalancingRule.cs | 10 + .../Models/PSNetworkInterface.cs | 8 +- ...gs.cs => PSNetworkInterfaceDnsSettings.cs} | 6 +- .../PSNetworkInterfaceIpConfiguration.cs | 7 + .../Commands.Network/Models/PSProbe.cs | 7 + .../Commands.Network/Models/PSRoute.cs | 34 + .../Commands.Network/Models/PSRouteTable.cs | 42 + .../Models/PSSecurityRule - Copy.cs | 40 + .../Commands.Network/Models/PSSecurityRule.cs | 12 + .../Commands.Network/Models/PSSubnet.cs | 13 + .../NewAzureNetworkInterfaceCommand.cs | 30 +- ...veAzureNetworkSecurityRuleConfigCommand.cs | 2 +- .../NewAzureNetworkSecurityGroupCommand.cs | 6 +- .../SetAzureNetworkSecurityGroupCommand.cs | 2 +- .../Properties/Resources.Designer.cs | 222 +- .../Properties/Resources.resx | 53 +- ...t.cs => TestAzureDnsAvailabilityCmdlet.cs} | 7 +- .../RouteTable/GetAzureRouteTableCommand.cs | 82 + .../RouteTable/NewAzureRouteTableCommand.cs | 113 + .../RemoveAzureRouteTableCommand.cs | 64 + .../Route/AddAzureRouteConfigCommand.cs | 61 + .../RouteTable/Route/AzureRouteConfigBase.cs | 54 + .../Route/GetAzureRouteConfigCommand.cs | 57 + .../Route/NewAzureRouteConfigCommand.cs | 43 + .../Route/RemoveAzureRouteConfigCommand.cs | 51 + .../Route/SetAzureRouteConfigCommand.cs | 57 + .../RouteTable/RouteTableBaseCmdlet.cs | 79 + .../RouteTable/SetAzureRouteTableCommand.cs | 55 + ...dAzureVirtualNetworkSubnetConfigCommand.cs | 11 + .../AzureVirtualNetworkSubnetConfigBase.cs | 14 + ...wAzureVirtualNetworkSubnetConfigCommand.cs | 11 + ...tAzureVirtualNetworkSubnetConfigCommand.cs | 11 + .../Network/Commands.Network/packages.config | 3 +- .../Commands.RedisCache.Test.csproj | 14 +- .../ScenarioTests/RedisCacheTests.cs | 7 + .../ScenarioTests/RedisCacheTests.ps1 | 23 +- .../TestSetRedisCacheBugFixTest.json | 236 + .../Commands.RedisCache.Test/packages.config | 2 +- .../Commands.RedisCache.csproj | 4 +- .../Models/RedisCacheAttributes.cs | 6 +- .../RedisCacheAttributesWithAccessKeys.cs | 4 +- .../Commands.RedisCache/packages.config | 2 +- .../Implementation/NewAzureResourceCmdlet.cs | 2 +- .../ResourceManagerCmdletBase.cs | 18 + .../Implementation/SetAzureResourceCmdlet.cs | 4 +- .../AzureResourceManager.psd1 | 135 - .../Commands.Resources.csproj | 4 + .../Commands.Sql.Test.csproj | 4 + .../ScenarioTests/Common.ps1 | 11 + .../ScenarioTests/SecurityTests.cs | 31 + .../ScenarioTests/SecurityTests.ps1 | 30 + .../ScenarioTests/SqlTestsBase.cs | 7 +- ...stDatabaseDisableEnableKeepProperties.json | 777 ++-- .../TestDatabaseRetentionKeepProperties.json | 725 ++-- .../TestDatabaseStorageKeyRotation.json | 1239 ++++-- ...tabaseUpdatePolicyKeepPreviousStorage.json | 602 ++- ...aseUpdatePolicyWithEventTypeShortcuts.json | 762 ++-- ...estDatabaseUpdatePolicyWithEventTypes.json | 1160 +++-- ...TestDatabaseUpdatePolicyWithRetention.json | 616 +-- .../TestDatabaseUpdatePolicyWithStorage.json | 582 +-- ...TestDatabaseUpdatePolicyWithStorageV2.json | 1951 +++++++++ .../TestDisableDatabaseAuditing.json | 548 ++- .../TestDisableServerAuditing.json | 470 +- .../TestFailWithBadDatabaseIndentity.json | 396 +- .../TestFailWithBadServerIndentity.json | 342 +- ...iledDatabaseUpdatePolicyWithNoStorage.json | 336 +- ...FailedServerUpdatePolicyWithNoStorage.json | 328 +- .../TestFailedUseServerDefault.json | 618 +-- ...TestServerDisableEnableKeepProperties.json | 1223 ++++-- .../TestServerRetentionKeepProperties.json | 1319 +++--- .../TestServerStorageKeyRotation.json | 602 +-- ...ServerUpdatePolicyKeepPreviousStorage.json | 632 +-- ...verUpdatePolicyWithEventTypeShortcuts.json | 1674 ++----- .../TestServerUpdatePolicyWithEventTypes.json | 765 ++-- .../TestServerUpdatePolicyWithRetention.json | 494 +-- .../TestServerUpdatePolicyWithStorage.json | 473 +- .../TestUseServerDefault.json | 918 +--- .../Sql/Commands.Sql.Test/packages.config | 1 + .../Sql/Commands.Sql/Commands.Sql.csproj | 3 + .../Common/AzureEndpointsCommunicator.cs | 100 +- .../Sql/Commands.Sql/packages.config | 1 + ....Commands.Management.Storage.dll-Help.psd1 | 2 +- .../Commands.TrafficManager2.Test.csproj | 27 +- .../ScenarioTests/EndpointTests.cs | 97 +- .../ScenarioTests/EndpointTests.ps1 | 289 ++ .../ScenarioTests/ProfileTests.cs | 70 +- .../ScenarioTests/ProfileTests.ps1 | 143 +- .../{WatmV2TestsBase.cs => TestController.cs} | 14 +- .../TestAddEndpoint.json | 126 +- .../TestCreateExistingEndpoint.json | 543 +++ ...xistingEndpointFromNonExistingProfile.json | 368 ++ .../TestDeleteEndpoint.json | 124 +- .../TestDisableEndpoint.json | 603 +++ .../TestDisableNonExistingEndpoint.json | 375 ++ .../TestEnableEndpoint.json | 543 +++ .../TestEnableEndpointUsingPiping.json | 603 +++ .../TestEnableNonExistingEndpoint.json | 375 ++ .../TestEndpointCrud.json | 762 ++++ .../TestEndpointCrudPiping.json | 708 +++ ...xistingEndpointFromNonExistingProfile.json | 314 ++ ...xistingEndpointFromNonExistingProfile.json | 266 ++ ...tRemoveNonExistingEndpointFromProfile.json | 375 ++ .../TestCreateDeleteUsingProfile.json | 152 +- .../TestCrudWithEndpoint.json | 144 +- .../TestListProfilesInResourceGroup.json | 428 ++ .../TestListProfilesInSubscription.json | 428 ++ .../TestProfileCrud.json | 194 +- .../TestProfileCrudWithPiping.json | 194 +- .../TestProfileDisable.json | 488 +++ .../TestProfileDisableNonExisting.json | 319 ++ .../TestProfileDisablePipeline.json | 488 +++ .../TestProfileEnable.json | 488 +++ .../TestProfileEnableNonExisting.json | 319 ++ .../TestProfileEnablePipeline.json | 488 +++ .../TestProfileNewAlreadyExists.json | 158 +- .../TestProfileRemoveNonExisting.json | 98 +- ...dAzureTrafficManagerEndpointConfigTests.cs | 4 +- ...eAzureTrafficManagerEndpointConfigTests.cs | 4 +- .../Commands.TrafficManager2.csproj | 16 +- .../AddAzureTrafficManagerEndpointConfig.cs | 11 +- .../DisableAzureTrafficManagerEndpoint.cs | 86 + .../EnableAzureTrafficManagerEndpoint.cs | 77 + .../GetAzureTrafficManagerEndpoint.cs | 72 + .../NewAzureTrafficManagerEndpoint.cs | 108 + .../RemoveAzureTrafficManagerEndpoint.cs | 86 + .../SetAzureTrafficManagerEndpoint.cs | 38 + ...{Endpoint.cs => TrafficManagerEndpoint.cs} | 48 +- .../Models/TrafficManagerProfile.cs | 27 +- .../DisableAzureTrafficManagerProfile.cs | 75 + .../EnableAzureTrafficManagerProfile.cs | 66 + .../Profile/GetAzureTrafficManagerProfile.cs | 24 +- .../Profile/NewAzureTrafficManagerProfile.cs | 14 +- .../RemoveAzureTrafficManagerProfile.cs | 2 +- .../Properties/Resources.Designer.cs | 108 + .../Properties/Resources.resx | 36 + .../Utilities/TrafficManagerBaseCmdlet.cs | 7 +- .../Utilities/TrafficManagerClient.cs | 184 +- .../Commands.TrafficManager2/packages.config | 2 +- .../PIR.psd1 | 2 +- .../AzurePreview.psd1 | 2 +- .../Commands.ServiceManagement.Preview.csproj | 2 +- .../packages.config | 2 +- .../Commands.ServiceManagement.Test.csproj | 2 +- .../FunctionalTests/ServiceManagementTest.cs | 4 +- .../packages.config | 2 +- .../Commands.ServiceManagement.csproj | 2 +- .../DSC/RemoveAzureVMDscExtension.cs | 15 +- .../Extensions/DSC/SetAzureVMDscExtension.cs | 2 +- .../IaaS/Network/AddAzureVirtualIP.cs | 8 + .../IaaS/Network/NewAzureReservedIP.cs | 16 +- .../IaaS/Network/RemoveAzureReservedIP.cs | 11 +- .../IaaS/Network/RemoveAzureVirtualIP.cs | 8 + .../Network/SetAzureReservedIPAssociation.cs | 11 +- .../IaaS/PersistentVMs/StartAzureVM.cs | 4 +- .../IaaS/PersistentVMs/StopAzureVM.cs | 4 +- .../Properties/Resources.Designer.cs | 18 + .../Properties/Resources.resx | 6 + .../packages.config | 2 +- .../Commands.ExpressRoute/ExpressRoute.psd1 | 2 +- ...ands.ServiceManagement.Network.Test.csproj | 51 +- .../Multivip/MultivipTests.cs | 161 + .../ReservedIP/ReservedIPTest.cs | 405 ++ .../ScenarioTests/MultiVip/MultiVip.cs | 97 + .../ScenarioTests/MultiVip/MultiVipTests.ps1 | 263 ++ .../ScenarioTests/ReservedIPs/ReservedIP.cs | 104 + .../ReservedIPs/ReservedIPTests.ps1 | 247 ++ .../ExtraVipLifecycle.json | 2869 ++++++++++++ .../ExtraVipMobility.json | 3099 +++++++++++++ .../ReserveMultivipDepIP.json | 2571 +++++++++++ .../SetLbEpMultivipDep.json | 3838 +++++++++++++++++ .../AzureReservedIPSimpleOps.json | 443 ++ .../CreateVMWithReservedIP.json | 2141 +++++++++ .../RemoveReservedIPAssocSimple.json | 2053 +++++++++ .../ReserveExistingDepIP.json | 1880 ++++++++ .../SetReservedIPAssocSimple.json | 2100 +++++++++ .../TestInterfaces/TestClientProvider.cs | 63 + .../Commands.Network.Test/packages.config | 3 +- .../Commands.ServiceManagement.Network.csproj | 5 +- .../Network/Commands.Network/packages.config | 2 +- .../Commands.RemoteApp.csproj | 2 +- .../Commands.RemoteApp/packages.config | 2 +- .../Profile/ProfileClientHelper.cs | 18 + .../Websites/GetAzureWebSiteMetricsTests.cs | 9 +- .../Services/Commands.Utilities/Azure.psd1 | 2 +- .../Commands.Utilities.csproj | 4 +- .../Common/AzureTools/AzureSdkVersionInfo.cs | 3 +- .../Common/AzureTools/AzureTool.cs | 14 +- .../Common/ClientProvider.cs | 57 + .../Common/IClientProvider.cs | 34 + .../Common/ServiceConfigurationSchema.cs | 1168 +++-- .../Common/ServiceDefinitionSchema.cs | 2385 +++++----- .../Common/ServiceManagementBaseCmdlet.cs | 36 +- .../Properties/Resources.Designer.cs | 2 +- .../Properties/Resources.resx | 2 +- .../SchedulerMgmntClient.CreateJobs.cs | 2 +- .../Commands.Utilities/packages.config | 2 +- .../Services/Commands/Commands.csproj | 2 +- .../Services/Commands/packages.config | 2 +- .../Resources/MockSessions.xml | 1966 ++++----- 514 files changed, 87957 insertions(+), 53106 deletions(-) create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupVaultTests.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupVaultTests.ps1 create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupVaultTests/AzureBackupVaultScenarioTests.json create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/AzureBackupClientAdapter.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletBase.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupVaultCmdletBase.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/GetAzureBackupVault.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureBackupVault.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureBackupVault.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureBackupVault.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/VaultCredentials/GetAzureBackupVaultCredentials.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Library/CertUtils.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/MSSharedLibKey.snk create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.psd1 create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/VaultCredentials.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.Designer.cs create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.WindowsAzure.Management.Common.dll create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Security.Cryptography.dll create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/packages.config create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/ConfigurationParseResult.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/ConfigurationParsingHelper.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPrivateSettings.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPublicSettings.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscSettingsSerializer.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetDscResourceException.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/PublishAzureVMDscConfigurationCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/RemoveAzureVMDscExtensionCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/VirtualMachineDscExtensionBaseCmdlet.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/DSC/VirtualMachineDscExtensionContext.cs delete mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_CuratedWikiData.json delete mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_WikiAggregatedData.json delete mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_WikipediaClickEvents.json delete mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DP_Wikisamplev2json.json delete mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_CuratedWikiData.json delete mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_HDIBYOC.json delete mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_WikiAggregatedData.json delete mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_WikipediaClickEvents.json create mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataSliceFilterOptions.cs create mode 100644 src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataSliceRunFilterOptions.cs rename src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/{CheckDnsAvailabilityTest.cs => ApplicationGatewayTests.cs} (89%) create mode 100644 src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 create mode 100644 src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.cs create mode 100644 src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.ps1 create mode 100644 src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.cs rename src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/{CheckDnsAvailabilityTest.ps1 => TestDnsAvailabilityTest.ps1} (70%) create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayCRUD.json delete mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CheckDnsAvailabilityTest/TestCheckDnsAvailability.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceEnableIPForwarding.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceIDns.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestEmptyRouteTable.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteHopTypeTest.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableCRUD.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableRouteCRUD.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableSubnetRef.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.TestDnsAvailabilityTest/TestDnsAvailability.json create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/ApplicationGatewayBaseCmdlet.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/ApplicationGatewayChildResourceHelper.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/AddAzureApplicationGatewayBackendAddressPoolCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/AzureApplicationGatewayBackendAddressPoolBase.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/GetAzureApplicationGatewayBackendAddressPoolCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/NewAzureApplicationGatewayBackendAddressPoolCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/RemoveAzureApplicationGatewayBackendAddressPoolCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/SetAzureApplicationGatewayBackendAddressPoolCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/AzureApplicationGatewayBackendHttpSettingsBase.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/AddAzureApplicationGatewayFrontendIPConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/AzureApplicationGatewayFrontendIPConfigBase.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/GetAzureApplicationGatewayFrontendIPConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/NewAzureApplicationGatewayFrontendIPConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/RemoveAzureApplicationGatewayFrontendIPConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/SetAzureApplicationGatewayFrontendIPConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/AddAzureApplicationGatewayFrontendPortCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/GetAzureApplicationGatewayFrontendPortCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/NewAzureApplicationGatewayFrontendPortCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/RemoveAzureApplicationGatewayFrontendPortCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/SetAzureApplicationGatewayFrontendPortCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/AddAzureApplicationGatewayIPConfigurationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/AzureApplicationGatewayIPConfigurationBase.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/GetAzureApplicationGatewayIPConfigurationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/NewAzureApplicationGatewayIPConfigurationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/RemoveAzureApplicationGatewayIPConfigurationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/SetAzureApplicationGatewayIPConfigurationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/GetAzureApplicationGatewayCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/AddAzureApplicationGatewayHttpListenerCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/AzureApplicationGatewayHttpListenerBase.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/GetAzureApplicationGatewayHttpListenerCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/NewAzureApplicationGatewayHttpListenerCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/RemoveAzureApplicationGatewayHttpListenerCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/SetAzureApplicationGatewayHttpListenerCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/RemoveAzureApplicationGatewayCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/AddAzureApplicationGatewayRequestRoutingRuleCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/AzureApplicationGatewayRequestRoutingRuleBase.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/GetAzureApplicationGatewayRequestRoutingRuleCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/NewAzureApplicationGatewayRequestRoutingRuleCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/RemoveAzureApplicationGatewayRequestRoutingRuleCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/SetAzureApplicationGatewayRequestRoutingRuleCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/SetAzureApplicationGatewayCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/AzureApplicationGatewaySkuBase.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/GetAzureApplicationGatewaySkuCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/NewAzureApplicationGatewaySkuCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/SetAzureApplicationGatewaySkuCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/AddAzureApplicationGatewaySslCertificateCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/GetAzureApplicationGatewaySslCertificateCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/NewAzureApplicationGatewaySslCertificateCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/RemoveAzureApplicationGatewaySslCertificateCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/SetAzureApplicationGatewaySslCertificateCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/StartAzureApplicationGatewayCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/ApplicationGateway/StopAzureApplicationGatewayCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGateway.cs rename src/ResourceManager/Network/Commands.Network/Models/{PSProbeProtocol.cs => PSApplicationGatewayBackendAddress.cs} (80%) create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendAddressPool.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendHttpSettings.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayFrontendIPConfiguration.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayFrontendPort.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayHttpListener.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayIPConfiguration.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayRequestRoutingRule.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewaySku.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewaySslCertificate.cs rename src/ResourceManager/Network/Commands.Network/Models/{PSDnsSettings.cs => PSNetworkInterfaceDnsSettings.cs} (86%) create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSRoute.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSRouteTable.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule - Copy.cs rename src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/{GetAzureCheckDnsAvailabilityCmdlet.cs => TestAzureDnsAvailabilityCmdlet.cs} (84%) create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/GetAzureRouteTableCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/NewAzureRouteTableCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/RemoveAzureRouteTableCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/Route/AddAzureRouteConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/Route/AzureRouteConfigBase.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/Route/GetAzureRouteConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/Route/NewAzureRouteConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/Route/RemoveAzureRouteConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/Route/SetAzureRouteConfigCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/RouteTableBaseCmdlet.cs create mode 100644 src/ResourceManager/Network/Commands.Network/RouteTable/SetAzureRouteTableCommand.cs create mode 100644 src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json delete mode 100644 src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithStorageV2.json rename src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/{WatmV2TestsBase.cs => TestController.cs} (96%) create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestCreateExistingEndpoint.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestCreateExistingEndpointFromNonExistingProfile.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDisableEndpoint.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDisableNonExistingEndpoint.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableEndpoint.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableEndpointUsingPiping.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableNonExistingEndpoint.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEndpointCrud.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEndpointCrudPiping.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestGetExistingEndpointFromNonExistingProfile.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestRemoveExistingEndpointFromNonExistingProfile.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestRemoveNonExistingEndpointFromProfile.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestListProfilesInResourceGroup.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestListProfilesInSubscription.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisable.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisableNonExisting.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisablePipeline.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnable.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnableNonExisting.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnablePipeline.json create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/DisableAzureTrafficManagerEndpoint.cs create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/EnableAzureTrafficManagerEndpoint.cs create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/GetAzureTrafficManagerEndpoint.cs create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/NewAzureTrafficManagerEndpoint.cs create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/RemoveAzureTrafficManagerEndpoint.cs create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/SetAzureTrafficManagerEndpoint.cs rename src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/{Endpoint.cs => TrafficManagerEndpoint.cs} (51%) create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/DisableAzureTrafficManagerProfile.cs create mode 100644 src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/EnableAzureTrafficManagerProfile.cs create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/Multivip/MultivipTests.cs create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/ReservedIP/ReservedIPTest.cs create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVip.cs create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVipTests.ps1 create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIP.cs create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIPTests.ps1 create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ExtraVipLifecycle.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ExtraVipMobility.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ReserveMultivipDepIP.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/SetLbEpMultivipDep.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/AzureReservedIPSimpleOps.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/CreateVMWithReservedIP.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/RemoveReservedIPAssocSimple.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/ReserveExistingDepIP.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/SetReservedIPAssocSimple.json create mode 100644 src/ServiceManagement/Network/Commands.Network.Test/TestInterfaces/TestClientProvider.cs create mode 100644 src/ServiceManagement/Services/Commands.Utilities/Common/ClientProvider.cs create mode 100644 src/ServiceManagement/Services/Commands.Utilities/Common/IClientProvider.cs diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj new file mode 100644 index 000000000000..12977a420ca1 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj @@ -0,0 +1,186 @@ + + + + + + Debug + AnyCPU + {678AE95D-2364-47D7-888C-3FFA6D412CC8} + Library + Properties + Microsoft.Azure.Commands.AzureBackup.Test + Microsoft.Azure.Commands.AzureBackup.Test + v4.5 + 512 + ..\..\..\ + true + 0043d215 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AnyCPU + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + False + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.27-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.0-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + + + + ..\..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll + + + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + + ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + + + ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + + ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll + + + False + ..\..\..\packages\Hydra.SpecTestSupport.1.0.5417.13285-prerelease\lib\net45\Microsoft.WindowsAzure.Testing.dll + + + ..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + + + + + + False + C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll + + + + + ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Extensions.dll + True + + + ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + True + + + + + + + + + + False + ..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll + + + ..\..\..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll + + + + + + + Code + + + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + {c1bda476-a5cc-4394-914d-48b0ec31a710} + Commands.ScenarioTests.Common + + + {6C8D2337-C9D1-4F52-94B3-AB63A19F3453} + Commands.AzureBackup + + + + + + + + Designer + + + Designer + + + Always + + + Always + + + + + + + + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..63471bfe0684 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs @@ -0,0 +1,49 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Microsoft.Azure.Commands.AzureBackup.Test")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Commands.AzureBackup.Test")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("49823b4f-deb2-4cf5-a8e7-5118fc6a05d6")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] +[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs new file mode 100644 index 000000000000..19bfd08fbe0c --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs @@ -0,0 +1,151 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Management.BackupServices; +using Microsoft.Azure.Test; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Configuration; +using System.Net; +using System.Net.Http; +using System.Net.Security; +using System.Reflection; + +namespace Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests +{ + public abstract class AzureBackupTestsBase + { + private CSMTestEnvironmentFactory csmTestFactory; + private EnvironmentSetupHelper helper; + + public BackupVaultServicesManagementClient BackupVaultServicesMgmtClient { get; private set; } + + protected AzureBackupTestsBase() + { + this.helper = new EnvironmentSetupHelper(); + this.csmTestFactory = new CSMTestEnvironmentFactory(); + } + + protected void SetupManagementClients() + { + BackupVaultServicesMgmtClient = GetBackupVaultServicesManagementClient(); + //helper.SetupManagementClients(BackupServicesMgmtClient); + helper.SetupSomeOfManagementClients(BackupVaultServicesMgmtClient); + } + + protected void RunPowerShellTest(params string[] scripts) + { + using (UndoContext context = UndoContext.Current) + { + context.Start(TestUtilities.GetCallingClass(2), TestUtilities.GetCurrentMethodName(2)); + + SetupManagementClients(); + + helper.SetupEnvironment(AzureModule.AzureResourceManager); + helper.SetupModules(AzureModule.AzureResourceManager, "ScenarioTests\\" + this.GetType().Name + ".ps1"); + + helper.RunPowerShellTest(scripts); + } + } + + private BackupVaultServicesManagementClient GetBackupVaultServicesManagementClient() + { + return GetServiceClient(); + } + + public static T GetServiceClient() where T : class + { + var factory = (TestEnvironmentFactory)new CSMTestEnvironmentFactory(); + + var testEnvironment = factory.GetTestEnvironment(); + + ServicePointManager.ServerCertificateValidationCallback = IgnoreCertificateErrorHandler; + + BackupVaultServicesManagementClient client; + string resourceName = ConfigurationManager.AppSettings["ResourceName"]; + string resourceGroupName = ConfigurationManager.AppSettings["ResourceGroupName"]; + + + if (testEnvironment.UsesCustomUri()) + { + client = new BackupVaultServicesManagementClient( + resourceName, + resourceGroupName, + testEnvironment.Credentials as SubscriptionCloudCredentials, + testEnvironment.BaseUri); + } + + else + { + client = new BackupVaultServicesManagementClient( + resourceName, + resourceGroupName, + testEnvironment.Credentials as SubscriptionCloudCredentials); + } + + return GetServiceClient(factory, client); + } + + public static T GetServiceClient(TestEnvironmentFactory factory, BackupVaultServicesManagementClient client) where T : class + { + TestEnvironment testEnvironment = factory.GetTestEnvironment(); + + HttpMockServer instance; + try + { + instance = HttpMockServer.CreateInstance(); + } + catch (ApplicationException) + { + HttpMockServer.Initialize("TestEnvironment", "InitialCreation"); + instance = HttpMockServer.CreateInstance(); + } + T obj2 = typeof(T).GetMethod("WithHandler", new Type[1] + { + typeof (DelegatingHandler) + }).Invoke((object)client, new object[1] + { + (object) instance + }) as T; + + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + HttpMockServer.Variables[TestEnvironment.SubscriptionIdKey] = testEnvironment.SubscriptionId; + } + + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + PropertyInfo property1 = typeof(T).GetProperty("LongRunningOperationInitialTimeout", typeof(int)); + PropertyInfo property2 = typeof(T).GetProperty("LongRunningOperationRetryTimeout", typeof(int)); + if (property1 != (PropertyInfo)null && property2 != (PropertyInfo)null) + { + property1.SetValue((object)obj2, (object)0); + property2.SetValue((object)obj2, (object)0); + } + } + return obj2; + } + + private static bool IgnoreCertificateErrorHandler + (object sender, + System.Security.Cryptography.X509Certificates.X509Certificate certificate, + System.Security.Cryptography.X509Certificates.X509Chain chain, + SslPolicyErrors sslPolicyErrors) + { + return true; + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupVaultTests.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupVaultTests.cs new file mode 100644 index 000000000000..87372daeaeaf --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupVaultTests.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests +{ + public class AzureBackupVaultTests : AzureBackupTestsBase + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void AzureBackupVaultScenarioTests() + { + this.RunPowerShellTest("Test-AzureBackupVaultScenario"); + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupVaultTests.ps1 b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupVaultTests.ps1 new file mode 100644 index 000000000000..1edbe269e585 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupVaultTests.ps1 @@ -0,0 +1,46 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +$ResourceGroupName = "backuprg" +$ResourceName = "backuprn1" +$Location = "westus" +$CertTargetLocation = (Get-Item -Path ".\" -Verbose).FullName; + +function Test-AzureBackupVaultScenario +{ + $vault = New-AzureBackupVault -ResourceGroupName $ResourceGroupName -Name $ResourceName -Region $Location -Storage "LocallyRedundant"; + Assert-AreEqual $vault.Name $ResourceName; + Assert-AreEqual $vault.ResourceGroupName $ResourceGroupName; + Assert-AreEqual $vault.Region $Location; + Assert-AreEqual $vault.Storage "LocallyRedundant"; + + $vault = Get-AzureBackupVault -ResourceGroupName $ResourceGroupName -Name $ResourceName + Assert-AreEqual $vault.Name $ResourceName; + Assert-AreEqual $vault.ResourceGroupName $ResourceGroupName; + Assert-AreEqual $vault.Region $Location; + Assert-AreEqual $vault.Storage "LocallyRedundant"; + + $fileName = Get-AzureBackupVaultCredentials -vault $vault -TargetLocation $CertTargetLocation + Assert-NotNull $fileName 'File name should not be null'; + $certFileFullPath = [io.path]::combine($CertTargetLocation, $fileName); + Assert-True {{ Test-Path $certFileFullPath }} + + $vault = Set-AzureBackupVault -vault $vault -Storage "GeoRedundant"; + Assert-AreEqual $vault.Name $ResourceName; + Assert-AreEqual $vault.ResourceGroupName $ResourceGroupName; + Assert-AreEqual $vault.Region $Location; + Assert-AreEqual $vault.Storage "GeoRedundant"; + + Remove-AzureBackupVault -Vault $vault; +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupVaultTests/AzureBackupVaultScenarioTests.json b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupVaultTests/AzureBackupVaultScenarioTests.json new file mode 100644 index 000000000000..32288e3c71c7 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupVaultTests/AzureBackupVaultScenarioTests.json @@ -0,0 +1,626 @@ +{ + "Entries": [ + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMT9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "115" + ], + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "8ccef70d-c423-4098-849c-0a1e1b75e2f5-2015-07-08 09:58:09Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"backuprn1\",\r\n \"etag\": \"22a9ef4f-5bd9-48b5-bc4d-f564d529b597\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"ProvisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1\",\r\n \"type\": \"Microsoft.Backup/BackupVault\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "339" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "81d97ccb-5ad8-41d5-a9f3-a47af8d6216f" + ], + "x-ms-client-request-id": [ + "8ccef70d-c423-4098-849c-0a1e1b75e2f5-2015-07-08 09:58:09Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "81d97ccb-5ad8-41d5-a9f3-a47af8d6216f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095812Z:81d97ccb-5ad8-41d5-a9f3-a47af8d6216f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:12 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/storageconfig/vaultstorageconfig?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9zdG9yYWdlY29uZmlnL3ZhdWx0c3RvcmFnZWNvbmZpZz9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageModelType\": \"LocallyRedundant\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "72" + ], + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "8ccef70d-c423-4098-849c-0a1e1b75e2f5-2015-07-08 09:58:09Z-PS" + ], + "x-ms-version": [ + "2013-03-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1cf95f4c-680f-4974-9f74-a6e8629b2ad4" + ], + "x-ms-client-request-id": [ + "8ccef70d-c423-4098-849c-0a1e1b75e2f5-2015-07-08 09:58:09Z-PS", + "8ccef70d-c423-4098-849c-0a1e1b75e2f5-2015-07-08 09:58:09Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "1cf95f4c-680f-4974-9f74-a6e8629b2ad4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095814Z:1cf95f4c-680f-4974-9f74-a6e8629b2ad4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:14 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/storageconfig/vaultstorageconfig?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9zdG9yYWdlY29uZmlnL3ZhdWx0c3RvcmFnZWNvbmZpZz9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageModelType\": \"GeoRedundant\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "68" + ], + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "26734291-d565-4c21-8837-f6fc4f04c302-2015-07-08 09:58:18Z-PS" + ], + "x-ms-version": [ + "2013-03-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7bc725d4-f5ef-4278-961a-acab202c5c1a" + ], + "x-ms-client-request-id": [ + "26734291-d565-4c21-8837-f6fc4f04c302-2015-07-08 09:58:18Z-PS", + "26734291-d565-4c21-8837-f6fc4f04c302-2015-07-08 09:58:18Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "7bc725d4-f5ef-4278-961a-acab202c5c1a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095820Z:7bc725d4-f5ef-4278-961a-acab202c5c1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:20 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/storageconfig/vaultstorageconfig?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9zdG9yYWdlY29uZmlnL3ZhdWx0c3RvcmFnZWNvbmZpZz9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "8ccef70d-c423-4098-849c-0a1e1b75e2f5-2015-07-08 09:58:09Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"resourceId\": 1117362664063487198,\r\n \"properties\": {\r\n \"storageType\": \"LocallyRedundant\",\r\n \"storageTypeState\": \"Unlocked\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "112" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3eb0cb5d-390e-4ff0-9c35-0e3a73d9171b" + ], + "x-ms-client-request-id": [ + "8ccef70d-c423-4098-849c-0a1e1b75e2f5-2015-07-08 09:58:09Z-PS", + "8ccef70d-c423-4098-849c-0a1e1b75e2f5-2015-07-08 09:58:09Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "3eb0cb5d-390e-4ff0-9c35-0e3a73d9171b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095814Z:3eb0cb5d-390e-4ff0-9c35-0e3a73d9171b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:14 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/storageconfig/vaultstorageconfig?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9zdG9yYWdlY29uZmlnL3ZhdWx0c3RvcmFnZWNvbmZpZz9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "0efb57c9-0306-446d-acbc-ae232387f1af-2015-07-08 09:58:14Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"resourceId\": 1117362664063487198,\r\n \"properties\": {\r\n \"storageType\": \"LocallyRedundant\",\r\n \"storageTypeState\": \"Unlocked\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "112" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "79d0534f-03c5-4bdd-b57f-ad84552fcde0" + ], + "x-ms-client-request-id": [ + "0efb57c9-0306-446d-acbc-ae232387f1af-2015-07-08 09:58:14Z-PS", + "0efb57c9-0306-446d-acbc-ae232387f1af-2015-07-08 09:58:14Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "79d0534f-03c5-4bdd-b57f-ad84552fcde0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095816Z:79d0534f-03c5-4bdd-b57f-ad84552fcde0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/storageconfig/vaultstorageconfig?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9zdG9yYWdlY29uZmlnL3ZhdWx0c3RvcmFnZWNvbmZpZz9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "26734291-d565-4c21-8837-f6fc4f04c302-2015-07-08 09:58:18Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"resourceId\": 1117362664063487198,\r\n \"properties\": {\r\n \"storageType\": \"GeoRedundant\",\r\n \"storageTypeState\": \"Unlocked\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cb317c47-05af-4847-92a1-07d66589e09a" + ], + "x-ms-client-request-id": [ + "26734291-d565-4c21-8837-f6fc4f04c302-2015-07-08 09:58:18Z-PS", + "26734291-d565-4c21-8837-f6fc4f04c302-2015-07-08 09:58:18Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "cb317c47-05af-4847-92a1-07d66589e09a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095822Z:cb317c47-05af-4847-92a1-07d66589e09a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMT9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "0efb57c9-0306-446d-acbc-ae232387f1af-2015-07-08 09:58:14Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"backuprn1\",\r\n \"etag\": \"22a9ef4f-5bd9-48b5-bc4d-f564d529b597\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"ProvisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1\",\r\n \"type\": \"Microsoft.Backup/BackupVault\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "339" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bea6c724-4984-4afb-bc39-4ee2bac905ca" + ], + "x-ms-client-request-id": [ + "0efb57c9-0306-446d-acbc-ae232387f1af-2015-07-08 09:58:14Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "bea6c724-4984-4afb-bc39-4ee2bac905ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095815Z:bea6c724-4984-4afb-bc39-4ee2bac905ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMT9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "26734291-d565-4c21-8837-f6fc4f04c302-2015-07-08 09:58:18Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"backuprn1\",\r\n \"etag\": \"22a9ef4f-5bd9-48b5-bc4d-f564d529b597\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"ProvisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1\",\r\n \"type\": \"Microsoft.Backup/BackupVault\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "339" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f30f6dd0-24bc-4301-9415-134a49893b11" + ], + "x-ms-client-request-id": [ + "26734291-d565-4c21-8837-f6fc4f04c302-2015-07-08 09:58:18Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "f30f6dd0-24bc-4301-9415-134a49893b11" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095821Z:f30f6dd0-24bc-4301-9415-134a49893b11" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1/certificates/IdMgmtInternalCert?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMS9jZXJ0aWZpY2F0ZXMvSWRNZ210SW50ZXJuYWxDZXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"certificate\": \"MIIC3TCCAcWgAwIBAgIQFKHEzjT4EpZNl44PA7dJojANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE1MDcwODA5NDgxNVoXDTE1MDcxMDA5NTgxNVowHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALNA8xmDPJujD5HrGrZ5UZpKncdDBRHJmp4JKEd29jtZng2F8v7z67kF0hDAEE9WSAIxPhjNxQoyxZ2gDdFVQp2r1n6dLxZYlHgih73QFIfAzFo0BP1PCVDCNk5edfMzRt+iZdcK2ruoRRxPiFlo8D6eKSA3MUvwzEl61i44+ctz3mA5lwNf1c58ENLg29IWGhd3LODjkkpre6eGeMEbI5h9+Z2N8yj5ATtzQiDe0FSapbwqktTgT/+ngP6jWxVZI3uyBCZYgxfzfnhtzWkCQnqx2jOOMSu5D1JSiXngQPVQ5wQBVVDmcbF/YdXpRWVER48p2tHemvbd+7zPkmXT5CkCAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBADo2hDHV3r75KgFAP5Ie4jVqGazT1Y5Gs4NBsG6dzDWg9/0vsHT8SOjNjjccpPUkP2aO/4RQlLhC2gsU/BMYw7kxY0eyUxAM0SB7sJ9gj/EBcHDyeOu1eSnYGmqcvXmbFjMauLwNkNwsACo5vVz0ghXxpazRAnpzyKgZgwNC4ruotDzMT8S4zB8a1WVEpcx43Um/5Yg06QBfIEG4wD11rIpENkKm3DWnP5OV39knHLLt/UvwY011kpfXFuXo4ZVXI3F096kgER/vpr32T+H3SCJVbrTi+qKDLjENpdVSTxEh16w/RK1mB6LST7KOIn0LwC76xveMYoOP/1uYK4hkKgQ=\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1035" + ], + "Accept-Language": [ + "en-us" + ], + "x-ms-version": [ + "2013-03-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"certificate\": \"MIIC3TCCAcWgAwIBAgIQFKHEzjT4EpZNl44PA7dJojANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE1MDcwODA5NDgxNVoXDTE1MDcxMDA5NTgxNVowHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALNA8xmDPJujD5HrGrZ5UZpKncdDBRHJmp4JKEd29jtZng2F8v7z67kF0hDAEE9WSAIxPhjNxQoyxZ2gDdFVQp2r1n6dLxZYlHgih73QFIfAzFo0BP1PCVDCNk5edfMzRt+iZdcK2ruoRRxPiFlo8D6eKSA3MUvwzEl61i44+ctz3mA5lwNf1c58ENLg29IWGhd3LODjkkpre6eGeMEbI5h9+Z2N8yj5ATtzQiDe0FSapbwqktTgT/+ngP6jWxVZI3uyBCZYgxfzfnhtzWkCQnqx2jOOMSu5D1JSiXngQPVQ5wQBVVDmcbF/YdXpRWVER48p2tHemvbd+7zPkmXT5CkCAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBADo2hDHV3r75KgFAP5Ie4jVqGazT1Y5Gs4NBsG6dzDWg9/0vsHT8SOjNjjccpPUkP2aO/4RQlLhC2gsU/BMYw7kxY0eyUxAM0SB7sJ9gj/EBcHDyeOu1eSnYGmqcvXmbFjMauLwNkNwsACo5vVz0ghXxpazRAnpzyKgZgwNC4ruotDzMT8S4zB8a1WVEpcx43Um/5Yg06QBfIEG4wD11rIpENkKm3DWnP5OV39knHLLt/UvwY011kpfXFuXo4ZVXI3F096kgER/vpr32T+H3SCJVbrTi+qKDLjENpdVSTxEh16w/RK1mB6LST7KOIn0LwC76xveMYoOP/1uYK4hkKgQ=\",\r\n \"resourceId\": 1117362664063487198,\r\n \"globalAcsNamespace\": \"seadev01rrp1users\",\r\n \"globalAcsHostName\": \"accesscontrol.windows.net\",\r\n \"globalAcsRPRealm\": \"http://windowscloudbackup/m3\",\r\n \"subject\": \"CN=Windows Azure Tools\",\r\n \"validFrom\": \"2015-07-08T02:48:15-07:00\",\r\n \"validTo\": \"2015-07-10T02:58:15-07:00\",\r\n \"thumbprint\": \"2F6E98592FCC206CBA2BF6FDCA6279C87A0DCA60\",\r\n \"friendlyName\": \"\",\r\n \"issuer\": \"CN=Windows Azure Tools\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1410" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a94d6ca2-6cba-45f0-bd5e-fe3535d1e7d9" + ], + "x-ms-client-request-id": [ + "38750946-e6c7-4f15-a698-323deaf1f2ab", + "38750946-e6c7-4f15-a698-323deaf1f2ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a94d6ca2-6cba-45f0-bd5e-fe3535d1e7d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095819Z:a94d6ca2-6cba-45f0-bd5e-fe3535d1e7d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:18 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1?api-version=2015-03-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuMT9hcGktdmVyc2lvbj0yMDE1LTAzLTE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Accept-Language": [ + "en-us" + ], + "x-ms-client-request-id": [ + "c4aca23e-b7fa-4016-829d-5af4fd8eef00-2015-07-08 09:58:21Z-PS" + ], + "User-Agent": [ + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "17c2f600-ee65-4ad2-a946-de4bc205406d" + ], + "x-ms-client-request-id": [ + "c4aca23e-b7fa-4016-829d-5af4fd8eef00-2015-07-08 09:58:21Z-PS" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "17c2f600-ee65-4ad2-a946-de4bc205406d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150708T095825Z:17c2f600-ee65-4ad2-a946-de4bc205406d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Jul 2015 09:58:25 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "f5303a0b-fae4-4cdb-b44d-0e4c032dde26" + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config new file mode 100644 index 000000000000..ec8ef520b0bd --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/AzureBackupClientAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/AzureBackupClientAdapter.cs new file mode 100644 index 000000000000..215db6047e47 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/AzureBackupClientAdapter.cs @@ -0,0 +1,113 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Management.BackupServices; +using Microsoft.Azure.Management.BackupServices.Models; +using System; +using System.Net; +using System.Threading; + +namespace Microsoft.Azure.Commands.AzureBackup.ClientAdapter +{ + public partial class AzureBackupClientAdapter + { + /// + /// Cloud credentials for client calls + /// + private SubscriptionCloudCredentials cloudCreds { get; set; } + + /// + /// Base URI for client calls + /// + private Uri baseURI { get; set; } + + /// + /// ResourceGroup context for the operation + /// + private string resourceGroupName { get; set; } + + /// + /// Resource context for the operation + /// + private string resourceName { get; set; } + + /// + /// Client request id. + /// + private string clientRequestId; + + /// + /// Azure backup client. + /// + private BackupVaultServicesManagementClient azureBackupVaultClient; + + /// + /// Cancellation Token Source + /// + private CancellationTokenSource cancellationTokenSource = new CancellationTokenSource(); + private CancellationToken CmdletCancellationToken; + + /// + /// Get Azure backup client. + /// + private BackupVaultServicesManagementClient AzureBackupVaultClient + { + get + { + if (this.azureBackupVaultClient == null) + { + this.azureBackupVaultClient = AzureSession.ClientFactory.CreateCustomClient(resourceName, resourceGroupName, cloudCreds, baseURI); + } + + return this.azureBackupVaultClient; + } + } + + public AzureBackupClientAdapter(SubscriptionCloudCredentials creds, Uri baseUri, string rgName, string rName) + { + cloudCreds = creds; + baseURI = baseUri; + resourceGroupName = rgName; + resourceName = rName; + + RefreshClientRequestId(); + + // Temp code to be able to test internal env. + ServicePointManager.ServerCertificateValidationCallback = delegate { return true; }; + } + + public void RefreshClientRequestId() + { + clientRequestId = Guid.NewGuid().ToString() + "-" + DateTime.Now.ToUniversalTime().ToString("yyyy-MM-dd HH:mm:ssZ") + "-PS"; + } + + public string GetClientRequestId() + { + return clientRequestId; + } + + internal CustomRequestHeaders GetCustomRequestHeaders() + { + var hdrs = new CustomRequestHeaders() + { + // ClientRequestId is a unique ID for every request to backend service. + ClientRequestId = this.clientRequestId, + }; + + return hdrs; + } + } +} + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs new file mode 100644 index 000000000000..9d997c95bf7c --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs @@ -0,0 +1,130 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.BackupServices.Models; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.AzureBackup.ClientAdapter +{ + public partial class AzureBackupClientAdapter + { + public const int defaultTop = 100; + private const string defaultSKU = "standard"; + + /// + /// Creates or updates the vault identified by client + /// + /// + /// + /// + public AzureBackupVault CreateOrUpdateAzureBackupVault(string resourceGroupName, string vaultName, string location) + { + var createResourceParameters = new AzureBackupVaultCreateOrUpdateParameters() + { + Location = location, + Properties = new AzureBackupVaultProperties() + { + Sku = new SkuProperties() + { + Name = defaultSKU, + }, + }, + }; + + var response = AzureBackupVaultClient.Vault.CreateOrUpdateAsync(resourceGroupName, vaultName, createResourceParameters, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + return response.Vault; + } + + /// + /// Updates storage type of the vault identified by client + /// + /// + public void UpdateStorageType(string storageType) + { + UpdateVaultStorageTypeRequest updateVaultStorageTypeRequest = new UpdateVaultStorageTypeRequest() + { + StorageTypeProperties = new StorageTypeProperties() + { + StorageModelType = storageType, + }, + }; + + AzureBackupVaultClient.Vault.UpdateStorageTypeAsync(updateVaultStorageTypeRequest, GetCustomRequestHeaders(), CmdletCancellationToken).Wait(); + } + + /// + /// Gets storage type details of the specified resource + /// + /// + public string GetStorageTypeDetails(string resourceGroupName, string vaultName) + { + string storageType = String.Empty; + try + { + var response = AzureBackupVaultClient.Vault.GetResourceStorageConfigAsync(resourceGroupName, vaultName, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + storageType = (response != null) ? response.StorageDetails.StorageType : null; + } + catch (Exception) { } + + return storageType; + } + + /// + /// Gets the vault identified by the client + /// + /// + public AzureBackupVault GetVault(string resourceGroupName, string vaultName) + { + var getResponse = AzureBackupVaultClient.Vault.GetAsync(resourceGroupName, vaultName, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + return (getResponse != null) ? getResponse.Vault : null; + } + + /// + /// Gets backup vaults in current subscription + /// + /// + public IEnumerable GetVaults() + { + var listResponse = AzureBackupVaultClient.Vault.ListAsync(defaultTop, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + return (listResponse != null) ? listResponse.Vaults : null; + } + + /// + /// Gets backup vaults in given resource group + /// + /// + /// + public IEnumerable GetVaultsInResourceGroup(string resourceGroupName) + { + var listResponse = AzureBackupVaultClient.Vault.ListByResourceGroupAsync(resourceGroupName, defaultTop, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + return (listResponse != null) ? listResponse.Vaults : null; + } + + /// + /// Deletes the specified backup vault + /// + /// + /// + public void DeleteVault(string resourceGroupName, string vaultName) + { + AzureBackupVaultClient.Vault.DeleteAsync(resourceGroupName, vaultName, GetCustomRequestHeaders(), CmdletCancellationToken).Wait(); + } + + public VaultCredUploadCertResponse UploadCertificate(string certName, VaultCredUploadCertRequest request) + { + return AzureBackupVaultClient.Vault.UploadCertificateAsync(certName, request, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletBase.cs new file mode 100644 index 000000000000..68e8ea0d1955 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletBase.cs @@ -0,0 +1,140 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Hyak.Common; +using Microsoft.Azure.Commands.AzureBackup.ClientAdapter; +using Microsoft.Azure.Commands.AzureBackup.Properties; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.WindowsAzure.Management.Scheduler; +using System; +using System.Management.Automation; +using System.Net; +using CmdletModel = Microsoft.Azure.Commands.AzureBackup.Models; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + public abstract class AzureBackupCmdletBase : AzurePSCmdlet + { + /// + /// Azure backup client. + /// + private AzureBackupClientAdapter azureBackupClientAdapter; + + /// + /// Get Azure backup client. + /// + protected AzureBackupClientAdapter AzureBackupClient + { + get + { + return this.azureBackupClientAdapter; + } + } + + /// + /// Initializes required client adapters + /// + /// + /// + protected void InitializeAzureBackupCmdlet(string rgName, string rName) + { + var cloudServicesClient = AzureSession.ClientFactory.CreateClient(Profile, Profile.Context.Subscription, AzureEnvironment.Endpoint.ResourceManager); + azureBackupClientAdapter = new AzureBackupClientAdapter(cloudServicesClient.Credentials, cloudServicesClient.BaseUri, rgName, rName); + + WriteDebug(string.Format("Initialized AzureBackup Cmdlet, ClientRequestId: {0}, ResourceGroupName: {1}, ResourceName : {2}", azureBackupClientAdapter.GetClientRequestId(), rgName, rName)); + } + + /// + /// Initializes required client adapters + /// + /// + protected void InitializeAzureBackupCmdlet(CmdletModel.AzurePSBackupVault vault) + { + InitializeAzureBackupCmdlet(vault.ResourceGroupName, vault.Name); + } + + protected void ExecutionBlock(Action execAction) + { + try + { + execAction(); + } + catch (Exception exception) + { + WriteDebug(String.Format("Caught exception, type: {0}", exception.GetType())); + HandleException(exception); + } + } + + /// + /// Handles set of exceptions thrown by client + /// + /// + private void HandleException(Exception exception) + { + if (exception is AggregateException && ((AggregateException)exception).InnerExceptions != null + && ((AggregateException)exception).InnerExceptions.Count != 0) + { + WriteDebug("Handling aggregate exception"); + foreach (var innerEx in ((AggregateException)exception).InnerExceptions) + { + HandleException(innerEx); + } + } + else + { + Exception targetEx = exception; + string targetErrorId = String.Empty; + ErrorCategory targetErrorCategory = ErrorCategory.NotSpecified; + + if (exception is CloudException) + { + var cloudEx = exception as CloudException; + if (cloudEx.Response != null && cloudEx.Response.StatusCode == HttpStatusCode.NotFound) + { + WriteDebug(String.Format("Received CloudException, StatusCode: {0}", cloudEx.Response.StatusCode)); + + targetEx = new Exception(Resources.ResourceNotFoundMessage); + targetErrorCategory = ErrorCategory.InvalidArgument; + } + else if (cloudEx.Error != null) + { + WriteDebug(String.Format("Received CloudException, ErrorCode: {0}, Message: {1}", cloudEx.Error.Code, cloudEx.Error.Message)); + + targetErrorId = cloudEx.Error.Code; + targetErrorCategory = ErrorCategory.InvalidOperation; + } + } + else if (exception is WebException) + { + var webEx = exception as WebException; + WriteDebug(string.Format("Received WebException, Response: {0}, Status: {1}", webEx.Response, webEx.Status)); + + targetErrorCategory = ErrorCategory.ConnectionError; + } + else if (exception is ArgumentException || exception is ArgumentNullException) + { + WriteDebug(string.Format("Received ArgumentException")); + targetErrorCategory = ErrorCategory.InvalidArgument; + } + + var errorRecord = new ErrorRecord(targetEx, targetErrorId, targetErrorCategory, null); + WriteError(errorRecord); + } + } + } +} + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs new file mode 100644 index 000000000000..9d2719413564 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs @@ -0,0 +1,26 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + internal static class AzureBackupCmdletHelpMessage + { + public const string Vault = "The vault details"; + public const string ResourceGroupName = "The ResourceGroup name."; + public const string ResourceName = "The Resource name."; + public const string Location = "The resource location."; + public const string TargetLocation = "The directory where the credentials file will be saved. This must be an absolute path."; + public const string StorageType = "The vault back-end storage type."; + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupVaultCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupVaultCmdletBase.cs new file mode 100644 index 000000000000..9ceac2e2fe68 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupVaultCmdletBase.cs @@ -0,0 +1,34 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.AzureBackup.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + public abstract class AzureBackupVaultCmdletBase : AzureBackupCmdletBase + { + [Parameter(Position = 0, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.Vault, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public AzurePSBackupVault Vault { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + Vault.Validate(); + + InitializeAzureBackupCmdlet(Vault); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/GetAzureBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/GetAzureBackupVault.cs new file mode 100644 index 000000000000..9f05845750a4 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/GetAzureBackupVault.cs @@ -0,0 +1,83 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.AzureBackup.Helpers; +using Microsoft.Azure.Commands.AzureBackup.Models; +using Microsoft.Azure.Management.BackupServices.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + /// + /// Command to get azure backup vaults in a subscription + /// + [Cmdlet(VerbsCommon.Get, "AzureBackupVault"), OutputType(typeof(AzurePSBackupVault), typeof(List))] + public class GetAzureBackupVault : AzureBackupCmdletBase + { + [Parameter(Position = 0, Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceGroupName)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Position = 1, Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceName)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + base.ExecuteCmdlet(); + InitializeAzureBackupCmdlet(String.Empty, String.Empty); + + if (ResourceGroupName != null && Name != null) + { + var backupVault = AzureBackupClient.GetVault(ResourceGroupName, Name); + WriteObject(VaultHelpers.GetCmdletVault(backupVault, AzureBackupClient.GetStorageTypeDetails(VaultHelpers.GetResourceGroup(backupVault.Id), backupVault.Name))); + } + else if (ResourceGroupName != null) + { + var backupVaults = AzureBackupClient.GetVaultsInResourceGroup(ResourceGroupName); + WriteObject(GetCmdletVaults(backupVaults), true); + } + else + { + var backupVaults = AzureBackupClient.GetVaults(); + + if (Name != null) + { + backupVaults = backupVaults.Where(x => x.Name.Equals(Name, StringComparison.InvariantCultureIgnoreCase)); + } + WriteObject(GetCmdletVaults(backupVaults), true); + } + }); + } + + private IEnumerable GetCmdletVaults(IEnumerable backupVaults) + { + List resultList = new List(); + if (backupVaults != null) + { + foreach (var backupVault in backupVaults) + { + resultList.Add(VaultHelpers.GetCmdletVault(backupVault, AzureBackupClient.GetStorageTypeDetails(VaultHelpers.GetResourceGroup(backupVault.Id), backupVault.Name))); + } + } + + return resultList; + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureBackupVault.cs new file mode 100644 index 000000000000..6bc443c4273f --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureBackupVault.cs @@ -0,0 +1,70 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.AzureBackup.Helpers; +using Microsoft.Azure.Commands.AzureBackup.Models; +using System; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + /// + /// Command to create an azure backup vault in a subscription + /// + [Cmdlet(VerbsCommon.New, "AzureBackupVault"), OutputType(typeof(AzurePSBackupVault))] + public class NewAzureBackupVault : AzureBackupCmdletBase + { + [Parameter(Position = 0, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.ResourceGroupName)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Position = 1, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.ResourceName)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Position = 2, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.Location)] + [ValidateNotNullOrEmpty] + public string Region { get; set; } + + [Parameter(Position = 3, Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.StorageType)] + public AzureBackupVaultStorageType Storage { get; set; } + + // TODO: Add support for tags + //[Alias("Tags")] + //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] + //public Hashtable[] Tag { get; set; } + + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + base.ExecuteCmdlet(); + InitializeAzureBackupCmdlet(ResourceGroupName, Name); + + WriteDebug(String.Format("Creating backup vault with ResourceGroupName: {0}, ResourceName: {1}", ResourceGroupName, Name)); + + var createdVault = AzureBackupClient.CreateOrUpdateAzureBackupVault(ResourceGroupName, Name, Region); + + if (Storage != 0) + { + WriteDebug(String.Format("Setting storage type for the resource, Type: {0}", Storage)); + + AzureBackupClient.UpdateStorageType(Storage.ToString()); + } + + WriteObject(VaultHelpers.GetCmdletVault(createdVault, AzureBackupClient.GetStorageTypeDetails(VaultHelpers.GetResourceGroup(createdVault.Id), createdVault.Name))); + }); + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureBackupVault.cs new file mode 100644 index 000000000000..6124f3a43bed --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureBackupVault.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + /// + /// Command to remove an azure backup vault in the subscription + /// + [Cmdlet(VerbsCommon.Remove, "AzureBackupVault")] + public class RemoveAzureBackupVault : AzureBackupVaultCmdletBase + { + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + base.ExecuteCmdlet(); + + AzureBackupClient.DeleteVault(Vault.ResourceGroupName, Vault.Name); + }); + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureBackupVault.cs new file mode 100644 index 000000000000..82b01c2e7200 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureBackupVault.cs @@ -0,0 +1,55 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.AzureBackup.Helpers; +using Microsoft.Azure.Commands.AzureBackup.Models; +using System; +using System.Management.Automation; +using CmdletModel = Microsoft.Azure.Commands.AzureBackup.Models; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + /// + /// Command to update an azure backup vault in a subscription. + /// + [Cmdlet(VerbsCommon.Set, "AzureBackupVault"), OutputType(typeof(CmdletModel.AzurePSBackupVault))] + public class SetAzureBackupVault : AzureBackupVaultCmdletBase + { + [Parameter(Position = 1, Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.StorageType)] + public AzureBackupVaultStorageType Storage { get; set; } + + // TODO: Add support for tags + //[Alias("Tags")] + //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] + //public Hashtable[] Tag { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + ExecutionBlock(() => + { + if (Storage != 0) + { + WriteDebug(String.Format("Setting storage type for the resource, Type: {0}", Storage)); + + AzureBackupClient.UpdateStorageType(Storage.ToString()); + } + + var backupVault = AzureBackupClient.GetVault(Vault.ResourceGroupName, Vault.Name); + WriteObject(VaultHelpers.GetCmdletVault(backupVault, AzureBackupClient.GetStorageTypeDetails(Vault.ResourceGroupName, Vault.Name))); + }); + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/VaultCredentials/GetAzureBackupVaultCredentials.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/VaultCredentials/GetAzureBackupVaultCredentials.cs new file mode 100644 index 000000000000..ef4324c83763 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/VaultCredentials/GetAzureBackupVaultCredentials.cs @@ -0,0 +1,218 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.AzureBackup.Library; +using Microsoft.Azure.Commands.AzureBackup.Models; +using Microsoft.Azure.Management.BackupServices.Models; +using System; +using System.Globalization; +using System.IO; +using System.Management.Automation; +using System.Runtime.Serialization; +using System.Security.Cryptography.X509Certificates; +using System.Text; +using System.Xml; + +namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets +{ + /// + /// Command to download an azure backup vault's credentials. + /// + [Cmdlet(VerbsCommon.Get, "AzureBackupVaultCredentials"), OutputType(typeof(string))] + public class GetAzureBackupVaultCredentials : AzureBackupVaultCmdletBase + { + [Parameter(Position = 2, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.TargetLocation)] + [ValidateNotNullOrEmpty] + public string TargetLocation { get; set; } + + private const int VaultCertificateExpiryInHoursForBackup = 48; + + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + base.ExecuteCmdlet(); + + if (!Directory.Exists(TargetLocation)) + { + throw new ArgumentException("The target location provided is not a directory. Please provide a directory."); + } + + string subscriptionId = Profile.DefaultSubscription.Id.ToString(); + string resourceType = "BackupVault"; + string displayName = subscriptionId + "_" + Vault.ResourceGroupName + "_" + Vault.Name; + + WriteDebug(string.Format(CultureInfo.InvariantCulture, + "Executing cmdlet with SubscriptionId = {0}, ResourceGroupName = {1}, ResourceName = {2}, TargetLocation = {3}", + subscriptionId, Vault.ResourceGroupName, Vault.Name, TargetLocation)); + + X509Certificate2 cert = CertUtils.CreateSelfSignedCert(CertUtils.DefaultIssuer, + CertUtils.GenerateCertFriendlyName(subscriptionId, Vault.Name), + CertUtils.DefaultPassword, + DateTime.UtcNow.AddMinutes(-10), + DateTime.UtcNow.AddHours(this.GetCertificateExpiryInHours())); + + AcsNamespace acsNamespace = new AcsNamespace(); + string channelIntegrityKey = string.Empty; + try + { + // Upload cert into ID Mgmt + WriteDebug(string.Format(CultureInfo.InvariantCulture, "RecoveryService - Going to upload the certificate")); + acsNamespace = UploadCert(cert, subscriptionId, Vault.Name, resourceType, Vault.ResourceGroupName); + WriteDebug(string.Format(CultureInfo.InvariantCulture, "RecoveryService - Successfully uploaded the certificate")); + } + catch (Exception exception) + { + throw exception; + } + + // generate vault credentials + string vaultCredsFileContent = GenerateVaultCreds(cert, subscriptionId, resourceType, acsNamespace); + + // NOTE: One of the scenarios for this cmdlet is to generate a file which will be an input to DPM servers. + // We found a bug in the DPM UI which is looking for a particular namespace in the input file. + // The below is a hack to circumvent this issue and this would be removed once the bug can be fixed. + vaultCredsFileContent = vaultCredsFileContent.Replace("Microsoft.Azure.Commands.AzureBackup.Models", + "Microsoft.Azure.Portal.RecoveryServices.Models.Common"); + + // prepare for download + string fileName = string.Format("{0}_{1}.VaultCredentials", displayName, DateTime.UtcNow.ToString("yyyy-dd-M--HH-mm-ss")); + string directoryPath = Path.GetDirectoryName(TargetLocation); + if (directoryPath == null) + { + // TargetLocation is a root path + directoryPath = TargetLocation; + } + string filePath = Path.Combine(directoryPath, fileName); + WriteDebug(string.Format("Saving Vault Credentials to file : {0}", filePath)); + + File.WriteAllBytes(filePath, Encoding.UTF8.GetBytes(vaultCredsFileContent)); + + // Output filename back to user + WriteObject(fileName); + }); + } + + /// + /// Method to return the Certificate Expiry time in hours + /// + /// + /// + private int GetCertificateExpiryInHours(string resourceType = null) + { + return VaultCertificateExpiryInHoursForBackup; + } + + /// + /// Upload certificate + /// + /// management certificate + /// subscription Id + /// resource name + /// resource type + /// resource group name + /// acs namespace of the uploaded cert + private AcsNamespace UploadCert(X509Certificate2 cert, string subscriptionId, string resourceName, string resourceType, string resourceGroupName) + { + string rawCertDataString = Convert.ToBase64String(cert.RawData); + VaultCredUploadCertRequest vaultCredUploadCertRequest = new VaultCredUploadCertRequest() + { + RawCertificateData = new RawCertificateData() + { + Certificate = rawCertDataString, + }, + }; + + var vaultCredUploadCertResponse = AzureBackupClient.UploadCertificate("IdMgmtInternalCert", vaultCredUploadCertRequest); + + return new AcsNamespace(vaultCredUploadCertResponse.ResourceCertificateAndACSDetails.GlobalAcsHostName, + vaultCredUploadCertResponse.ResourceCertificateAndACSDetails.GlobalAcsNamespace, + vaultCredUploadCertResponse.ResourceCertificateAndACSDetails.GlobalAcsRPRealm); + } + + /// + /// Generates vault creds file + /// + /// management certificate + /// subscription Id + /// resource type + /// display name + /// acs namespace + /// xml file in string format + private string GenerateVaultCreds(X509Certificate2 cert, string subscriptionId, string resourceType, AcsNamespace acsNamespace) + { + try + { + return GenerateVaultCredsForBackup(cert, subscriptionId, resourceType, acsNamespace); + } + catch (Exception exception) + { + throw exception; + } + } + + /// + /// Generates vault creds file content for backup Vault + /// + /// management certificate + /// subscription Id + /// resource type + /// display name + /// acs namespace + /// xml file in string format + private string GenerateVaultCredsForBackup(X509Certificate2 cert, string subscriptionId, string resourceType, AcsNamespace acsNamespace) + { + using (var output = new MemoryStream()) + { + using (var writer = XmlWriter.Create(output, GetXmlWriterSettings())) + { + BackupVaultCreds backupVaultCreds = new BackupVaultCreds(subscriptionId, + resourceType, + Vault.Name, + CertUtils.SerializeCert(cert, X509ContentType.Pfx), + acsNamespace, + GetAgentLinks()); + DataContractSerializer serializer = new DataContractSerializer(typeof(BackupVaultCreds)); + serializer.WriteObject(writer, backupVaultCreds); + + WriteDebug(string.Format(CultureInfo.InvariantCulture, "RecoveryService - Backup Vault - Successfully serialized the file content")); + } + + return Encoding.UTF8.GetString(output.ToArray()); + } + } + + private static string GetAgentLinks() + { + return "WABUpdateKBLink,http://go.microsoft.com/fwlink/p/?LinkId=229525;" + + "StorageQuotaPurchaseLink,http://go.microsoft.com/fwlink/?LinkId=205490;" + + "WebPortalLink,http://go.microsoft.com/fwlink/?LinkId=252913;" + + "WABprivacyStatement,http://go.microsoft.com/fwlink/?LinkId=221308"; + } + + /// + /// A set of XmlWriterSettings to use for the publishing profile + /// + /// The XmlWriterSettings set + private XmlWriterSettings GetXmlWriterSettings() + { + return new XmlWriterSettings + { + Encoding = new UTF8Encoding(false), + Indent = true, + NewLineOnAttributes = true + }; + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj new file mode 100644 index 000000000000..b581a19ef2a3 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -0,0 +1,179 @@ + + + + + Debug + AnyCPU + {6C8D2337-C9D1-4F52-94B3-AB63A19F3453} + Library + Properties + Microsoft.Azure.Commands.AzureBackup + Microsoft.Azure.Commands.AzureBackup + v4.5 + 512 + + ..\..\..\ + true + + + true + full + false + ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureBackup\ + DEBUG;TRACE + prompt + 4 + false + false + true + true + MinimumRecommendedRules.ruleset + + + ..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureBackup\ + TRACE;SIGN + true + pdbonly + AnyCPU + prompt + MinimumRecommendedRules.ruleset + true + MSSharedLibKey.snk + true + false + + + + ..\..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll + + + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.0-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + + ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll + + + False + Cmdlets\VaultCredentials\Microsoft.WindowsAzure.Management.Common.dll + + + ..\..\..\packages\Microsoft.WindowsAzure.Management.Scheduler.6.0.0\lib\net40\Microsoft.WindowsAzure.Management.Scheduler.dll + + + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + + Cmdlets\VaultCredentials\Security.Cryptography.dll + + + + + + + False + ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Extensions.dll + + + False + ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + True + Resources.resx + + + + + + + Always + Designer + + + + Designer + + + + + ResXFileCodeGenerator + Designer + Resources.Designer.cs + + + + + Always + + + + + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs new file mode 100644 index 000000000000..a1d9d69b5b54 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs @@ -0,0 +1,54 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using ClientModel = Microsoft.Azure.Management.BackupServices.Models; +using CmdletModel = Microsoft.Azure.Commands.AzureBackup.Models; + +namespace Microsoft.Azure.Commands.AzureBackup.Helpers +{ + internal static class VaultHelpers + { + /// + /// Gets CmdletModel of backup vault from Client model + /// + /// + /// + /// + public static CmdletModel.AzurePSBackupVault GetCmdletVault(ClientModel.AzureBackupVault vault, string storageType) + { + var response = new CmdletModel.AzurePSBackupVault + { + ResourceId = vault.Id, + Name = vault.Name, + Region = vault.Location, + ResourceGroupName = GetResourceGroup(vault.Id), + Storage = storageType, + }; + + return response; + } + + /// + /// Gets ResourceGroup from vault ID + /// + /// + /// + public static string GetResourceGroup(string vaultId) + { + string[] tokens = vaultId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + return tokens[3]; + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Library/CertUtils.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Library/CertUtils.cs new file mode 100644 index 000000000000..0ed7a5d87e4a --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Library/CertUtils.cs @@ -0,0 +1,127 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Management; +using Microsoft.WindowsAzure.Management.EventSources; +using Security.Cryptography; +using Security.Cryptography.X509Certificates; +using System; +using System.Security.Cryptography; +using System.Security.Cryptography.X509Certificates; + +namespace Microsoft.Azure.Commands.AzureBackup.Library +{ + /// + /// Certificate utility methods + /// + public class CertUtils + { + public const string MsEnhancedProv = "Microsoft Enhanced Cryptographic Provider v1.0"; + public const string DefaultIssuer = "CN=Windows Azure Tools"; + + public const string DefaultPassword = ""; + public const string OIDClientAuthValue = "1.3.6.1.5.5.7.3.2"; + public const string OIDClientAuthFriendlyName = "Client Authentication"; + public const int KeySize2048 = 2048; + + /// + /// Windows Azure Service Management API requires 2048bit RSA keys. + /// The private key needs to be exportable so we can save it to .pfx for sharing with team members. + /// + /// A 2048 bit RSA key + private static CngKey Create2048RsaKey() + { + var keyCreationParameters = new CngKeyCreationParameters + { + ExportPolicy = CngExportPolicies.AllowExport, + KeyCreationOptions = CngKeyCreationOptions.None, + KeyUsage = CngKeyUsages.AllUsages, + Provider = new CngProvider(MsEnhancedProv) + }; + + keyCreationParameters.Parameters.Add(new CngProperty("Length", BitConverter.GetBytes(KeySize2048), CngPropertyOptions.None)); + + return CngKey.Create(CngAlgorithm2.Rsa, null, keyCreationParameters); + } + + /// + /// Creates a new self-signed X509 certificate + /// + /// The certificate issuer + /// Human readable name + /// The certificate's password + /// Certificate creation date & time + /// Certificate expiry date & time + /// An X509Certificate2 + public static X509Certificate2 CreateSelfSignedCert(string issuer, string friendlyName, string password, DateTime startTime, DateTime endTime) + { + string distinguishedNameString = issuer; + var key = Create2048RsaKey(); + + var creationParams = new X509CertificateCreationParameters(new X500DistinguishedName(distinguishedNameString)) + { + TakeOwnershipOfKey = true, + StartTime = startTime, + EndTime = endTime + }; + + // adding client authentication, -eku = 1.3.6.1.5.5.7.3.2, + // This is mandatory for the upload to be successful + OidCollection oidCollection = new OidCollection(); + oidCollection.Add(new Oid(OIDClientAuthValue, OIDClientAuthFriendlyName)); + creationParams.Extensions.Add(new X509EnhancedKeyUsageExtension(oidCollection, false)); + + // Documentation of CreateSelfSignedCertificate states: + // If creationParameters have TakeOwnershipOfKey set to true, the certificate + // generated will own the key and the input CngKey will be disposed to ensure + // that the caller doesn't accidentally use it beyond its lifetime (which is + // now controlled by the certificate object). + // We don't dispose it ourselves in this case. + var cert = key.CreateSelfSignedCertificate(creationParams); + key = null; + cert.FriendlyName = friendlyName; + + // X509 certificate needs PersistKeySet flag set. + // Reload a new X509Certificate2 instance from exported bytes in order to set the PersistKeySet flag. + var bytes = cert.Export(X509ContentType.Pfx, password); + + // NOTE: PfxValidation is not done here because these are newly created certs and assumed valid. + + ICommonEventSource evtSource = null; + return X509Certificate2Helper.NewX509Certificate2(bytes, password, X509KeyStorageFlags.PersistKeySet | X509KeyStorageFlags.Exportable, evtSource, doPfxValidation: false); + } + + /// + /// Returns serialized certificate - Base64 encoded based on the content type + /// + /// The certificate provided + /// Cert content type + /// The serialized cert value in string + public static string SerializeCert(X509Certificate2 cert, X509ContentType contentType) + { + return Convert.ToBase64String(cert.Export(contentType)); + } + + /// + /// Generates friendly name + /// + /// Subscription id + /// Prefix, likely resource name + /// Friendly name + public static string GenerateCertFriendlyName(string subscriptionId, string prefix = "") + { + return string.Format("{0}{1}-{2}-vaultcredentials", prefix, subscriptionId, DateTime.Now.ToString("M-d-yyyy")); + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/MSSharedLibKey.snk b/src/ResourceManager/AzureBackup/Commands.AzureBackup/MSSharedLibKey.snk new file mode 100644 index 0000000000000000000000000000000000000000..695f1b38774e839e5b90059bfb7f32df1dff4223 GIT binary patch literal 160 zcmV;R0AK$ABme*efB*oL000060ssI2Bme+XQ$aBR1ONa50098C{E+7Ye`kjtcRG*W zi8#m|)B?I?xgZ^2Sw5D;l4TxtPwG;3)3^j?qDHjEteSTF{rM+4WI`v zCD?tsZ^;k+S&r1&HRMb=j738S=;J$tCKNrc$@P|lZ + + + + Get-AzureBackupVault + + Retrieves one or more vault objects based on the parameters that are specified. + + + + + Get + AzureBackupVault + + + + The Get-AzureBackupVault commandlet retrieves existing Azure Backup vaults and returns objects of type AzurePSBackupVault. The vault object is used in some Azure Backup commandlets as a mandatory parameter. + + + + Get-AzureBackupVault + + ResourceGroupName + + The Azure resource group under which the vault was created. + + String + + + Name + + The name of the specific Azure Backup vault that needs to be retrieved. If no name is specified, then the commandlet returns all the vaults created by the subscription. If there is more than 1 backup vault with the same name then the commandlet returns all the vaults that match the name. Use the -ResourceGroupName parameter to filter results and get a unique vault. + + String + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + ResourceGroupName + + The Azure resource group under which the vault was created. + + String + + String + + + + + + Name + + The name of the specific Azure Backup vault that needs to be retrieved. If no name is specified, then the commandlet returns all the vaults created by the subscription. If there is more than 1 backup vault with the same name then the commandlet returns all the vaults that match the name. Use the -ResourceGroupName parameter to filter results and get a unique vault. + + String + + String + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + Vault name as [String] + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- View all the Azure Backup vaults created -------------------------- + + PS C:\> + + Get-AzureBackupVault + + + + + + + + + + + + + + + + -------------------------- Get a list of all vaults created in West US -------------------------- + + PS C:\> + + Get-AzureBackupVault | Where-Object { $_.Region -eq "westus" } + + + + + + + + + + + + + + + + -------------------------- Get a reference to a specific vault -------------------------- + + PS C:\> + + Get-AzureBackupVault -Name "myvault" + + + + + ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg1/providers/Microsoft.Backup + /BackupVault/myvault +Name : myvault +ResourceGroupName : rg1 +Region : westus +Storage : GeoRedundant + + + + + + + + + + + -------------------------- Count the number of vaults having Locally Redundant Storage -------------------------- + + PS C:\> + + Get-AzureBackupVault | Where-Object { $_.Storage –match ‘LocallyRedundant’ } | Measure-Object + + + + + Count : 4 +Average : +Sum : +Maximum : +Minimum : +Property : + + + + + + + + + + + + + New-AzureBackupVault + + + + Set-AzureBackupVault + + + + Remove-AzureBackupVault + + + + Get-AzureBackupContainer + + + + + + + + Get-AzureBackupVaultCredentials + + Downloads the Vault Credentials file to a specified location. + + + + + Get + AzureBackupVaultCredentials + + + + To enable hybrid backup scenarios the Vault Credentials file is a critical component. The vault credential file is used to connect a server to the Azure Backup vault and register it. Only after registration can backup data be sent to the vault. The Get-AzureBackupVaultCredentials commandlet downloads and places a vault credential file at the location specified by the user. + + + + Get-AzureBackupVaultCredentials + + TargetLocation + + The destination path where the Vault Credentials file should be placed. + + String + + + Vault + + The specific Azure Backup vault object for which the Vault Credential file is generated. + + AzurePSBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + TargetLocation + + The destination path where the Vault Credentials file should be placed. + + String + + String + + + + + + Vault + + The specific Azure Backup vault object for which the Vault Credential file is generated. + + AzurePSBackupVault + + AzurePSBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + + + + + +This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + Vault Credentials file name as [String] + + + + + +This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Download a Vault Credentials file -------------------------- + + PS C:\> + + Get-AzureBackupVaultCredentials -Vault $vaultobj -TargetLocation "C:\users\admin\Desktop" + + This will place the vault credentials file at the user-specified location. + + + f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn_2015-06-7--06-22-35.VaultCredentials + + + + + + + + + + + + + + + + + New-AzureBackupVault + + Creates a new Azure Backup vault based on the parameters that are specified. A vault is the start point for all backup operations with Azure Backup. + + + + + New + AzureBackupVault + + + + The New-AzureBackupVault commandlet creates and Azure Backup vault and returns an object of type AzurePSBackupVault that acts as a reference to the vault entity. The vault has some important properties that define the scope of backup – the region and the storage type. + + + + New-AzureBackupVault + + ResourceGroupName + + Specifies the name of an existing resource group. In order to create a resource group, use the New-AzureResourceGroup commandlet. There is no requirement that the Azure ResourceGroup and the Azure Backup vault be in the same region. + + String + + + Name + + Specifies the name of the Azure Backup vault. The combination of ResourceGroupName and Name must be unique. You cannot create two vaults with the same name under the same ResourceGroup, but two vaults with the same name can be placed under two different Resource Groups. + + String + + + Region + + The region parameter places the vault object into a specific Azure region. For hybrid backup scenarios, it is advised to create a vault in a region close to the on-premise server to reduce latency. For backup of Azure IaaS virtual machines, the vault becomes the point of discovery for local virtual machines. + + String + + + Storage + + Backup storage is billed at Azure Storage rates and users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. Since this is an optional parameter, if it is not specified then the vault is created with the GeoRedundant Storage option. + + AzureBackupVaultStorageType + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + ResourceGroupName + + Specifies the name of an existing resource group. In order to create a resource group, use the New-AzureResourceGroup commandlet. There is no requirement that the Azure ResourceGroup and the Azure Backup vault be in the same region. + + String + + String + + + + + + Name + + Specifies the name of the Azure Backup vault. The combination of ResourceGroupName and Name must be unique. You cannot create two vaults with the same name under the same ResourceGroup, but two vaults with the same name can be placed under two different Resource Groups. + + String + + String + + + + + + Region + + The region parameter places the vault object into a specific Azure region. For hybrid backup scenarios, it is advised to create a vault in a region close to the on-premise server to reduce latency. For backup of Azure IaaS virtual machines, the vault becomes the point of discovery for local virtual machines. + + String + + String + + + + + + Storage + + Backup storage is billed at Azure Storage rates and users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. Since this is an optional parameter, if it is not specified then the vault is created with the GeoRedundant Storage option. + + AzureBackupVaultStorageType + + AzureBackupVaultStorageType + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + None + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Create a new backup vault -------------------------- + + PS C:\> + + New-AzureBackupVault –ResourceGroupName “rg1” –Name “vault1” –Region “westus” + + + + + ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg1/providers/Microsoft.Backup + /BackupVault/vault1 +Name : vault1 +ResourceGroupName : rg1 +Region : westus +Storage : GeoRedundant + + + + + + + + + + + -------------------------- Create a new backup vault with Locally Redundant Storage -------------------------- + + PS C:\> + + New-AzureBackupVault –ResourceGroupName “rg2” –Name “vault2” –Region “westus” –Storage LocallyRedundant + + + + + ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg2/providers/Microsoft.Backup + /BackupVault/vault2 +Name : vault2 +ResourceGroupName : rg2 +Region : westus +Storage : LocallyRedundant + + + + + + + + + + + + + New-AzureResourceGroup + https://msdn.microsoft.com/en-us/library/dn654594.aspx + + + Get-AzureBackupVault + + + + Set-AzureBackupVault + + + + Remove-AzureBackupVault + + + + + + + + Remove-AzureBackupVault + + Deletes the Azure Backup vault object based on the parameters that are specified. + + + + + Remove + AzureBackupVault + + + + The Remove-AzureBackupVault commandlet deletes the backup vault. However, before a vault can be removed, it must first be empty – it must contain no backup data or protected items or registered servers. This ensures that a vault cannot be deleted inadvertently; the deletion of a backup vault is a planned operation. + Use the Remove-AzureBackupContainer commandlet to clear up IaaS VM backup data from the vault, or use the Delete-RegisteredServer commandlet to clear up other registered servers and backup data. + + + + Remove-AzureBackupVault + + Vault + + The specific Azure Backup vault object which needs to be removed. + + AzurePSBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Vault + + The specific Azure Backup vault object which needs to be removed. + + AzurePSBackupVault + + AzurePSBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + None + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Delete an Azure Backup vault -------------------------- + + PS C:\> + + Get-AzureBackupVault -Name "myvault" | Remove-AzureBackupVault + + + + + + + + + + + + + + + + + + Remove-AzureBackupContainer + + + + Delete-RegisteredServer + + + + New-AzureBackupVault + + + + Get-AzureBackupVault + + + + Set-AzureBackupVault + + + + + + + + Set-AzureBackupVault + + Changes the properties of the Azure Backup vault object based on the parameters that are specified. + + + + + Set + AzureBackupVault + + + + The Set-AzureBackupVault commandlet allows you to change the storage type of the backup vault. The other parameters like Region, Name, and ResourceGroupName are not editable. + + + + Set-AzureBackupVault + + Storage + + Users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. + + AzureBackupVaultStorageType + + + Vault + + The specific Azure Backup vault object for which the properties need to be updated. + + AzurePSBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Storage + + Users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. + + AzureBackupVaultStorageType + + AzureBackupVaultStorageType + + + + + + Vault + + The specific Azure Backup vault object for which the properties need to be updated. + + AzurePSBackupVault + + AzurePSBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + + + + + +This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + None + + + + + +This section details out the type of the objects that the cmdlet emits. + + + + + + + + + The storage type is locked on the registration of the first server or virtual machine, and cannot be changed afterwards. + + + + + -------------------------- Change the storage for an existing vault -------------------------- + + PS C:\> + + Get-AzureBackupVault –Name “myvault” | Set-AzureBackupVault –Storage LocallyRedundant + + + + + + + + + + + + + + + + + + New-AzureBackupVault + + + + Get-AzureBackupVault + + + + Remove-AzureBackupVault + + + + Set-AzureBackupVaultStorageType + + + + + \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml new file mode 100644 index 000000000000..ab415da71864 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml @@ -0,0 +1,42 @@ + + + + + Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + + Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + + + + + + 18 + + + + 18 + + + + 18 + + + + + + + Name + + + Region + + + Storage + + + + + + + + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs new file mode 100644 index 000000000000..f427757a46b8 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupBaseObjects.cs @@ -0,0 +1,46 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.AzureBackup.Models +{ + public class AzureBackupVaultContextObject + { + /// + /// ResourceGroupName of the azurebackup object + /// + public string ResourceGroupName { get; set; } + + /// + /// ResourceName of the azurebackup object + /// + public string ResourceName { get; set; } + + /// + /// ResourceName of the azurebackup object + /// + public string Location { get; set; } + + public AzureBackupVaultContextObject() { } + + public AzureBackupVaultContextObject(string resourceGroupName, string resourceName, string locationName) + { + ResourceGroupName = resourceGroupName; + ResourceName = resourceName; + Location = locationName; + } + + public AzureBackupVaultContextObject(AzurePSBackupVault vault) + : this(vault.ResourceGroupName, vault.Name, vault.Region) { } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs new file mode 100644 index 000000000000..79cc0f9b20c0 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupEnums.cs @@ -0,0 +1,22 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.AzureBackup.Models +{ + public enum AzureBackupVaultStorageType + { + GeoRedundant = 1, + LocallyRedundant, + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs new file mode 100644 index 000000000000..62324a3a36ea --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; + +namespace Microsoft.Azure.Commands.AzureBackup.Models +{ + /// + /// Represents Azure Backup vault + /// + public class AzurePSBackupVault + { + public string ResourceId { get; set; } + + public string Name { get; set; } + + public string ResourceGroupName { get; set; } + + public string Region { get; set; } + + // public Hashtable[] Tags { get; protected set; } + + public string Storage { get; set; } + + public AzurePSBackupVault() : base() { } + + public AzurePSBackupVault(string resourceGroupName, string resourceName, string region) + { + ResourceGroupName = resourceGroupName; + Name = resourceName; + Region = region; + } + + internal void Validate() + { + if (String.IsNullOrEmpty(ResourceGroupName)) + { + throw new ArgumentException("AzureBackupVault.ResourceGroupName"); + } + + if (String.IsNullOrEmpty(Name)) + { + throw new ArgumentException("AzureBackupVault.Name"); + } + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/VaultCredentials.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/VaultCredentials.cs new file mode 100644 index 000000000000..54b533565d1e --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/VaultCredentials.cs @@ -0,0 +1,178 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Diagnostics.CodeAnalysis; +using System.Runtime.Serialization; + +namespace Microsoft.Azure.Commands.AzureBackup.Models +{ + /// + /// Class to define vault credentials + /// + [DataContract] + internal class VaultCreds + { + #region Properties + + /// + /// Gets or sets the key name for SubscriptionId entry + /// + [DataMember(Order = 0)] + public string SubscriptionId { get; set; } + + /// + /// Gets or sets the key name for ResourceType entry + /// + [DataMember(Order = 1)] + public string ResourceType { get; set; } + + /// + /// Gets or sets the key name for ResourceName entry + /// + [DataMember(Order = 2)] + public string ResourceName { get; set; } + + /// + /// Gets or sets the key name for ManagementCert entry + /// + [DataMember(Order = 3)] + public string ManagementCert { get; set; } + + /// + /// Gets or sets the key name for AcsNamespace entry + /// + [DataMember(Order = 4)] + public AcsNamespace AcsNamespace { get; set; } + + #endregion + + #region Constructors + + /// + /// Initializes a new instance of the VaultCreds class + /// + public VaultCreds() { } + + /// + /// Initializes a new instance of the VaultCreds class + /// + /// subscription id + /// resource type + /// resource name + /// management cert + /// acs namespace + public VaultCreds(string subscriptionId, string resourceType, string resourceName, string managementCert, AcsNamespace acsNamespace) + { + SubscriptionId = subscriptionId; + ResourceType = resourceType; + ResourceName = resourceName; + ManagementCert = managementCert; + AcsNamespace = acsNamespace; + } + + #endregion + } + + /// + /// Class to define backup vault credentials + /// + [SuppressMessage("Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1402:FileMayOnlyContainASingleClass", Justification = "Grouping classes based on entity")] + [DataContract] + internal class BackupVaultCreds : VaultCreds + { + /// + /// Gets or sets the agent links + /// + [DataMember(Order = 0)] + public string AgentLinks { get; set; } + + #region Constructors + + /// + /// Initializes a new instance of the BackupVaultCreds class + /// + public BackupVaultCreds() { } + + /// + /// Initializes a new instance of the BackupVaultCreds class + /// + /// subscription Id + /// resource type + /// resource name + /// management cert + /// acs namespace + public BackupVaultCreds(string subscriptionId, string resourceType, string resourceName, string managementCert, AcsNamespace acsNamespace) + : base(subscriptionId, resourceType, resourceName, managementCert, acsNamespace) { } + + /// + /// Initializes a new instance of the BackupVaultCreds class + /// + /// subscription Id + /// resource type + /// resource name + /// management cert + /// acs namespace + /// agent links + public BackupVaultCreds(string subscriptionId, string resourceType, string resourceName, string managementCert, AcsNamespace acsNamespace, string agentLinks) + : this(subscriptionId, resourceType, resourceName, managementCert, acsNamespace) + { + AgentLinks = agentLinks; + } + + #endregion + } + + /// + /// AcsNamespace is where the certificate is uploaded into + /// + [DataContract] + internal class AcsNamespace + { + /// + /// Gets or sets the key name for HostName entry + /// + [DataMember(Order = 0)] + public string HostName { get; set; } + + /// + /// Gets or sets the key name for Namespace entry + /// + [DataMember(Order = 1)] + public string Namespace { get; set; } + + /// + /// Gets or sets the value for ResourceProviderRealm entry + /// + [DataMember(Order = 2)] + public string ResourceProviderRealm { get; set; } + + /// + /// Initializes a new instance of the AcsNamespace class + /// + public AcsNamespace() { } + + /// + /// Initializes a new instance of the AcsNamespace class. + /// + /// host name + /// acs namespace + /// rp realm + public AcsNamespace(string hostName, string acsNmespace, string resourceProviderRealm) + { + this.HostName = hostName; + this.Namespace = acsNmespace; + this.ResourceProviderRealm = resourceProviderRealm; + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..9cea209aa6cd --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Microsoft Azure Powershell")] +[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] +[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] +[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] + +[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] +[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.Designer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.Designer.cs new file mode 100644 index 000000000000..58372d895579 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.Designer.cs @@ -0,0 +1,81 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.18449 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.AzureBackup.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.AzureBackup.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to The specified Azure Virtual Machine Not Found.. + /// + internal static string AzureVMNotFound { + get { + return ResourceManager.GetString("AzureVMNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified resource does not exist.. + /// + internal static string ResourceNotFoundMessage { + get { + return ResourceManager.GetString("ResourceNotFoundMessage", resourceCulture); + } + } + } +} diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx new file mode 100644 index 000000000000..73ab213136b1 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The specified Azure Virtual Machine Not Found. + + + The specified resource does not exist. + + \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.WindowsAzure.Management.Common.dll b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.WindowsAzure.Management.Common.dll new file mode 100644 index 0000000000000000000000000000000000000000..247f5d1a8c3e194a2b90b3bf0e6632ea528c31bd GIT binary patch literal 1322440 zcmce<2Y_5v+5dm{&dj}2b~l-w-Pt6YWH*5Z*AA#D$kkGy3uT01kiX>-j&fjcF*4?xL@743Uzqk4EstWsJ5ePBe-u@3-WhT7)}Vj8Q8Y{`iG~3yJSed4a_Y;w6MvE_Cz)i&E** ztgP;Ful0Al0C`R;>B{oNUed%H;5D`?YyB4WD<4zOgNj#LlkyISZ@4Kosc89x?|wgC zhHppcd1I9zqV$9IasYm?Cm6?WPGCe3u2#-+oP{n1`Gr=s0?n~CecplCwDaOD&I;mH zj9$Ty<;l~);M+`Gg~%J?9nPPY6(0k2^0TXKR$q_=1$P8to)i~;#{Bm2d{9>kk zjO?99VGd>d2)R|u`I&S4mf)p~KNRd4c`5QK1`cz?B0^{lgoZLMaI`Qp+V79=aYT(+ zHaZxDnc=z6Fj@-~fl1!_d-k)vQQBYMVUC4VbchQtt?|8$gi{HML!RGO#)iD;FhbkL ztCuk1wd5@f^$|*8RfjxFK3ebSjIGIdzl9EU%4Bsc$o<*!5l;o?H*ZN(#U2UBZ#naL z+-=FvZ#~S+htCG?32p_uxdFO<>jVQo0yCl%s^u77^8-Vv=m=~R_>nkF&PvfQrrRgV z-gzA6P})~zl$_7@TY{I;zC<}dy`w}7bEK_^l-$t}njA{I(3#PK1Zp&mRu~;a_)KXo zG};8P(vk5eJ~1m}C7+6pRj5Zh^u4o@1H+EVSUDc@Qf=jV2sua?Ltdt>%no^j>9+EV zn2#fR+cH8S7?)m4URMZ6T7@7$^l(dPjQ0K?eV+Q+BK)_G2UZmD{0Yikb526aCgBfX8&&`Eq=sq6R}jbdnt5P#8T5NBv>cXHoTwVf$p+J5RwJ z3jK(@Rm+73jyI|bDuw<~cF)L=M4ffWBNi80kFiKDu>XO-!(Bdz&hGPq`u-F-KEHJ; z=IXNFIt{zF(AhzJI=;HUXNliBL-2lQ2k~R^&5#{>>3nn+M$#g4Lpj$X^Fw*pA|FQn zT@LbX#^_EC@_vNWl!K?hjo(sGDen&zl15o@$Vm?Ju2JS)pufs^9^Gt$?ajc^FWd8v ze>4!u)y>TiynaBn$5J=B<)SS>UDNGCv(Z+dR2%PD+Nl0k@q0GExAFr|S zG4L3i_N^jGMO3)nx|dJt-s1tQ?ww(|l`KenkyM=LYtbHlal;4t7j-QC>m!r#sx!eI|Z`3VvWogq3Z+3raV@fsNftNAW_=>NQ=jVQEoj+RfYpGP-FIW8d zTA(R2BYKsp13uY+GNZu+I9j>TkFPVh%+-pViWU%BIX&gC+7n(6wAoS=dhBXNeFg=o zW?S^*HgJ-WRj3{q##1*fhW6n34_^lY#pe#u3s5n;4)QgkDsetZ*VS%YS< z7l_&xR36=nwJn+yY-1 z)fv*NuINdyI^5%#O}#`X=#rHyN!WmvbSV=SGbA4H3&$5;j5TrjXMgdut?~|-_t3Yz zw_KVHW4avtB&-Mu1^4ElHIUNo6;iw8p-$^sLPV^69XY&!S;iJ{`SG zmVEYS6Cw9!Lqv<9A92rT3!D3M%Qp|eLvYMd|MSH+3K-kuyl23 zlB=$oBfx5Tj@R$Vvy?4n6I!@BvJlY8B8&5aewBGPz($G^$G=qm*{mu_f7Vr!e!Nr? zyjDr%RcMD|_NwuT3&X3Y5~dm2A_RF9FuV`TD}1$f8uV>0XQ$B(s_X5-%aFJct4er|kl^KDm+uetC7 zl_lN*d81ixzq}K(-h#Y~X1#fN7tVTfc$as4%khXP6^cf8)%bb>sBczxT!QAKg}U_2 zN27JgnUB`&QZpZo+$Cl{n!crF9;Jk%N7neplaf?GwYP+AGwTt@y&tXa4G&Z$0fF)}J}h8NYnml0EPL;>Tw}RANH< zvt4A>YX_P|?tnT~eSG09uVeO7%7qatgM7J|D=&{I^?bJDU+(57K44H;`;!!=LQ-m1!mz&C0JJ*+tl{-wxVDz^nD=z( zFBbi)guUXOR9elkdK3A+64~ZbA(uj%6_XK8fU|k;0ai}%Q{&_3UFeTbq_*I=_$?xVoIHkpMfuara&ij0e<`}K~Cy{q~d1_bleT0XgmjZ z^JW1)8{L96E$CDZ!zMfj(?v9I6LH=ir7lB_T>NsmTF%|hfXJ0}9^tYb=)M?`aF zn*Kt}bt8W3McCte))iPE$m!>+VYzubE()miV(j)yFmS(A?mL|OWpcmVx$l(w6>@6@ z{z@Db_6Abk|4<6F`l3ss5FSrXtPA)g0s4JMjA1{X-yQtcYX#(wI5zy2lC^nU`z~Be z{*67qB^Dg~Re~?-z=dVgtM)Fz{g#3qfIc|C{?jDqx5Q|TwThVcTNdYe<}_?Mgz4}I>ZYM?)s5t3A8N%Qqs*HdSF?|k64POxg34;XN0S+-^( z_CxGSr*19Ua=Zo?M&F10syXo^{_dAUEZ$$~gD=g}{l{qAL+;31v)Q@Xi4$KpFVgDe z37yrE$-=j`(^k`|T-B+mR`N9#?RNpT?JmNS+G=%BVJ5egif3(ck~BwX8{>PLZvaU1 zYQGUXNVVT2E8TvxtW5hYvgq(q$c7cC{rSzK=mgpY`!*v7$hwI3&i8-8bn2z2Li_yIp^)IOIO{7pxjc(gqd57N;9_}ed1vi8o4{np`TYg#~gU9qW+Hx@2P%k~| zKK-^u9rEJ)2(72e+Zfv}bZPVowa%)#thF|Ev8tWhsyzQeoam8atFtY8lHYm)J6?Y4 z6773YBiM~rSy0U0V$y5AlFdW41Yrfuk3yg=)WD*#!F`uD7e5AgLK|}N$8k*tMlJpX z?%sqxiQjL13RC;~T9dnUmM9$t0&8)f!48_A#cY30&Xxi81fR##`~rqchY73F5lZ|e zjEZdJQbGlbzeA|sx)NvfT_MI@L{<~!)fC_522y}w$EQ%d@%8dNW^l5mEF9M5sfh`jTwrzG}!V=F$4}$FW>blS{`aVzyDt?huCkET2*L&Xc?pAk~0jy*NU^m5rUs*`~)$SDx;-WY-os+mZS;h?D-X!&u2V z(4$;O(W0@s{>~h9fYcfXFvs$8L<_D~?qG5|h3H&|wuQ*e-$HU)AcJcs*?OMMvR%J+ z3Hc{u#bLT?x~e>*ADxg!KYVFF)28c6`^{5{5uJ|V2lWAePp}nd^LOCWSNt9;daS~t zGi0_zU_a>c_uKoTKM)-M7lw^9YLA-Mt{_dFLG3`4{aM@5KL`95@$*~P0*pm#!wH}! z{?qUerS^=}sGPZ;R;II#*;XcUIyAXX_RecCb!b9|q*k`dh$$#JH?dZhamXWW#f6r& zGLB6YNNc3YK3T+!Q!Q&pS6|u7;dAD49RHD=y6|Cb<0B5`rX?}j*;@Q35K7shZ1iUw zob-%Z!aj!zEv4g_&iWBOmQH$_eoOFD)*s648F>$xFXkL(!f`hGZwTpZLV+`**8at^ z+P`df*qEFEnSd;f-V>lMG};6)>W22}eX{l@esAD+7P6!I&H0Og=_h!OwArhd#OIt7 zZ6u8T$NB;ZqH_#nMMK*+p?fWPUE8PQP}>(EIR>&m{I{e-ow9SForDeKtj=`!@mm6_ z^EU9gz;Ea0x26EQs&qLN62Da?&dpSnikY6eq!Xgqx+ID!{%P4e+nDOH>1=eYa*QBEzPPi<%`oqbP)t}X2teIpnqEb@g@viCdqVF}kaWtNxhP8Rt{3ss+&sLn?8$ zO!u#IFyUnO3O~9NFXQk#gI~vfw%_W5YRkv)TPZUQkj5D?ps8;kV{G%8d9kLlHj^RD zng=kJb={xe3O!+N2 zM{iM6v+ecg%EdYf=#AF?f~a4}E)5rZ0Dws@8pKr(rxsvUhi!?a!&|>4jA$W7+w$+X zinv)0VeScrFm32-o{2Ep?55-yR)-D4GQn1&brZ}2JSN3-3nLaNR$F4k&E(2*vChkv zbndzcht1?f!lx5nEPLk?%%Pkg(aEXB-A29gTM8=W{2@+M*J~!1cgQ1c#f8?GSuT*4 zSuC`d0%0@-aBe$Ma2^#>b#Pv>@SQ z!5lsY9Up@(&~K?=Vph`mp@n-!Xsctzh5a+@!`d=ecdS5kWZo^E36Sr%!)FtU38VM$ zxeJ{=d_MMMIOC5R;!&jD3hM0w{2I5^j~vhMY8>z8w*q(X-#38i*VA99)E{yteL&J* ztWaK<^R6^I-QLgaOnZN`Ig?&x4tFL!Y3`Bs0cN-4bsY-5j|M^k+?lkEgDkkzd~NP@ zJDm?YDXWiXTM#FkfS56gPWkvi85IoamQ=CpN3)fw2!5{pGFdxcj5(C@rA4H9#*_V) z-~+x?MvhP^q#fdjMT1NYGMa!Xur`$Jcf6E1QJoO={+9k~JjrCk(zAqmCmUU8w8=W$ zj=srVcg?OT#N3>D#7X4)z(l^vtmLb-wWd(Aoq2`jivC%N&_B!T#7RdeaSGt(70jcV zHoJMWIRG$GbO3VzU=rp4=IHdmY^E?IGgnp-27WraNLEJ06jUbZzIARNRMZFG4c`^` zPDKZskQ(pRmeE?=*E6kNhn)|~@gdl$_)yH|VHkxJ=S!t*b)py+v+?0T`m@n`tXekA z#v5=<7CCO#8BsB`XluV7#v6eT1o07AN8uS=of$4=s(8!s(F&w5 zF9kE~wj6`+{-TDBM4xS?ciqd}zMt}NE$}LN7+Yiv7edEy=#uhXQfzRBj!jUPs& zdL~;+&s?{cl+)=`!xW7*Cdt#XIjJ;MrXV9!+5V z^)rL?T;*fwoZJL7u>EYU?$@5?4ZD7R#5?uv_J-zqC+(wY`6=ebE0om zqGw|i!e|Ha`g=nM5>K}Ic%hwxku#=?nfihv8yWA?M#i~-)jR0eygC`3hqv)F#IWd= zK276T1ee2GFT43;cy_TM&UW3=`HIR=Bsmt-!^1JtCbDVSQ~#p#j1AZa!L{GK0PJ$} zLd<;gBFqBCdNFnwUxL{`Gu)$XJF7OEwSI~Y*{8}a+|TLF`e@`#)H^!389QxXLmElH z8%#X`f|XQsDOP?aD!5ENKjmFL>M{klWq(&OZ8_jPx%oseuV-TPWMnvyyY;eqLc`R9 za`9!N=lV-D{Jq?$7kw75+VS_uAG-&|R4vQkiwNss*^Y@T&C8WMyZKjO&#XqaImpl!b0c@mHLo#LJ8t)Kym%DR#&+d-rC*d-Sf`yvS)j3 zxwW_UCgiYIau~hkg90gY<44>{?&519kZ(R2vk={Jw_dGo$6;jXgrrF6=O7CE(GzkBKq--Sf$K* zw)Q-z-GqnT`_ze>5@A2jY%!cWCB8Mw-JAAqCL2-Z;t6afLfcSV(6pPa zq@*3zv8@Htu6C+j%^Y05MOhm7*PCQ+RzG>=O4sJlcbDvqZS@UG_r=(UD&5-STpO%C zW=`XCZKAd@X&Vf?)u|Po?sf{+n$Lygv_J-z+HF-Tx7CQQt2!`qM2GQtT5+c@nQg^; z^(yFsbmqJlUF6zMXKIQ40ut8oR`fzS4#RO1{5YST4V_5d4kK?#vr=l~JMS!}S;oaL zB2J+x68&K*Q!WM7Ma4`pxMLujlLAE$-%b!MaI;!tF+;15Nhg5a~KWo(eaM2x>nw>AG{!&4U<3}Xj6?uFr z$VrzHxY;pi@U3Awn$n>gCrp*C><%yGmIgr9D;EjwbpN#an)4~3c>-YOR1eCCUH*S`>tTCTI;qV8N&^HaNWUGqvviM&DUZ~3uN#`&3oimED@oBt0K&m56yTU`3U;Y<0%ryp#BYL0yZZ8Gx7egMgxQu>pg_d?Q6zEQIUM*rhtUK1w6#}lK@}T`1VK^RDL~{_{20bSkcLsF0 z-xB&fr#X)KZ2KNjbIfy^L*Zzbog}dsqHwi*tscXV9m{kY?MF&N$sXSVbKoNPadK-eX~Z5m;R z@dpXcF0n~sJsYrt@*x03W0=p^KQhAtsTSfzG@PEtA0{xq52F-T&*O5>M{rW*)rM>1 z&dxc?Iinop;{Q+-78qngDdsvLS83FZ3^zYd4byf^E@lfaU`s|lBji6y-1aQq4Qt{vhVD0;O-;8{;M8B8&+N=Khm_;4`Aj3aHzTeZ*+tm~_wht+5NihlDh z;!dk0OuD@NH$|T!?zFnf1a$PKh;A)EEy4-N+Z269AdzQ$?;TsIsPl{+g8uWdqZ_Yx z?087LB~wgQ(v@rc=4WA`&77j6s3h&spv{1ru6$8@hp)nG$SuLlwI_HRz;35)z;v5Q zfi_{Z)_OZKITl&(o}dmzpCgIr^BAb?U`|r=%543eqQ%c0g>X09o4!N(BEi~Rq?OiF z!_`7Ig0t!lAq?bdtPgG_;o6{|3Ul%Ea7LtAEoPWMvK}m^nLobKZ;6i@m)K-?8L+CV zVH1+K;P8WoM1Aj(0=E zR)%dwbl_szQPGBKvRI_+5D)Q}0TmfM-=}?!ui(+m%W5GUj=qMcb~d}AU&ql;za;!H z{sz8m{7p>X$|I@As=87I4B~HDkjlF^inaHFTwtv|=cYj#XIYhb4wY|zxZiT24*+n}1{*weKX-QUR7~B^osqrsdziYP%N#}L zL<1!6w-l6I(LGs%XW)=W+KLM;8$3B5S0MKuQAB!B#2g=1*a!D`{FazE5hX=vek~{c zmLh61hdLmr-}*kLX_59sb7)<0&Kxz_xHR9HR?JD54$h<@E`n~47<4Kitk|j8Y>0Y-?_N-8^xWBp%VF=v*Z&9 zqo1`g^aliL4E>?m>GqGz&a{7QwmW0~iMdDGKQ+50uNzC5ph=T6{!bt#>c+wXd(yUY zkA4Qw>CqlbCw@HX`MV#4Q`gRaPH1g)s-7+vs$;34zUUVK>cz$|1X9s2@i>jx@Mguy zum1;m@^^o1p7{NW??=CK@i*=jKWqB|`Stf%{O`|=e^9EPDQ_DPfmHNsN8tRu2;^>7 zr2P6RBk+T{1P)2nb1RXi$38Md($Q}mk*DuPq?o>0G4t!!8vTgxUY;4+_M)qdmSYG-BktFZOu2+BTd`D#WdtN+MKQB6Gu6EAHgVIrfyz=aBOj#8kRQh z-oUg2+R@nWkx&I4hv*MDSlGWu=$&OhsnA+nD&`>IzZBtw=#N;b_)nO++Fs@Q=ARAn z-MEo=xSdj#eF=zfx0H9!UaD^aFSB(eB!xTsLesZald6W!~-W7+Ez zg|HU#Si}c-;DXRSfa~9O2Mt@G@8)X$)FYv?r_^S?llG_OnaO8sK`x>Zp;n)qU#;}2 zr?}~qkD~4qukP$s``(rCNZjH>xD%<`iH`od1^%9ruC%8uh3Z;M72QJzgwcu6U$-a- z6F|aG7=4EfSJPp>`n9=SQSb{XHU6D{q2pyWvybw&=&LFaxibukayRCllBE3dXgV{P zj^2(`<_Rp9%iD%spbECdFrVfu)c2?udPAjHX5ZS1frlm1-EycG7B%4}KdnL;Ny>)9 z`TY2%bH(IhuYm zLwFouFtrqSCdz^8LO*9Eol8VGkgNZS)j^uoL1wlrO=cJGF&+Y+3)*jO%!GMLR7tgV1*I@e$QZl`WO zXYaacd!;_CUiUOt_oRRMH~2lt${|e3AxoE|_R!2Cl)Q<z@TF^jXww1~`%K&vl!QojqT{T+8K`el}Ok7~`5c*8dR1c@;weqm-{!c+j9LF%=#C|Y<^Ff)l1S4VMHx-pW3pvKk&UW)+2aA9uVe})};6eYCK60Q!; zLaf);W^m(q^!)JvZtbq9L?q6d&qw%$nFE}?|KKaDCNv9 zZ8vi%3+^o-`k?lRPRXcHOu0RXN1@=S#-gu?`N_@;AB#~h7EY{$f@o1EnJS0WGhT95 zk@Z#_=uPGJ-w777KX^Mt^ltHhw<)58HnZPCnT23#@vY=W$kK-8RL8GsWx< zA1FNm+Y2kTR}qa7wGt+6yx{GBkXNKCP|s2xlWp(O%FpngzVe>F#up{f&CJ7_ONqpL z3C~txjbD6=CIJ26z@p|d;EaNsbGu)P1Z~z>j+O)5E`KQ#x->M$)Af?fY4ki)cr7W@&1?txnzkol-vD+P6D>*s^1dCtH3A?tk1*s&_FaP zA5}6w0LN}-Udcp9Q#HPKv6TJb^duY=98tzLuI{XvapQ%EtG+14Q?psYxG;*~<&K2_I ztYU5#k~j#W8-LELE6^R-Q@&u9t`2QFI@+6%+FEkJv99aDa8p%0CU4#{U~D+d!k4Ea zMl6=y9E{7(k819vuB&GbX4*}&{#*8qDyPs**_%>irkH9TLO^3X+%ylxH8D+s&BJgt5657wsyNN{xTVa1 z&JeV&p$1T1qO%xugu{IFMw)QSo-K)fYdMWJf@}wW*Gft{0eo_=xE_sS3EKxG@g9li zB{XKoTOFEYrP%zC8@@bNgC4g%hm^P}Tv;qDES|)@n2A^Z}oTlQTFNnjz7sh$=~s3*~j@i{#*7&f5%^B z^Q7ZnWfN~BLr{ICzk{_#Uww(cgLd6lAM$tnU3T8zu?Ks2Pl^Ye$jjrqd3pT*mX|9! zd11Dh;!6FO3$~0f^Y-ykmlK{B9YA zYQNv(3++r|330a&7wu54DdgENoO+6KN9pCG6U500eh=gkf;_qhg2w411)GAvi8!!M z!Wv~^j`LACnwktz*kg#2SYzjGnaj;5|An}7 zV?3W2r;1`;lR%XJO})G5bL9&IXU= z;o|`Jvmvz^`!dACShfYHW2O+Mb#SQ-nPsW1>F5U6RH$RV&FO}eR%#1+!Uv^;WxOAw ztENu@DP`uC%DIVHN4JdkOERhnn@6`OTdEMFt|}P4@d}HE@kPYxIwP~g{>4|sj1-uDhV;A$LX;o&rF49cdzWEW#gOk>P zuM=f9ud6jbsF=p>xg_KEwIwt92i9ok0pl>%>{NU{K3dp zaOn-0OR?Ke#K3)-+}q?<$96dmon!mnQs&^pO4CU3?n|1?WcdA_-^=;^g5P@P(R%B} zl4yxadCkJc$B|j%TbgiQ0pxmg7!=aH5~F<;1^^}QUVn)N7&QvjiwTim2Y31Q)e31@ zgqGa#lV$;N!<-_!?jRxwsofN8kx?4W&s>lYeQ4?~i7B;$=laohqa*?mJ0{iI@;T%d zcgPJTxpeQMu&~|xU6c~?(vM1Hf9xZQp*ioOtR%$hzsc0zMbWZ{SoW*vWfSqEGjG>N zFY^2)j%0`46J{4TCUp0diAvp`GI0eV8R~kA$&y6fT;8{Ph38SGyjOA!D0-#gT5NQ> zpDfGj(_>)f{BC{XC1tBmJF%1cB&VxSJh^Q3X$rf20|xbJTJ9U2`zE=cBDd<+Q*pTW z4Oq*17g*gAt)9Ad0Rc=MJth&}dWJmJElaK?igpTDJKb-Ir1Ko_?^H++Xiu5lma+J0 zK+6YDHWm(Y-qelVgJ?S+?%;qT7nSzYMT$G2SgvwDLjbO6tAh(~5L3LKzROfRNHb_XM9IK8Q)#QyA zvW4hJ&ruwgg3Dqs>-73s`Aaa^fL6ZOX=juqW*3|^7{4EWpT5Qx-44r*JZJ@ zkGgF1x^-DJl4p5Tb7iI5&y(f)vRlBt zNcByx=~htzTehHcW~8gE6I7U?zC9yP!Y=bRcN>AS`+E%AMK|Ca$kzK!Kl3&y7OMNF za}01IzcoIPckNtMgwIIb^fYnkZQ$-IxP+>Ey5W3hifr@+rAy2caN#_Qh6*SWo0 z8VOylRA^f-03{W_&>?EvSq1*Z#ATfdKs{Vz8}9Fd!Sm&#dqS!rx@B^fn%sIekE3Ip~kwq zaE0-!Fgcs;pF!ioa{2k0e0QU7wBqhO*gW$fZ~djoc}??04D{1a)o{8swR->wbPs#$ z{xFjl8)Nr_?0(44Jtgm5Fzec7<1jG}-NlY`K5;1etd6i^RW_ z_@g$EGS%>3qd>dr=5+5}y+GjOLxr6?cYgjfj7Ro;|{%p*E{#4dD#n!>=3+?@`zrKn_1W# z?_MZxn2TawHy>I7|Jx+PH-gf969x_0CX!q!IGe)r<2M5gv|@3I>Ll(}niV$u6wa69 zOh<14ClkLF(;drleyURNP5a*6T}dGEO~BpOljc9ikv?lf=2+VLx7&z$pI2V16WN^I zL}XVhdK+}>sj$lPe@_3ID;WdHWsSApoYntVJJXzvrCHH7@!Xz`?LSa0ELUOJd^^+_ z>QZ(zz(!Dn4A3(IO4*BsWOAkPq)qGQJA~hSCnmi3@w;#&mp5+Ljg1Rb!+o=s#P24s z=KG1?_K3K!Wo@Geqb`iH%kro@?NFPSUe%%4S1D~{h)Qi&S=fRcKkClVRLskF_IvOdp9WNFQLhIwz4&r&^2PICE^^$Xvky|2L&d=vZi}$KagT^If z%DB&?e&4vf>nk*3JjoWQm9Co;96{`>NmKf~oGx|rd0Ws!?&tu086aKv7ZiIfV!hsP zeFe~P^j?Xq(DhK)5bAejlOb`2CosvU{%_Qa}0t4%6LLVp2c)rtF=&F{OTV z3fVw+_jP?rT0x2W(KP)C>PLn=(pFq(eF$25)?R^5{pjl=X8F*a*U=+Bt1S4<&r#Rg z9QqLEOywZ{D9{c-5#tX-FGjI&F7!S@(WXqG?XMXfi|`SGG)R6G(8haATs@(uBdz#9 zKq4AW&b#i`bF+e|F=YO)NtS zyj5T^TZ*7Z+qurql4-0s;7BBL%156dEj=-y!1&YTBzgQrc@X=Smz5OZ{eDaQcT|Y2 zh>VeJ^hszq72+;5j6MaFIm{t&1b>qDDoXA*{6=y2{w)AOKf!Z!)#wnb%u~^)jRbAT z=@2udoBorklJuWcQqm!oh#3Vx19sag3p&JB4ZN1TPVb3Hv~-9Ch(0H}kM<`%O@eE4 z{saqkZ%>*H8`oEy0l1;IW;Zyem;tBb&l81*b{ynFAe^#(0a&dTM5jU;-HBfO&~AJ7 zpvPYVd9wS!Si1QEgx!9c#$DDCW~-mlIJrt`GthTl{CEeLoqk}1@FwBWZs?_&U&dt0 zk&f=|!I_W7yL!TBX?$g0G}2lVb>0@~GV&frM0~1q*)Bf5I!l9X2JIi`Lm0|*7*hW? zFRk~@L+k7R8?E`}V|m}`gvfP~Z$QPAgT9G_N2s1I8IQs9ui=^bm-T1gp&m$YGNh$^ z4>y{Gm`+>rQRoL6=m9flFeB8xZI9daRNscO^;C+ao{BR$+U0jK)l;43+U1R;hgu@Q zq^Dw*rJl-=N7{-@PxW1Bsi#t)>#4-gOli__(GvSH)33a=_!ZP?f|jJl#0{GIzl@K&ws5~V)vZN?s*^m=m|{E~E7?bZ7uPumL>!q2NqGm;f)F zoHvlB@(dLxJF9JT0C;8xU=9G!>Hy3E;MpC3Icz?#2^m~V9+SJh3md;+tZE#wkO7O? z4+B<&mU&S3(-r5UIa+%c#O{Lz(T~LKVgA$>dV^u9gxiwZRtqzo9f25q@<1Bo%uS?_ z97s7`?vKfBBS%WA|ABP))yVZ8DSLYM*CEn=4*XM*ZVg`K#gAH#9`c>pTE_FJ;!p8)Y&M#%ww3LrkgkrCkz86)`!!Dr|9Qyu

GD67+B_ouK9>7r&$;lV4PXul!;Z0E(z6ba_YJz|abYRxq@Jp%wJ} zUUmAn`{KWUUj7H><$rKq{ud1I{@p(LUszmNF81##E*vcmU@j^SVlFN&!0hF}SS%V^ z(a?&9Ry4F?bf)HoW_f`{aLVacQ}@XjgIR zXmK&-qT&+F#lYVr+x9id|v*?=jDH5UjA1M@BZ^X z`CnOFSuQT$Ra`k*9LHQ#oWNXMT!Gok|9-{&3~fI{+t1MUGqn98j@qiz|4j-@Z{hT% zue5)0|MHaD^RD9lqf=@aI2KK*hT&K|rJ};IWJ-C)F*c>hIHv!C9sLz!`fnJs9p*`X z>woa4;=g0YdlY1ST_1B_x}cuEF8T+7`KFg*eY#tlr`7|G9}@QgDGioO3)VlMo~<}o zTyRH!(-*KmyZhcwUpE@30O`Sr^3fLyuYb6$l(TVKsI;{utFy(0;|o_WsUDu)&YVac zA6lw$hHyizj%T+YB{;oZ9008if{?Kr8ir8px6BMjKc{crxQ78NSH5GrSTL=tkSI=T zDTk(%d{s6|*k$HQ+;AzI-91iMYPsrR_TZ9eC=K_0DHfsyIOByF#Rc4FT2Ne29K7|iV=hA5s#|VRk?=4Y!W?x& zNU2y74<&ups#+Q-4#Xt_8UCpceLCZ@yVE`z{mEWvP)Rn^G@sr;`1O=36Q$uuU22~D zdk`uliU`ZyI}PItxuP)w-TFYpQYA`t@;^B+Ux}IA^b$0F7OjgqER36!co+GPsdt^R}+9vc0GlTt3*x9bI zwWq9?xN|GL!OyCJFvlwanG(HdG12l<>L~c~CGOeoVw=yl++aqkp?W6lFK%kZg@vGU zlQipHz{K-t;4ZN7F->s{;a+VWE+t~B#zd>}Hv-~icpYM@Q7i&jE`Xsk2YW?l4rUGj zuj~NK@fJtKkGLuk#N(oDMEvMa0!#og)-*S+F^z*ZoUmHZ7Tz8=oO+(xYj*nbQ2SB%-4Y zb}>3ZdIBb`_k9%9oK(K4DE)Zi1MpDUcc2Lx;bg0nTh&3ozo>CqH@-BgnI~o~ewrKR zAyI9MFglP(0|I5{fVeInqTDLwd7d>+=ct8)ID;(iCO2MCpCuxRQn&NI&byll$lmL~6O(KfWZbJOSDd5h$L47?ki9DX$yKNVM%nd;GDT*JX(T;sq}M;tt3 z7{n;=2fJK`c*z9PK{;Y?i8rUsGisiMy?cAl4Pfp(NcAw6@V3}H>7vfrK;V5F-fl|D zXf|bAHBd(BdCEw|M;Rr>*IPP4^)kjCl@1D)DxCt^IcT_(9rr{Q5AnFt;T(Ey>GY=o z%`F|?HmgIfp7R4#>8*@Vh*$PW$V%i^N~GteI+?zb1bZ`0{#=l{U2W@l zH3{%cQhX3LO5xfx(|*tz;<1OwdKwQIiVwz`dL4D#-r^XB2fHdeEs(+W%50T=nZVmb z+^0&WiyGgZ%|4}>NeVI(trJbUmqW0lS4vdqUEWQX*?Y{Bl-IadKD1k2EVuOqEzv$; zWLC7gC_s7TI_0&a8>EHQAO)6pVVs5x!TVsk@oI3aSx{Ps!p9`Aw{~E(FN5uV4b|DE zHSuBK^wVD74^EGO{cPjUilyt4K_e_DM5BeOq}j%Z04{9R-eK#yVJGe#c1|ZOY+O4h z4E?{uB{gf%sa&)kkKdDU0)yCzWoVKm@%5`3P*DPJ5)YPLx%SPjbFT zIqPIuJZO&9d^83hc#I!|9r9%V2!d;#iYGoTfs|(nP-{#ILz8u zp?p-Zd)cW}7-o5x8|okRTjDKZEf`2&-EWC;tv?zsrd*;Y zLZ`Mr^X1D#5N%=JrlEWqADRse8=t^k;)yy-lf|V&DGdhkHZjEtC}Qy$u*fVhbS>62 zfL$ijBWFqX6;h5a2XVva5sy99neRN)aOK9-T&1}wP z*2#y>21a*?sU(p@nV`f*El9_ zYU(@+v%BLTEuj=?s{`I!7{A$jF6wJT`JOsmFywxk)z!q0pMy$IDc-T28c;quw|63`AmT! z;c>)KOl|mrIuso!vBA~`nYV$buq>PX?lE3p7wiIE#S3_kr;5cD*Be061cg_Xrg2(D z<8ryqN=lg|_!5G755l?)Sa#()hK^W1Z!3WJ8`gnx4(`jqpXDrKm7VNX6*!ZQrm<8V>_sjnc_yI^sETo(DPgf1BPlDVBq5cCOGvvuJjB`w@0BOxo<@X+ zUQ41bKD3wQmGeyeROnnm4{kj?J3Ow35BJ@}uYVzxYJqPzJT@>bal+=S46d}Vo8SVS zhkAv185`)IZPaodxx6-LeijH!cAq_qSIy@&S)hLD}D|*Yd_?A8S5+iP5)4H z?uU`v=c)c`dKcdeVxhVuba$6k;H*!0dQ&rxsE&Y=)%wg#G2Fpys*ft$(Yfo~n<;pc z2fKUAXSt#2^VBytG@Yhaqq$g0I%(c*r0aT#<}FItZ>cM(of%GTrqa3lZZ;%^*67@g zxCFp;DKIo3Cjbpv?)*9dXqa#n(g7+rHGYNEt%sggSu_?bVII-Em87RtK$X9CyS5MD z*SYQo&CawxWOms8u-V!6eP##kkI2rn{{ySCuk6~|=HHO>+J9Hh8tYL2^`8F_d5ZlF zuSeAX--vYHc?Fsr%qwzOXyMHE z*U1=lD)qDZdxU*U%9p4@&Kcj{MR_q!x1^$0^1KaRqhRA% zXZ*{?hfvVbI*gvtQFEj)XVVx}Dw{iK^So#Ba+*tU>Z63)z_Jk%ZeS6};BH{y(>gY= zXgsJbp^rV4;pU+$h|b8Wu09z;lR@=TLDDv;_Kd#Sc?VznfQY?{lnlaZL$%ZVmTX>{ z_;*L)BCl%l9m(#RfpvuDH$6kKEqOX+yUhDCCCVT{*`fgA4O5CX0B<1^sAzNS!ogW+ zGKl^gk>z<-$zg2m!3Z4&i(A7~4oh3+PvX*0`ScS<%f#bPku%|sp)*C)YgHOcX9nKRb=MLw&?r`2a z`=m?PSednJ(NwsfZorGEE)r-7jXc1diFr|%AJr5K92V!s>s zdA8FH{Q3WNe9hWj`xjBZ&6iLZ{xC~Gj-(D&Nd`^nm$`A6w>ijvFW%^IV?WxdDG$zv zUj_g64&A(8V@3T^rJxsFcxy4Gl!jeOg)m7e#r_B#ll^sfBpyLB$wG}~+j+CT48H4T zeVk8xoN{6Y{Rvr__9taA+I$Mz#>b4_6iCkD>}jSW$>m^>y!Ns%@CSqTXDw2wuezc# zb~FgJ{ki^pjO4*O5KZ})!G4>yJw2n$!A$&eAWon7Qs}eT;*F}Q&k)8Q8Rv_CrMD{Q z4dA0=btl;MLwLFxJ3ljC2zMOMLaaU%y4%9}aK{Pq^Dqi`Wjq%xh+hdd55X6*-09$s zJtXhf`{+w0s+C@@>W$}U9(t#0^Hz8LR_BO^68aMOaZ20cn+`tEK6*!1%HxOIdo|CQlpdx_YF$mCfGg;JlOja_9 zcZmWY{e5i$pYZh!+_b_?u<^r*<-$@lZRwi+HRo2B(C>uITAQitl zNnz3-N#b!pb%~>}Euqli<~72dx?ARP(QC1q_h3w`gt}*FZB|#RJYSTRX@5z9=y$yi zOe-p0SWQK*7Y){IZ;(BE{H9MiDC(D8)UPP2+k0i*=Dk#H;1qb*Ynj4~-$-oSLXY3% z+=>&wS#Fe`rN6H$yFvUGAOqD(E`BQxKCJLItgxl}9kx`xLw%<>-F!RX_#GIN$-S5_ z_U_A$-oiPAKdbkp_U!g)kMa&{x_#QMyB`mV?dtocA>nj44)cfOcS3f%LKRQn_`U*L zf4)Q;K+^&lJh~9nsjqb~P8Y^|g&~l^ql>`s z?JXP=L3FW*Z&Ov%RqBAxv4h`yA4Z#%F@n~7n|{f=13B}3)|Q~sWqdy<^_^vDcmrA0 z&k4O+;$8@k**(!wK5@IuOtf4v?aHy~p)%T)W3M^4IDNA)cjcmcA$+&o2IvsveP!U2 zcHox0pA{HZSKgfbJk`lt`hSumR5(8#X5&YX$Gv#AFVjBk8)to)@|xky$m)fS4*_ai zJVtNmG&oc3@4z25?;El*?QhB26FgpG{hfA`{D6qf4@y|yBn(~7=sXFrCCtjt6Q4$p zU}RmP@pO@XySBelB$-l@>7{!oX;I<5KwVJY^v6X42*zhYXJ#o+w&LL%>Mf<|(i(|B zBG4P|0W7LKc&;&Ou7ep)ygULNh64*%8#$PK$p8&J@ zNsQ~05Z$EaLovm0Vo~UM>k4K$3_g6a2c4q_I4Sf>*-YbSWRa=gmFjAALcz@EiDJf^ zx%i>nEbh?XDMp5TW3;W@5TK0oa4uZS+Z{)C| zV9fi}54>e=EF1HF($`1(2TEPrh;uON-7A3?UhmQnl1I93(V2Up+Wzzd?Qh}Udj zObgFWXhSz98%Af%p7SP?`*-61G-$sP+NtOgV$w9D&%q)GBcE4BvX-9#%TF$qTW@I^MaD_POPP-V$G#8f2o+{+h4vj@vw_arH6= z{Vz&XiAGeG9`-=|x)rJRnD?&1zDqJu?VOal*3}4ch&SY9M_&S}Z#TM!HyS%3=sw@0 zj+8#M@jM`@Xg6r|o#!LP{^6|AGNZi2tl=S#{&_ossrS}vr$6P}y_uK51Ib3$?2Sav zp*)Sj=c~Ypo*?m(jn>|X8qcoc3eKwitFtnK5s2O*(exe(U)O-PFrhE5jv0? zYyXt8&rLkDgxb`9%2^1;7qHHeK%(pSPP;h`L}T#IUxGU^efvwiZEX(7W+DCrbl8#y z&>xKF*s?T2*X>Pcwx1k?-y`9-@j?Ww>U1@zWJY7l;|O~-VbnE-&*%vld4I{)2kmgT z(EKVa^3W2d|DfH})8XT?Ft=oD^mTyxdK5j}Rp^IpJLhXJxYN!exA|ACeIVQX2H};d z-3(c7y3qV4fN8bDriQU;wHL0Yj7HxQ^;Gn2;jgv3C;3QSf~HTxrT{acZz(tjJ z2M6f9nQ*f*<$0ZO2islU=XH!JzF9Z4oF?&naf)7jxpvta-`pi`HdraDr zySsTe>G`ckQhGh#ow*hn@!c6g*^6h~;1P|zzB{vbyt^Q}eP8hyy-tLdjb7$BZiK)_xX%X8G;qjMEz6l`G<>vPxHT?*j zv*kkx%#rya#Cfe`pzdK2{dHi^4%E0T=nG`S>5=DIcOqK17jxh}taw;w9n#?>Oi1ueplTxp@=xm_Vo&7l!+X*`TDr z@-wHf-^ET=zQ+EJ?CWQa(6GQ-RaGe9b9ebH`)YgeXb*rZah&Ao^?@K5U4ypb9k}Xm zXSxAG_4V}k8vFGUe|Fd#VyyPfJ?Smi97?=22z~QIcv(TxrOeEhy}20*+|v|Az7P0+ z!`Z77&R$l`^zfE1d&@h#xaKwkx$$>Y)PZM(9(d+~6n;6@^ zoWt!@kL9AV6I))*#6L|)oWaod&!Yf`-C-1IeV-wey)%o+*U|O$;cB`60k*PPzbJ^i zi9@^%PscD;%sS+ew&Fr7ZBeMG%qG@TR*ezeV`Fmt}&5}Yg9L&>Mli~SBW5kbLykG$Z% zN4|b1$*~|B-{Z&{Icd#8!`;#}nHxA44Faunz8|px*|hk*i{Au4S1;`QaR&byu%q~? z{$kl5*K$4m7UL6~`_n4LRJ1^p)fc%p8E9;Fr*k1--RUfvtqqENd&t})?ULCodEH&k z%aH*0rUghoA#U`(OImM(9y{I}zKlDyNv&dk=#u;PakCmi5;YfcO&I5_dv zjD-_FBk+i4V>r+e&%wE#BP9Hsc6h6&!ijgMv9Adyjwk9CtL+yOu3z_cGP1Tdai9=bTtUfH9xCDF4@fqTk=lO*bcMET@%9DB{@H#%c zZg7-`1XDKq(NlkO#_*I!dip+2aq1LCdQD?|_xZfGrZG1N$Sj6U3!B9}=yYP|iDOfk z|1Hitl+L5)rZZ*f2uM0tJ~W-Z;#fNSj+6E_k)L;xPC71={d_teRf+Ygne$b+2baa;}UOZ;zQcMz9h82GRLi^AX zar58Kq(F6d9lX9<^dCd^hocDy)Fv7{#&-4YX~g2xZC9`vZ|_CtgK6OzGE-pA*X;FJ zv(Jh?OTvv$6V(FZA8HFff&S;b(82LJxJ)yz5k+RdZF2y)wgWH+fG2kV<^XVA2Vf2W z*LMKs0I)*;TLGpxptO13*)N6MEiuZ5xD;sSc_+ z0Nl_4nB)3XZP?d+@?^UbhtILzDH&BI6|ZS;65L0)ZtjP zKkf~@nBZLTD!hgiPb%Pp#5a_lfCCiUaDphp9c;f5`Y~63gF;uUaf+FA-V_XL+qzJv za#-8kIGS>E-^@J=m)pIxUEc1QAqxAW-I#X32xw8*aV>80Rb{rQ+?Q7uMHPI8?=%+I zb26ClUL_>1DOkCU&0ELS{4G2uz}buk@oIv4^4G)bf{D%sf!$u}K`W(P~%EHTt@PvRF-^oXRO4!%+fI_5mQY1n^S_(D}V1^gRKF^;ChZ zAIpjkmgLsTScjpf2}I~o~~8WQ?bGiAp#o3V|@Am7dtnHVR5?S z{E--}q>#wFsXzMb?s1>9vU8TlrL9ZxbUzjp9}W>a<&C~m5c9@Q>PJKI>15nBRVRP*@_InB&*Z*${65v!lxyof&D#2c+Q?qLn``~1m7xJr zw0ioKpz;paVAO-wm(NeadQK)Nqi7FB-+@3~r*9_p=qJw06AU=~NC)SHW?Y@nlNIdv z=styH(A6)rM)nEq+05#&STmaovNkpsWUXv2$lBRlkhQeAAZti-LFXZF_t8Gugx1d- zX?pKRwyCKb39`+Fe$?We+KE60kIrW{WDh8vNe0-_;sXn8W<3IEAvJYVC+5IxOo0sU zV(P`EZcHwbDyAu7^rxnt(uqDe8(koSyXYN7$~g%Sq^6$QiMe1lra%UFG5d%5dlF7q zE~QgbPwPZoI2% zMO`qoV4kR9YU-JtsHNGc0vX&zT{yIGo~T)_YFKBKb=`Q*`bM7t*D5nA99E0b*XZq` zxmI932!}G((p_b?Mr6&(T_-Sq%-la8sf}sFUUNyUtyrS;&Qn|?EAQ1#t&yoN4euSG z=}94|jU)r%pP}9z9V z$z#|_X?CDWgkr*QSFB7P$p|*=gy*J7)@5nW=o_T_0UKYL{pWc_eY|F$zpVC+h26Oulzn2%R3EJuNprd^Bq=}YrofCd+oJfH>2CJ=OZHv4&%GY zlJos4!l8JhESXU2N5cvYB4(r|9BOPhty5FQ>$p|Fj$5q_Vc1=*sa78^AO{|lsx zKh=fe?j+QNy#OipOP{H@qHI}K;)Tz8oERpgCcmuu^jSa51IYDMNAF^g=PADH0?5mh zl#2KwjswxL3vX!p_Pk{MiMNjrxS0y8w1aKAwLg+T#*|l9mF- zV&t`kbt)Bwy>6X2%SdivN})b0eDPr2)@F6VX*H%|XT@-#Pw*U+M`j@&RzLV1dK0#f zQbW(1V66a_31C^l-w>g=1?5~K$m>ci~P62&AJ1Fb#uwm1-76x0fFbEKCFjaj)lbc7s zz?0*lEP@U)&`ezsEx~$qfE&x>&A|OK(wX@MHl9=>C-!2bw7e`Xm>~=E)`{V_p*W>W zsU^=s2N)S4NZ=Oc?h<9Eg3s|<5;|E|vrlmFsK5@tx>+&j2wFk7?r0dhSbhzJNTL=F z@mW>M!QI<}3=R8|Rn8}X?4M{aV|n2`c<1x{mQ|{vyKg{xzk>9tjW(E(k@dn@W(Pg0 zy&Rt0GT=D)tH2xHKvM9_vTk%cmBSkgzHw-4&|U#=! zb1~2VoJE_OL|f&905&k*V-NMjZt3!I~9bcWd3X};(3I1jy^k39Sg-ipu^=uaqg;6`h$9&&LLLiFRQ&8%5Eq(|j~xr*CBi>> zNqK@SB0<8PLjWP&&JFUeckYn)2+PR1pXk&=I4{sf(bkDigN+icGmo}yv_XZqcZAH{ zxrR1!b>}YH$j+VPw2_ZHFVaSS?L;it$d{dYv|;m2z}Y|>G7@k`XoI>u;CzNQt`l~C zLR*@)+Ucq0p}swdT2XA8+7}Ktra$Q3r-7dT3BDLF>~5`lm6WXC=qN-Cqcu$IbVgAV+EAj6ES<{iVBz1(@2x{8J#H z8jH|WfcLZ--vmu%ehJ>qGr5W4OQJu5OCqIq0k&e3xU_Bz6eJ8D+WkD4{YDU>l_9hL zPsZ%{j+@YLiH6ZHhbmbEaJ+{=EbAQQI0#2*-Q;ita)65woL7^~@(&7MWPk0qFM+$? z-h!v|MU((KHB6u9U(~Iyh1Dy90uD^ zDARH%1PNSFtb+_(%K2{T%A0}c_66ubjYp9_pM535MvpIdPlIQ6;#2Hs*TJSMg((V4 zM7O;IZo{|eXe~zD#gq{waO)bx=sby{i(3%ia4dxL3_e26&+)Xnfy)VW)K=KA!9_h^ z7zZTsZr>|#J4824W=J>Z3FF{Z-$wd57l+A3byDa#AA_sRHw6x1W)#}QU5K)7&T5%z z!ln@f3q?@9LK(uWC3Xj~1Hft{1Qrh|2brfd8=>k5;DrEseV%RJI^NFe%J!Ig!>Um7%7l&cOqFRFsv}$RD~1;;udp7f#sw%2~vUz zc_=UsRTQ{%5_0YSzJ^MsslzvE5%Zxeq5_(`0B+xLX^wS7nqy`1j9XHJradWJ(4Lf< zF~mvi^7u&^h-bR^QOo_&(&|q4~uo%-7)4!!L+3 zG=Rrwevxx3;ul<-0QDpe7_M|r1Q*Of2JB%S5>Xvki7W!BhXvE$@hsEGMF9KwKC~ZC zE&_l!K-O_NCcOZ0E3Tc9gcas^@dyf-h=6$gJRK`fOi+{G5~u_QmCjZ)4K?|l2bb{x zJT}`g_{TLy&EY)%c==^xf?JnNoSz5Y(WB-c;NZePm}k}{vxz!9fLB&>gF0lqHO3G> zRUKZh>W~2I8axml>+X-JyYIXFV+i2NGT|RDAem5TfPWkUFq_2#6L0byCVRd2}@vRFQ}LQ3#bz?$Oo4LxKu< ze3pI@mhcdl!KkCFZ)9LY>dE-YLzs9Ex#xKZ^JWVvhHJu>ONw<8xDN#OHio4V2J!6% zN!W?)INlj>Y$NB25+TJhh3Td$tVj_nRp_YC%9hMZSYZz#=Aj`?h+aPOO;k3GhmWwB z3TTgfb@ouJh0&0-&)y+z(b{8TjfRz-sZsPz@k^Yo2hLVi)3 zy4(xY&O|);z4X=D&@H2TjaZu?A>)pP-xKp4@O@2AWVy|EXd2nluMn|+Ace+d{{>dx zPz#{7_N_o}Y2D!)vhe9~v5$xY+mzCw`~dmF8oCpE@@ z6XOnI5F~KxZNNYZZ^A2?a9%?R2Q%*l3Z%7GASJPgpKssLbUf{&bO|MWp=*R61&lVN z;|ZiA^9sV|7=&oJ{z&`;#S_LG|HX*k2fx@Nhi5Kp>oBf)KL9wA5l`#wNQCgEkkO5B zkz3Zu2jGPB_OlUGPlZM}goQ`WT+pJXXp?>;`c&a#2QCU`gB1FcBy@DsEgpy?e`!jH9NsJFBBap>ED<5I(AGnV; zY`{@+Yz0`hQTiI<;CjKxL?gt$#|L};RAUOFL_gs(7UKP+8#m(o9D+E3y$aL`Qix!baz$?=*Z6j=a4y31BSGn1xl(ICOgk7N@0gR|uwx&-EKD>cvJb(QxB`79E%w*&7=VB^(fT@U*@y9P zoqR+5upc4#8w8677y3QxY^Z>QHA~}oZ>Uz$u(d@MAO%-F(V4F(_NqM zR|!>j{;^bq2l(VLik~5mxYzI7fTB3EkKygk8~Y5F=hOM}JO>)W8|)pw+fZn<*xyCs zR8gLbPZ#PN;)ne`xMi0REVwT8`+x$E@a%j#)=3;vloFW=_&CtwGw+b1Bw9gH3LsyU z;!PDL3j{?e@?8{fmKDmUKVZ6VA&2^nKMoI4 zN9s0VEXv$(1~!cn)r(icMq{ z#_@B;@k^jEj^`PcDzbcOA&y@WuHs-J>0ENH!FYs0-svU{_vhZ8PX*jGPM-hzfb*_= zD7r9!%YFJw@a9iuIebGeAZA%eB-0!+z2Un2y3l1UK7B(k5{Q0=bm5n!-p?X!|4dl^ zJ8&Wc`!n9Aj9nmi0C}MsG?*$wbH0c! z$v5;DSTmc^c5TR%z`~AWx>8v|+QO1miR#2w>{VhHjdNNihwYbv;v0g*g)^@4;2s|O zQu#4sw!Hv60)|hKNU0t%3eda{WrTi6z@e9((t3VbV zD?J6Wf8$Fk$NoF4*;D!N+5CQu-$IXBT-O^3)n-fh%J}fi`V}O=moGHLPrH2(%2k#fUIQDQhdl(9m1pT+Z5T8Qv7vBSd@{hyodA zKOY*Rqo;m6LCfWls!X;R6RtKUu}n0{lSW@e**ur0(Qz;=l;x#j z;&vtQP@z?L1$kSJx-cO*)i;Dbz)Qsn)dmm8j@Huh5G1c)3N!;Q9;xvwnkiEx)2g5@ zVYRvxkJ=}$q7W{}xiI$2TVNt*2szR<#ji+hM|)T9V^Q;3J}E#twIy*#Z3|AN^sEAraXm9r{cmT%v-on zB1qdVbt}qkf6I;9ON{YM3CngZ@{BQUG-JXy%XTs&4P>YAiAJyTQhDrHk4J|K5+dpzr}VY=JM?oaB-z7|1k$-11T^YLQDyU^;Yjna(stODJFh zgUN7E(NY;lUd(RT3#RVPuH^SnF270QLfwEIz8j5`tUd*hr*W!&BjL$35k_U2z<-cwqU1BJ z^L*7+D$k^I=m*JLqP69jHXv7o{n;6KhgGh@lwGL^n@3ZX;Zwm`fJpwa`y}7foTzFE z57D1w>{LT|h(5KDqvCBaT9z19Eb9fXY#+B~0}F&PG>304`4YV{|PJ&mlAA2KZn!AhTjDS>{A!$+Go?7U@zzP1Vs04 z4#OC~SRBtN?v*wU@YE=dVdTgd=dawwDE!uChypQP!B?r(gBOE@qY6?i0DM3L!~(zv zH9#x?d`JVt0>Cj15DNew)&Q{paJL4C1%P`rKrGmDjzKLFnSB6oq_tnAPVE8V8FM!3 zADSYpuT>~Gz+(V7nRnrly^o%Jhs5s?KdiR_45B+%=8qj~hF;u`izjeMBQVt3{!kr` z^tl(Vf@dv6fgcNbE{nl28Ff5Z7At6{B7LoQ;g~>puA5WR>N_MhndwX7GoJk-Q(JR5=cLqu_$iNsf$y`Rxy^XTX0U7Gy@y+aFvbDD5mfUm}HWf4rWyCJg}k(MVm z<4S--fN+q2lNw98%tXGi?jLKHX3Vs%MOMRQxXEFweJ;Gj)UC_F!+Ei#E)4gigm5y( z61YdPP7pWtV!_EhKCEOOWX6TGm@=VOv7pkKL;;8e0H##{V%d-=#Y}W{iQk80l=}Qf zQZKpZTb3HHAm8A7(bC%W{`koy5ZevsYTMlGwWGzJs8|PFx z4RBO z)O5uT*y?h&xUy}k3N&oOuCXBu$5?j@;{KuUz&c}=dYeW7`_-nFsxLWTV7)@NmLt~E zjyU78R=^(c4}BLt5n>!6@`?XA4+mg#emPMyibOu~4b z1%3tWm>!fuze2s{$OgBD;RoSN`tljg2)l;#6$v)B)dx-RT%)ZlXvRULZ6&SsBZ69| zUT|Z7e4XDgehWYTc=pQ($k#FWNf0)gUk#4$JPXXHZcF{P?3dt#?L!@dted3eKQ)OK z0poZYU&lTCyp|7ts6YE}z-~_9EIu{j938(~a@JDstabhpix?d$ghl=y}fJz`j z)!7dy)B_4thl;x`fJz`j)g|!L5()KSVW>Ec2dD%h)QFqbPb<`CRa)J`kKy7#pb~ho zKU(ghUawGpp-^>U@%rJ8dkDP5AFXgvwg=?T`QMwby|A^V8y`t|yyke5J!mNS5BkTnF76Nph8h`$5XT~gyei788PmS9C)d5wRF zDCT1r=FiKeH=LXij@3u&^NGePm|U~;`9lc9LfVjnSbaNI#~YzkH52bb+aCkSi`M?H z03Z?Np(b-ytMfDp&iN}I?gdN}q7!hstkmGK=me{i^ENo9DsoMn7m9@&Z)VlU${O7x zu0khIO@e~e_fzB&ttN&Hhqf`xxMqP@_l4R=P!54;Nb-wI^{OPhxH+M!srrd6u`2Yo z6_W2QU?vqRur0XMdt7owG~74?r$gf~Yg~+p^EjiSyKt5HmRLA3T_t+qUSI%ET(iI*(&iHDjh)Io5j|YqaA8*KvZ!F{T|GT*n5FW36_a z=sHgHIF8qjlU&D19>=(LJi~Q7!{b<|96_eIWY8t%iM6pwwXrj5V~w@3rrMZU8=G7k zn^Mq7g%7+L^aVbMcFB|SZU9NRd|*^7O>PW~#Sv;s6gby^*OaI(9#>}PYXWBmx;+sV z64sRHHdk4YAo8U~q~{KoPk&a6dYR-9;Tq0SzMO5tuV z^~Qqy{g8;QPcq3kd0mZhryEsg8-A@%n29+5c=|Yl$#I2YwyIRfx^(KxH`1>k3*Zq) zL`Dxm8;h7DtzYL7hL89(-Ql>zYUfUnq4NT1@lK#zNoji9z-xtdHUSXO@{7^s19g z-_OExPc^*@_VS?Gu?2yg%R3qnj5>5Ogfjh9?hD7KkP3alEQ!$P}(K^*<6a^ru<_0Yl zZ=_C?ARmVxR|#^P9}_xm_{q4o@$7r-ns-UBwMg$l@2{)(;Q9FT(X=qP;_hFo-_}&U zMTW`|^S)H_{BrZr^KN~(!W`f5%3CYV|DO4^uf_rszyaE!ln6b3XQ;8e9JYon;m7X` zH+EOR-ngag@jJ^JyDMRDs@M_@Jbq_1(AbRuUuoUeSZO?3I_qJ`Zi%)aF8*a~bz89h z)jk^xv|)4xO~H<67^(ukpeNu9N&*~| z9-b&p4M(=@#+}9CGvsR$zaSl&uZ=T|D@>!qFs=lk1_BMlyK=~RN21}TGCm@Fl=D%+ zM{~_&FQkQQ2z{33@anGES+%ragAZS91V>2B5_X`ix0qz{YjN!gUMmBKgKzdAfI>4Pn;xXLMJ4^?-b8tI` z`>MlqfcyTj-OoQv2e@;@JBI(&hv@+KXUC3z-C;Vw{TE}qUv!ubaOV)y6Mn9Y2|vsS za88aL#;U_~fIG#TvBDr+IvLvpot-sXT z0yv0uaDX+LRLuM99)C7mH(kbAd3&q8DB;US(dOh8FH2fOK15@Q{zGqu);V|k18)waV-NsbJxT12ymY78aB`)8UM{Z zsGiYpeOj`Ts`8`5T|7s3xIFtl0|7Hq9SkhMes&CJ6BD56^o7*D%%6cT>vMRtNYA0u z27TyLO@FWUmCEMnrc>2eBqM@h4Yjot41HClS&D#(bE+T=5(34Y>sD17-!n%fRKdXH ziz_#d!{#7bt4gmF&%tC%a0nWpKx$>ME=x|iewv1mIdPyMIr=!H{}FuL|m&g92OxUo@EC@7|EzIF|ADM zJ$$R`Dp;Kgu}%CT{Wm)RSvT;#|hT^-|XWfq!q|QNPQeM!6Gwb-2^aRGwL7|RL zKF;FLC13ZOl&kskrwqv0F#g8yiX~v;vdU7> zE{XIgx*?wk;OKzqBxmvmlY<4q@;X;o#tdyvSjLLgvqQXX0-_;BNJ|9HsUcsR>Fh)s zP*CAC&i(in1-p_&wQ&8hV&R(UW9?TYriP^$Q{%(={M~#K>?+IB4NKKmgdv`L#c|e| zlE=?CF8#2U$9={xeyQd0FeWw(m8*JBW*YCzu5ZsU;dx@?`iY0E_>Yp2`|u znfV%m*e!Gm7**)iDmgD%D1MZ9!j#DB%1QaW2J%l4Bl8h?4|$9bFucJCqUs4K1L35j?d$;9BSgcQ z%V3B6gR5ff%VC8j<(0Bw^ruDZE(cS0nUelhLgyM|&%Ih;{z*3P|7aDWCT^S5D z&9j?;Vw-rBC7a6Zr;)2<9S&)yC1g(qT+W-b&x9=`cQTZRYArA<98e$1-PIY*Br&pi1Nf*%+WQ?w6An)z)jW6Xj#(&xrQPZi^pmc_0d?g_9%qX z5LJrS1Bf|V3rV*&S{sdlAD#S%xw<1-1N@q3O*9H^;vr}gL*ZFrPeU0Vhwj=HXQU9%j8@IBKv2#OZ(Pbr(%|vW>e8@e46q;|6eaiaE_e|o zSVGFI`IffrQs}HDmZt76#=yiVuTF(nZmHFfRL#Q>n?=l;(LPRL9X%f5vn6LE= zIxq={iQR5Me8Kg;4uvB!fwKDT|3r5D_KWg-R-UA@$NfTOe)~CmNT-#h0;M2?K$b(g z0+8SS9q_X!0jEsjH&!solIB}_A~@x=ZYvWd2~c7)Idv)!56*s$DGhF|pH&BWM0gTr z`a(EILZv>mUe+d4j`AVAc)8Nb=?i0UMu{uHB&)UUmLBQqu{zw92ZH|0t4JP*lhOgU zO8giM!h08tz7xV{T(Cyn%fLL02i^J+XTbV0d_(s(dwZ!AeXwog8KPamvJU5asIg-q z+@wyjJQk{VUKGFtg(^eVW1$A8W**US^!mdnm}8+yPNM)sL8q!(c|fl}W1C;ui;63` zOlbje)w;8ZzQa1!aJ{ob00psz8=L`wdLqG$UdSh-3Q&bgvzcyQ7W z>4ZPbDj51rI}O9z^9Idzz@t)6`_*rTq3s{^*a>^gHQN1+ydQ@j8svS~)|Fw{9xXE8 z#5awGw|@;E(SV7qChoDr=$&~(8-Wn!jC1&aoigP)oMCBy2Ob={wBJZeeDSq-1;ce) zkJQgOh>~xLZ!J&k4dYB87Z}8Q%aL+=No)x>;JJa%P<(bHV3innmmO(po#P9&!jg)J zCJ>iQ%zj~fdBPg6{F!*uXT3aY7*-fKGZ6NXNwa<9TQ%fdj`qhxg~wa)a2jOxDPawu znGm$ySmOekLE9Z7IOz9T!^E=o$@2i70X1C4B*)L_k!#Py0>IN6AQk|g(*Usm@JkI4 z%Y#1N+7oO#)mH7={@xbM>;|P`ANjLD^$q<3Pk$Y6(+ak}QS`V%zs+a;8SMcx(BEL< z1J<|rD$Pp37*sQ8&ei-%r%5aTyr2PM0pNK8Zc%TSr=g=kXdX7e`R#v%)AI&!_7Dfz zXPl$s8WKMK50Y}#8;GWtIDb^RD2VKqp0j0AYV7z`55XCI5|Aq1tP~H53CBYzdJqc$ zkRcR6ECBpQ1H^(gad(knVXYtEsHmT_h8lRIh0Lb?r$!eG{Qp)1!~($YG(ao>{9XgZ z0>DceAQk}rpaEh5;Ex(076AUF0beUd%3#hhRRwTT5(fgRFHe@JHE?clIQD_z z__O2q0*P1iEw?&n%k$QXytPuSeW=fDsaUDi%0_4%q7P?%JI;`LGk`5F;IGAiz6C`X ze6MC$^T-B=k`dWt+w?RXAG;zgzrrf}kik z@q#Ku7yNDwwnvx^(CrYjin|c|Nyaz$hJyG^mHRSM4E#_ajRBs>H7)&kZzrP<)a}_y zHRAG#xl^a^LL8X+8|U*Z9kmfUCjmbxZWH`CGRt{X?ADo(NR?!Pb3)w6_p%Q7p+JcI zY9^0ytNSQJq=li7i|!De9|{!6jDyh1mESlXDS+(+wS3tb6$IvqN(~3J!XM5LK80k+ zF-F-aLx^XgJ3&CC3n#qLtr4d|+X5n5*#ij7Not@oQ`-U}u-b!#&a3jylwqwf(x>V( z7eov6pAzR5;Q9k1s9GW51w_V05vN>)ZXFmFLR0+pTNPskr$RgAL8jpBx5~#r4u~|J z)G^%Z@x;NLpEp;GN^n4=@|>p+dOV4^Zk3JU33bSMI?V6N&o{)MC&H3H;KG%lV`KMWx-oNHV2!AdZ1 zEez#yod&lSr19AYkr zSOCg6rG^U+v3(}bQEzI?21P)R?gla4)cWW}0$e_X@ELu3@Ai&ZlIpvHo>fWGssz9kxvyjZ)z!sfpR zMe9bGV-}$zKG9N^ob2K}rh~<8tA(Mu2v2DQs4d=vlCwwnD8j|%;Zt1vmoz>UiA7j0 zMiGIadagx~3pPUphKjoGRQ%=K`VZGfWU8~Fn{d)`1RTG^L z`CHf2o5w=1-^>KO1&`Q-_P3CbCs;S|3mT>4TlJ)+Qk>vQx7!g$qSUz;uNXGO3DM+9 zu0mBto{GvnJf?`XMa!ESl;V+#ARFSbiS0i`Sw|b9SO$o-yrOTSK5YIM0j`ZzN5>6v zoStlqjuSOhY*Ni6)$3jXnzG)?L{}%8f%bEvO#&J%u`_DU@Sxo&Xl}~y*Ci6I9z{kj z%1?j-y(JY1PIWo#RbrP$r|s;yT=XKci%x`Y4(leP4bX*7hAz}aJDH2vEixWXCrNPY zdV=*fBy@qT$aTW0I3`%#(mBqxf4GfFwvCEx?*Q30jzP9_b#yu(6ouwLnQwM$ z#zL@fLh)qY&dQ8MWAQA1@%m25>-bSrNy=QXC1aqp2P?|Z@YEVF?&qt20}d}Ds>pJVJy8JEE@E_ z1m-?)V2no9L?_z-45s_!UcdYBmIa9}9A^(3cL4W8*iht!W5c=Jl?|ms0sJ_=hv4_Z zU?Kd0kP1Hvc}RzIpWn%Gad$L!qt29WM1j&$5!xYcL7wu97OxEQRKU3fsOrFCbbK6& zCeKxG`<sR~@EI^cJ1(fd}OS$RM#Vq5#){fF$#FlY|ESXroS6Or)H|_gs6Rf41q!W z?0415_0CHIm=M5z!Vci70bo$%FqR$1dFSH&D0)9XPMT&aT2DJTWsL7(j2IJALh<9a zWf{tY4TEgUy5~uFPl2&u+F<6wEPz=86EdksZCjjJ=7g6a z2~LAN+vK@Kp4;T<$nzF?9+T$-@;oljXZcj!1xtw?P%h1GDN$SgD$t-U_aElW(=lkv zrIf-brLeb@P(Uo714vl~@+5^5soPVY*y#^(EPkmPH8Uo1^H7b?zJsMR&1qk5?5!y& z8kb8f-pL%bD-A26$Ih5=2l#vOr^C7Y(|yqV!e;`_=E<(Q-_tEb0g7l zQoHE4uv{iomW#Hj*`AMxxt&#{k(O|I`^AvE=%altEKtOukf~_3-jDDx9~G- zj|`Sf1+$pqSLa*JLS8w39LAdaKx(S<6iP*w4>YHOEg}p?g3faUPRE#Ngjj;wx(ycr zA~^elcsP-jpo0&=#xsa&5S4W;63vp~2W@ag-b3KG?jAEz8-1I)&G{ZC z9GZUXURucKeMUFZT#Yna9|0^P&vI-STZwK(h#TFBEY5-EQV4ni-id~$^76#^#_~k; zjPgWf6E+`X$!dAR-&BEf@IT5_NbUmm$6!AZ3JMHop$We}->BWL_C!PXd>85$37W|K zK+kF-Loyd3767mcLjlABz!VJ-3jkQ1p)kY(z*G$o%g)Tlk%m*Tk!FD9l5W^rh@y!{ z^>>`gj-nj=_AJzB@#Z6Hp9jAxDvVq8o{!D=t|1K$eF~9Vb5XDne}1uw-G@VPv7*}^Q`tcI1Zi&Qw$D)uwqF5jr#nCrkgmdNrJXnktrXv&4pmKSTE{~%M zx!BvnWGSxusFl?T^QHbnLrki(5!IurFdtv6JRYk^%)-*`ildcCu^_$;h-LP_!H=p( z7p^EHT7inhx)rWroBb`RNathlP!AeHx-n3W=SxgZNI!;6vN{NITzp%NP!naogcz;~ zTVKXYHo}0Oy(Jg4zXF#N7102;zLZ(7!RynWLTrs ziOqoN1ngFr3fTE$Kgmw+dde~uKCrSX7_g?P#;REF1wQ+$h#ZSa;;?{))H*!e4T;7sv(>ONtA*2edq|SOjQ-#&SV&R6YZLS@9(K-wDo>13@ ztaHI!7b{?7Wge^_0EWFC)zBL80bqR)-*swh7owpqLGk|*gFLbZW#zNKj>tjK*27H1 zHs4swpO9ANnGAUr%P1Gwm5gkP56NQ69#qR$^6O&kM_AzF{k5DRjofn|+J|rGN)#oK zjia$yu;g-czeZ75J87rc=#o&oy1N`q@Q(C!=SZboNX!d;(n z|FLM3-~J~2TOUHvxD_-!UDxEM2yFXL6E?$dx?RbR$(kA#&?K8kiadhKT2=~r}a@-k{39= z=NWq^C@z65v~j=79L&1oH=(YD!wTsfi<wI!`?uu1x*3J2!GTQ%?(J7iTAzC^-OBcYoEP(H_00xDbiG2{1s8 zt}TXqeH0|VE|>7;Xmi~9KH@nRZPr1ofpcM?8%9BXI|`DzsMy!2#Mv8F8ZQ}z`u1Xo zM*S@u+#UKY(Uv$0g|f)8Xp2s4Sw~T{ypAOpn}(to2Pe0mwW1a-Lb?g1=r$t@*CEL# zM9PQ_Jxav>fdp*nfbS{}*om(%j!Nanhwe6sNDIsC9$>q%PmfM#%2}PqqSNbw(Z*C2 zMk&kTNBS=Ar7ynZ1c*8%r^#X~vbbZzSV;;GpQQ<-e5swfgaO+bbu;F}LF3rdrO^%)W)|H4%6&Lc zAu+1VUqiy&GH;8v#iNxjJ8Y|qR!ir2nEm9jXq#KKipo+D(NfV=GzpFVB^XdbhDtz& zN~pcW$ZvX6L4JMFa=$elk%wb5;<1_SCbV$T8PSaghr6Sc@ed`sEEtamA4}x6%%3w{kChr=h5$z^h=PytuMgu@O+JNJ~1fOj}Rnq z5fz6QXpGgw_zA-xNZ=MGq7qx7hc0)%g}k_hI4?Rc9v$zN-#k?^wXw6~vGzn;^z3N+ z(O4WF{yXnsesq2uifBqp$D;F0eCxd1EIN@Ug0=Bl~k|aLrH9qKZg4KrNgRG&_G+`|9GTDYedQTfj zbb^~N6-Htnu;*_*U6jD4s4606~(KPg8{jc(s2I^-+y%H=#}??K~A_Mk1#L5ai~5c)nKctZC@8$_0epSoP5 zHWBXdIhqzPAT46V6B!{$;BvW^$Ol^fQRVcHxDnjX0=GKrblfV(ew?F7rps@nehc^n z3t@PnPTz&O^bsWR*Gb=O#6SDA@y|qc%#6;A&Omki=+)O=DXAl`gT)Iu-lbdt+AT{?Z8)>7^~IV$ASG%YgOQFVMqzK(MV zsEh6JmG{582UBuL=@Y#II|8i?vHjAi^0&M;R*TTv;kr>hjWPlNlk*Kse0d%5e* z!R^wg(RG4fG(#x}wrM<#x7HC5egw)VY#KH8;8YDS{C7|u-U%hcO-1mx0)Bk}0~8>8 z@&6MaI}qMFj5EFPui^tDiP2vK$7&7Z3~1dyPz3(~!ZwknuNJ|tLs~A2;0$&T97EsP zs4Wb))g~%rS9G};_47`+s2b>EjssH}fzhMf#k$II?rt#i6uTILhWW4_U^jKH##l!T z>81!0cwVDXj)QDWODVp>z|>s%Q?V%)k_YR%URFA2hB$(?;Q{3^uoLsAAdb-R5?wGC zv0$EI(GetY>&w6!UaB!Vh;f1#1PR>w3NVsWozm^O4guP}cu*D_9mB{~6lXFD_B$Py z<&dEGi=#6ON`K)m?os_}2oVa!!tq#HVlz(QDmz-?cMc!`m(5e(=$6MLBC|#6!Y&tz z)Q45chGhoH{txEnSzgX7PduC1(SIjz%@bV1;OPKHKnff%QCf`bMSHo z#g%KyIq1v-MCRA^6p+#hUVt=A@T6g(cx*r=>2N2(o(p%cI1}``;o=+`&_x5n^(*-q z+Gng!!xnrHcyf+&3xaWZKgmrgt$7m`c2ps=?&vPyt$5j(h;!dmKs>7DP}sTR3QQ&X zMKz~R7R5UEh};$`Gkg^ad2BSf7dYb7uq!$XTqNHf`iyVs=r8hOLdL}mJi7dAgAcd>2GF$15f@N!d-qQ8?bKoYU zqk?xz5ucL%Fp=xxN)rru^6w};r_~I~ky&7+%9JHut$+0^`Odv1)<3*VbC~r=iIU0) z5_rDHR(FrGOoPTl$onJ@jY>PjH1Sd-E|?#EVM{a;Am^Dty_+KKKZ|Uk9Z|WPtP44x z5D)wkEVpUcJ6z{qi8H@M1Xj)=r>=|9bQgky_D%pWe~w@;5(Iu9{y8|a_LpzT>Q=$l z>zsE0Q>hl655X#Ppwa?VZR(x{-3SZWH?#vCf!&Cls3{_Jl%z4}E{!wD3ub`dMC+@dDBMk?c8bn$?m>c7`$Es_2?uKo)Wxz` zSCD7$K`zA)rY1Xwx;2I1VEdrr2xVTxTz{$6;rcCk`7QF&DD4Gv4mjddH8U_hA=4+kg2uQg&w$P5{?@A)C?z-*0}^h`-Zyd zO%XKOwlpUtT#0*5fQyk6C6q6jFI7f6X#i0PrOuQj-stLjAC*0q>>$8l7o5`UqCcC0=7ZkI z#H#`~ilA7N-D(=hdEXxNwZCE(suVW4Z11Q56!-!ImJlGjN>FZf$|ZJ(z4U&h1fQ z*uPst7#tyVm=Dg!{Z`eN{X4$lkFwyqT>rk~H-gox zgQ9*9ck2=I3G{%9PuK`C^Ag}A1PR>w1~9A+X*h~B7Wt09wJ?xxGLRM>$X*8W2L?ir zz^!lP1IgdFZr33fSiKg+oNH|z2w?y|VfWYJ5Kghn8iIEs?HC6{tv@16tQYwcUgg#x zaFZ8>Cd|38Dv&&nd*-ZetX@eiEKQ!_90jSF*wtf5k7zAH>!~P(#Es=ELF@ZKD{`zX z%lsLkUW2Om3*JG0AoEweW2Gk=g4RN$@%1U1fA6v1 zV?{IcA27We4`v3^eQg`k8GF#_N@sGm4e8GAw39UZGF`UQ+p{BSUYvF^J$C=1xotD~ zmo%3T_6`g>=|%nN!2zeUH)(bZ?&$65x-flklYLdXf6#TXR=Fgd%p4mSC z%+Zkz_7C**rFHBZ(*qRj(N^Twv2+Fhk1Sg8o2BI+3;cG~+hjZmhGeXPxe%FXT!pJR z9HYgV6QHAZ!jGH9&3aFjg5` za9lY-J;qL$E(uqKwF%#SaO+0MgNR`Typ&Y0vYo!p0dwVnuJqmklupUaO}o?P)q`p0 zpxJGwGiJX%U}gsQ?zNo(b8ja~uz#010Fww_6bRrJbIg2gQBM zSu^LGU1?{aXJ=1W=Rn%r-!rhgr(fJMd(&M2r@Kv-p4r>e*E3++J0;A%p5ES`OuEbN z@6NQDYdfz>BYGz-{=C8UWXye?y*=Grfom9_`G0{fpdXW;OBdA_|K^=vS^wgr|MKwF z8*kpWg3ELa47!c!Fs%B=$UBxA8T_$E2T;2`c(VrA;z@X?u?sf-mTZDkr;yJ|P)iyi z41mgdfHWXq3}O{9dO$}EViU+M;=1@A>5i{D5}3Nzphf~~q_;?hh8 zq+{;vanjwB%~Wc!ISm9iZM(C*zhpfr6f`oB?oT_W-EXG%rTamo!T=PW+11%k!rhTJ z)BT-0dO>MB(p{Z{nKa2Pt%-dBuxDkbwUsojbR63;_wVlMO`AKVNeqC{7nmxzwvvsT zNT`{C&c3}1kdUOgHl4|I?n*C^0Fvg?u7RF?Jp%{L)hiYZ&4&9*NfW>3;A;(%*t=k8 zF030RnG1%_$|9p!6jo-e-FB<643fuduNemPm-1WUzF+V40vxNF9;`C%FZ=G~2TIm_ zck-s)Xc>DQdzaJM=P3qfu-`=MTXE4wv(N5Mw^dd~rn&)NeBU#NYM%Jq3~eTUqGd)C zz9)WS=8SFfHfQ+7{k|Em%J96FF|j=0?O&z72|xq9d9mxyAm)EgV@o&gRs(+!pIMM$qW?Q?Y}BR`7OCt zK1S#Q&-AZs%7W*Ohy%k${K||DY!4ds`(VWQD1}ofS|*Kh%maS%JD;&6|0!`jLcV{R zU)w;c zvkm5an0A;Jm}(dU=FjUw#xTPBG2V~B+y`?E<}l1K%x;)%Fe_l%V5YzXVg9%lal$+T z^J$nnU~YuzhuH?R5T*qt3}e8&h`c$7X9vs%m<2FN7}9q=%(Dpd6!OU5qlPg8svZHQ zj$o`cf~GR^ZWv5|jR0c=O>KmDJKgfC#XAi1>V?R!8^(s!A>%20FTlGI#s||6^B`dN z!Q2gVE6fcr2VnYPcEW6dSqC!@rXD5&^Xdg5<9V2$zH(@>lb1%%DFt@?9qkdPwtbw^0 zrWNL5|HT4ZcC)q4gnkl!8wmj*_oTkpwYRgS^K)rV-0D@ik3y$+F0gGfd=jP|C(e3?>E^ zeeh=j!qG<;N{9mtN|J4Wj*Z*rhF}`I5hJBi6K|%&MkpzfI|*gDe5P}CK)im0Z6b~V zJTnM^!zAgpm?8mqU z=zX32Jv-Bx0gQZldu4dEyK`UK9PIDG@XGA(?89i4wcCsvKWN(I$y>pfk4X()>76vm zp@5>*ehdRl{OuL$*@rUgh8wAfI2kE92R>*wQE!UEIOyz`dL*2s%u-VHhGfYggRP-k zV(BzC6otj%2kKOP?isXniA7U%&SEa)! zDm|6nJe9K!S(i4(tJH;zrfpS@OqWVO+GD=`F1J_r_YCwvV*q}2$g<@{*@9Dyr%mhQ=m{Pb1+RADC=ZCiW5c=)@)L5ZNS_;BhW)JK(m#*8m+9aFO zeq27dKMh4ouCpR@dINrY`pH5^doA?awcEBa`c6X$gsw3)*k^)mrn)lV!|d6GJ?=o- zisMXO)hBKg0`|MbKH9q!c|ls2tN0L6(qtF~u|?2EwzIm?W;E~J2rBLqSV1_;Iy33s zp8mAi(TRdX$3ECcWrOs>?BIhs+t<{XyjWH2GZJFWNMhNWrbUq;DETkrc#juIe`77@s8-&cDqy{9}zzGcaV_aUfGS?2WUrK|v z4&dDlO!eE1@CM*x0d_ggfON*cHkdhhQUcip=xj;pEZDXn?Q0Nc7xFPH7cC9l8)M@DWKxpoAD68{Y&H(WPTTUxqu<;u6b`S$H)lI9I&RfcU&@J zgp9Li&g|&85s5UdksILz)ysB&l;FJDV{=}9V)*!j_fP%7*=rw}bpGve;~%ACM^ArS*Iq<)y7UeX z^z?2Y?A(v~LTXWFFguabUZE0Pk&16M;$o{p!NC-#t@wN1vLAhST6@p?zS4L@)7IKU zzyAGo{u1By{*wQADNypzI)BNXuzwBaIP5QvoW3k2Z94{c?nFs46Pq7--}~xreAAD& zgno6;_ujGxn^p3^mAyMDjT(1MHcFU>H9Oa&&u{IzV%76g|1|N)zh1g=?>Dd`BL7<} z{8lUFSED89xf)92J3-$Zk5F=h>IHSkw!!Bzz}bHIqm0LvIf%Db?QaC%?n5iH-L|LY zZQ@hL<5-NXasYVzZA4fcRdEtX!$zlVbX+=IQd4obUbo`#y>6r9DJ%n~kNsJ5#%k`K z4*5(5S%$H{)9FX!He|R(_x+jTv6_-II8=kX!*N<4$Gv%;LjkU>dk5K?aS=okdnY8S zJ{uERU7dR|(MRS%@6zJ{hv_K9b1AG}`_(zq=M6m`y|2o6=%PCoU-{^p=byduf%mOA@~f4f zyxza(#Jh^z*DhaxzDG~xVFC`bc>`vbnj|$BHgBZz0lJ5-&fYXRCUp-StFqi_r>sGm zBmENg$W)``0hp1Zcy1{AR(%#F@8bT8<0iwnt_Xi+Z(3xq-JKZ-v6$6Rl8cs}I|tAo z>=+zKGYwiVlLMMlnm0}{F-5{LIr`~7)t{aQuPBP%bpNh_-3(Vv@3_wCzP*_F88d#M z8cPQUY|OFtbmdT1uh6;#ioQhxedkVgS5zR(ng{U+Q#t#3Fq7S8nwud&cbZe&h&FLv zYYGz6*SU8_COuG~9Lg0+-mM40c0!3{Y}#*QCX3Ah^m;_P`o zf1IE;d%6{cv7&*~?^F7Ex~I6+fDkx4>JBuRxjwX8 zExEm3dJ6N)5x$x|&gY{LgXN~eD}=uhpQ~h)&MY#ak_pAnQG*+m%%`Xd%>(ir))P3a zW*HTO?Q_WhipB27FbOlCotl$LT^90vy{;jru@lM5?8Xp{N&~xJ6m`0UynK%N^M2>^ z1sNZFpR(8>xT5q~LMzmkXk8roxsB!}D=*%3#io^OJJu}Sw35UJ230A22yc4NE; zP;0$z>9UL$L7P-4b7znSElpGZ$y!zt2z7!xk+wE`Q@>03oSa)rWdBZpOmM%fx%vMd66pw?}Sm(j-_SAePJ_t(Rnzzje2-(KLC4ipGba^cH5os z2N~|^K7@_PRp)ZZ*E4{21>Pw`bB?r?PMaxH^9gxLN$aM`MYf<{=h%y~@@PM!CBo(Q za&X^)^y+@BM<8_&m>6FYlOMIs$g}`Cf#bzUl&!;0owUp#YQ4h#%}x*gL6?sm)wv55gII!>#>u znm4jd=7QZdh@PS=CoRF7D=;Z}BG0$a!>rM2S!_kWXz!!?PckerrPp(3O7<(AdK<=q z!ozZDDac|@Gj%$gu@fz9*6bhb+W}F7G{RE8N-A3MZCXx%V;Yj|;giuG`4^;@B#xCnal6{3mdI8mj8?L^y|s7=sDY=jR=jpQ3@ z7D@HV`EQPKR$@WiO1zbPskoOOlc4Q;=Xf?3P7Xw*&=T*86A70TRv;jki<|KhSZ-T1?m@Q@u7zfJZ)XD>%Hm^RcRWF{$JI}Q${ML$Tq zOPgo5_Z~3Y+Dx%r#u+X6$l=T~XU#%2W!SrD`xWZbShIB9d7GD>w^CH$NwN^>f{aTX z^nZ{Jsh?}Z$e(3j*mv%CG0;uh#j|NVd{Nh@$_vJI=31rZUfq38gvsV$%WT~!!evj_ zI`GePB3VS}g=8+h%v@v+i8yM^m=T#V!<2PSGMt0_3qo{t=c~JwG|9HEXj-OZmAp%d z03#Z^f1nfmh@lLi-jrMm@mzSjh!3oKI^{!E;`h!$88kpL*fF?k7Yc@9sBE{v8i|m} zbq%PLRz_4A@;ze)jk$sng<8v)0oO#)VQ>m+$tVo0Zx)#Yd?GbxHi`-r(YuAA6v3N& zyH(hu!`<20)zdpFT-KY5YhFyrUWxv5W((sJfjfhFYw$GW#)P=N)26~bvmlpr)0~69 z*<<{HmWux*vnHT3&G}}#dA2#vJjpvm>Lz-e$0fVX;q($3u#2F1?v#H^ioJ69&u;R z1nS1YE-ZQ$@*zz9X3m1k>VA%HrL*nq&Bs8DS@d~{(zq14(5I}0ER1hCz;3FRWBSVO zgQzW2Ry%t;cNL;;P^g^+gSA4GT;b;eEg;%LWT}Tyh|{1{ALtwy%t$hn57Ib)x&e2(=S8=A+=(K%>*`Jr`(9HHo3S-Z6H#_9ZjAvLTQ6RT=R(>aI)w5}K+D!0E| z2C1l2Mb9%R(iYMI(|=luC)uuo7t>mP(aH@QF4{1?&@+iLr##?NcIsWwqq3P5&|VVs z3*1Ao)aY@He6es4i-dN7s%nk00mCV`o^g{vFU(AabHM-m}(s%xb zl^Zv&*`&L3>AI<|k_`#c_D5$xb!15s>OWC!anu1tRjwcJL8Y>9@9xR$?S-_j#DYvw z4s&g06x;D|8&WoZ|1Dxu3iINSvLEGSQ zUO$kk1g2#INKXit>r6QFz|ke=5==<-YDE`UN^mxT^6Y-VsgGWS(fe3_)Y=ubYNJpi z4s=M?oQ+cJF}U7l7bIO1MvXRKKSugr2j6+!`0J;S_`=hrE8;95=6BPkwHRXV0jS=W z+gKN8%J@@BFXkdyXvaw$CEFFdEig9ATsG^lgDWqZyM;W~boTEWl<%2y4~WpY7J1{S zQ)#!oIqVcYiqh??a%4JJqYS)j>GCC#*XcKJJYD&{UO5=XW;P_u5z0z5EurRhRfbDo zYAvE(E~tuWkTVq2^DC8s2*{&!You(>zo@l7UX3obN8Y@vc`cTSn!ivp$$Cbl9rU#Y zBQO5e0wb>{<=ogJffs8xv`d@2Ix?@n)ER~DJSB25)ioHux${VRo!;p^955}8J~-;f zdwRrR>t#OKYKr7*-3W`}kh|9u!z>0nUHd=*7lozV>2tIjd_s+_8a%6}*e~5(pPXQ3 zL`-rL!?^vKDanY`B|AQFZ9QS*j^ULUXYPkAj~GbBrlD#^X}%8R)}ONdYi*cblgiPu z&Ii-=KWV24;OqH!U2A#rMD59l%+(xVaO|Dm^itRBwSq+kW6A68^{@|R1YQ8TcDVy_ zirXSb;dxr*$~4Z-l8QNBsz&r`jVkBk$j{hj^-9^|@o!Fdtfm_C8O?Cq|Ig)(siy9N z>EhZsY742A<7@);x#UA!MVIF)uU}Rwynj>!ci|TJUU#dBznrrOai=nEkT~K_fNCgA+Oil|Ue7NQAR~OHi_IUJqOrpPX z&Hn3{vq9O2CAx&Q%gswu=XNgL(be5=4{qLf89w{Wg=*ezF~4@33%Tk@>}hi$I^lFb zcZCYT@i-pPb_p1);?mT9b0HNDf_jO^evP@1OPZ)YSZrQq<~?BD*&$i1h9{N-EzBv0 zB?zorVv6=6B3TS3z>fS^E*y!Ke%mlXK`alTYw=|fjhH%@EY0&vX+ehrN-Ct3k|c-U z>A|Iyl6Y=CH1K7epaqid#3bEC2}%A@1k&gc4LogUuSPFz@p&zxshqp zk&g-pqYpO>gf44Wdk^M9OBE0=!oq+`b{VMMw>i3&lHxGOn>uS&YK~guFg=%D-7s`A zQ|7LoeNYq8udLHUS;ad0MAJMYQfJ zd(7Cmt3u2kHByt+kw`{oKW36$eINI7rn@sbJWqVus$0KgxU&nglc$pVHJ1Bk=j6&( z5EVcn?g&Aa`$9e5+Y8MDHH#kQ-~cD$Jz?6T!pvpqqBSdL7uE#EKL3Zk_kpwPxavHg z92pYDfFUNB#DTW_ujNRxoY;wDD~V;bBrDdRMrv73Y^N=&Tax3}AEb6H#Wn;m5WqkH z0|7j21`K#1JCj{JJ7Lz$WEr!Y89Z!e@v@m2vlDi_Lx%A}hH)S)p3VHeb?)iWKoj7->3Nu`e9_Z7u!~>G7RmLuLapw38+oijP z?o;3DAkXkVmiL=Zk>P8baS@lI7vnAPNTibEl%zR>c)Qm~ZU%|%ITH?Ps-3IunA}nx zFX8X|Ye_oS9VhNNd>FhB&K$i{F7~-{wr|`reMH7dQOacgty9yQ&h}%R+#cKEQ)j=T-*r5<%;(zaC?#oFr)YxQ73nh<{u0(1 z!jiI&nxGa__grynGR;DTrXv_OGqbjt#hk5;c*71g*Ibwj(a0o@2?yTJuytTg_D5G}2F>YX zYy-%Ci6ps6t|={IZ^!9Bb2KdNs8vK{d*y6d$bQM&@~s{3`);oMh4%X_xACHpQPEG{ z2E{{q)%$0(dhRu6wb})p#^UwJ=3Cyn_G&w907W``Pbz1ob3%2mm8nB3UZf9vOaxF~J<+V!2tFcCmfuW|LcC z!=LbSa%)5$KYG}dhGwW}J<%yOOiA)q?pKdDnuqU)os-8p-r`ih@=#Y+t~s=FZbw5? zXJUNV9a#)viPH2w>!dJ1%|scIgLo#K+j6vDb<_K_Un(}6i@R$5;cJ582 ziH@h~S7Oo>Oysq5TELE@v)T^1JM1cxc68ajmj%YXY_HPBzdaY(`Vrje7>=Q&Q(~!7Rni6Y=##ZEDC~D%CXe~-^WG;4B zQ0RhT29Y-$-+xF}LRduJKQk@#H9)Y*SLpw^qh)lL_O~>;;YOPpj*s|xOe0sWz49$< zFIjihl-`lSANTC3oQsYf-*@ovJ~d#!mP&hy48hYlJ?F0>);RYx5Z7jY2JqO~5eH5` zYex?KY)U`RvpqlCwPFwghHQ%*7coSjn6yNO>|LE?RC~E&;tWL0-p7YGq7d4^ zh6=S{_j0Im{Us;fWi|H?fdycN2!=YMSTqY8vPO<;y&$lY>hzpAUXM>7BTz4(xKEq= zjvSOy8$=O>vIm~%OZb@|y8zPN`P{R89QgZ=%G+o3Y($lYb&ytbgb73mjmx87sS8@x z-V-^Rn7FmIJdzYf?vW7V9!Mb%WV)}5NU=0NZ=rFf7Jtg&WcSLqna7>#e6NY#vIfz( z=P_>S+InJ#26TwKY<8XtRoa|WXrE-Brni$E^rYUOi}6;Ngf4L_XugRll+y=1Zn-^92lGrGT@ROTXl6TRvoN(_Af?mG92GRayuB;O2#;Lp?a=I+ zpDUnp10B!{nn{WB=MEkSvaq9)^xYtBhJSOePU)=Ds)w#|u3b)Z`c`9C8}{!yEU$nq zxQ0zCoKTQDAyGH3LF%n+-klr776u-7udSppD}#Wf7mOoW>%aSmj8qS-HeD*BZmPws zka3=A6rj-7Ac1VNn|Z7Yg$1V4FU=eEt;kYyf$b*Yyt#zOXAIhILY=VFP=gS1U|b{IgpAoyOC{*{ny_?SJQ3Rd!(? z*PG=I6qEh!ab-5lKGnz$p$0y!+?vG8s zy7%Tc|I2Uv55KZ}89QRuNT$(#=rOC<^uyU5_E_AL-8rnBYZR4%RtYWc(K~4w?9BOq z?oWvVcZM<#>iI@d=D0A1UdQ!6IuB2Kdi#)`-zXeR)>?fV!!>fm%1_@%l0(zH-aAz? zKX&-=qg;OA!xPJ&mqSkQ$?@kp=A+#7xn0NStf{Z*?a_KY`*MNDd%NafPW|%xH)=ir zhJKv2;P-cHpMl@su6+!C{|51=-?yE+%!F%ncJGF{JmVq1-M>Lp^mq3p_cv%3^7|V@ zRE^;<9`f6}H!0fQY2j_7mwD6Q-6X0wKJN?p?cHsfOZ{EvrSjbk4NYkKg#OVVwBkFM)MNY- z%gg&444}T_#tsoL?>(ZIm$fs%l*I_!-O#aYXI|D=g4_E-E!NJ7z&Bpjj*zR}PA}^~ zpewtp9mny8U!c;~fQgm6J=~|<4pZx7g7 zePbby*XQjx6!10dtq!y&uVYK#730^90bj2JJgg2IOIF9Wz!O9kA{~r#pcQx-hm?J= zvEenZJC3bQ;fd9~A++1--VktdxpkB9u(~&eG5wvA=tu$NJ$rtb0URG2L2Ws^Mzafi zoy%IJknvhBbGeTs;rtXE6JvsNIf+D~MD$*;xgos49!ci`qls~*$!f5$@t(`dHNwKm zIw7w@PRBUjosJwq4&@o+$l^7snK5@n^Z*ZPV5X!M^s~|3?wkDFuGl{xQ(N=~a|!)t z`Hk*I0i*j?NknLz(|up%o^EN*no?O-E_*_R+M=sKTU~Jq7 zKkW;%)~>)6l&SOo^n7y|5oSC16+GZDdI$7?nrIT_9ohkmPC*MzxXnx|G?t{eDW`T`!< z9_B2I`=Yn$N%qu6Y93H&yhRizQJ%o#f{E{4BQAhH^0_{?8Lt)iGq#8#Wu`D`Pdkt5 z4=%Pbz!^rA$NbBP<2^>r-JzbF0%rRIF4pIqhT`<|aYae=sh4^<)aY|AZ8Df$(+=Mq zdd2SJfAjn7HFOxw&SCb{I!sia!#0M!9JtK-D%Y#xc%BWdpJ?V6xQ^YAv=@5c)bIin zx+(CPjepZCY|PtuJRCTBd*}zO2FC|m7Jg;S-W~AV63Qo9**WJ!p)JNmCj++{j27v6 z4hKB9hdw+c>cWvOU#7$R)@QjM7iG<%(4GyUot#U#MjS^!9cXBWjy2niA=53PWDGoE{mpK4VCa54@UF=_lczU?{LCrf zU}Fl3rn1$>8sme$r~D5DTD>QXJCnIv15JnlrCp4fLji{ygM7fN!+pv(xok3taSl&J zU6#I^6qT`^rqt^*dc$S5>%!o=CE#K5+j^hfyl?`v;A~vRBJ$AW`b3bo?3DE}eP`(7 z8v0T`N_{@r^!saHro+d$`ooELq;S z@=f-@o0boG!w>nw581*Gxxx>b!VkH@k3H!8kQe-r75tDBmKr@63;f)Fh%DfT9I({! zv3!hues-#tjd`va@0MD9N1Ar~7^A=WF}C?Jt}V6xV?6U?Ec0U=TWak@$Kr=xYpK=4 z80E+KSF{1}(~7?b{6Cg8y%y=C;oS^B%bfnOzfwt<%mo)XL_=g$^= zTXSD$wD%?&_-h4kYv5N49&6y&2wva7xS+0T;MWRX-N5GvzPN$EPVfZ{{Plv*Yv6AX zd`<(OD|mSWf1}_R4jca8B>4FTex2aw8u&cH&o=Nk3x1}7UoZIS2L2YoPc`uQf}d>Q zZx#GR1HVD=;|=^q!JlYgz8~>u1M_8-M;iFs1V7xs-!Ax}1|AXoU;|$$__0-n|4PC4 zH}@|RJlnt*3!Z7O{6qs^FZl5W-XQoB4U8S~Xai$gKhnVH1`jvz zCczIiFc!sw4ZKD0{SADh;MoS=DtM-W(Ojk)_$I-(HSjjU6Aipw@U{ltA$Y8TcM4wL z!06alH86J3>IU8=_~HiME%<^4o)COq1K%w8oCe-2czFZAPw)$O8~tw;{Cor7F8H|y ze!t*n8<=&qXBv2);HMjynewRyX7+uuftkslXket!;|+`)`9uSMK=7jtj3j-efstMh zH!w4vzHb=h57O*X9aWdD#4!Ma}9Eqy({_XWYo;5Q3?MldpX zwcsZOPbmKy!JiVmTKCrqeoQbj_zJ;~2u23KMes)jBZIFJ{Gi}9W@o)CjWdG-zE5B!N}%!3qD^kviW+! z=LkkNZxAeHWf`*h2EorC>@8!5=SIQL2!6lXH75A8f|1jk1V1VGdcm6oe@gHM!CM4> zLhucOZxsA-!5al{75uQ^F~RQ<{1L&M1m7h1e!!8-)sA{aTn zQ}8yy$mwyx*9%5Ye}~|!1aA|(OYo>*01SVPB3y>pDgWtTJT=c;r)Ui7raOJ_X&QC`-1Nj{D|ON1n(F8QNiyO zJSF(Uf|1|Tf@cLIzYht%P4Jy6Q=d@njSEJW-!1rh!N~F%!RrJg%MS~_SnwT!j|e_r z@IJvu1)n4MPQk|n_XO`(a#HZ~)4gR=fd*=v7E`=L{1@@Nf;qz0yWv>#Y$6Ho?~kUN4w&w_fl%!RSZt5`3{>#^6T5=Lo)8 z`8Nsf3BF#*xZp4BS6}P??Selm_zuC7fO0bI1Ct!uY;6NY2+XO?OHweB;@HV}Bo#0WywB>HW=L@D@I^-O| z0(;Bp9KoS41V4XgQC<%zFnmOCfXu+OmHY)6VWw-DgQNsR|^j12p$m} z$`O2?;82d>7xozsTqpQB!F#|{jPQBEp&Y?a3l8N7{)}MCd4u3j3J&xX{BgnI-4XSj z;P9^Cj|dL$3cg=(cvtY0;P)ukb%G}Zk5li(;y1xP{az#Z8o}XR!K(#_cLkp(7{0wu z@N&UBcz0C$ZtrN`75tpw@UGy`3l8rJ{)}L7W)gcsaHvc0Ck2Q6f*%ze@(X@QFm*AB zeOPeFFL+jP$S?Si;E-SNxZqI!Rq7YdFZdeIFL-s6p8+(|yCA38iCK5XDO zOsTzscdO<%98%voJfpr7{66jGA&Grm^O>QC^S1z#ul;^zMHlbXK-tGM2I zg3lBDI>B!cd`@$Jwcr=t-@GgMdBK#qQSh^Z-zE5V!A}boy1nK1YupLO_CHVX6M{pT zf*%)5U88~@6?~cCwSpfJj1F_1;D-f=@&!LAnDWO3&kDXt@a=-91XI_f;Bmp&G=~IV zFZedW{9K2BLG}$g4!X{-Dt%TuHghX;>}QnH_v?i#ef=(_$Oe79x`({`ik{15vg}Wk zz^D2)eBh^dD1{HNR*I~8wNl3X`AQjg7b%5Dt|yg_E0TwCu}0U7>2FiY7#meOC487S znLqzerPzKqDn&o}pOj)}({J=2^8xe1f7Ug9f<-dm{@ z9rb6F;-^veU_acW^dZ%Ay;A0fzgB|2^_xnuCB=?G-}xs>v5O8WWgh=mO5qE55MD%f zAVV%C)%8tEk%_P8x#~Mh`LR(xs1zGXtQzL`KT?WMXt`2s6|qmSThXb|tv;<3Kar;B zV85JFimwRS%zQ&bn3w;9uCZx8q!iixO}hWQ(iKYKDdtS(&gb>~an+Argnsldl;Ust zTBX=Q_bJ8a^lGKZyH$FRx$G>Z$gs6anQvaJ6dmACl@Gc8t-5|z?cSjDBYN**rBCU4 zqf+LN*C|EjT&whP-QT42le&J3Qfw}?~UuIpLdf16VLUC6OVb^TUdBU5frioCjx zRP|i0lsV}XqwXVbw&K8ZdH1o^1V|j^T;Jir^II$t2}I;k153$v|1@P%Ey)B zOBz**jq`|7e0VFAVq1Qf(kIj}=&tCnPbqy){CAa7Y>>y4;^%vdM?o$ z^!9(M6gwW>6CL#bQhL9h-=Gxx;~$XfIkE7O7Q`XD8)8? zSm~_r*{>A+{Qpogqw6W9=;(i_6kq7qE5%0tUZwa$zdi?@0d;R;AKBxC4lp@df z3cpXQy#H0#$lN=0jo$b-x_&|UoU0Vu{z0YBtDSFEdWZ1)HKkAJ`dX#fga4h<`&I6p zO0gxLR*G*5y9xX0e^z>%t~V>iUi&Sj&#Qd=1o#WSUnzbnY^dk;{*y`{*Y$Nuu`&Oi z(g#)kKBd?#f1nh9*G{F_WWS?ye8g;TZ1A7g^=&Hu5~bMZKc{p|?|(okcFDg{itlo* zQf%s9QaYjXwkXAh{6|W!()CSBu@V2VQs$>g(dP@I&;O_E+f?2GrPxBBQ#z*nTa{vK zKB4qUUB5#qdi!6Is-90MeMa}+rW9NI*OfAV;upa`@`Jj5TIKFlie326ls+dsu`#eU z{!A%8l^;;bT#mhg-SOwTepdNjr}SaHKdBVE?_Vliuj{*&VuL-SbXN6mRQhq@`9CUs zP}dujVuL@f^cj_No>F`?A5pqo?;lr+z4h;uKB?>XD#bqiJ*7`8|2HdrR{4KODYnlS zm12keKT5H|{yq0axBp-11$zIeQf$1>D}6-Q?^k-g%KNO+$CU5CD8*j*TD9*fmH&EO z;~V;6rBCYmTa@A-`Vpm1==yx6pVsw5O3zby$CP3>{;|^aYTtX5V)y^H(u?){h*Ip$ zf2;IqJ%77WY?ZH3efT|oL)X}0UsC$K^6yrPE&snL{e*B2?pKlHOo zpI3jPqdzD4`6i_wSGrQ^!@7_C@VMl{Hz>uP_!gz;aOl>{m2b7ui*=2jKB4Q&ls>BR z->7mQQTacv^l_DgE;yll=)j*;z6+INcb%1Ii9{o=$ z=OI16O4sM<{+pFPqIxdSeQeafP>K)jqe?#^`m9&l6J7qkk{3jeT}ttD{I1d&Js(qw zf94-5oznFtrTAz*rF25&UZ(U>;eD&>>8adbQ1Y%Dg>#dq{crRVAS z6-x1Q{j$=Bbp35g@!|cX(ubA*-AX^J{QrZ}XN1?yO3@ehsh&@X9xv#6o9^GG6yLI>eV5W_RSq^bw)U6Fr)&IJotUe{xKZamol5ah{NG&b`8uT!>iMHeAJy~Qc`myBZ%Wb2(V_80d_mV!lGm?N`lRZ? zUd0C2zhJ+9qf+eT*C@pge6KE-tNbgKo>ck2qICAp&sz5N`mXI+`u^2lzv@-Xp4asc zpYy6^_v&xcH@<4w^GFbB^|`_Now9?YlJCUqVc8 zjIQ1;INk9z?0Yd^JRRM4dQmGi#dEnPREvLG!tu&;sLA1Xg$Tp?zkN}Fm1jR0K0fK+ zqNT^|vfk~zSgO$y91bdSqus9bx%|lCU2jwREPc23Tt3I%^`b`l-3h+V;B<02_NPX7 z|8|{!9$Q*|JK%(>j=ey1LcM>wOZIlwN`5ihb!+d+Mf5S4pDwyMW=^^Jagfa6H~ryj zU;Ck7IP^DH{FBdo^h*~%So^jU_x!ulwdcsiFaN0QPyK!Vq297X`rD?zbM^Q1kLbSs zKJvrphkF#Kv@LYxdc{H671CGsisTdD^B(<8vGy0p--!}bSqrXx8DNC~d)4u96 ztFtR#-d|dQ_gogFvY6JU&lV~t`oCwj49EY2O8W9grK9L?R)6fF`MCNl{YDyf*>{mo zDi#gsD)nax@$ELAk=nELjz8&2sl&c9u|v|G?|9#$|KT#t$>QDfzqEYW6HWT+zp(3x zCjEGmlJ{1X;$P|<5m%?P;fSO}VMFyH{@zb-Yu5 z^>24_LNI%mY;I?7Ahj z4wXhr`IXPoGHE@hOA?>Azjt@YU*C_lRd|}lVl8QxyG8S(@2_+Ig0{4Z`HIt$4+h#2 z&1TYuGKnp-nU!-8z{l|B8Tt{_V`r&-i=?M^S?;?O8|k}H*{5casNlub0m&>V_MNT! z6Dkqfcz)W>?CICk%PwB_tPyYKX9Uc}JI!-+Kj7pDXKtb12 z=y&70ZOR92ID>=san^=OR{N3~CIXytOmv`L>nHdNuAwbZ^SD|Jt>TyC!8QHLlWg2e zKJ&hR_}vfv!PuiuZM*DOK7M#=wRB?rE&pkaccsVl_xXo=%bwET(`%GoDj9H@>Lx9M-S{ywZf{4o!XYTgoji}F6Ndd8JrqrXx8ovXhu|CD?I`unv09@XDR^>@Gi z?$F;g`ny+cr*eNJ`Uq6p^qiN0_D?Qi+9-nae4Pdt9j z*Zk4+mCyZPn4%mj%RB+85a6vlk5I;r+WrbH?+BMCnbEY$Jh#jq*qe|HZk$ zM*~rf^wyct`^#}3@p28OTW{=-aco&S%f-9xn$e%(d|L0C^WGqB4+pev(G&EDegA69 zM}F}i|L{Nitrb6e*H6y=%=Mr6S@og*9@5|W`up(DsE;Mv|LpR!<@=7`X|sLnXF`8q ze)V1Q{i)Q}_x(K^vGLnYC3T>xTW&}|uhFH=iN==k@@5+;gw^Nwz%Ayl-#3oPpZV-F z44-;kXQDmU+qD+uPhN`slYf6U?WO$5OSM1pGcO{)r1xKnbZ6|ayCkK!-+L+ITkdC% zl+K^LRQUwm!@n38agTSG3h!>OhD)SUS3c3r@0O40ndUC+s8r9#&K?h1rtR%dpY0MQ?dzMQyEPl2joO(4 zX}-O(y!nFlZaqbJ9nO!ile*%YX}Qqoi2N65{4=T*E!WPc zFbiTz7MRuCO{2kObiYeK_*r4onZ40fbKb^&@8`AV@1>SaS4}CM^89(p-nVs1#lFw` zBQImGtfL*`Gj^tK2$uNv;9bi7u~@Y1E~J-I4|IB8{;PM){OR#^=YQzEcj&mswM%1IOk*^dUtVLbXv-0?#`uOqeW4|Q3O@Hh4_gT^Cr+@A2 zWtXU({PI5IOa~-NdEd4Fsor;JG(%0iA1S5GUt-*IM7%~hgPynRvHH{Z;`cJF%wgWa zXEWR2K>m^5{rc0I*P~{OT%hy|zbt!1e~0u(o}3Q(jGf}s?_8T<%g9UD8rZMD@zM`n z@s)pY?*&hP{>JO>_$BasTz|*(cfs>#Eqm~HN}kR&&lJD>iQ=mN;DK-Z$*cGL?6W`j zYad+y>u-Ae++R_fRp#IP^RmoTA52S3?`z%jPrq{NNB_%j{KxBl;r8G9jeq^X{ZlIM zag{gu*|I#>)zY&3p2p4VfA8P_{k6Y;$sb+*+wVN}p)ZYMBR;OOdS5zg*$@6Y zH=H9T_XZh9wW$ozvT&vD<%4<;CmwYIdB^oWnT?Tf^*6o&KC1 z?|cWk_H10Z(7Pth<2&)I-SOTH%8Q?rej$Fu%OBI-dz!WCyk6#bxHaZ=9^%{cXXfe6ZDK?&Wl(KRJhu zpVv>nr~EQrT&KKN(lvbs)y!6i++o-3%1=4N^KqJOv28~okiq~^zac#0W?c)*g z75~uDQVIR8-U`rdp7K0>if=n=eCTg0rSI{El{OOezx3MgoBVyJ^4nXrJd9wd$sYea zXDr{#Yv-L(**Wf>7r6$-SRd|Jf0@rq^m5jV18k04G1p#yM$fu$F|Ea)dzwq@emUEe zrgiieJ)K$$-e>DuPew#dTT_cQS#I?7v=7QMV}7G)$`er^wp>OhZ=qYew(3>Ofn=Kv zW69U7$c1)-UT?kVrMb3N;^WU#&9Ey^)Y0-B&I@VVa^01$ulDBpI@g)=vepZ8x4E2R za5`&3{2%SE5lOkJaG(EkYLT0}YxGyHfp|$1MemO^vKjegZ=x+Ac}!PvKm3SR1kJAY zFDaS^WM3}KF*KdYRv*F8v9Y+X!_7E5Q|&WK*s3gc?{uIjej>w-HFwjY&|*C51Zr?P z2evHh@>uh%fihBQ(Z(>FF`l{N9$I1SMenCUv{5R&hV2a>5V2>(a}m96rw-{&_ch=*Nbw#K z6&R~<4BUu6__(CQbdbSlNJwq?WkmVhRxl}H-p@nL+)TT`%Y2Y&9cJ(C3)IM44#&d_ z7M)_cu8(AFHbyy|9Vuwvtv=b*8F_xM@{r%+u)rn#S$vZ7Yr9wAxZHz7yK^}idkI<` zQcXld7$u@7Wpqy8U!`15b(dBp*O)}L2z&ZvRy1DQw2ip_L;6D&^2F^?zs3f=F#PjT zvs+_kT>s!cd>~`Z^PXme+_!O5oe(ldazdtXp zy$$}{ybn>|9m&=W(L2+%Gvf>>49~j+Dc87G_Ew2^O)|L7K5V(HyK!>6TW`#(US2HA zde!7L*xWmp$9XR1P1mHl+taUJ%8cceb??vWj`>(ev3b_#3ozZSezUbuZ&g}$_dAga z*1}lNaP1qWzhaqX8*}=0=R29vBB$GMcrLc*BW{bSub1@qaOLz{ZT6myxD89+IzM>K zte2b9IhQm(4owq09++oqkR0RUPP;bVXN2A(ImP>U?HGB)f<{l+h|VXSEaVRQs7X&| zr!=q0Co0^nveNH4U<cA%*OQ!&{$1An-A5Op zD93r{owd+3)n^9 zYg!hk{xbWOWpF0;&JY2R*S$@5x2WBm&&}?Ww5+n9(`R{~=U&@Eyjprw(ZZNd`K5KV z^Q9b;=gs-QJKr9)l&=}>D(XtdsL|KXD>m4A9{k{oy`c<;@IX3x~G`{pDouf!=j<`s6KvcXnwM zOsb96kI0Mt8r6L14QN!5?LR_)LT@`Ions{Hxws2tGK`(wDvi;_Ir`{lBQ!6xZBo3- zS0~spGC9|($v}yI|2y`S6J>iHiZpaTO4OXk)RuJb0P=Tq4v&RX_hhgjM(3pAs-{fG zdsRbqaEsVr2lkqr>w4FS8zKg_W2biQoMHQR(j4sGIo;O}&;{zR{d1|c!tNc{6WYXc z#vCbk()$MQYI1sBd#~)#2O3_5Zbrj0hhKZnUMGK$!*iD@91fp%=eV!WGcWC~;1e2^ zC30BYU0UATR6aXvIMaHqMhBdL7tp-EQ{ux_`qzzt*D?$yo)_C@R`WXhp|E>x4FCz? zIl9t*)EfMDUhiOPU@fF;F7)@Pux0nrh&bg$;Oq1n%?4hFf1EcAwz~#TYL-L)nQZbZ z`w)E8MUz*!q@>J?%Oz2g*5!K2FK|VA4gU-$QKIa=T%1-?fHLC3<&j)Y# zc&X~Gk1EE*oAvMVWM-<-^YV~OXCSs{;52dh2Nm!*o(LMlxaiJKWprBXkA5<47}@5v z)TQjpL$czrIo)*ZF5miV7|xBJ#>lg6xf~_1b3&Q+lM}B<)%j3sP_O##XrJ?I5-Hb2 zhU?=}b|Oy~*6;8FzwVZt4$f@X=6KKw{=7ZyoJb|pCt^O+GHz}5ots5#C6qcx*}Hs? zwp|BzM>JF5Yfo3VFAJFABTDrneDb!c>`{c^@2hJkTHYnIxv|_3<&$4ZDQh8OGJ_5wt7D!Kiq{W_WmreDy+mrVZn+w z{AfMxby9{=03Q=Jw|lMeS&^Uj%<94)gV)NgDK)1?`P?OuzYh+?C*W5y+@l<=_Y+by zu8(?DlyirVQ_6S0nfrH%4j64bb$I($sYW~xZW+=~qw?_L|HS9JN>9u)Y;U?haFw*+ z{H^)DSH5j)#Abt9*H@-Zw8YxPqtI8OF`K#A9}zr=oL>(r?%Ci zhx0_#?0oHdOccgTmd0?6_Abrr17?nW+O-J}-5#uK%3Y(l#~ak^2lS8m#kBwtL0!6^^+rvaIi|(ZsPbf&oCZmqB`JZB;8J} zwp*X(t>KH1ypcxl*SHoLn{sNodN9m8DIc`QMP9y3wqeSJqV;@Ui)l$lSLe53)6u{e zNP1+IpOJ;{`Q7@FFIdCph5kvsM-dEczRD}|-?eBM@H8-ROEBITv#xmV8Nz-nOR ztF}xY)WZHPGd^V=OKXgBn&;3p$CdV{d=lH{GAUwg{jsoe(s7fQxUllt*bSmy`Mf_h zODc_OzUJ$2^WhU)0kU~z7*5%i^<2s;Q2zAsOJ1*Y%y9jZwz1tO;Jwgtx;SQ`<<+t4 zX++q+rJB#I&9)v+oj_K1Pa4g%xX2@C;6TgQzHfVQYxh&SP**Jv=Lt@#9{;XlI}ct= z`=weRJ4LW3w`(@y3%IQCjcLt+uaDlKnV9wMap_4rwHn7RAtL!$1N60TdxyJxFMMmz zn%ridLZ4H`#D3vR%hV`;!;_uwXxd27uw^_=7*A3 z22qaZ?wf&*_52g+V>>M));lT=#s5Lxjxkw3rC#7Uw>SkfVX@}SY=$2_;Zh*m(C-ReJ!h+QRqomLCkOAw_Z+?Gey4_6I39rF!WuJ7sVU+PXtb!J;;mhN(QtDVGpSy{O@JPhyW+H8~u@V(iL^|`4| z4K#G-nACCs_jYRBo9 zzVpE#%Gv&sGv-U>=6q^eoP-`!Q$LxV+7EFqo|OHvM?SU9nrrd%Mp?!T;qlR3@1oP9 z(QeXN)f2%Nm}_H3&CxL1%(tvnnMcOw^HsvKv}gFbkNW{0&!W z=@Hzo&3B7!O=_uu*>2&B7n_wJ`ki0S4QNZ=;&$8Gd9A0-3P{&hQ(IQw*=_NI^Fmxd zgg)EFg{&VO5f0#fv*v#6i+$pHU_Aw_s{-pH6BpqK9dlNiN53m^X+IaI4pJ ztW>IxFS5T)_LViPO-8$OMwGdZeScjO+2A`x*;m0D3AX2M{bL-$mlMHyX+Lep(hufJ z^xdhT;YK}+s57K%Prc)k$W{p9)zn+$J8!z~j|fw@JFTqf$?JN@eRv~!lRX7)Bc{^V z?N-X*=d^WvMnuC+dXxPO>=wq0$GviPskMcbb|@ZW@A3Jytrf^M!4YuY?_OoO&{*nVV=Wi}hz^m=h`N zM1%cG@oRKNWf`_*Y(_d;EQMb`(u6rC=VA7Xv-WNt2-C4g#0&OLlnXAe%G4sT;_0mB z%k#*AwUR=q-)1y;{Ln4Yr*kik#ctXA^>t_ZqO8BXUOIeY)JSTFz}xls7NmWg2Yvq- zJMoxL_Uh?ah+oR1qE2b_+NoeRLtFXif)=NgN3t1L&8QDOa>VASw!f#Oi(fB>KH$cg z4Dh&}Y>fr#n50zd4eTf11v;WAliQV>vaMvJgYWM0d~j61+D%vWR(7RUhQ;lq?bxhw z%Km&?ZMG-og>!3(H@o`X_x*D2fJudEjrv;8u{W5tMf;i!Iy5^K%-X^}usyt1&&!uj z@^S4wSRd0}J>~Zo&aXKZaTlresF&ZB?oode`PSnaH+*qp=JAIwJ7c|Az-?Up2s>!tnlZkN=etx>Xya1$LwP-@UluYWr6awp zue=^q|L}Yf?H`ZHi=M&WX&twwrKh$j*eW_~3U*jLVZfp|nDuI&zO}MLEyqk)of(w-CgnaQ4+oYJQ9aD0 z_euA4OuAB5Gvc1{oU60%s2Jt-iEY9(?b?ZPdgJaehCvF7yh5wz!Rg5M(kb~=8fDAa(xQi z`Sr)&+fkNMdWrf=#dr>t&rws26~=iF-5hDS!LzIZpwroTB~hb8($I$e(&oy$d{>(} zX;2%n+E0q-vG~n)yIhd}oC0O)x)wW5@|DW`B#-Xay||K~8?Rwxg!=@bRLL9G4@MQf zpx|DW{mSd_-72c3vp|$B&Pl!}q?_M|^BA>DuHkI_Y?zNqF8d0)V{^Iqv}~tK2;-EJ zKm6LXBJ(93R2hCEc^tRSw{c8#_f2iI`1t64i&0{BuZ@><702=P)bS-}^kMYWclCcr zWln)fX*R8Q^R<+8&vb2WV_m$Bzu|%x2Y=;E;2%5ruI&f!U%#(73|o)wX4|Kh;rowc zz4X3AB`e#h)5e+ex>#Sp{}{0}Z$UhFBai!>2=lhtson2Hiq*$#8<*~~YW0t5J<}q5 zi5X@uL#)x;Tc+5ae%}0OpSSJ{QRKB=zg0fg7>lq?v^y2%xLHv;y}C)Ivj>4S@RN!` zwf)dUU@}+adNQZIu9Ba+jsG!m7m=I9n$XwCtr!Op>E)83T|%AqMweTIXUyWNcZ!=1 zsC=|5PBp9J)4d0{nQsjpVemk!oi zTU$5X25D{5vuv|ze@JN8*gQw16Z~d-Mv-NV(>>xVTVW&)owAYE`1yD1FZKR!P+!6? zcZugYP24=6DWAo@aT(_Ng6+!Br2}zHtS4DC@w8S&;TGF#j{JbvUZZ~zdv8zos6nfl z|G0Ule5zf1QEyW^YGNcqcO=k4#tm(;kz>0Upm>}eqUFChzN8l8%UUhy0e<>8tFNs2 zuy4X+F=I^aLdFDjv@p-L=$5u%(I~N^p zv2__{R#vNzEx6@x>BF5-TX4wq>V;ByeswLhmaF0%kV8cH(Q<=-cQ~8^c*f$HUA=Wav9v_tu8_lG)7WNZ#UW57>T| zpB?_`oalJAPjiYQUGr97=NS|I+jIdvDfov;m;Qn`Kp8Q*vcT&(c}3N zDfib(zT*C=X<9jX1ehuP4^J!8-HT*h#%ysbg*`Iu?H8>M1b3Ery9RRcP+pGD*L zTGxB7`IPU~uyhZ;)4|hzJ#OQ-y*q&24scq!E3AKcw~F5I-PSPA;(bSMj;frTZ)qu( zD;zefG0jOzyytw5q%~XAzJNpjbA3wqxXs6R_)^T#h9~q#nbULD`w8*E%8E39r)oW= zmNAnZ)_B>a{-6%i6*#NY`qNGUV}{_nTu6E}nzhB;P|gGMk@;rv>{p9zPBpC_-y$-= z{V>iu9#?I>)z#+Oi140+^4MDa$5hVW`Bz~3Nl3mUWM2t@Tk}$K-JyReyoqnkwJAT> z9WLNYdw#!vDUoUiMNj-V;9x!7|4pxdzVk5nk5tt`iR?BP^? z&!^{3pHA1WMbRtw^6WPsGwqR<_FHV_;`*(hMD|z=*B3bT(@)mLKWX=`koVjqpIx&u z{Zh9HB5%hPtd}RZlycg~e659WN_*aXO*XsF&grJkS(Mdvb7 z!*Rp+-5rtAZqu+4CQH#u@Xk- z>2P(VrE~U!Tff%3vG@Fb&Hw5(dRmqlbt2~(&U9pb8Ji+LCF;=HTt96rTFmo1oviz` zF~_(}%NFEoY1RsMR``nLs-!)2*^rm85Gtl~H(VSkSg$eWUr24f5?b;>y{@j)%1XNW zbxGe`-gQyda}Cp;!6Q7*H=E{oaa2BxN%?@HO~xEnO1}QGv+j%cmNRx^95C}Ht3yi} zZyU>u=j!y2M?L+t^0?1hWRg?nr88%D%hvmbkh?F=Y|feArJmpt)}xvRM}H18vfR>m zF?52mMKv6J9mQw*_B-rqEXQ<>eoLVvcx1S9c~?4k3=X5!L620n`b@P{rN5%@)cP-_ zI673+XkO8G?$TU(q;Fh|Q?#UF)L(|vL1O-4q*z(oOI_dTo|Bw@!|D5`Uq_8+L@QUU zx$rF@Xfhw$qNjK2|0reg@$3E8lDr1DOHzH=-G4SME7j+&xHl}`tKpDRq4peYb{NW$FJJX@F7b2tUeV;*`qt9u3pGu|`5`Z@Ye&oV9P>prLcl=WOl<@VfP)-j(k7U%ngX=;P9DJ@~MpBZu9DsQ{T zJYhe(K4AOj{j{@TPb4TQQeNk~hy65z%f;XO=Jq5z2E**1yKjhIaU8no;j?dy6hxnk z)bVJCRRPOkW@xW-uzh~Iyp@gtUQ36|wBIwd$(ld2T^gnM&uhp>g4-q&imbGgpV&JX z&wxhb%D+Px_j$$otju`b*1Y3e!|xs4Dd`F}?8GGYmw2^flDU4uCC^eWi}ib32luh% zNZ0Gz5y|+cq4>S6Xli`OzJ3z9r51I4KvYc6wrt~C?%zx!xxj#4FXQsPox`Wr-zl!U zLb>f&K)%rvzl~LkqAoFZ-Ir5M@#s$nTWThF+K0!m%$Z{hXK|`&^gIlvq{|4y>wqw` zuku*$mGupKo#O>Brd-5+IQ+}{7O3erZ zTVo!Kz1#jqU%29^dY<@PWOe`DV%^j>>^;iZ;)K%(;=y>8BPd;CS~y(|ue7Yen56y7 z_mW+X*>2x%8uWi+nA{tDNa&$ghRFDm{#Xh24R<7vNf8_E^iEB8s!4A&UAz;l%z0}# zSHZ@3zNT!m^E&MaSf_tiYM&h`|5B?|B&4(}C3IET;naIpiQwJe(Qysl#{&?1|W~=uwcqs zW=`v}ytHiJ}F{aoizld^6b*%^D-yK#Kr{bVgLT5o)NgArsJzuR=S z7Z%%!nHgJlSRC3jd6x{fzU?Q^hKtBu%&zN{L*sr=+Z9Vs`iyb8;I94C?oqHjr^LO} z+U+0rT6fJW<(O?#*mHD0InihVctW8TT-DxRJ_rLi2E7eF8MIb8h}vtLUGV+RJ-D{Y z)81N786~L&Yw~L_hUIRaZQ}6SPP(|CEbpy;ay7**`e+u4S<3s-6GK0iZLiA)$Hr58 z%dFiQ^(HcS{`5+*iXN=RVU91YI%Wm0F8yD;#4r;0xfi zjOYXNH9Pl>@l^v`uZh;P<5gPqyaQFqPrJ>x1_dLYoKwYGkDWy5x>Vi|Se9Kh*%~xR zYA{>g?0))(R(L%|b;q+tKU%|SCTJ{e|7oO0yN#@#aBey0e%7&U-#w;U@crAFihlY= z$$#~B-&d){M@mUI^KecNuywX*#fvYe<)=z=Qeetuqv}huE$ee>eFPf4;CoJuv3_9H zfKz7f5zU}@cl%@Po@v*%E@oDYt?9|Ea1auLK88B&QDD}A^O=w2 zydP3ellMp}Bij6tW0jX?eipMi^3k(a_)Vyf;QThd;+f8=#50e;UDEH4XdE(X&@S#& zN}Fu-JNNT+5UxJ*D9y%Feln>=Nv7wU5JfhqRBu&n&v{b}vv*n6&&`rVj$?X)$equ(#ny43Vs!^kY-dG|Xo z3fzO^tswO=JR&KUuLeMQYbUvCvtM^>O=|Yz68gGZgYPbROm9KM^voY5A3W*Q@w86E zI_(T&Xj<(hW4(W>Ee&vJPZJpZvWB&D3%CS<@IGCs>nJ!q9KTbz)k*B4e z&^2%7^FW(I{l-f!Gv`O+?~--w5!B-aU)5KcYNL8S*hM*hx_N<-u%^X>a6|mAZ~q=` z_XA_Edvzt%gX-MhF0mi&>Lb8;%Xn^&T3L>>b_3ADZ{7jcc9boerKNaog{@ z@1rI^{Y~Vk!=BbU{j062IA?h3zF>dX z^<5}l<2Qc~$=XdD&()v*(p+{nb#56%&Ud{u=Z<0PADl1JHm%cp#pyY?9B#?r+v4UHYt>4tbqXI@D@iyzH#;XMeu* zey;1?FI7pCQ?*}D8cloRto+|4nt3MWuiYs>)`U27gJjb|-GhSs^4$KVqFsu+*r~rs zy|qVPu#K9%cI)45;jP*`l)gcKdz7pGmVNupzU@rZK(G1EGcfZD-*-EaMO|~(^7F*= zPYN5eHsWfk!jUA$Le*XJL(QcET-lSdzyBeLikMwzW)06df!7oJSq}*aXZ**KW z_qJUd*D&j0|KW9K&jOg*jEKd6MuG1OO#`mRV#K%RU&p1dI5`{5!pbmvoO}30@lY^I zX#t$;IF$Vjk;{8&Kk|MZ-wD;r9KKze4W8@rOW=Gp!mJ#_j~-8Z-%54-E>er}>R=nt zD(>@Vz1r(tq$daT%yQZDI8ImSIisvyM$D7;4*8iO@nIbheY#4gSNoS;_Ip`!U}F7e z^Sjwf*3Nj=>I^+$dXvTLnzeNz z)X`o+!D~p#<~KCI1gj`~?aAZ<&sk%@>*(t$csn?$np4>w58M60+|3#>ZxP=G?~W)J z5jXgZ(CkW22>cG88=v@IGGboLA4q<~Fyg^A-jRDkADTVs5kB~#7zKyJTgVzpW*k^A z&?gQX4O1$^&t)$dm&UjIjpK;Cq*!+<{MwVs^5cjWtf~vN;jTTHl-qa|xwUD&x<;35uO=U*cvCG|sZz_I*+K z?NoR>JxzZ?Z^0d1^QF&)b)CkaqIH!1#Yiz*3A|VMy623jKKf`-G+wIJuzCbN_DOo@ zp3IuI&9~J%#f$j)m#)>W?e#?a`o9{j;#0Ed3~_Uav8a{ zb2cv^FVUuW@nnM!ykZG%=~sYw=FMaZz%q zjl**fKwn)P?nguD8u77bIdHlXP`IKt%zPmcL`pVcrY_*-@8TN>8 z3O2icQ;eM!*ofT4Hs7jzJ5&!i8n*mzU)b0cW;xR!n6c9s0b9*+4YRZ@;s~ty@vW7m zH8l7gi{{uaiV<~tL~X#s$(X6tGTQhF(iIHs+_v@d@@==Th@b}_TqG4<&iy|;9ZC;K zog=Wt;VieEO*cvTWboK9i7|MDlqC%s9ku-3BO|9w`L2%<>ck_mLp-!i|A5VZR?;gz zX^$)9>@Bi1$g@{p>ANX`-WuSW=j;*AXz|}GbhYoA*D21o+hS}-8k?H;fbr;j`+&Y0 z3EvFhOh7Cqd^Gm8&zE!mq%>phDmgvQBFy43PGzI?Dk97LtcRP$$C2mfHyTQAN3-H* zvnA_2sV|T9--uP5+sc;I<~pqTaz0&XSu29huu)QAx5hHw<4MVdozfI`=pO%X5|2#k zAG3~q(-0dQ$$>7hrFn|wHl?}R=(%F3wx!?r@ESPTWL#LdJ>ouC^lRv6=V_#;bo!f< z>RBwlsJq40_OhS*zdtTr3JQ#=tny9gA76Qh`WtxoEdY4O1zFE);<+ZY)I{wDe_B3xwzT0VHF3PGrZO1(BX~dXEwzZ?)+IpW;6#poF z0DiWL#6DWn$?(R;)|C3RS+uSdk0^Sm-LLHF#LH*#`sM{ZuF`X?%b2lP=O$6gqbtf@ zqh{)C-%o3^m|k#*rIv5x{qLokOfjB_-q9HKhAowzGmzHM=88xs$GbfJ%dk#mMLJVh z1TFduaRJ6nc(?Iy-mSSm=bEkZkw$Jfq+I@{uTi_6V4Pul0qB_+3xa)7UoWKgHTrkC zxO+u*T2(4RHVHE*bUfIiyyG;$zd5S6+f+iA!)EfFo|=B)SDtd$;)ucAqlkf1{;GSe z>LunBK&L8KJyQ$aJa3LoY_G3=urAad6O0Jvqkg>2^Zr~)jvDRj2P{3?%~i&c8VOlfbU~iY3W?yX}hm%d|IrL{qK>1?E7Gj zu=OFAp7CiZclIm4KY$%#_3$7p?Dzk!R=F;(L|<9e4X>1slKx+oOc!FbA-x1O=UlF zCb!1Xq0vm^m+m)8`@n9!K`GG=Jw0V_IlP>5p1sGI?Eg0JyKkvo2JtM+Z~Sfw5IXU; zaGl1ya3juxX_+;-;W*cySy{KpV@HWZdTf+LLBmA54DJZ!Qo3n&rJZAadY}65fo48lJU(syu)0%icrY(v^}3J6X7mkeJ1hCDK@zXe z`i5zN<|XsU0puRE<4g@SRxAnDpG}YUGE2{9O2wt{x|$|om~RPqV|mh>%*6K8EqlMV z+%dKS`E6g^jIE$uXr|V}I3uxcK!gqFyI`S>1dq)Xjlbrtsxh@%P4h!bVr_#Fk>Zf9 zncM0+w8bW5Rn+DcTfbv|Ay&dy+tE9HwcTPUj){BG_L#Ly!|@plPR6^*HFGFBIi;CB z;9O6Oh{lOg0cf{rOH<5us|3~zDc7P#pk|3l)Z24>Ymq0hx9FYSjjcFrsm_!3p84Xu z{j|elHR8@&Mz%$u@Xd_=bG~Eaz3Dp@_vt;eL-?PO0`s!#J%zP#miJ~nPhPdDU!TMwn@p-E~5K?9@; z|L0tdoz(6PB7)eB#O}?w>oo0GkA!l{P0!6fsf7g&j6v#U#G7@=IPyNDCa$r;UH>b~ zj-wF%XB^onGPK7y+p%Dr<)=P^KN6&jec}y^-LWVr){5G1Q$uXSkuc)YHh}$<{@J*U z9AhJ@9I+EB3z=>7u#}k(3PFPz)wW+L_ozAI$X#nW?;;^RJ|K@Paypcf1S)h#qAYi%!wk0I|VqmD};>@lw`pN&kS#kr~`0sKvJ-J_N<2CXOSab_h)a9-+B(aR}m zk~#7?v;tFNGbp>wWl+S&_bc+x`=d+#m7ZF(b#}F!)GG2V(j(hCP1Hu)e!q6yU#c>iDHOO`h|=tsro+1K4=nChe$|H7PxF zgXYMa3M@`G^{1SKytD|FJhri3?#|#T-l_I&8mjE{y9~pWkJpy38gHwXp5x8Ti7Y~w z^Cw;OAWj>)aOjWgR;w{d0&-2&OxRm%1+y#M$z}gg|-Tu=h>mU(JOj-*Z(o=GH2f|O8Grs8=w`}1^W3D zEP03XH++91lp%+`3-vuev9D8#eXZSN_T>J}!i8w*>7b(=3w0C6JDXgmdsJpS3R?ImrxRq~z)aX*8b5z0;wqH1Y{x2!#@m=&Bx7aGPj3dK?e@dGs*Pe7Yk z|5D*e`NT(e<4V2V^zU!4p|PS1)g#Dr8!_)0lTtdD? zr?IEsADLF0t$ZubN-v|zCdGqL=i1PEzq0igeEE3v9j{x(FQGSgF24tHH|f z*?*-fY#OeyabgRQ!!}ZhTZ&#Vx5gOlW|NLcuEh7!mbaH=7oRm4^NdHdHSii#%U0pX zh+-!kJ!gBvICCb|prW^DPb)K<1B&ZY(FeWq@L+Hl$WmGcbBzUJmueCqb&5t?h%A0V!np8 z@-^I|EB`USn-r?evo{H!=%E{Fv_f>QC{dXSqOFPERMW}gsVLTRuQ!(h&;lC1A56^6siyDJURFam`4Tyb6}VEq8O{*7E$}qoMSF+t zt!k_~^7qqWDRJrTD9SY7A*=oHv5%J6Hd|fy)s{=bNasC%7fE`eO&knk35kI9gbp{Y zmfJcy-xC!sFnS~4}H!o3sPER zntC4X$c$Q-PeB76SK7)PZa)Md- zph`-;Tj`DfFC)&4w!gC+NBQhGDo%sH4pqlXnHLS;x1zns&;$N9kUO zh3$OE+q_Hso5rc7t@hmvOR*24f7Bd)x;S@i)QCxU!lc@i;}myTys|?APR8nW$%#Bf zTAKgDBJYu3SR|zvgII^J?j00Jo;Yq@&*+z?acI09S?{sgX(pQheVU3R{I`CcWd)<3}@Gk@Heu@(oU($wFbD(ED-Yq zmyw5X5;g!f2T?huU(qrw``SDd+nD1N<)Gu0V^ZpDrk8b>Vw>o5 z0PhsLF0dkVpYdea!DVrf=nSlLZIRBfvG-nG(aZQDb}2p$ErMN3@eHF$!Q;v^si(UI zbIuX7`bt4<9~Pqrzcj0H?Jt0rF*f+eYLqLvvYb~UWxZ$E)q8s91CwT>jc0F6G=T%Z zLsT&@&MKv+d!Ddy(O&{A&1_*c)i`}A%jX-+?Gfptf4=FZa~`j5NxPKwtqbE|>F{6b z@-Ef*HjCc$h&74|N=H&U1NGAjupn}sJ3WB{X_Q(j?)PO}n^ZrY9zG&F!64T<-H(Q> zZqE}n+Z8|LVowFB;gb6D2+U4fB!SY;q!`E=(*FpWkYpd$$zp7Fu1KHXS{#vZYdhHJ?kuidwqHbBX$g z6>Hxic_`=`79WHch#g(b{V?+ z3-hm&Ek?76BgMyTyR;bJk=tYbhNbQIwrOM$NlTn5Epj_<@Ou^=iZq_zo2e}C(&%a> z=JIsDmUiB*NYPTVM{Uq4U|QkewPntjLo4gj9$EJy4smC&W?50Ub33q#2c3`SJZ1B1 zYPS(b5nGe$k;D0u^0i*(YNAY1t0OIwHE$v+vA8E?F=I(?l*YPMdh3K*wo7e_vvwIX zg!eh(3a#$bU%cazKW(35RM#Hz-Xj8*(+W3bHoEKd-k(-W_v~Udt?0c*ZLxoOEu6+> zwmaj7^~YK}v0c)!WnW~gwJgtx9$;T-%e@0mhdejq#6~S&3gfKSOGVF!xwjyu_6@Rl z!rH3fg&5S5GE$H4mJxfnx%dYT5u@0WQAtWa6>{lo1e-3(M!5)ua_$Vi! z=c@^PJ-U2*tHyFHqd(5;l+$+?*m~(Obz&{ig0xL|1xie8Wj@VkYf_9XbgO>tC?&+1 z8GWX$PK2H@T-m?PdKoq!{l`9;NZtLSgzYM_T_`D6_=re*$oXy|qdb?IUQ*7%>0M$J zOHM9Fv~h0U6R{W5($fC$`^eN``=zYesFO;FC@J{fq)CxBE?)O=vbe0ZpUfbJaW;&{ z4dTpGMVxY!vyMSKJ-s+#z2@zSa<@wkrfsUdZ}SJ7)ozX5$!9_HzUMQoznRL_Tx-kA z$meUz*%e#oF@NcLD0AXs;|3S+MT;_`eI61rf%r}0GEIsgEjdevxx>C56=jG=jM@4H zJE%N@1-XL1z z6zr{qCO^xzrBX6_3u4Rns>Sp=-&DL=|3gXEcj8*GYs=|Z7m-@^cp2g!Y?lz{V{rx^ z>r3#V#YRv^+!LAl1#S#E?WDgQlChgY%ce9tuy2Ol_KY;MWqegXec!DC>bX0#C9fxr zMVGHpYxOo-zvpomJ}w69%qcecNR4$HeNq~%mA!JWa4x@2L%sC+ZnfRwRM1V~f3BDp zN1L};vn{Ee>t^XJ)25Em)S|uf{@En0lr!Gj*p=nGv~t?EYeA|a5hE@9o!Ad;-xO{3 zcDAX89JcTExf_-~MjQ^?>l?t$1gH z_@T!09*xfm>pek7OjiW2RjWyQeG^o{Q-%R#VhHdGX(}NCsTE+oI znPQwpJjP~80luRe?cKe>(j}sORai@&RW4Q!_Dh~|UKz6+@}946#x|K0uodWN8^;>G zy=^SLz1}Lft-7%v%mZF#H@7>Dy3)vj*u9(xa8NB~WfZ<&snZN%4wpo^w7Ok6^L-c= ziH6+-H>5sQ*6$qc_z18KJ+A{P4t>)7vLngPW&6@2>or9CZqO)~Mc1Bgp70cp=@n zj+YxbTIO9V>hQhb)E8|lDvZ|HKV1?ge-j(DjmxDS*kG@uy~k|W3-?Szx-g>!YknyW zea{!Y$%&-pR}if9ZfXvCA8c&5u>If0)OHTD9(X#x7v}V=?|-PTgWA6KcJwQ4249P< zNHrmYFEf`!kHGpX=dG9p>+@Vx*rqRPLO7kz&w9rH8TJ^q_< z$XAZxt_^}Y-@#9Y^Dj}MuO3!iwXajTwFfTv+02{hyY5OKCEiOsjjSez`D&11;J-(HG zX@$MwF-{}RpYmi}BkjsjlZ^Pe@~DbE!jIaC0*LEhlo>g65dRxZtlaq43HclG`LZU7 zE=@}OyRP#x>hUqdjOE-a?5gd~Ko!2g(XUL(Dobcf z!qP5?KJU{Z3-dXn#Lll%YMP`O?!Cy#l+>Q1y!7`TYsx-K5O4k-}in;r!hO)`Z2eMvE;XErHWmU z=#9Bzp8 zHb3Utb1ld4wwc$SYHN|M{?s@gW?Ea_f3d&W&l~fNiYr&^ozk1)>(yRwe{V{(q)PkCBAz!l<)>pJAB}@cSRvVI z=igf?`B$=t3s1*LcX<{;?c5ggLum4_*Gqc$ND{Ap7xjBsXd&(XID{I$-kyL=so(8*s$Ya?xK|sNJbCG zG3fV~%kw*2ZpzN3m-%$<#K4!v|L$crIhe)+_>TTG?zr61k8Fr?^rg`vKaa8P1IM#? zdQVCi(Mr!Xy|?SzL|2P4rJPF7I9wq=4EW^xSB$&*$Ihg)xcf@+!*a$$F1bu%r5=)W z){gIv2Y*?N)LF>RlzPdj1lZGzIzLYoec~SJM8qG)`P{LZ)Ck3nwH$szB5}?(cH5<3 zadI+a+73I@y=$*cSysftw1uVY!S+gey&t!!4V+EqUj)MkocdVpM5Tynq!&A=h>!hh zJDn0Kx^yF{9@S9qi{Zvp>Np|)tyEko= zFfy=VIJ4Zp!QJ)c`I3Hd1o_Gc{ZgL%j7`qkk9%1>ih}x=ruKFWhxv2Tn#}*gdSN`z zovZnuY=u1Z)#pjglh{Z%1kX0-Xd~S>%8O$=5s1;)DVY7X_}I|iSBe(C%9-!Fu$5Ri z+g3S!&j_oTXd?8JeHU-OwCf)YjWtuo>czNS>of4zi<|dOJQ51W*)&q$BBrghrdh9PCZN8HLKcp<~9c#b-(5n zJ3qLlWxM^#xQH=OZo`giR%BMHy~!ylu^p+u9RC;deb<{7_cSSwZnUFEv-pU#1hbwa zZfQ+*ywa9n%VWvcqq$-PR@xTd=hoI;=^5J>IHA_>R{y>9ErfV z1*k^hI?t4E4omsrboIe~ky>tE_k1D>Ul~Kj&2B@*5$DugnlTj1?LT(B)_NcE6^P;N z?%lyxcU-b&S{k=~_1k92w7u#0FKadpyEYP#fwkDUuDmWUJ;l4S;Z&b8VVL2pg9qv89bW~p`c$#CPdlp<~Ek$bHS`udNLe&3BC=;M0G;>&pFaXhQhtSn(r*)pVvYwV54G9?=zdMs?L5BQe^$wuWy* zzfvq-)!K69T$?Bx8;uhc1*{xQ6jZf}%Y4xH&_#U9Jo z#r=7ic17gOx17}5I83Balv+_^Epbb)`)ji)1r}3sTfa?9F6ZnNzZ#rt`~DpVO8n~P zW7}tyYQ#0_M1Se5_Uc6M|KA?^l)7R`C0`+dKI!;k?)%$ArJ4qpQYxiV&Ex*nPpNL5 zC8ZO47ui!iF5RMb4iha<9X^r_+pfHwYKvJXSWJ8&Jib?I zNVa=~lhY>E67v_c_myvh`uDnGi-%p?Chp(I{OPH&*859WtMfwLlf88H48uXxmfC)9 z*>?AJ*SYt#u^0Px7+g*tH!tOB3GEXH($iBpod6I1i+B2~j|}HB8+G<2>e63X$|WQy zI_qJzp>`I-hHA^w_PqriDSP7C^*UFco9x19y&^;sHgY*VAZCU1QfPbBTO51`Yi+Jg4L zOpMoud$DfEX}kK=tcKlM3qk{CZ0}OLIhTeOPirR5&oqtgcP${6+uhTH+E$+1TK|&o zd}&5+b&Z|W@9p%Me@gk#sXfM)rhJc=T-wsC=e)J~Nbo-FqFX$nxZXz=TjphZYP+(w z%2q{2&WhJO+Kibn9ltd`t(WPTatc;`g@iFf4DZ!}|M@BkBcrRwJU3q(=#n+wo*d^~ z<_zBXo?4k+V!F58@5Pbjcj}Zd>Jr80U+?fpzF|vfkE|%0OB>lF5mJSd?P_hQpKR-G z!0NSs5xb?5#q~M7Je9NE+SK2a&fIwAO3CY<(9+X)rsb|vaWQk3(W_?9%#UWZ61wPC z^ZmViX%{uY`B5ys*F~o^_T`k?mUDUzEBU^{Kcjp5!W|+Fu_cM(iC;L$&!Uf*n(lSF&$Df}!{+oeeY$O%XJQZK z9GGM5c3HRP(N7=C&rgBxjOrfSUpoiHy{vJBlw+dC;pQzff2dhc_0cv=Su4W1r1L*V zwe2(RA2%CYnD;=5W8M2!uAY}3q^|hF7@^26@2|dyx6|uUgxmcD7t>IEZaJn|C5<>t z=O33zY1A5D%Qi0u8hF?Ft3F%Tdbi7SNYDFetM<*RHr8=&G~7}vAYFGVV`Hq&_FX&M zHT^;sIHaYP@8lB6%T3o};`xNon03P1d9i67HgeL_Dx5~OZ{4TkEcFxGSGo|WmKld!>B5;cInxBvK!r)&&sPj)^ z4|Zvy(6GzzIX@pn-2+tnwsIFPb?wyr63_}<(T_N7x$Jv1;7Bi*HT4qvwK?b5lr!@7 z^gI18n&~))cti@Yaa$vdMSb76?sh(8t zVKpSzcTC@``H;QNg{S#9ddoS0ahlGvP=RlNM2_-V!dCvu_swp^zU-&@EX_JVNrMs> z$JAEp7=i7+E6bSwwe@B`)7c4lv9^|mj4 zGVFVf(L5{lWTX1DCQ0c@Y-hgJf?jz<8exq0E6*e-y{%5AwoIAtnmk`^9uL;{&1#c< zfq}DG-lH~gCQJGKh0`-8X-~cngs(xw6Jg5L2lCfEtWKB3r8y@3_QO~`XC9Ndx1qf^ zCf9$Q5>YbO=KA?^4g4AH5*vejF^Y4(Z%NMiPIGmg_T83g>CBf}iK+B-IcJ=a?i49G zHkB^9ZX6{qG9k4tV%vDz-dZ{zm7U>qLN!iFe>UqX-J##*rK)-1YM!daMr201;Nx5D zw{>b*V_hJ}4{IFv_td0c#!hGE9r}vS4fe8>|p6-|&Y~{M&$;WA##=gkM$wIw1V8Hl_+FVwykTlcE_^xqu=~x$C>rv8Ew(_{N$TU2(Qe$B^rm>7D~-;Dvot($A0?q+NQ;yFD{Cos#I^{EX{Y z&JL=dmz1ye#&gYIN@oWxUaOCOZCfSu)j0E3GxH4p#mwlN?f+#=AH^l-nJx@Q_*3F3 z?5UR>UyH3~fSGx&9cNCeIH7-cNykP1iSO}_e*^QsviCjkQ5DzzcmHHr!on_?V3eRy zgGGaY29>x_gRmhgfenEyNJ3B{t`S=dy9xdY1~;oL*M0I@?X#bvm7;yN&$hf)3)X)L zp$P~@z<*JwqD7r_V+~3nD0P3|GqaO>ceD9}`ux4$?_*&0-aB{Z%$YN1&YU@OX0BM_ z6=jeWNx$+;^ANr6oY=>tt>+@7lX$KGWYS}3T|k@`CCI7 zu};KcpyPpPFVgnpnoVLY$-kQ{{FG9wy=WWR26}0&uNAG|)*#S|t61S6{HaEIuP~8@ z+Jov$wT#ChzAW;17T>{~hW5A}=ZGxBZ!KDYR-WQp{|3MldhSYmCyqRXX?A!^Tn;Kv zYvbPONo%f>Q|LRYnoO5e=<7-xC))K^;6y7aTHDF?CEwv{zD_8=!Ai6vy2Rs1bs|on zof(2JdZ$p&6CgAS$+nND5v^5HYsNLIOz1l<~%9|1g;g9J;%l15SJIl0QAuhEZacpy<$w3W%QI?#IMBVWTDiwIQeyI?Yr~ho9c<*A51)b zxvy_eirUk>UO%c5CA4RKJtg(zRmsbo2ljdsb>$#zMuIchB+>6C256z{aO zi6bC!+gGz1_4GLH+k-x_h2r%beY+DJn)k$?1Fh{xE#UrzH)7-$^KL!uWL~{3McTK> zV}j;`*TWt~*Y8f?|0Y&xC6|gB!3}&)Dy-6)Pq=<2pkINRz+1Anw|eO+EDP~-{Rw>T z+0)XHe4SM51HE&SnDNOkGYMOioW~3MjXcp)&do^Iqh2rjDD6Ph*N4{9$TLiDx6s!j zu@2NCvOjBgiF_;YtU=i{zZMwMxU&L5oIfgjYBj4AX`}K~Yl@}bNIA4Jv^)K`AV^xu zuTDtnNWWh(50|r3eJ+|UC)%hq_}X239j=K69r+CP0{+iLj9mJl^fZ0nxsv=}Mv^s{_Psd#^AVOgNF#z`ho-Gtpl zo)W7cQT5(Caz5dL-^@H+J4&22T;!KGMEeOJj}@RSQMhM2NqP}&Z$u!>2rG#_*&PXn zu)zt+NXv(2X`-5t1gG{C^KyM#58Ria=O}YyjB^ES&E`oZksmpE6O(s2^@^3?rApA1 z&SIvyD)DuK@pOy{!VRF$e$X zR24ecYZm^IMU(nvR5pnrTnAqr8= zsNTYBoN99$@(~Onr^#l02kyxlC^;tHJD#j9;;aOTyF4v{x{zjx{&*U;7lP;I z=s?^o=4IOZ__>0ZeTb8FH2EUASCrLTUcnWjHOUWkU{W%fho4qLqTQ!=nheDDb2Vgv z8&aSMR;h~ab@i@)mS^=!Z;xj})TYBY<_LlU7U9$G8uy%l6FE{Kzf-#NnHuaPnxlEPgZ@e^>l9FVepn@DBy`Zt!-!6Ka7?Ftbda0UN8^QI7vEsRR zYV4mG5)q6k;g z=V&c4{%dh0_j@m`Zz&+l>bs@%spv};q@@vEiJFq)@!tJXX7owzm?6WG6nQHPzd@Ef}K2zU`k9dT+30@262->h&TI z)#l=UB))|HO}Dj_82z`>z)J3|_WF29iAB&{$|1$&Gu4r3aUsSFT5lpAkUEjjxMWH( ze)W&DzEnMD>Ek6#iA|z^oL;u;zrK=emMB-9Bvok_%vYE5vdsr}?H^AXwyKcQSQ+tjN`WoY=Xlw^I&`a$2hX_>MSI z&OR=Vn?q_a26lHUC0+8Zm6ZFfl{85a{q5UoEh_I~NSkl7yi302@^ZiB@+N)DT;AmJ&r z_u!W$$ZKEkdgqGdYxa7WJ@eAKf$#^4w+ZRLA5C6B(pRV?sePz7D2d(~{lU4jk6uZ3 zrrEF{(28&cPSoSGkhb`q`Rh;>C;Z|S`S z`Yu81gF+IMwC0(V7#j!_jIWS>5!j;IyAqdT@Nz zddnW!yQQA!LE}ig6Sf?FegtOS|@iwGD$yKt)-{K7Aw9<^L1vXl8OVlp0D#-{JT(?3T_Nu0=;)VupyZI{wkQlr1CzBg+7#i*3A z(21t=UP#|@(OQ!FRDV$W)_!E}#Jb7V&adC=G`aYHqt|IP)$sVXcrU*HCBx*qo=9`6 zf%im>hP{pcaz&^Aexd0w$?WXf+x|72-siemIAgwlOk^KSc0CupT^pIjiOOV|r(M>x zu1Mq9O&EK{SKEcno=%&hx0;;Lzr93v7S-3ojigcuq|zKnc{&q~JPzavk{;`?+ut;( zT7ADcm>QL&?@#Yk5wi4~+P~0yIRlxI%m!bO##70?l4&O~`LfXpzt~Gi^OeeO{vdu> z9-E`kIy9~5(|%^TGWAt)(fcNy+U^ZH^F(q>d>@l*gM@SMcqQvC1C7&4j_1?=sq*w+ zoJ#cYm#1@|+ANOF6(#+gzQ1$@x7FZpEBm z=PCAC5q|clwcM(8*+^3U%~H1O~nr1WP1pEYgM6P6D)%CZNa5I z$3>@9d-94WUYifP5vF42GL6GClEV2qe3EE~B#XIrCMuo4B-(;#{!Mcc>4xOtPCntj z|1WB$mpWualrv-6aju=NDZB`UuF>1Klu7o*f1SR+6OLSbuLJqcOX~>vqTPfR)GQ?b zFMr)#c;aiah%}?I`0|Cme$pH10wr0W(6C)CjYY~5;ncjO4EyI9ue;etnc^ny1iIkm=5iob|lf+Jc6U-jwJo6g4TAFinRRY z-~jqEf;<6{@^rE5ale3lM#9kaFP3J^fj&AzHy$2 zlw$62DrL%Zlk|0>og#_#klyNAI-(Q#K1%VxS=`MY1o#&$-VrQpVFC<*f z?*$w2jYS%hXoqYiYM-izKRvytL5_;?k!nSr334~R(0k?n(i>4O(JqVI&WL*YUHk)S zm9Nh!qRokS`}z_kwapEf4c!FoB3X;eFIH;l#-i5akSCF1!g3x;+n;0xdVY0zaLk_T)%=X zWyHYFy4TB{{^04YiTZq+7A!{`4F|f@%gml9vwT%ZJ*97QNb$JHCrzI{m0UfgLVRwy ziYZHpziPUSIM-Uf)mA@cO#F2&c!si>O9faDM{Cg`7No$9;! z)(^O*(AymEyZM$jJCz>J-_5s3=kg`h%E$_pIP>{#zD0Hp@(ms69I)qz{r|&!OMELT zanzKW^>?!)>Qjkh@7J9V4NNDI=Pbz`w9~oGdlps}$nW#oe)anP@{@Kn2AWx-&ZOrB zah65Aw)XXBRAN3zdewATpi7|N(Vf_5KxL8|;Y>Vz zRGgwlwrH}4NZ%k~d!`d)Xgz@D=OnSn@*>aYle!Yk!M^)u#0{`Ji9I1=orA1Y()L90 zqHW}iM4R)*Q=ee;wtAzj2I$vXl3CW{%j(ZKE^o;@dc$TZA=^Mj~1Z5O!ld zWUW@BFcaVFtUJpH;Lu+Of#@@dfMehU;HLoq%REO zy+?ae{#1FRznS5{xZ~?lqdy$_qKC#|8b^wj=zG7ZmalKF`|7ZIa@Ig##kX%V|9K&o z`|{$Hy)Y4$h?lGNB;~((8J~Q0K#V!xeKVpz8KSZ*u25v$a6UN)ViFRrxu zEi_cB0eRq^3%%uBT<^r2`0|CP0$JyNfR$~^Pi4><6Se$wS+VLp9y9Ro^SnLN(TtCD zV!6Y)_q68%vPdhnK1xeF()4~3iKjORACO9JwG-)jw@wmGf1s zbIIsQcwYFw=--kUjW0yYk~Kxl7R9gd(M)Vtnm5smKhXol5wC z-2|vV4%>^X|WTG|s*$E2> z&9+vcb%mD;VNWg5H>||g9FKJnYFXkO+Ce~i4nYv3lETLYn(6=V_$S6G8XHM_q}>iA z_cRYZl8rP<#*b#AS8MzuPCggsV$;`K`;($1b#4WH#-prN2sEB0E8*LhSH0npZ09f8 z$i#S~jVvTLhypa{qTWhlh~Nd1p(G`!57PPJ%aHqe@Hoj-vJuIzWYDSLLbg&GvHyT% z4Z$HlOrnz}RW&=E^sp2dQAs^plB|Rx{}f#NZ}I;fJW5z-{fDGs7Iv!9X;4H_K|Ojd zK#jyWO`Isc8Z({KT<~WWcF7Qri*MHmjhK4B7`LQ`D)s~jjgc$^W6%Sr?-p#o*ZI=< z+1Ebz+L2A`a@rPDUQxDmSxwpXOK-jT2W7Rl-dwh5U+71#T` z<8NHC0(sZJlzYKtckUnl`(aAsoQJ=^r19pr*8b?oYr}t8q2&MMlHw0W*xx#~a>J{` z|1ci!e>&u8WPuc-llbRBrqQ=kUHH~UPl;C+lXy!(g<8<14EhRZLH zd|74nvYsTr^~PnZmX#p|y}dbi@?~YW-Z*~6(i`HCvMw29So?{QK=MB$ejmp3;|Pth zcuFG^MDa%n^ARXtHr~-Q{psHwjOC?xO3EY?~(mRH9k0-!;8qeDk;8D6{@bq~J-ul}H8IJ1U zQJu_3j0PKmd{0;U)8nPjL+_pfoGGz9^h{;X!t(+hEJ~A%X8L@T*N1d#b+9PU!+3ry z7Dw+X9sTKX(&wRfyOD0M4i4dT2+tilSd>Nr)5Fr|BUl|sm-%TtPmII!WCV#9rAY=$ zpO0WUss|ao39we-xj_eu(jnCBU*CGaAwmWF09@ zGFbY21ZxS>%|Jf7r$6F}d3au;gGFg%0zFUY^HJXCk#2ngtjF;Dlnxf9Nd`-wk6;}{ zx`PR@I`G`3gGFhQ!P4g=SSOKgEOY_7r$4IWWIWG6ko2N7GJ(F1lrM9NNm*ZDQvUo) zi}DG=>Hld_E=RZ?;b#c1(({uRm0YU)bzYumI ze1UN1e_0gMQ@A2*LfD0H%Wo{oa|lCzi!uT~2zMj=8sT*WvQF0MBARI<8zi3frAS^|A5Md`mJHqgnKwE?m!ha+98ZF93gtrjPO%~-6gt-X+ ziEt2M;x>zNBf@_n>_UhjjA}-`5EgAm96|))v_D%ECqgrVt;M2@Lzso&LwF6LqZRQx z5RXuS@FRp55dMmgveTkmgm4Rjitrr5-w=kpj5;BdAl!-YGlWUIEXq6tAHvTOUPCyF zaM5myvIgN-2>TFDBFy`XMY$j0AVS(6i{eH2JHoB6pnVad2p8-{xd@LT>_F&3Fun>p zAY6y=GlY*2E`QCU+=uWxgf|h6Bb@!ZMY$580^vS{-ys}Fu)YaiLbw@Wc^l}D@FBvm zw=BwK2#XQ!Mffek8wi%S5s$DK;a-H_BD{fc4B@N;7UjnX%?J^M`3Eh^za!l8SBvr+ zgijDIeg}Mn@C?FnguHhx%6}ldgq_d8H<~_ixMJv$ z`Jx_~OVuMPitr6`N7Kh5i&|q29`g+l+nY9ij>MGM}pqTa)ywnN?iXtWZ*r_PTTvh|&S48;f z^Kz04La@C^*b};FlqNJwpwJc#6gm(xqAmHLxU%##kgL$znxDA@cN%r4S!4B^W|KD# zd6OY;GGjNHn5~e?aFOLVJXh}wi;0i3P?r6uoW2iA|{klQNGQpBW6jdM{QF- z&27w$qMbAITsGfn>rQLf?;E;y__XP>qeZrv!DD`gFzD(zTkingE#S8zYjCH}7|N?y zyr?g5=McCI`D@5@2AI~XV?cBF<8AL?OLLFq`K>i+=sv1>vm3lw z2;MAk`mNO+(R2m(=m7d^fk&AC_l9onm~d$_?pV`dwkpa-vM1#JIpjJCLY0(yH=x1Y zmmG+uJ4Psmg$vcr(s1zP@o3bmm@zMjrl%n~upLe3J2Up;F3J&2&*141zvmBz(rEg6 zdQ^)}E?(E1`V z(otH_veuY48zRO_8WThU>gGgiq@%t44z=rvC!Pp2 zI-Wq3|C5Tv`c6yTp~Dv3S?kE%+4P>dm~G7k?RJ8^fgRD@{l||4x*RJ%tWv^7M_JxU zkY(~eEQYY_sGI#{a;%$ni#q{mXztEpR^0=NVP(63^4S-9DDHSDabhNblq6%erRi8W zE=5DK6kwYim$eiX&*=;{t{&!w$a0sm??J2p8VL>A_dsPWF3V`bdqtC9j=JVm{llU^NB-qs=n>sjT?d~sC=B-eC z4J;J`R6SB@82Td3{`6?F!dom9}#Q%S;mPe6bea~lIiC!>5EiH$#h-$>&R+lt(h zxh2G{m&G8~B!xJ)7l;oFh?P2sssWe}Qx*JL(b2}C!#AVvXk$WgiCT^Z=EJ2&-6coN z?T~s@-!Aqi+=Yv*#cmJ!IlHwh8iiy$9VDwVE!vIuW2$?1>@;aP)` zO0|T|tK95Gk+K4exQP0hRxR|OV(MoTK`O1EjfXJfX=43szKu(L>zdC|$-6bdKLSjL z-t7Gnu~iDQ;dO#SGQgbYB+CgwQfGaUN-XtY5NCG)N6>U6vEh7MY0loTZ88u*!9T_u z$e4ItXuho^x3QGx$KYUgz7fM4?FcBtJ>fd5+RXle7C{v%K;4~)J`IoovovQPB!}%< zwib|S2#VLTh#Wh8)-`ykCr2KQb#>OTD-HeM5xy;2>dA$azn_b92cTP>EwyI<&`8R2 zG|uHVR));A=(){{^t}jTKq@_}L0CMoldBb_q0xW7_j!y1(R4G(eYE(nI zLw*Msx67dzcE({_Tuhw|9ori6TZ6~!4f~<#m3Sg1#Dr%%R736oXEQpj5^{A#Ori2F z)(M%b)?}+)&d+>C^{f*1&c8vq$#;;77?{f5g5At-oH?_~!J-#YNA3)quavNlLyBVG z(ikc*hi6=A1S$$)8TEICD-0#>P=Ss8{a=u+vHZilU8qV)w8q9}qmrT3){Q3t7?m3C z?5Y{+t}=MHBLTalp47gRP)Sol{*w`lY7GqwO(YJ;9~*L^A??9Qpi#vl>IFq7L)OI! z{C#_d1F1vP(yCL`tIbeQn#?U`gQDqMH12T$uTwS;qhZUpIduJ`{}jcZ+{SR-$zMnP zC;5Nbh6e#Fusy9}r(T%!lJ>8skoLp=(xN`PDt(0H6+7eVL_863K!J6z;{?p*a0FT$ zPQT3`K^H)G(vJ{v)suBQ#Bp%M)s5N)>~@5tnJ+caNaFM)xU#3_3=Qhz&!SPOUw@pF zOoOVgvl2Al`GM6Lj_NELbixH@k2<*q(*m2P%Hd{tU?30sEoHAjoVusAAj1w`WuJrL z64f^9pz4vl)oCkJ*x$#2xeC&9TA`$@G=*F?KFm#3XJ?dzOU;23qy?P`E$D5!HL4?W zFt>WwRBm&ZezQ{hdRH*xoxGb>dOT=+nhUUP2owY)PEt33Jh+R z0xeN(i;N|fUe<{YP^IL%TU;lNEOHFJ$knm+wZSGsv&u_S%lQvs$4aXV>=q;{EoF`g zaic?I1Q%FV_In@))ga)qI=F7Y;yDOCG%{ozM0eWS)Tk>h-|2GrJBeG0(x5E#);r?4 zcm^;|;Nr+>Tmm}S?I<2RY)1KJfF;HA1Msm93Gk68TtEzYlo+xr81)auoMbR4u!ni6 zEn6#M6Hp=xyAx45ytr_O1`tK-vD+?Gl)Tj$D~Cp*7wz$|;h;@qTs_#+cV-~!SeXvK zaCWUUs;!V^06zh+A~uw0_26jzwr5DTu+Oy{{1KJ zo5qJ$vwCd?b@&u@I(3-oW>PjxpL>ek>=nqnQgs*GNWzql+wnuKM%qg_?QKnm%qAB! zVZHjm*~o)xhCbz`pT#9xidsOW6;Sug>GG6mN+(K-RE^fn=BUAwMk(H03aR_5l zKw^^=lTr`Q5jJ10)3>BLegQ-<>h(8(gqHvQ7-~7v@^c%Z5<7SJz@Aq2!p9I)7AW)| zA$6ic{}Fl>pCUY=WsZjGPC8%l4MFBow&Ezz?E*Pgqma<|0p>9s7}0-9y?fsrWPonO z?!oY)`cI;dn^g%NlkYO4eoM zHyrSv$k_(H)yhgiTBy7+xM*A~Ss2(X>S0Gh{!VrkD2{YAENLCQ4(x~47=Z>%%sE2l z1P^)GFULZQMAks7&7)=izR3P6lFIBH!I*ii7Oz_^%X=8_D5gD(CW{jwA|>-9UW$?R z=Oq&(G3X^pp^NhM1pW0tk&qMfCF)5Ma8wluUFN zC0Zd9y%3+M7~|GDQhU_dX3tuvzdQXY=M*_2R<*#E(-gv_s}4hny!epKGu?{z0;^4PvVVG;y;#K^&Toc-+KnAbqJDVutwXdb~k0=?n1 z0O%FWa`&(j6lhp&Rcov{$6?6x73Dx$a6R109wm<3Zj0oVgvuQk)H#5!gYAYOp&JxP zIOdUDp|R42a-gOZom>mW#F}q<#o6RPvZw;n3cX0A27;CgDNd99Cp(b2&IZy@qvW7b zfYF_Zd=`y-rMfTHB#$pLDxwuu-mT7e?E8Dp%Mi!i#dP5D35qKvieR=|SJZgYR zEJk3%O-7}g!29tAB@RZ3rY=rtBJCqtg0x|CfYbK57;V=PZ6WEgRx$$SJZmoiOH{;7xm9r4hzZqBMpOcg|+BtpS0L#y~4)kqtcG&~Jpenw}3H-`Rb1uwE zrq8)D)>Wl=SZxH#3M5cT$ki70w_%tEer{IJ8TepvsTE`xd0UwmaQYj4- zBZcjTJW}uEjnJCY)YN4zaki{c&yg`HA z-j!#^$K7TP*V#N6rApcBFc?KLF=l6|w_DXWbKbzDX{f2i;|{xQZk7tdBq~7YtS8uq zj7&%<=U8Mg7%HdM-1MapOsc+8Wq|g?&Za?fra5fe3H102*1 z<1!4N$W1IzYpw`Q>&l^3nB;NN6<8yws0{e>9xypo zMvlj}t#BJKu;(E;)v2T@w7&?hs2ay^%LI3YT$rrERN`#$rIxBY*xz12*XbmiYIw2D zI|V9_x+~;oEd^NyHUkPmwAL0b>SVu0+lO79V0~~II+((4#!D3zTI7U^KbXA$Z8fm0 zQ}Ip)j4&FrmS^b@S%@*&Wjsqqcb0WLONRoAh6>WunQ74#Hkh2)Zt6}&wy=x2Sp@`{ zdL`s$@CqQq_M=u(Z>?Ie70wX`wm%CsEwZw@|1dyv066HBhuEl(s44CD{+7gn>kuhu zMIGvtwS?oE)(3$PCbM-1*=HY$bk&p&Y+BT*PFhPE>E4j*HT1Rc;&HSv!#i~bI(5zt z-*8T@qTTHGEk>pNd}It4WV*ve&$ExgAAw~|QR^Bp>o(->cYf}>Ms;n+6gj6A)_muV zl}^?Cz-0G0-{4l4br`US46<)2oDnLrR_3`gYg6*v^L&HW6j|%>ikdf!VirN9MqMnj zIdA@6K9~XG$p3XWXFJHjoGo)8XMQ!F9Tl3)S`o&2!rvk zQ)uv|#iYX*>UDU`Rv`vAu;Ba9t;|PA0o&ka*Pj(9YgAf}ZB+_kU0ipyd2OM&yJrcF zSogZvyw+_NE42_xA-7d6wuRg_wb&7IJJuDat#zlV#Tg-YhI(~os4z1gP*v0mw;sdN zjc91az18hN2g%CPEe3XC28$kkbm=BaftjnIN0@yA$r;>^U$zarn|r{!buXqf;e!-k zev19A6m=L;#E0ysl(6x|F9$(os0;-=A^*a`Pw@+l>F1y}4B-@wj(;pu+D9&d4 z{Y554d2z@7L55Pc5t_4?ts=S~LQ+->o(7DR7}d^FgA}bnbbB90U8CuTL0l~IzCa~= z*!NH)bdvuDQjpH2;8X~)hE{L@TmFcm6sx;KPqZPW_d#UdRDW=gfek}J#bFLzzIC(p zkiLME1DWV-4h1QTJzNhk(Pyafx+l2~PVaOv$)#2!Yu77m@_We6>*3txOJRqgItmJ~ z7n{(RIcM=VEu`CW-s6v3@R;`ql>iySS(QCbDL4Y{RTu^U{LsG}6f8P*5;f|^P?@ZT}nscH@J)2N_;^7(XB&Rx8EYwujBT31+s@Poo3)&ql+NCwplL z{&-(u7l4NY+p|NLQUdS#U1%H5`+4P7d&6cBqtyG@U+_i&5niOlb!a(x=qgxmr@r7p zIgGP@b~r3L2lbpv)lumj?mw&2`Km9yQgs_EoyA7KJz;sGN4@6dc}RAZnG_48Ln zdFkB*e>k066{t%I4y2B-%QpxFXnq&m>1=f$-z6Hk^O#-PdbcuLuJJb2fmc-(KL`}=VZH-Qe$fSc|Id4O*g zEV`MWAx(~EMtuR`ipTT z{uOU@jJ^ktpur%pb2Dyp8}lO%@M%0IDR9*^uqh}h7q+Q`p}Iq%y2CG0e=Q9cb--H1 z%Fw%T--((V*c?1mS#fJ*uZ$2H8mCCBZ-VOTaJE8@TDcr^b@B(k(ChKUgjf-Dq+$O? zIvmm*BZ~qCIdu;QH+((f+nn##U6(hNOYTv4#~HDN#>UNDSjW1)!+AVLk*Q!j5DO-? z6vi;NLv7;s2XRm4ix*x1U7A@T>IXuWGCyf`dssBgCD!A}ji$YY1l2M|I`a>yTkm0| zKaL?o2zK{|EIkgkZXBLHsNt|whr;4k8hY}AhH54v`On^@P%nDpX&n)4;UjDljzoqySeKH*04%2IKm5F9-ZgxW! zfGKAv2JguXXv{%+iShoR+Y=7%#wg%sr*rW&MIBAjIqy>5gz)&`FTHKZ6eDAnJNhc5 z2nq@ZeJIk6D^C}1aiV`UtIJsIop*sgyPyvzK{QB&kLAie#_1lTiL77;DoD%1V*odr-ifC` z*9c#l+uI3NlzbUOi8pC$km?Vis**X*= zl)|TYll&IHPzqOS(Gb0Wf?q_JY0>B{h{i9XU5E~BpIlN>Whhzu$j<>6E}bBFZlkyD zEG0Hld9wnrYL7mM)&0s%%4+)Ux^s}>7o^nwg4Ebw(4g{*V)~hbpOzFiesP&i7xoN# zySEY0Jl+h2+X#hmKmi)UlgQ*<(lW@fX$By* zrp&_aMBK5>c7uZV599rd3lLelsSLmDrxcB`@h-%dZkk6?_wp#CcR59|Rs6~1UBaKL z@Z_C^Tkl{f7Tzgz=cY`>c=6(7O5^dapop!IJh-Ppojrwn?<$~*lwgdf-3L!-$jBgB>W(C99Hf0Y0F z04g+^94kVPJcj16Hv}+42ynhJtNfxW>#U*R<9Jzr;v##)Rd`>2VuHOP4>#WHN8zVy zG+3BzK&{%ZK&1V}W-#<_@LZtlhYRfwEP#e=ZfgQ@x2-7- zOw0)H_KkR~|KfW8X@N0^KsKc%_y|%N+CzvBjLE{LJVa3!H?-Ff5Y+J6xEe+$K1YhO zr-WqzFSVI!>&S1|kL91H!a$d?c4+-nN-*9Yyc7Vuj{{e)4?pe0@K}lFhnJ5V#tlNp zJA+>Q6Eq4iuf5?7Lk7(e0+bL!f(j_z#ZGm0o~5|DU~dNpYI8YE9VEyMNn%3Tso&j*_8 zto0|#>&ee*j)|A7NP+O@-u@!-?RQrAR;Xaxj{4CdG z;E2>DBBEN=CM@KI9(oWhFPk$+5Adb6-^Y-@%28bZh1-8-*tI*xzqkY0H!UC{UxO53 z*HhhZo}xFfR2kYQQrT2{Lt>%eB$8XG{TpxgtUbMotG(|u)SS=lbhR$=c)7fL5D?m7 zMG{5*&~f52Bfgbmh&+T091-BbhfFcC z6iVn`4S?5N<%OVnq5(qRu`BZX4pJ(x)*g*IaRg;kyf?P(B8lIdli zd<<#YuSarl`36ca1gWl{ohHRp@aJ4o{5#aq`Y-(ck*z5tRH&o21Rv$EF2+M^3dt1_ zOPYkCeH4!+g_UC4ZTRIp@>c+gqgQmIr~V6%e-JlVMN+sai>1E_8n+=M&-1IEd7h(j z6MVJ$^`3l1ulnb!))X512)Rf#O3?%;Mz+NAR7EcX!wcY+D4ZA7Few(B$hZ)_xWwH~ z3*(a5-c_Ki6feRg)*7TSmdX^OTjj!RT}HzJd$0xTNmSe5-MGm;P?`4#v7EhO8&Yqi z0x&bb&g%wD$wpAI;GOXrhK}pK+3{te>A?gC!35d}&GwlLFbYRL^0HBiA+pcgNSBwr z>*><$7Iu)k@Bp3!=$K()90&~O#QLe!Ta_2dy5$?;;dTZX4uoyQ7O{DK$Ox;#SfGPx z0`F?94U?_h#`Yhf57tj5d9C=y)K8`1Pw{6;%6JQr6XaRAP@_)$R1&X>FS~v!jgpFg zaQzF!hl=mA?raX3EtbYNN~Rgnou=)~80h*J9_87`)W1N3q2kku-yqZIihqH4n2>#e z#z}qZB|TGbCEW|6b)7Z8VJEpr_{uj@9|?3BuuF=owf+g-3}lQ9M;m5~C|{L5pSQ2n)DDkyT%R_?o^d*eGVS@J?|07Dm9v>zOD#a3<)*5%@Pd>Opk zA=RZw)tZtK>#vbi4VfPGLlt=6(GhVypTxwqVc-Sgb;XyahavDzL)!k!5QEr z`{V=}an#P4d83IqzJk~qEBo|aXrp}b%lVlwYq6%oaJFdl-IX_*q@iy%o6`>IGHYuA zMrG_3$ZubZzAT=4HsUidNd31M4%{9T0xd&fuc0GGek!uCHh_oib95fBoH>?GHA(Sr`$~^vy&CAbJ?GZ6oDKw2gJZHZ~pl+s@|j)ynU3 zOoj;)Oor@nCc^^=85fxh2N3ecn+$~rcOlUG_i>F)hfAx5!Lw`JPIAMcookrN>YVlh z9a)$uW7#P^4MP@2VFxZ~ayY0TVlPF}inh;aHRh0;y^5Oa-K*mBWgws46|}s419EFq z^78i9xaXJy&sDJLcH`B(3Pr zcC#Cil+$l_RV;IWGEa_WK0P7xFv?uW8*4L^{LNGwc6K)mZncmuOtYwAMOyedeGU~! z6clru@>^jhw}T5D+)30J-4|#v!@In?L+*y!xB=qddp~}nmp+W&O?2zMi+<|qXBB>; z>Cf|aNZYg)PlD&F9Nx7+kv(x5Is;ttPA=UDQb*O5~Nn0&9Ee>EQ~mL6wn?Qx|CjeyU@419r$7A zp~4Gk~`S{!gj22XRJ9v=Oy_@;fjj-Uk_|;K%QYW zyK{Hut?j~XWLRL8Z&=Oq^vv*Vf2c`qsxoY%Im99xk>4$=aJSI0+t& zj#-K{@_vc#zD##NPj~N?_s*fTozrjpths$3fJzuPG&aAFvHy{1`h&DUW?(>B?Lf``z~ zq3}WaeW;CoA0exB=$XCr`@(MgR^IeU@Y2GJEB#%JWjnr*X9<4}_1wESHfZ8pL6k{d- zQJ}t%Mk|?UBX#wV>kugiVc_gj$&5-#LAsJaesB4{MRC}9k7HW(d8bsc03%YV%P zJAuH)SW0Z@va*{&>EmsnW81>Q7?#m7joozS6_h`6$V&6%MxDpGv&^!*I;(#agT@oB z8o4+$(L;aiGO#5kOlnKSl~?ERjm*P%HXIs(gYfo%c)&Z-gnGlz&dRcRY8$2eBT}v$ z#_k|+=PnFk4^reeRU;R`u}g=x>Po|w!6=piXNuCVjW2yGFMvwFfM6cV!@i|q?0g-} zH$gy-O9VThfJ<&;dJ2GecBJ-E%QOY;xP ztIP1OilpG;yDhISlOnSGH&H~EZ%JNVw!bv5Zmhqw-dW~PufNk!=C{}1X}l7%x;sr} zep8?sV@AIES^f7FpQW(C*;@P0`tM)i&&8VK8G$;7$$rmC6hs4_-vPf;v22D<}~NIGVJ%(11M|>{tWOqqjhx@t-c$7LQ~3Bf9`B zfo(1$!K0i*LlfDLFw_Vhy)dutr2hlKZ%vWRQi(J?4R}>u*|BO8n=H}`suJ29n0vsJ zSDxl~I6w0{^2%-g5jl|N7v?$I056Wy@o8kPzuTmbr9Ym^f zuPw7g7qqVezpp)uO`wuvUFjZ8Tyf07;KaIE^akd2I?Rs)^KzT>U10tRP}TM9vd<;e zUgum-yK^m(Rzm(w{~+X%JZ-F|08lve4O=KQImE8mO^Gd zEBaf|2i&p6ovMVL)2LEqXvXX>7ql-%Jj!F&5mKU3?Mo4-)vFjT=QyPTy6V|%5>nB+ zb7?C)TQDnp3`@&saad!X$0PRY*qmSbhGKQxxyL_7rQfrel8|S4cOJ|uv2%BLNu~1* z-#Gi0vyr{h`HpXdeM@ttbDJ-9=1lvRL6s=@NM+vTzSL>ckQizGZ(=7*W!}X;Y{ItL zw`5?O6lF`dZ^`31TYaflU1i?_?-`!+693?7(~#W%W`tAIFl`!Y1VQLJnbSma`aIW3 zat4nRhd3=m$U_JlTWuC|qLHdbF65jJ-+L?jCCq7@*V{1}ha_|49;h-dMw?{Ww+yDX z$xz>chQ{t!?efLf*1ae za`q6I0PNOj_$~7dqm(Nvxxtph$N-GfBMu%tCziRzw1+ZB)S^th&E?d3)0a~j_Dk@HU2s(rX`jWUPioFnUfM>TVWAqP?aGAbD^oK&TUU2-XTVcbweF*fK1q2!{5MVUu9l- zw!bW|e5}8$GH_*?Kcg~mx3SDW92fJI{#0BnB-vYmNxpi#GVd(kpu&OzXLIe*$^e(` zyQFMSfl#e7VlaekFGq(Z*}mEsIg?;NE@k^6;6x@4UR&_mIptPBg=m_GrKZY2*90F* z?ke*Q!Ed)%Uu-NWuy3&-ng3w$fbRnIDaCiT+MLt6uZs(Js;L_#bK(9TxSxdk7ZL2{ zBH=E&q!913ovqc^aPfYI$emR)n{sji|DPhK5b(`_2?4+FOA_%H>O}k+k*fU{NFYQ! zaZ}E5N|{x=GWP%p`DR}#+Mq@johBkOx+5}0L{@i1wul%Ti(pe=GlobcVb8@ag#8o$ zjCFv>xV&Kfl~Ry&qPoC})Z=o`P*>Qno!RFEj7fpdzr;BUpVo{IPpS!*{lTFQ2^HD` zcbXOdZZFy5;eO1jups;_jp+1n7ak&;mp(vqOAJUE7=)Su)_i=L8S5I#R!Zl~MR``W z(3-o0t${=NeASx)Kl11bM|4FR`#$;v)SPmj2Gs}|Y28d|o)0iq^@8YanbF%aqPLA@ z>9K_HJDy+aDN+B91Bnjg?$14z8;$OR+$nEX|Bn4un2s_WJuP&-?p>F0s%4-f1FVK4MAAytmDb#e9@Wy~ ziYl!xS}s?@cRB)HU&5hsw%PPbu5EI3zD=ENQ%kM%bOk-R9LMs_mG8vB&iYAOc*aj0A^2m{u@3NCNmJkC`_fP<40Cr) zxqCXc5vpw{*1xB|4u;$;)zTjhN5#~w8CX+6k-q?~HIr{#dFvtn1%atEpq>Mam#(ZH zcm}r9J{db?a+RSNOPz=hY==ix8v8Gh3cWCIfz3Buoo}7%QD22G?C(UZTGR!u=^vX; zummbqfLwn z+7we$%vkbC?*3=VQc{^$m|=f#o4PGF1rQt~@&nPrDW)CvEz{CUO6^;2v*hmgglAYY zg2!q`VSH8#ZO#)o<86V}^p^9B>eQ+eqtf^82#pI~@*-h;1<9h>#iTqpk|tXsqVIco8g;QqU^*L;o&IaX$d&8e8fiYD_7 zBb|kNsL{@m!*Uu*Q%t!phqoJS)&!NX zF&}J!&EYzQC(z;G;x@3Xi#M6)rP&|mKL>r^@hey@aX!=Wy_;;9d`C)fs$CbXWzUnP z!GAK>-xW=7B$n)i-8y#N!LPKb2kttQ&UG}`)tTD~ojB#iIe;6wlqT}W-w0hwFc-%i z60oLYEad2>C;hOv4Sk$`(;uVX(HrRZ(ue7H>Vx>Lyg$8>Uxq%-FQeD4*lw95%m#($-01)|G$n%bgY^vqZHL{hiX;Q#DNG#Ex$b9jE%T>8zNi|K?L0}OWg zrr~NWuFAprS%1FTgmHzo)MdsDue()wPGYP~9Cs%wC7-cN`G{JOnY$C4HUC8GZpYuZ zuW$0Gt22(jHDpII`|$@b3KnEwR<_-oSCCm_SJUppAq%0jHTlkh%<3bUN)7g~I;28^ zKtU!}g!BdQ`q5rwu7lfRN=0KJYQ)0CU8CmMw`5K;y=vc5Hq97lG@3qxuGv8ny!@oI zb)}i!R)ozX7n_=CnF$WpI@0mm@U(2Ta3W4m7*x!<;ME@!Zr#aLs$Z+coP{1^xlI-GyucRQ#^dJCXa51YDQQW9KxRhNHOQG8dFHa1^ zS!vs_JvzJ!9ysvUG*)6C`9Dd!cF%=BcPqwbtOnsEhk`7;1f6T>@C7#w z25OlUue$ou5qk4+gkTo14(=DuW+)6rg_mYy2G_H=1%Rv0&Q?n^E1c$az8`EfFBxQ* zNOh zsg{-4mwdK;i|JXc($j;zA&XQFXQ#d4blgN|S|d-`w+#8yzxeBy?ZFzvV!DN~srG&N znjI=J87c!`4))E!Z>sP6_#Nt-jNi2C)U8oi;{d8=?6b-tx;s*xQVG5P4EvUrsWcAT z@BbzG+0lmt9c#w6~0&SdxdW& ze#iSTUVeFz?}bwK`*Bb@=i*7i_!aIYj7M-^;rkE#Ug7)qQf9%)WRdgnl;sQHcd)(T zb~FU;hT0o`DDF~megf_;X(Uhf4&spcUB|W=;3Er!aaM;q(=pAtnN+k!W>#JJSQWtJx%n&nMg#vaQ@Md#|HSJ3Wr+WiJh?O z99v~*(zNKzw8(hS&wdY`twgPJAK!;_8xT9T&FCL-Y@69P+`i>nt2*fTTc(|cLNoCN zTH1`w)s=xeE%2T>wk^xv@H%)C=`83O6^lcun+;r?n3eUT=9&!45jG&NPC~X>cwhF@q_Wj{i_&TGTnc+YUM#08~hPfcKeT(@l(`RJcI2=z636u8L4x~D7 z_pHt>WHLLo>YSykPLR9-5~}m;0vdfPw5V&$>APA-`k0?|REjyYIR)-%FVbMdrt|QCTX#@51Bq7f}8wUp>Et@=yHg`CCYV z9l&VxanE+#gnd~(S&<)|!aG{tdE8*Yp*Vj&;!N+vHjqk6U&>HZ1Wkqda95YMAS zD2JyWL#eZP>Z*#^AQ?Y2j!cS-p3Qpnk)7B#)=Npcak%Q%gx>fR8N5!7eJkQi8qe!A zmg*EY;_vQB<10_SuutEOt5&c2#rr)=+Xs)zQ>&ghGU$$F6k0aK6dl!1W!3Z4mHdOHGE~Anr;$Q+Ul2KZb~T zZ`6zLR>+M^YdXB(yzT}0_>J!2;Nw6*J(9aK6nviUa0JyuH2k&(=@dEAV_SobxFZW- zYj8X6=r0uBfxA$6H~j|p^556++Zt@c@7Sf70)`J#>_dlm>|y-Y141awC>HxNaXM(2 zjyY7*??)Lh@L|LVK8T3QP?)?8LJvKRUu>ShFZOs7GJOB$0mw`2AjPBl5W!O0_=r`E z2`i5yjKbIARI<=R_v1Ej0s~|=>L1MxPb@bXaH2;zOvSJput*)|CDMsSli;${&X+#v z?4CE$@bnMhtL_QzUu~n^(iC$LF*q(|EAFc(*_G*tY(*qNxP%`5L@Bz9h+@@Olva!c zO>k&x|7k4sJW5SQX)X0WO8pSwMml+k4PxL21o&52+K())!U->X*vD94!qKy(SVC3z z;P66b!{Q+(xh{v>!w#K^d#9Vt#Wzk!cie8KELA8eGDa(=Dh{a)^p=$U8&Mvem*~$@ zgG4xIkXmQ8CB&~7`mA~U?(Q>1jnEhh`|V&Dv%av~gR~GI83{0%0HaF~Mgq|?iCl%H zEX<4UgYP+MWSsY~6`Km?6Q&KZ7fCi1ryfMBLxIQ9qgN|S7MToxL|B9H075gu_sUF$ zGZ5+!4&#}w3lOeCID%(8t~CgWx)(jm{)2D6X#Hm^+6f9-tP5$UMDPuOS-Hom40H%C zc7$T9DK=JyT-!sg9c()WKrcRF2@~-_&bsP(*z%4C_J=W`%KU@sRdh^HsAzY{zc=K6 zE#z;D?xpBX^{NcKz(XDM(=<;B8M|??M=_3Y3{Ronhoe&bdzl+c?RaGf&)+^*yx{wg zPmt19v|BZ(^V`&X$6UaHX}TyYWN^ANYMiQTefXgzfFfET7e0_^0fD2!7Mu%1{~f5W z-bsl2TyD!kTqY*}hvCik#Q~Ht->Ukvv1|&9e`(k}0?~`lp&F*Wfc*GUAA1~+R9u)B z$J=%L>v6@kBSnv`<7itdt5F@U8lyNDCTr`c3OYvBm6Z&s_*UfY2O;J()D8+w!J zh5Z)_>3hC+yIJv_gZc<-W9>*-ElSmkb2^=GEUq1F+9mo2^S@3NVqD_E7F*wdE1-z#R+f5_^UmUyZTy3r$99qpY z;zX!n;FwZdjAMp@_*XeR;2nNvjooyCHPIwE7H+j!ys<_1Itu`&0;igB`v8Of#>-AR z!4~aPKP+&7ghE^HFIJyb~?KyM^@HixF zIBoD;idl%_QPbD~bjivmZw(Fp`G8NrsSLm;VDlYRN-@d#Are}5iC4!;obTWX=$vk? zI6*%EyT(Q)7f-`Z`&v4&BXHt8`+X1L#{S1OhnHbZBs;hj7f?W*X3m*r!v=}!k?L)> zbtAyrYttr1r=i(}6ssuV+H1mqn?m*xE;ocZn`i zr&ym0ebDI3ocl0RX5>dhdTp}CPOV+%1H%5o6v9#iM1Wuf5zi&HU*#8(B zS4nIYw&H@3tNlU5;%aJa=SLXQ9qw1lSbB=AL;{?l7r8~9YYpzNS*m^>woMG*1|#Hf z7|CcK;6HQr;B3KtCjy@s!ZQku{&yo+inNoF7WPA)-mq@?G`=Nv50cSQgfpxL{|AwD zw0&@A&9Feb!T!g2*wHX!z19CI9ZL8^G#T0e%V|$xxm`9*uQcLz#ww4X5e!JI6ho*q zC&ssi2lYd1q#5YKTfyD#M`_RAXfos=lp@Tz0frcaKOuaAum*8W2u~rrfuISW*UA70cj3DV9|IpW)4=CW8qb_?Ni;7GW#Gc7#_DE<$`60^q~|nN!SGi#5eE z$ed!;|Mf6m@23%j-*!M(03d> zIGT(jGmWap9G;~JfkyTj8hVn7e*vFPKdyhV9;8(4!7cd3=m|rbU5KiZ=RjN-rmF2Y z;0w~A#q6*f7TO}IC1Dpf;a!L_kzS-ls$p1iz@SsWcxMQBEoL07xzM)u(Rv`Wh(u6xNqGL3bJ?$vM;{wM0C4%tPj}{38X~}YNc?Km z83O4W83M(P>T@08fK%{W!)~LB(~i3BC{79S_vw*mE>ok-&~GS5m3Fd{K0a?D6DL^hG;SG$_H9jRKoG z7oXMOMaC9=I6QK9Atw&9&IbBU_RcB8Or8TMZS}{g7nXxW4sk&XP zOMUP%S8oFalM>dY;_6RCgqLrVZv-@f(n|G`%FskwcWLr}CLNID)5}jZrRDCV24?A^ z7$URoGfl>o?~5}GVfdt)DC}``aq%6QqNBxd6q!Z)hu%e`1TXp{yg#5!Ooi09*N(%! zJZF&&>MKwqJuy5CP`AJ;|;i&53kstMk$=x1Ip ze)yVA9holsU$YToo>;S)s7F`I4^Jh{jgC~(Hv=Gt>9nU7SDGPmbv^l=!Hdy~J!BCl z-q&1a-x4hW-72uhGjY}6eE5@tYcc=v;51`oVIAld1bY$q8O{PD>%sMOF#9_@c*C|9 zn2E6J{F9YXGS?NQRfbj@D?+7ac#E!`ZRLy~`%sA>vEcU-u5iDFB}lkEdw5q5OZ#Yd zf2Yn4=aNqQmN($*gzvi5j8w6RkU8__omXNNC*QQoxvlyWtW=_8cPV$O`3JCFjIXV5 zKEMe~9OF9$#^YibPv;nu_f$pebTd(^GBl(zRAOwIZWYTCT5pgaE}ZXBo7NRs>Cj~y zu}B|@z=9T?wKzW`ROo2Ur_(x=*8DPX4EAwmhpwIo`;mKNpL0QELUe*Nt}#h)Iyz3l%m z_c!oS6;}g4o|jEnV8bpNG$kex3fLWs9s0SP6=7(d0Ha zJ}yryz_9MT#Eif+^^gFY;bUw3JW4H{VRL)oW_^t&Ycy@GzDpB&Pg6HiCZo>V^N;nw z;la|`kiYp`U_ttN%XG`rDs%Gg1=qUf*%^=IHB}9WoI0keKdm#Gi>*Iij^^?JHhGTb z(&-@7RwTc`{*SG?sD1Deoc-cGy78{U+*IO{gc&w>6iNR5C zky#VG`CA(YKZ&+mc~iVHETTpm`;B-$)|Malovc}1#=^kRt1S2{uisgzNp@!?)=v6( z?Hp_BbismWs}=H~oHqJ$Cunl=#VfCalJHrG{!Ih8(|`sug$!Pu0Y|2x>(PJ;yOYF) zZgF@ndyfcUwi-?nDROK%Jc=WLZsf3OKcN%G==f>=`?fW1%VYj5ogInKz9~LCTsHgq z$SJ1LR_Hp~IAU8&dE%a4%VwnFv#+BV6Lh!oKoO+qjE?e9oJI5YiKm%)D#GTc*+$CN z3)1*hzd>;T99Xb*yV)|2PE6~79?)QBuB|wo4oLS@)@((?!#uPHvw4+lgxQ*vV~_b? z>sOC*xzMFwP5)Q-TCSjWvK5A^zK><^|!c0&|c~JVnZ(5N{jJ?Vr0KZ?>nZZsULH#lkfWT9M@-eeR}`K z8=Tfqr0${0Z2e2@M`V9TzV}gwkMUgusN7&X$=Vr8%o9H{+KNRMkga<=W@`~~iWV0| zR?W566z2S14}oGY+A>F~V|V-o4v+M+8@-PHBlTexY-v@r0DlAHp93{@% z`(j9t!9UVYOGjHw4%lr+r}o$`*_`lhOqM&n_o96VUlmtQ9B%%*2Y?g#ToLbQ<+TWC0E^-dC5^F z!U*&iiNB_9X9LCt5@bv3SFD%qSAkic&g_3oK0lm(*Hs?Qyvo<}5cjUai)F-gO;Q*` zSJ_g^)aOcUN;kqKkB_5UT!BOux39<7EiQ!_IJ(8cZL}rzU^G8>9eN1!cj&%o80VTs8^+1TT6Y9f(!+gD?Y_T}7N%{@d|i7=V| zVi=ic+fQWa=T`mx*qtaACpO-RW;)RN!nIbdtzHD6t*?WB=(?D2j`jNuyr4v=IwIJv z--Cr$je2&lvo1ZE^DFGf@?zWBO8u>q96c<@O~lj?4J2>xhw+N#@ro7kik0z-2jUg0 z;uUM-73<;^>-|l_JlGWQe>cg)k`I|vcP}WM%RSv>nHAlGZ&Pc}lQ4{&5$`6Zm$jp% zp5%Y5m@7I2dq%s1f3ll~7X}ZDsQj41cQ==r5;G1=Q+=Jb_`mazG-byAQBPHksb-3< zm31YK0%BW>;?>KoD;J`O3@yL>E`RI=$>>|s^wjOW8t;g(uhWZ0ZG98N)p+&Fq!;Cr z``HyMQx*FX70ZLx)9PNq$$M7)J;d#3^)w6%sh?xZ;tW`GE#2Yz5*8D)0Ay9~52?YF zkm;`Pa(lKIQun$Sq1l_OS=)M*5b)iY|Fu?ZghV$Ob0GqA3&HM+L$@|%i=T~WWp`CQ z_GFgnz;R$t2KJC+!M-2Z$)CDsS=J7)X{5bBTLqw3@t%_1NV7k?3pWZmZ6UbVr@*rJ zF)M)eoi4EK4lfc|y@17K(t(NURp<@-cUG(i(>d|zs+|?s}<8{>hP#H{rRG-RgcE4h87orE}wBryy4ey#20hm%8H_;fQu&=KMK!_=+wk&kZMp zhw8u|j9NRA9U?v~oocN(kfVlvk5##GKLazCWcA1I!@6~RtLhDG1Z|K=UFxMLTpK|) z4s?4%qqgV`i+2bgD`$Oj>=^aVv15#LkAjGcUws#^@^vb&Nw&u%SN=}&&DkK4*mSQnS;erYmH&j>SqI!e7bo9V&2z}Az!b;L*-#u1J?9i3GN1(H^Y zhf1MrZw?aYR0#~UQ;L?i&+n7)+$zB~hz)d)=INOgfv!)CuQ4HwwWjJ8UZi*W>b>@U znbkUC>-_>If9u@xak2RYiFvH1=a%0U%UckTt;^ku55TXs=&sC}t?w+lyJhGb{V)`M z8nOv{Z^C)Tx1ll^Mh}~KLk<4$`gx>_X)=~CDuj#Fqc@T;+a$akYM2uq`3(}PO+ss^ zp?6qGk#Rb~f1m6!yQV=lKIMGaU4IW<$W^~x-P=O(Te5)Z_Qww2l+k|#7_&8ys8|tH z^@PX4-38CYR#?u9PW{DM_-iK!dGxSElbv(2LL0-MGKAD?rIuu59I939ep~Ei+ZMR@v4?b z(+5y2ck-Q^B6b%CyTsgJy}5jf-drx`xO6Bm8hUZ#lzXS@mv4NUT8fU0wtie{V334?SiN^~nu2^2Oe4X%Si zLOQWNyG01h1im?lR$=P@67^%lUjE8$g^ByoiC{jfe#4aPn1vd4g{iR5r&qY~^=>M> zoeGl)qIeVPuTIs0d$>a5V$O$qlA@}pXBP4N2=Com8OUY6XNRj~(90)!7U0A~SZ$hq zHJ+B??m(;rcNWU{5ja!$*;L=s%D~vI(LR*a42FF!Px3Uq%!85r0&Ok~11F{#K&Q>{dtVFg!QEQhSOCs#8sKbHzAD0$Awzs}W)Qn|p==bS*K}qvEf* zw_6;l(nO^LwSMO2bBkIN^nOs0rkgHQHP_YrVw#`7Q-nr2?ID1tM~$F0(q^0a=;mk& z$GoRbNF#_t8lTmN##_0mpd766o=>pF1uwTR)&ly#OkOf(S#K;hJqvkZPk{ zyiU|L^bJ3I20r5V;T1I$AHSa;6?p{z8t6hB_z+Ta_1lTz75Z(aek%?y)Nfbnw|?R4 z_1if8c2YQ~-_F->Cx^%Bx54_YBs^HZouJ?Phkg3Zqu)*mzt0>9sUsVt_EW>V^qb<1 z3%?U=y>j&q!W7Z@LG*h$7x7}lBmt-3KJo2J1lqZ4hBrGd^txiS@4CT}qS(PVa3BPp zSAe+e`4|d|gB(6?-g6uHz*C#lfgzsS0Nyfa)R0%-gqPlsRVwYMv&N6+hnDphKe+@D zo2C8YM+;If&q@}kTPUu>|77KmP(V(Ot0jkougS_G5pbLw=aEAszncan26?0?RUqC% zTYN)s_*c;4;fH1&#SBbVHf6I!}f6g zHn|*kL@viAJQb38PI>Esb4F~N8ynLrdIryf^m9?r;wuWBf#za=oRe7lb z=?T|(8EA3LIcked686}ebw}g)!Qz!QIxUnO!JWWhxEN%lN+s|T4iUk~>O)XCQBBv# zZ>pbM36+IZsk{=1@fnl%bp3vM=|P=ooOIQ$&5XP>Vv}^DeCvY1Tx48T)f!2owaF6B zFujHhIo4fs4!Pn*@-chl$YgQ#Jx5%CoG30ph~*v$h~Jr9xe`M(W#J55picf<&)1y= zGB;%@X?m&~QX_ZXYeSp0uU)q0(r)gp@e}CTh^+)yZj_J7q2iqV{Ai!pqN6!DjjA}> zics@6emFK#jMMfAPZz*ULaCR_TW{OP9?i_$*m!Z-oD;n?+lg;tp3DnzPB%+Cji#-| zM1K!Y2hlpdJPvvWiU3AcT5|^^t0OmUmU$I=QoFoXId{T|uM#S)Q}2^S`)v;Cz*u$a z8|gB9eM!DnnVe6{vpDT1eX~4^JLk~jGDB)rS*8?{pO;W=xN(<^u+k$;R7ioM)6`ZC zN#aJ;stC`lH|fO*;W0Xkpi9-0oWxPp`Bte!mJ&nyH9~)L<3%#;daywv(RU(a!=ovu zXP3BuUSl{^bci6OgfFW0D0cCa*kNQlb2~p&XDbP@@#4T6FU>lNm1Y!HP|Io9EJAh=46dDF3LVR-$XOoHMqx2I3c;t4`PXghEf?1Oq zRF{)jHeUQoMQ_@ zHIe8bUk#hkHhfAfr$n+o4cq>Jdk$bHCrLvn!m90tUu*TLuFg&hHl*ylb>e({9bnu* zq&-ABkOt0@4II(8-KUgXO7pp<5@Fi#LP z;5LMkFhRhFf*F|!5fQQKc^xc z^v7vW7e$%Fp1QJu!sQ|}R<9FguU|Oh^EclBRq23t*YWV=y4`rrPnC+!q9*<{CuhwA zM4_OGeHpfJhtyfZqMkbQ+1+0wpxTBz

BAA1Fz9Us@x8;se+6FaD+rBvt#H9*x@P ze{8>QL@no~(HjW3Bg2mTYZklAxv`HI`kNZflfJ3@@!SOwQuR&Uk1H31Yt;+7+hGA7 ztP{6qdsd5B^fwdD5CtbUyhj@P4VXi0nADu3eZJA#Xen-SO>NP^z?>5~1s{mUjXuup zeCi1xizG&E!rj-P%F4D&!F;-jxbc!iJW2pn=6%~~e8t!9RW{HD4fJ~c9dF$E@ig4u z^c&Niv;9rKHcw;yP3z6m2!GQr&C_6i(_XMciE@7vtOfb?n!m}|vThfaw^Dj_KhwYM zm*m422#v{aH-qp)Qfk#Ej@ZQDsSxgINZA?7=qh_G;cX|S$MPzG*(gfRb_O&#yy&6UBtV?8^TM6YStzC18hw>Xo-A5So$?4I^b*Efn z=fy8I>pk}psus@~`DE-ZnnjK{n@e6VkYktSXh$r`87PJ4Y9{+q>Jsc9Q!laGRla9I zp0&s7ZC#c`kvVOyb>WqhCkvB!FWRU1h1(7@M)Uh(TbAUMqwW)2^?Wj7Te26r-tRETdMZ*-UhQ2_z^Orx#%vu) zi2YB{F3y}Tp;zWKm;!x>!x$-;Fkx!+2s&HA<5E)2Uz%ULt8m2bcrVUA&d8ZtD4JpL3Wp*j-FOd`7XV~coH2ikl`%?Bl#1O>{1B8>|wxKY41N8a%M)j$-`*e zZI2bBasn4PKwFr3eK*?8WjDI6kZ1)}A0x8uSofq9tlRr9tbKhftOrtp^8MI&t+QSl zu_xifS62WKM?r{t%hW(2vRKYAJJ{OhF=#e*A?tOucpgC6rVFXJd72v=FJB1PFgI3y zezdS*4y-4C(j?w;qK9R^FsA>i3&2d{mrC6E*dPdbU81risIFt5 zReGJh(ZZ&M?vv~wjY_Ej@K!h)JqRH1%4T~b!>vzruihhBmdR=&l~_fBhq!l*{OIBF zV7bf=n1>7TZ*S^}F{Jq7I911r%feB#2M0r99*N}gst*`;t52M>2|Bi&qg zU6F8I*j9VoE3AVfEfF-TTB@`0EOePE~TGjlFw6 zN8C^nc3&(`_5#Ts{`I?Z_qJ79dwTDUzL&g%1K1@TjHhyzh`Z>K$s7E?BSoHr$$I}| z_Vc`C&D>PMXxiX^tWD_AL*>uLqb@U$>UdyZQ$K@w~QT~?jm*8&=e;fIGnm^5tm<@qnfwbEmlG!C!fz^Vz zm{}Ya6uKubGgNko{i4I`kvOc5P-t5*xelw`A0e{klCj$UleAp-wu}_mr;?56rhtC- zBn_ICBI~`pcuAtl!$K)9-ak<#c4RyV=++6vxl3pEQ$M8Kb^*Tjet-j^R?STVcVs0> zU*p|9X*v}0!(GzOwpH%>(tE@Yh2tnXO{IzCHb| zl)nNeiA-9 zO~`5NDuYF7O#|(f0otxL>MlUPmI0b%5p)coHO3^4J@AjogzYiswdJi5pXD#F^4(g% z32Cwrri2q90*O?3#r(k~B;o&R26BpR|9EcegnqeJZhV4=e{#_Krg&p>y^fIsd-2+x zkjE-a&GV>5BHRikZ(;0f-W>8@JSV=u>)tq|Ho&u4&m@kV%mx`nV6H{u1v?RxufL$c z97F77N^R?0YJGR5?CVlAyyB=Bfp8_VabZbL#3vNpKZRB)?LVn+KkHh#Xh9Nys;Wq&RNIUKOym#i?p=&<}kz{S%U=X#oN zw5lg5Q28Xn9z2-7mmDTynP;qPXnV5#b4Enutkf+-j}M@;r|U^UrO-X1NA&-6$WOZX=_NPJjCisFOh z+sNn%@sebp_-wDd>Yti=*WC5|cb_GGfp`jiXlJZ+nlB{<^9C{6B zLjh`Ooe;p0AJ+urNfMYpd=2q6d6jj76pNO$P7LI>UQR}@HO0dV9$JZhlsvcmLI>KJ z$A$I;+Y@YKSzb9I_cvWHERZhiI+0}Fc!{b44afz<_N!X@J_$mr?$>DNgjASlqqn)gug-kG+?%{Me!0gwIUXpV?2US?_GEuu@jO#8 zgIec}_qDEOHLP1P#Zz{>v|^$s*~hxtgO_(0Aq|=6<&AalvZ}zcy1>$4VCmIp1MQ7> z2Xg(*q6@YCmf>%_Q(k3*(<&_AAH9k5-^PUuXR(ZVh!gT0HRM-91fr4(TB3`r00Yhy z87n9RlN$-!516F~gaCpF0nw z&93ldfor`kms2Ks%4d4~&6hzV$0P^uiC_<6q;LB zQL?nMxV5rhj?FN>BhZRns|68T+sLimR`v*~80KnOv6!?Fm(VCaS>fm#6oP&v7>qPG zI>_pcbhJAB_f{NjeZ~jb%G~1 zIansaE22QkR*SDZe|`@_fklrd_ks&@;Km~E#Yn=v(bBDLoadq~$upKPB&o|Vjk^Pb zO-$o{$Q2P#1acCd78br6SdXR`My8L_Ke0UVm3yNnmQ@6>q}Z*lX4g?ty~$za)q%)h zk=(TN(M7pA*y0=&J?N9-zpetv=4dZA9fnq*^HC)=xHS?6SW#<8rU@Y!~*`Mr4=prIRE zx`+NrzbgVl4EppMqTQ`3xsHT~^hEXH8g0w={GUWpE4C>hCodU>kwH_;ZuR^%)Q>Mx z52CgQG4sAF^Z}vyR$_6I@U<9Ix;8QULk(1uc_ThFrhc?cH>4t9EbSx@W_F?~_9T=V ztFdJ1*0=B{8#sGWpqAZ&fO^A6Zz{d=EZKhkCHQN_;UFWE-@)O;3%#URiHgy_^f1}$ z?iiMtH1{~`Zn58&2B|BgxO?5LH30PszNhI5J>p{-{c{B@%8LXd^kHh(o>;7HIhsEp zeLiK1|&k z;4Pv>9MTam(9H0WuU>{iWcnr;bcrs-kWXaDmvWu8TCsfas(*Y15~){0`q6{P^&wKS z!W(Wpi#FOT@H?1OK*^(+^3lH9a74almgwRljtu$YXj?MXlZkg2RXeK|TX7>!V@*)~ zK(5kt#25L>>i0)4$jT55U*!TzoXk8^Z-IbP-@l(*;^Ouz5Me#<%g(tU>L*vB&Uphl z!FJ=~lHBNsvc(>M6Kg1m8|^|n(ASzWJ#?8;%7mZI&Tzx~8mL!@N@uzl?;AYygf{hb zfrr;LF7BTjr9rE*%T6}Hdr5Y+f2EMU#J-TzG_fgQW*yF8Ca99%!34b0*IL;>*IIPQ zjQ_#dPE9;j?=i3yhtSWUU4X%OZ~jTG#jXZno*n&e6~0@X@@UjA~Dqg0$3`!)M~@ zi#aS^N4e00d7@5g=Q@f;^7DN)l1CY|78oS&;%1R9Q*oe8od3x%RUFFT+wfx-C8#kl zeTNRRWGVL9wvfCZIhtDFQA6VJPxhf@Jv=LG*(i%*^`+^8SI!uYusn?VM%?Dv`bi#) z+((6FP$tUKsv zo{+=Ib-LndV=$)~u~cpn7=-<0w&1WU^>g^qwo|i@;ls0d-dEcU_5`px0%wrg^whh$ zL>-_7*5m>740p!O|AzGBOE$N2@z4GSmTd3ksn;161`P)3i_B5|Lb@8+l>qwTVB+eb zYOz2cDVaqb5iUMdx87HN+i-t#T!d^Etr=#XVb{M>8fIZ~ruy9s{n*0+4|NUh0=>0f za07Ht7mlsPLruhe3vDUMn^y0;I4xSD~sL(3EPTs z+ZZ-(GuvAb<~wRv4Gq|Bb*PtlK&>c8B|=l0UxY75_1$N+#*ysBP;hJTJc_%tOV;yi zgfh>xK$pGbm*Cqfmpao+ew`)XWKsWtS(s_ou3jU}ZM!8KG;;G;f;R=2QZg~TYR-!? zy52T94mMh>xVZ?R$_`=|K-@>a0m8&<^G37_v-K05R%vQr?2-d)TtPcfW=S`;7?T~InP9hVP>`iT^4P0-% zNbmG8X~`z6{uU6X)o0?0uy6akioz4Ekup5;c?8NxqB5XHFN1)bO`gFmH~tURji$Od zu|p*evk`AbcRDbJIXohK5YC~lnx^Skd$<$9IL@b;QZBMD$H>0?h7Tc=+C}MxjK8n}o?)gk*JqeDYTfq{x=-z0@OYOH!zhF!L*!qbOll8PMB^@_;yCHHk{k?xDeGF--7(!G1`3T z01hx9%ka9hZM9ql)nEUjQIi&PZ=poeR47aYkrGr)r>mMvC@xtvTTJhU!L~hD$E^4w z?mb6Gsr$Z(W)uOiW3YmfDz+-KX2}`zE;aVb^cnN6pgM_W;le*Yr#M^4s9O#)!s_%U z)St<|rE_5P?MvtMrxo!z1C%)6j*rnaId!B;pq6r7_V$2vTXFI{|6>(_GIp0yZAVM@ z=%>&fJsjwkvG*oG^~D&TJl_y-*`!7NYTpt%P(snRvG8mGCp!Rx*cwZv5vNxy0+#c- zU%jaj$NbWYeV+OsK!dr0EUi3q$oPyoWGow~FiMQ(O_-3lA}5bqYj!hcp}AvSR)l4t z*6rnpkJY8<*&eGW#urb?!AVd(|2nFjfe{FI5E(=Bb)R~dbe0Fe>ry4lTdU|OwE_!9 zDjDK4FvJOnf#Zubt0KVNuB{6$bm~^S8WFmsQp6d}@D8f7hg6#%wVee`Vin>0vql3- zgjo{2fi94}BzR7zbd{s(f@bK|+4>mJ())j**9)2`UVTVdsAzC+zAEw)FaI6tr*H5@ z!W#=m@~X=T9S27WnNiT>s~N0G{;o;Ri!EwrSGEI^m6_hheBAUJT4e_th(D8bQHS{U zE|#jmyTIrXNSedy!fLIyU(bMMP7XG0fJ8o%Yy5&!x5V~~emX=1D1@wa6;>Ma=!p;t zf2^bqsUT!cT;`qZG14HJd>~VwINXbZD<|)UQ7Bby8uxo& zwY`4iq8b^#o4(*s6YEzMjBOpNzK*UI7d;h^s7hnyu3Ev0$|2zI#l+zHF%h2qO+(lg zGHCLuGYj-sjx~tU8w%pP*>95Pn`BSfB0{))3zQ2I-^03u;s41iHffBKbWLjQ>Sgn- z*a$z&&XhWdb_%jTWWYpp?R54hHYqoGl)v0f*ao8DzK+?bA&>H%{^pGU3GX*dt6jJY zV(%(5tx%~ocPUgUu0((Y+4fQ^;iU}MP2nxsg-$kwkgyU-=crfx4}6q|US*38;^&Ip zf^<7YiXODKe&{V2ME4C3|0DNn+Qsc($vIfD`@_3lbP|q2YN=AO{x@=6yebw? zNcUeG65hHPW87SI(e3Q&;xI=LAhoN?bhUcDFE^JK71p<1)8=ySt-pjCyfaax@eYV7 z^W%I*biqLVas|RRIUGi6_Te=lF^k3GR6Ue(dS|v3q<-0^cML@byG@KfP%?9~4Ml6@ z_Odo$s%&7( zyuL$}`qR)m4DE6S83|TRJ zyByntk?~u-*2u=ir8yir;!W*VPn?t2DFjceNgw%L=_&7TLwd1y&c$D1*M@ZJRGz+(%pQN9s$?Lk>lgzmU#A@NtNHjT7@6|lH&ZhS zvBn(lSYxid6ULdg#vCu!nA?$2ovks)yR0$oOS1xIiUX!53(OP&GXy5p8O)UK!IU~+ zdS!tr6)+zh?Fy!}doX<*Fx&5NcdCzoiT$T5m_A*>T%>VRz(H;DObheW@e+kx%&U_p zW1gC^P8}abYBCVo$M;%-*W8cONtV@5bJJYB@{IG5->aiT8u*VYr>%p0gd+xBzW^v#>@rbpbTN z0aTC$=*!0jbmLRRKPc}4DChusf+c09Mg6k@Y3j>p-!NQ|m(9}10A&o!InL1e0xV4iXgMnH*imM~^iIF3m;$teYNlkf=UmzrX)YF*9xOas#%H ztP(rhLN7V&MXk;luv2fXHBfFlhU%UatJpeyL2|R=l2j<(+`)LJUPKnzdPP_aHWJNZ zdmHJYm5XFy>bH_BsI!?*K~|C9pGZlqh4At%UedmcUXHphwXivQwz*sW>B=K>zp4hk4u#iqv$zA<^D-_A!NHQSaOz9+Wa%T5^6$(9>7 z=Cv6#6dATLd@<@o+?|Bl>ym&91E?mNm+o?84S^1 zw=Qm643~WaKakry-BS>wb+_z3Ha9(Pb2!7+M&sd#3{YpI@#V78(Mp(TP?&?wdqb44 zu6E=781(e^sHf!@GUojN>1>F<4+*Ju5^Vj`+p<%#oI{E+c-{3enTam?X$G&OF?cOi zKNm=1@cQW2p&@PX8lCTO4Z8G}0Dq1Y1H6&h{8@k(0lbfz;s6h&ftRF#Yh6djyTzKe zPq)^zr%|kNai6Z%v^1>81{yXx-LUIFW3Q`d*c7#aa=O=lxY_CT-LNnhugo%>-TMJU zYOHbZVf4DO#yy|vZEM`$?C#!h7DlF~A~$Ti*V5zKy^{CtOx`}n%gY?h8021zY|I$s zF7uE532$lU{o=iV& zoh}U0Yke4B)Xsiz)7#8xPINfL(Gmy6k~?XWOZ1Djwf$V1WwsM-?ie~dDna#+8>xX< zuK{=BpCoZN(MaZ&2cm<-Ga>;pxqVz7%!~SQOM}B^*<8x(v>^4)m%EE;xZwvNV`rb3 zoz)Ls&}(yZMWo?2voG|9P(5e#7+llc4u5kog39awxNT{!2RrFK0~=%4f8%pujMb^r zwEv$m*3w`w<{Aa;z$Nkj6l2@>x-d3ofx+1O5cy}o*hOH+IYQN3P?p|SA*2r;dWpBy zRKKI#HbaUXn4qUX4{N9UoYc0u{siXLjig!XNE-WIXyGe#-m$vQ-^m!VIbdH?Vos@#a{ZvPPy0IePe5q8ft;o-pN*ycmoR(Em>G@LW zE7Cfel_3d?0Ic55W<-$Pi0@56x3b!~4dDw5Kdud_GpJOPX0+Crf0+bNcnrH=vMc;&lYrgCF37Qj zmY`tThoZaGm!Nd{0uMPPTd8dAPeL^y3pPUs)vAB#=R&rXCAwACK^H!3?UIM>l08jH z-TJwil7EA>H{`P^#sPW@rSK8EOYJe|w>`mXqM{|JE+#*crBa1)1mb#3ctC-0`e6s$HCvHfFABJ#$;()3X# zHbUmS=k0PyI!q}}EzIfW0i7h4L~Pj~(zX;&>7+y2IOt&J3{z&_*^FBH6v)#uOGxwV z2AeeXDI~NrovzWt@9oy@(_{1fQDzGs;|Hc11OxXhlufBkBhPc4(3HQ}-4^_dF2TU5 zn{Q`}gay~aCZ+xIYl3+$HkeOQjRb#nkBXFyzj@=jtsUh?@&3`;C+XM?k zZlKd!*+|6|23Dp=F^dc)@6Oo5}DFL=}({p{u0t7>_cL&iz?l@G)x1&Cf9pTrTa zmqYW!oh9s({%qNV;d7Qw8lJVnVA<9r9hye_Y!w~}ttyzV>YQ{N$n{Ujb*?*?SDhxg zJnme&uZ7ZA!m_l}=8$^kV#Cp$MnBHG;3|RBPigqW<~{Gz8&BIcingoe)ZiKt-Gk*{ zvoTDcm&pkwYS+?2MXIxTe~pxKc)H#1Yh0x)yA&JT7iLNg%`T4|{f6NlPhk;vqqdA;m;V&@!58`T{es*H zdv5kd-{z$D?ja~|g*rZvzNp9dfuaUl@dx^ab_Cf0GHoCq`9r(AQfGjC0dU*Oo zyNb!3KG7zUU!r=ST5)z-pl}E`@2k#os9|u+RB7yTQcPpzNFuATdp}cS%bms+>&D)t zbYm|_Hx{Q6ju!Z-jeTplyRqA^cQy8IY3yG~(TW5Po>3pRj!I!gdS)z@x2VM08atRf z>V@9hBDs_O>)*-U`!8#2@7CyFV<|y)N|4PhJ{#H6CI{Jff&kRE1i?QO)y3Kd3}lNO z*X+K+t#NW*cU)wjmDT?IO#3}8zmoP3AtlW&0_woWFoKUsOEbMcNv{8V#g)sWe$7l* ze{$y2NUoL@<)}k{qjC1tGR|T2)v_YzYFUwUwTu*fwX8_4mQkuyx}-}j3rX#OvagmE z<*M%iQm&R!5m(Ecit?n0xmrd&=4u&W_0=+dxms3qtgB_ZcDY*SRDXdq+FUJ5*DhDf zsQkx#YMoTX)v`yw$W9PA>F#RTk}qY68IO3LSaKae^`%p7kK6TX*-alB;?-Bn#Ri3a)t%>ex!pE&NowxgxrN+rdjKHZZoB@=xj8qchUa&fD{h35 z{;c=gt`jx9>;1OxLO{;_wkUNR^M0Fsaq3F=4r>>|6pW3vY8QtkKW5n@7*V~!m2+_l zENg!!y+5`1ubkq~lC^X3XX`($_DxRlgsZqlGOfl|<1M~-IiOMhCe@*k1`IqqQ^*LR zkgKWOMImjJQD;$$p%7Ocd7pHyL*KO*QpD=5T-l0ET<0B-K+ed*e?tns$oD6lt?V#9vuxUeU>V2{bb zo|J}N;D&7p?D`DsdyWfxs0;Q13fb*`E9A8MmtS<+?ZR&brMixx_+)U#@aF=+JVs|yDD4O%4;WCTcu@f zmB`wv95qM8mMv>JlhU%b%8|8Ij;tj`%i1cDwUm184X4zykkk$+Th>09& z)~RTn6fv@vdW@_Etd_O>B5SLTC2MuLD32dv$(|v#^xt5$b$EHy7kwAAlZ@f(qauYLfa5Okm&u~8WC9xfpv0QCaMWN>a3_EEZ8osh>=9N-YaX?SQgHWigh# zfD}S$r%}scRQe=~TaGx(&-!yNF6E_fSpiq+ z#S!5fCsiL?R34h<5|uW^9fHp|${9nLQO<5+lP_C2yBW|Ktwl>(Gwe-!#e@BW!%^9FyYC<#wR65z>X?wlL^jDel9o|L-VnwnM#L zDehjXF%&oR38A>P+_N~Aa&~JlLvh%YxlK0SMa&(~WCK$XM^3^ox{;GJ-jmwTr1r+e z{kqD@EJ@ovgq4pAghNw~2cff@p79wsJ)7stKDAvwcu1#qoo3qgS=|TKa6N!wcI@mn z=kXQ%%pUw7RCHi*=dmuvFFdi?#oq3K^&Xx8NgYYq@{;Hv^5c~e>mRYvD@3a5hQ$ra zE)aKlt@}vCStbWe#*%Lypn=d+il(9+$!#L-M;b>*o!lJBg+TdVdv5LvEoQq|bhZ() zJr|YzhYGvy?40!?bY$-~^mvCX$MRfc^W1q?Wq59>o9A{6>CAIKob2Yg1r!vX`yY&O zM9NdxCFObRM#`6dE-9~JXeqzxdFe=JDWCa%XXbnNJeP|9dnrG9S>5QR!O=^v9<8PP z=xix3ubrg)Xf5SOi#2C_I;nkn&DN8>EPl^3-FbJYcny=NBnI`dCt4*Dg}tss7K;*|1!-iXM^Lp6r`{shu~Zi84@L zeKgVoC=?hf&JM(zos`k84)SXna;;~?xZ}CEbvu(M;)VcM2hXTp(q-G#fdr3p2XQ+_ zUtc|LUva$GZC|Y_U%Bb4&XMlxZ%q5G!m{rAO0ui34MKX=rmsNxl)heM+L`I=?^x>` zyRTyY*u^2n65(x(t2Sn=^hf|j314T%b$DWOAXuyZ`LwWLf79<6-dbxn11y-HY?pkL zREB$?wa{BD`PF7S`?n=~9X@JzC!aTf*6J^jA@<0=D!r`;)QX)bMxx&`U%5seNM5W# zk$8(qbckWO%qRSHEIJwqXqaS~YORvXS5 zXL_!kZM)bR6mv>tI{@lljQyQmt!~7a_0x};+p+nSrYt?sUMrfxZJ(lHGD1H)BYyimOBv_lMUa6Yc@{%*;pyN(t zjxv&FuMqJ)Qc=ov6M? zbx?)V?{?9WE<2j(_dRN_WY_)Pp;E6(zf07c)aLZNlW-U!%FQvICbw1cS#RsNecgG= zB7_WCev|J)&DN#V-}%7h7-hsuyp*Zyu1v$imJz=NRS!?1g}7L&SkAPMS8t40EVWHD zS85XiT)&FbgX&hYVR*PoV<%7U|F2Y)4;frp73(vWb@BQw6y)l=6kMr_O~Hkxp!Scp zMHQKX+?aM1EUSmbZQ`bUqI!$^^B;A6OMgUn#bH83(knIqa*Nt(zJ2m@T|0MdH>ez+ zG07V%7ws!H&>F|xa`p1GP4j0l$iv$eckYES+V^YlJ!-?(V@}7x*A}std?Khu{6v4i z0J2H$y7y4$U#agv_oQ(<)UVK6CDp2K()Nc_PDC%QZ;Dm#OF0hu96*10P-n#p%?bnP zzAH4K-T(sCX+SG9pd1ZoMZA9h()!=W>mQ&JpB3HsvZ>7cF>Fe1z22xmvo! zRDkoDd!z!NYMP=ez_hCR0hMDaAPW0Ex`KyJke1$KRXmVEU!wZ=I6VxF1FO5@)vMw& z){d$FeRNn|_*!ap)ii3Y?uz)N@u_uHvU9L1wzwpJY4zj&-@OwZvV_yEoSX$y>cV5P z3x2dl7YrnaS*`bTk+`6I#@fgkU9!Dsvh~&Qs|0?<#xXPdMXo6uD3Rcz=Z>i_j-Dlc zw;bd)KcE2<*pmuV(N(%+9y2yMs=?jzdXw*jtbDJ&l1c$F;x*tSqpVg?eg8B(kKz|* z3jl0dC^zjY7U-KM93WuVfZu?{3StaWAW`vnFwuM$vrxqA9ub`^bP|$4jQE?ai6t3K z2i4U2oSddDEz;h|Fg>CzGNQq-HydR;Vf@tBFFC}WNnumw>i$nnrjvBHPoA8UGiG+N zzey}s!~3#xUi)JW?&L(pIzuG>%Qcadh?(;`ugohJnRI5+frt4od8JjcF4JsWERV@3?7$sE2ELp)J43pAwQlJt z!di5{ZUtjJoC-NVt1jH5zXEW*2DryB0N2Yfe%T&IH?SoJ*Z`|ym#)p+9;w)osX7&1 z3*FSP#$IZ|X6ia0IS=BCZfqsaNHTwE{bAgb;cpRod^S@usJ{6{L5Oi#l<9#KQeIQ> zz|ULp7%HYciHaSxXgOGMXz<7P>y8hS=2_Jn)sAPOvucQM2M$mk52}x4nZHYYpM^bH zU`!8a{A}nW_z^Y&2i>7AGM}-o-k?8!Pk-K!sAvScD^>Lt4dfB{F(tHHjV-Fu)C?PM zY#aTN?SXM6c(85u%$~eAlc1g-kEnDu`tNF~{T&kMY|^v@g7qMQ*2gQFYzZWjmd%QF zw7{#Lc~ZCF4O6Fub6WW=&1(8i$p7#_JoqNFV@RX8<9AmK#7PGLb23B+wfWk^!__ z16r&BE!Pt0aYq7Gtlz99&`c!IW-Wn24#87F>IWJG5@@NJvU#SZMglE16+pF1bp-=; z1xq_gpvPe_`%1+t>5BM_m1F83mmoWC`9nRA8cAp5&u|zRnni43NxrpcMSRi5XvLD0 zmOm8iB!BKO1q1Zcr{10@@g}uEDGzbBA`MxymLfA4RZ^qL-%Ra7y(tM>klvolNV-*r_Cmp5l<%9KaksQ;WW~UuEzs; zC&{$h$TgQ_`sTyXfsst>6BQegObfw^NT%D+hqYvqgl;6$Mxvj87Rhv;sq^@f$!jth z$+T#KEtyt#Bbl}_^}q{~X{{liXt}0NB-2{eCr?WzKb^NFlf@VzoYrReun|t%FL8vE z>r)rubc+##MmYWbGF=gbxmFXVxVDPduRWe{y3mwIIN4(KPauuf8{xF#DcuzS8fiC5 z16(J=cwINb>5yTw#}!U1Q_&S7oSIz1srW3Z^KfpP+zLZDwcXQIG`%(5h$h(`aAxWg z;1|(!v#IvDqN%%TA3T%$_(m|@;}T4H-`AZsf@!xpmz97KN*jgfUX|7GE_F1`t&CXe zkH+B=OFuTB(_-nP9`bpEtyKwoe{_?EbFv{8TQaS`S67{HY3-}6zayMhWu!z`;dId@ z8Q~Oe1U)VDA45LHFQx)nAvJ3Gv>~oxcDG0xZkjUA^xIw}ooZNmTST>(VqZzvBI-^pqL|q%k{&SMUNKS+5w%ghhF3Om9X3&m zsEwIQHJpkEtFAR z+C@YG=nu;}W_X#AMc2?QLxDzgbRhUXWuf#l zQ$Dj$ngY^*VPuhayF=1uq4Wz4P%o6eV#^{ojm$K_jw_2+up&Vg{Z>}CE^*X6SgJ)F z5l=yjqi$A8Gp8DHlpsqdarC-jhsPC1$EdkCHA9Sun>s{fqf02=e2?zEBb1(EU1NmO zDiKPLCp9Df8VV8kO0Sigas}t={T@?4_UK2S&$QrGQq%TXI^Tiwbvvbr>Wc~!uE*S2 z_6Vp=t}K7O21kJ_+*x#Qf8fe8S)kmK&eFE~AI=79hw}uI2Dbot4#o5h5%m;sWs7+k zmH=EBC8F%osYH4U5OOF!wS)k!K4_04Zi(eOfJcqeR@IAYoYSiC04`XyJScGQkme-z z{|D%cyo4LFZ@k8Sc8DaIWqIL!Y}jlTCqp0+rn6`6eZ~Hu+YuQlheUxy zv%J;HR)Jkj+=x4I0h?#(Zm4(K;P<`j!s}?ZYB(DNEGovv@7JIryo$7RyAS`{-HTcD zsY@@0nO+p8dr_=T$n;`>>4kXlHofqCN-xfr_-)@3o_TyB8zq1)a*ZbeA&- zAq_d{x=Cnej9eFVt`?S^$4J{(f?OlL{M`Ryq<4XU%t)7lu`W2uB~Eask^a~J+M~Hk zb^Jj;W=8tpx9xAAbEF^ojxOgO>G;1~BTejsV~%uQRxiH6TbEvxzps1Y9_itkUR-2) zks0YzKBX7O8tGRI3w4k5_J8V*{Wl|h^@z+!!zf;m34QT74x@Mgj(l835y&u#!5K#J zCIGr&6g4D&ZblIYs~Pe+!dn-_Z+o{3`TTmlO(MJ0rpNVThJ02x+uuGX`CMnDm79Ft zde=oh6Nep}e73*m?#0ONdU5ofF67hpaJm=o{a!z2$mg}DGa~i zWE6q3GvsrOL$}2p$aW6h{&EJi)cK$elKV(VZu?mo!Pxr{-25lQU9waA{axkCGC;E2 z>CU1Fcaba0^Hi&5rn9uorWNMGkX>caWL6)+aUGpucsf4~J7W_KJI4j`R6wW#cb4lU zOAoR*_n8rK+*Kyf?5Jo{7$#dHO`)z1Zj^fj#(=t};0rtZD^+Qv*%9(3o@^*lr_ zBfobDMC7+Xhg0jplUhI6YnN|Tv(v@HLq$^m^7piK4-iHj2{j1-{V{M_Qn$$x#BP8t_xiE`+eN+PwWwq{Ycv@TDwu%zsQj7MA^1GDLfa!aFFe zs!vBrcPb38m88)IRF6dSvo27B3@GtHGu(jkJ}$>&WxthNkxFb3n`KBikHV_LvXiHAX@{zrI>LJ|`0Gg4uiQJ%LeM5`Q>IZqBJ{9?n2E0OmJp z$UamP0SKJlcJVKdfs7L^q{d5E5bq~mDp7w_(FeLfQA1t`3KFN`>LHWVCy^K@uR$sY zj=v!vDoZ4;leD``mVj$`O#QEXOK0xerOU70tv{Rqq=0FL8ha-#YL>n+IMOf`{JN}< z(j#s_t}-Q0tT7~D?a=P(i^JD4GU1^7Gl72$T;2ZBG_DJjYYdcrHI&z+q@l>7nC9qy zF1ewb%7>U@CubKc36GX~hs!?$(v@q>tUl6B<$qqRJKsMW$|+&50O&yb)IrZoTZCfN zkKlA^)acfw*wM7fDbXx7v7I2jYjW6GR3R+<>;~j99B;(pDJ#ytHi}}N9?kk=vk?P zRb*)>PW8(XpWfsf92=ZNcvL+4=zqQOd4YHj>*D4k(ce?eoY~tYes=gM*jKlIU8+td zwH(pnE_V2;j7wH=G`?9g(s=zI;OPYFJsAjxvr>Gi zQfb6$J$(3coWX&ZL-lcIJLldyTK9{Z_~nnk7wo2hh-Oe9=C}zE;BjDv3!ewal{-V`|Z+niQ2G%dI#- zY@hdq8Y=dWs5lTg$>iabevi9SdTQnmRR{u_*s8d^S03tZ+sb`kIc@v6J+k^Zgv+*XTf?C8}(VaFSfh7J> zSSGMDTkEsFTie?vk;Ba>u5dGo7eaOM8T-rn2{kjI%#h8RL$oFqil@J(r=lNP17)U< z*lG9#J;lLR`K$h>eKG~d3;v*i`u4I~X8NO~O`8^$9hOw|AT62io0c`J^{0?p@RmKZ zabfM6*>VQ*6F|hq%bd=M4A4k}smespp4v(L*-5JZu}R0B-%dD-=)wPHg2%pkAg6&z z{zRhU3893S&Fr@JJChrl$=`3n&u1p~vrKH6(t8pW&r*tLpcJf>87)?>$x+r+Z&{V+ zwhOGPVjNwZVa;eKWPMqU%#ohWPenfO zZE&jMz=(=Nk-jDyb8WvA0!h*+W|TCu`HOmnDS21&K8AM(51psjfzL3-c6x>ieXCh> znP>Iwn%GCZV4Z4cx_LBuoh{6sMwqq#NQ?Ni=$qYNL?0TZnTqcM1TlOtGrN$yWdlbO zIK|&|B6FZFu3yyaU!&QjE1pI4j-SAUDI0i*I9m8W50)}}3c}%wkV!AknpIX$)FQl+ z=7db{@HqX!D!q;wIIH|UYoHFF#-*W39~#4u*!T|M9lTKLu}WtOxLHXes{dDD_G>V)@eweYGi%oD$l0mVn*bResXwGjH{vlgRXP$p zgq0Sa@>QBsGADDjTk9?M+^&1FYOIKPjib~{nBC8s#jOD*g106-nomiDntb?;$ zQdd_S)J0u+i7X!uW*Vd;+mU8swMi(P07@IzDr|pxW>=y%H0lV|veq5-TH8@ZI@VF( zZxViqlRJO&_ecq^+YNzU)DJ2^DLXnUr9wAC^d0&B<`c*l3aLu{j_vIcnXm)blAqL( zI<+u5i07gD8Gw4LSOa{sn7kdyK4pYXYnIus&VYQ&>jVC8ui>qZD`ea)^QyN`6yAN* z>ac^(C1=Gt3Zv7@KZ&p&SI>X|ZT7pGGXBR3r0)3S;#8?Tr1~uds}SbxWu;mv8>DAs zt@*0g-{me{BLKWRfmhz@Z)W2)m7If~o4gh^Fnk^P)c3za+85-tir3`Z>^Jj#t~~#h z7V>;lC}XI3enOs0!qN`D+#_$j%$J!wtGk(kqqgV)ao=+x4t#*qlJ^n23_$eE&4Mc( z9R5q3J)@(T}_kD|#m zf$6Mph5n{$a>WPfeAWc<2svsCkqS{FpInD@pSwo>RqMYD!nd~-LrE=?&?Pcpr1#v| zxQd_isaLd|KtY>|$A3=Oss5%Nnl4A4Kofh1kB(z*LR%69LOSyzRX6ksAL^9+1j(^Q z9XWDM@u-@L(ju8}CzVE|TZwo)GGg1_4r@O`C2>_rZcFNJ2|?@s_6_8ur1kugHtE-1 zRyO#xdJ&Z@ceZ!6#4SYZCdSQSO#7DaT2LfoCjkuAxnE-KdLRFcdaZd26VBiKSBSCg zKKf8L+v{%@a~#Ien&2zn{~aKtOMb?RnnNe;Glo~LW>7_p!H!mn1+M?MdE z;}bToOlU@4e@|}R(|&c~<$?vn^)v&KMa#}Ez0IYs<0g-KO)ZsXZkZeJVZuE|O27hi zdut%J460tmqPU{*`r;#@?b>+s z{WzDx)L~%>D6;j)!Q`y8Je@}??IpsjS+cARe}do#fk8f~DB2-d4EmbUvbZo zqcTUtDPwY*TCcm1#TpxOTK+EEf|V!Gs;CzkS|5lInHbN+JK|sU#!K)*ojj*y&&xut zj#@fmTVxpWi{;Otpp(xz@ney`X+M#S)dgY`JYFvo37G2-i}zMAA&Wdp-uJl@C`==a26m`j1_jxdV& z7Ipy6nw5TxjhBdwNa#)S8#!rp%OS6n=l&sUO3(a)O_E^sPtN4tq80L#Z;MVK93xWq z9BY!+3~GX!2BxJ-Hz3l5gUe28cpSBBU2Q%O;JhDcCbQ@cN)~U^} zVRw=nFBD&`@lvTRexdq8U-s%9Q{$m6Cq2&4e<1(^W+&NbIN_Co_^2120k~PSBIj~W z*kx9*Op6wqkTaXt9rWgg)ZboZ9*zs|`cseGtn}wd53c|wkz~fb#_W#zc)CbG1$Y|H zQ%KE$(5k7L&1CEz2D8!m)#9MqjYwtZNQVM2#Pz~Ca4e&NwKM`eTF?^K?H)ih za*1Fw0n^^aT6bsH`kWc!@tj$Oz}lW)j+4%SV^f>MZA~qjP_lv)s{-n z&Ps`8l#?utb@YfzJ%?dV5`ObTQk_ik#olDG`Tz_ji%iph&|8`wfR#TX`QexU5Q)*I z5fRXN>cZE7_qM$xsozr+KFwxLpViVYX5R#)bJ9;!dOIn(7=KiH#%p8fzQMZiI2pF@ zT?1Hcno}fQW<_T869`-1?9=;7Z)oeAf!@1%7wuz8;#gUS5(%j#{}zNq=0L->(BLX| zDG46vv5KT%oG=|blhtY7To=xvp5%FT;eC*$I-UBG!(3n2lA83p5;P|tH5($e)k9mS zax1wZXl3$dVH9=oQhgY+i)CE%7R^ecr)bCh-ic|60{enAKa>&DpWdI4_2~#3fitcH z&8_~XUy-RH|BErENz=7FSNWR;n;+SB;!W;g^YdeVVyYlA7K;2i8BjD&5D<*i%jPwo zSFLgXj(0PvTYBc?tPu|1HrnKQ134x|)|%Hn@(OL>DbvtKtRoQZ9WNCr&?Z}9v5sE6 zkJs-qJ6venMW57B=%9^w3^{5Yc&<}Vzmt-chZ=K~^cd+h^G3VQk*3aTd5v{={LP>6 znbkacdRR2WX5U-EJn^0bzJp(~+8atwAQ91tSzLZ?>h@?&C>0!_BTt?vRqefwXMFbt*u)Bu-ew2P+LuaCLjn{QA0(g7IosL8WbT^WWVRky?6I+2w30m z{l31h7UPRaTiWC$G*n$9=ZTRbiZWjFd}G`eGO_B}U*JdK_ijjpM& zTz-8&luc%y17l+u#c%22u_9x0@uuL3;m)k!Q9R_xgU(Od=$;xIP_jOj-RO#aNqW(e zJu~SeSCXe}nHm17-+a2#5>_K(h0!Um@FLTCads>>I_1~;#SmShzO23J7})si+-LT> zx?}D)J{r(X(-&L-xX>Rj7f)_sNo7emg{c}j2kRPSZJR8u(LEKNlphVRr$JUM#^m_m z>%kqIw#;sTpJ@n5Mo(iJh;apC8I2ioun%s~g}gQelN2(kQo3kyU>8SGnt&{g8CnNy zffgw-UjnHNE|7Vm&)a5(o4jLk?`w%oXSH31Zb6F1zMK1kKbPse9wns|JAQ>f7k0=! z=Cj}t;jhwpcq!N~{8dKigfXv#jvc4l%56k;)usy{LU!=4!0T7Cehk1{jaG?@=bZiD zh%5-;>}l~++%!TBt*kh8#ibs!4AI-q;QNZII67SSXiqTroY&{L&+*O6si+7a@ZP$k zq($pSM6%uE*da9xM#LS&fkoNS<<)}lYA<1Ka+f~NvpG7H4xkn?A3k@7XrROu%)dYA zY0SW@^Q~CFdim4l|2mDy;9Gp~XbV|4FK*huc+S|;OsN(s6;TgoJ~^<4X&7JYn$%)m zdm1w&%#5jbNfW8}jo2W0UmyEea_kz_Ju@TeVSf*4&Ugwo=gfyBrE4 z7N?=$)Hz4Ac@W!LZfsfd0pxx0O_>*kUp;VvQJuH&mGvFVPK#kO3| z_BdS1;+~Y0#r$%lEQSw|C7iK5o9Q$zC55u2@=VSYxXgXgV{Dm;e3GC0;`*84edh$d z7hI70Vt-zRx?`^B1sSRF45<>{;R-6snK7C@db^*hv+?FpuSM?j5nSr!;8-6)xMp@kkjfFt<#jG&i) zzZ=Zr-_t``jWfu-=_xOt86KS$dOOkSh61|j)D=ukBy8rOk_pOvF$;n-QK-)Vf_$IA zkASuB0Daz!&?glYlo3L^^VxL0{gdb=z6ojIO6p_BFj#^oP&siDRov>4Op(m|zqoI6 z(2B-Z6diwl0X0O|V04$XOfBmUoh=%cE9kR&^U6 zEcUVK>M%Y>-Dg3T%s%!^odh1BKopv4pJ85a5uN9f91LWTU<(-b;J2)BO^;Z1(exJQGyy&cE4 z9B7GUoY{gYrsTEh>dp9pc!D|*)m$eS%}xWk2PGH{jMw~^m4xjGNfFpbcF`B9YisIl zcrVgOZ+IX-!8R72qS?k*8v6!$wScq;m<{skK0wyR@9E}X)xETGpk99nkb_ctxm+|S zgZcy+80zFY3k05>>FyYKZsBSjneJ8r!!dddch!M|N6*k3oY-88_fZ0FYyClRuS$ix zUiy1g0`50u(5o@I^D6cd-1!t~tMBxAi#DTYG1KRL26P9~)Bi$?pM5Q#C0j~2&ifv9 z+!EHwI)x5XD|95Oo80W;RlnW%Az}IKR(lug7pL(;4%jX#cB>D}m$#V}Gvw7~^VP2q zoiN*TGP#X@lI^mlzRsiuHfu4(Nf8R;nO$rmQ74(T`l**TNhiC+*@*?(4F#~&J*NK0 znOJgwbBx~R@5>kmFh=X*qk^U5><3qo6R?_^qxPy(%${yW*rbh&(rMknkPcMP1x-=e zZIM9%>lUT#nITSOBZ8Lgepk)dRanW7+8MXzVprA)}z6P9+4Wb3ShU|9;tq4&SfCqLf>@ae z|KH3J2pdUezq8DrFhD!a0pagOPq`UnW}lm&d$$t>U$-du$kX?WS1s2|UBjz(FVy1^ zr^^GTt9zCN*XdH7EOZUZzthp_P*>R(!SU<{L6LfhGLfbof@w_Y8Xwy@RWLL2D&5Fp zCwUGUH^Ih^MjxfGcF2&@wTq`7&b4cG=d$hL6!jX;ts1ygvQg>XnnB2YdoF-zCn3cs+YY)!=9k$aaoO>q=#2i#6|rCH#z|7ZYS za{yBl;I=!!=?-+M@0vBPo33lXoGJCgHF7C%-uY(piEu=|Z*|i)xImA^I8QJxHEsi#I%von23Y*hbm+1=i+}j7TjX5UVw%M!Ari^1Cgk4Hmzcej4yev4ySHp*%b_H)15@`}uB}Da)Ehfz| zNpP3?EmicyuT!6*w&oF{+ATy?HcPj<%>;R~`ArkmFPEF;?Ag5!cT^UdhT^25(BGfY z8k{}maAa|B!*=km={rdH?qwQEmQ+&@oAjJ{W9Ds|dk`&ZQ;&cG+e|~E5E3W5N?O(s zk+OJoYmdtzCBaXX`Mp88xMvKC_#~-FK$89OGW6-Rl!D%3$u%AF0RX4Wf4YiyEo)hr zQv;V+Q>W@!-$?$V<~pbng0WqvE;@1$+t;i$SrsO0*;#!|Q5ikPyaMSHYhe(20Y}e7 z$1(pCXDc=Jc&In+e^Lz9^8dnR(eh_-yYLdy{UQuVYX2NdcdR)0cJgAqVBy89a`h?=AE*x|Fs*g zZl7>N^qXD6Fij>Pp#F`!CkuqIK6&DTpQfJ16GT=FWz@~xkaqmC$Zz2xyN{cMqL)ji z?}wnyMujuOpSqZ$@BkJyEs!+aN6s_?q~Wf~2n}?tacz(!+~}WTna8z+J7mpPA_8g} zV#a!^5Nnr3P`(A2V2x~|<+6z+4M%rbckZ$)!Gz>3%w4+1JiDMm;&j(fT?B&=z9#Qr zDkQoM^%!{K;$d4wd3tyep#Y})jCpyXON=$#tx8WTSwEmPSgE(IKYz);L@!^mhmeHY z*Sbq(pn;(arT%=0M>C~X$N$m<3DNa-L`|^j63nWjk>do{cBh`_nD4Vw#v0?TPK@($ zRsI?Orck|xd|I$1MD!OH?W3vVXo`)kTRP)ECh1$J*1nJ+ed}OUxU-fZeeRc8B0ao8 zMeg?*WaHY2u?i*<@=_mVraMqIFN^0codYMpyASF9D!OxG@w&3jb2HV&cQf!!Y7?(r z?PVRg;b&xdta)A8g*MD}m%J0paCK1XajVqa0sQy{Ka397`;BR}Y8EX;{61Nv0rnuK zbqZ{QZ)E|(1k}_Ex0%T)#cz!6tYHr?nkk@pWx}2c?I~`B;MA41&%MNGZ{6XdL$209ZH?Lo zaQqC!ZYVA&^v76NTQp&xq9jY>ZiI|z8b{T*le*TauUK=XX9lPxl8uM`auVZ z=et`ExPWAAmYc?2H3Wjsa*TSrfj1-K>7`i*#x8XnEf|}O9yQw#q3lQuaBwPpgX_{-})#551L4)6QhwLGiyIeTA8 zJ4vkZ#;Dmxh~{+a)QBGmz}%&|FJwx&K&`%I0yJ9HM9LdbRTE7jCFd2nMo*z<#;drP z4)J$Is@0I{ZZ_sgwGA5`dyZO1n6)yf#j!?}YPIB_GW#VhX8A`_%YQJz+@n%HDCPY- z`$7Ets-M3bN4dA?EbB=;&V%IOhU>2Ks%OD6R)gGS=Yk$fXiJ{2;?sI*w+eux(M%;~ad{dk{Qg9P zz>#pmk&4l(%Bnk3>aLqAKu7a5Z%SH9fL+!?ctR)+Y5EUUSs1xA{HYF4{#wN;TT;CK58bITs>1reaWCEfsP=l}{}b zOlWghLhmQlau(lIm=-L>EB1 zDvz%-E>GZ=V;kF=aRI!_h{zm|F=Fw;L1`gZq|R;3aYtsmjSJn=%WC9C&scXX$GFH{ zHYntd;0GTW>xuXx7q}BjTXR&v%BVADdm?A@&*5O@3alEB0Olx+q(=gtRA@5HtTX>U zIxvV>_~oA1FvBytW>CmiqrSs+i`dadPMIgvpQM}RZYk4k2elVY9vi z&C_={8x+nR>UWGEZ$XR(72_inRV*WxM|;J{ag#5sZm$^Q;>?RwlTKRoQz0*w91W4lMy*4TIDexqzi53zVzi&1}PW)SR?5OecUFP3WQqqcWw-srH!ufIj$q=ZRLZ~aYQP2^G_PLD=sA3gvZ_wXc+F3j+6>gSmxU_e>85qF>bu9`vJzd z^6Ogih{YZ2&tW9yp>5I5%*`iY}eYX`~<`x#s6O{cj=n@l)zn5_6NJ-Gc!BsLlp-ikp92uzD zQR>sS84EsXc44us7rgxb6Kk=sC}0~8PU(8(Dq&lQ<2TsQ zt^^t}Qe+6>Rj~+o{P%6RWCi0GiDVhnR+2x!g-lE?}F0lG0DRFxd7Ij!&Gh%+Y3*q zht3Il1GN&Az|LfL6(w~hGv?)dM<%mR5Z|PAJ6qpn{7z;v+o!0Nnq2N|p#R@zGV`To zGV2z;Kr)&65}C|=@I6+xz7sfp&1`)>oyp8cCNm0}nan8HJCoU`hlRG3uT~~A9}N4| z3{QqE+0y{3Gnx57Uh@1D>8h^;EJ%G=u*jtHo+|bqoPGsD^xk39uhcL#)@INdYlchu zmBrF`5e>aU-`+qlbmm_9oAmFX+$(lY&>upeSn@E>ix<&)GVRotFPoE|Omw#A1ExKZ ze>;PUqP$zSnRAL1C{%W&K;c&(DNqJ|s}v|2hE9RvmNw{QYEIDP_qI)m?|r90q2d31 z3KZXpdf)PZZ~4VO`mlJBFEs^<{QS3Y+*xHEq3dBy7cXGN<;lVz1&S|CRiQHxj+MF# zII49D6rY^}#b>8L;f+p#;*%68)S8~CwW3a12b7fp#h0$Wgz=LUC^SS06uY5fsbZ!; zp&c^?3Se~#6#kL|g?0a)fy^@2T{gv?yX<_HacrdFTYR%_T~eUf&EG4mrNDBuE-6rG zd@Y~a#`zLCK~LWyB#hY^izQ&5y9)k*6(=479`)6SYzn8P+|DG$g!GZG;c_-@z1sf% z0rE8rIyhegr}9;=KpR&<+l+l$2Zm6AZaZ^k=?Nit>*bdu>7s?YHxvJ{Is;RF3 zr#@Xys%yA9wWwhh)ol3jQdE|9^l4j3=0&{Ff&Ir|9MufIS8FsMdR}y1UM*2~2LU@g z73@e8tXsJCwwML>EE6n8oPgyh-mEq-a0l26O|T|e$2&7|ls?7CllV-@67!%?hC^lz zu+ClK>cx2jPVC51zb}--0rH#>Gv0b)r<7Iuf`yVBjKM#>0oLB~(bz1q%pu}?r9e*R z9x#9^Y;5j(kdfXYO*-58sLv$M)QC*!N6;4Qbm#1sMv$07bR{((WMD> z#?+~%KZWmi37rN06kY#35MT8yiy)z~N5?ccp<~MBa$>mEEn24c99kx1(O$yFrQVYD zgbsc^=ve}Bk1v{+*<7ENy|}DZRB5-KD%a?Z&y98pF0oNcm#*(_5d(!X1rk{T8ZXh3p4a10S$p@^09-LNldiJ zgX{R$x*?JKVs7NYjr=y+XO?ZqUHTtrtL;*gTV9@va|-wRyE{MNeR2EiJ&|QnICrUb zEnUa_qy|y@;ZuzLc_|XrVbw5xst0&QKnsbo22=a!7XG4bdO~k@!ly{|Gi@P?axFx7 zT+D1gpQ9gLr4P#2;3e_rrQ=pWvTG#Bzsc4AlkS7|wx zzC>#>9z%nMVh7cy&p>D%l$K)GTEkS2UZn^4!3BDNgzS*ftA9RrAYQ5$S7@lAUje|f zp$F<~;)8?ehtQabU$Xcrn+-`-$_-GDU^KXQ*Yy*rbt+&9T|2NY57^L-c z)ur!R()#z`wx#u2*~SB4WRY49xMS%hz$%^d(Z=;a!m(Pw7N%KE$fr< z%!jc&18iy6R;MaPM;ArSrSIz?^|umM#>^p>tw$V8uM}aXK;USlKxl_{`?R%+h*YVl z{qzDGwZEjjzEQg+1+~9owMkC2-z8D|1VBKoDBm2I9qxBv_C$X4!mO89CT3rHxEE%3 z$%JoEHNX{ZqQ-1MdYX#abz3!NPt(OL%$~{*2WB4wl3=#K>{1J}BmQg5=8JORX%s^2 z7!$Mo1kQhj+55)!iCK?x(Y~rNODmgY?TF?{F#C|kELNip>SBOIDu$z9m7Jg(R0r!u zR%?;`*uak@PDjXUZRVAU(`$e0#3^g+LHV>neO)d%<@TPmxSt=ra2k9=_-^$%9J6keqW_^Na7y-6)TvSvQjZC#ULgI7S6sTs91NgK z#@0?yuYpW{)(apvKy5&OFab5X)aUA;4%PF~HvUxS0cwJupe=HAV2#jyI+AT>gPKWc zHH`t_VZ3uYt2Yeh+~n>eTSR_tIgREVRbl2FfMr zw3T*s-&?v3t#cp~Zc^v4gtJDFn$$Vm2JEEH;VvqQY|?WDqeACEWrxmzUw!Bt&iz(8 z2Mt5(9B#W@FxOk>ko^8y@_XMp2O9q0>m0_cs2{UDFlPD1V?=MTXiTckL4NkqIgHUd zhcTja7=zA1wz{QrIM>oSjInhNV{DxRZ?w)~jOZMwwem8%)`~i59Z;6eVGKHl8K%yG zhR`|K4c#PFOq~Pmm^uf*YMldr(K(Dcl+Ho7E;(m5nr7o7u*A3-y1w!c18e}`;)UlPtaIpM&W_FjbW&<8U_Y3D)T?Q~?e<8vP@Wj`SQs9T2}fk4YO^p@$Kz zBO*K(PW4sdRKKF%@+$9&>ip$Z1KY}T(x%zkd0Qf1yr4kygkoE;eY#XNE**XGgk~k~ zlvcSH-;|RUItHuRiX%qXc;{wvR}}%d)#xW5f?Y}SWa;-WgXT#8Fa$u0@W?>nF88Jr zns;?Jt3adYI8c?;?Jp zH(wXQUE2-rxS!efcgY}}z2^iK)*#0k1Lj|K2_pvEVmFwvk)5UO1}6c@VK=DJm-)mX zfASlgyz|5|L-0Ybky}>fog>PuSQf_^r>xdbi!pzFQdK4T@C1M>If#+~R^*bs{l5c% z`l?R`@*nKs1e-If9_WW)bGTTkEl)q82fZy%zc^ihe52*5VN3>^jK>7mkKpMlnhf+Q zP5H*Og7Bjvucbw_JdBDZqJ?=&uMtqMa~MXJ$%!1T%0QCk8V!1&J;klB_XM~vc$(aa zews4mM9_t_f}&w$U0S+!SO}tgyk!b(&D2xF?@b77@;jh1A(y61Y^qU^ z%~)*hTAhK+FS0PM;tnIAsUuKsFlO%;IF1pk!D0;BWwgTU5G907x1T7J(gSD$e=;If zB0#z#RX)Apo}^(XDFCmHCm1{1uf2%PR_2R35*);&`L7Fj7%y8u6V1Ot>pwG_FD#n(#(BOW0Mfak1~Z zJziJ0h;)Qj^p>^eF1;TN)N;#D#2bPG2GnAZW{l=dbcU~14Tm>mwN8_ZaFszvJ-be+PepMeBgQS^aaADQ|4% zhJZW^n=}rmQf7g6%f|Y0mo>8ExzC)~mGHUSWf?cVCM1JlHD;&>-qVbwlRrJcE6wR{ zf~mYXFz#aYBMzznZXd#*qDW0Jm4n`At$3JDTkFRZzxhX6@aPs8lI#}940bAaBulN8 z)hfqOoBBH?Y-(XIjK4#Qv?GAbvHH0bhLqW}dvUX7cRYZT?u6Uj^|I(HZF1VCvQjH+42V0rITkQL zcuRMLR6$g0{htI1Hd7?g=J@8Po}|sq8>qG~yvTFFVUE2VkyB&B-+`L)S+xOiDQS*v zlq#v_*d6=mT%`wx69RU2hXzKbfCYCXpMPQ}EXLt9I52X8d>auuB9b4=Aq0o~n(e`_ zWQxc5B0A1(#u4;jfh+4D8cj^V#WxR3HODqx%wiLB?7)OMc3{#R`w?GFbL>EEjva_O zmV%}^mU6w#u`e7J+91AK=GcL~%&`E~=GY~m!6Dn|8C>$JH3=MnsuC@*V9{KS>JFig z=31Y(!S$ii*0(7x>X34nDMlcxloA7@$igDw=2ea&vDJo zmhh$fW3QVfaQ%vS2q%}snf8-7LPmL5KI&H%@lbD2)NwB8>Tlpre)#H7+tu%LR`)bN zCEHcp(T!c&NGMax2wwiNMKQG94RhWm^)Z8T*xg=dO^7+K0tead;1C=YQE@f2aK743 zev7O#QVe=uZe|tw^C9ux=t5D1s64?@+RV~vg`r_(6$Rq%w^S+vg=6-b!hky8tWOfy z{pxwE{^)51%+2Q57#NADzd-u6VUGY3#~46d;Q&#<1yiUx6Rd5Db1V?XCVjQ%6MGTk z_MR{@sCi&wwH1^H`_2Zz&hOg=JDN?Lz-Br$n|OwWV__3d7eFSPIC{0sCjN)(StgqZ z?3lowoP?cmK02U7vYUk6JNv} znxu(!QY)1venH#+_cU>2DowoaLZ(q@;>ZL|9GRqvU-Q+Zi6b>l90^UNph*)c*PAB3 zc35ade6?ue$X+xNpqeKB5HuucqJ_{O;%jdE{G8}O=$>DuB6KFdlL*a}TB!&+W30FA8x9N$b%@X5h1{e<&?dqjUWal_yF@9%?L!Y@1#<$jvzvda^I6X&+%X83G8=FXLu}O5PUc3b_H_KED$35L`0ojf_ zBa$H07}GyT>t;35EH+GvRk5~AXqkb=v{)tsH%C1X5rI+1jzl-4os-3Kp%3JU2WQ}3 zY9V-lZQ)yN%+0khcdUgu2|Ps*J-OQi<}h>Y=dd4yyHce$H@uvWb)5ULP+3oi;CmiI z+m_|b4c5gj(*kAV~>@ql#F$Qy3{dNiBfB+z#0S1 z$F1Rbd8tJxmekz%DeZJ)aUzicw?T2MQ*Y5Uveh_A?*0pcSjm|nH#H>t@0VZdgEJik zzUj=fR2mw=S&Fpui1K215)M$R2Cooe>QiMLMXPN&z}GxM+Aq`X6Oy7<<*x=Qx&zsU ztE|F1w^aCzZk&Xr1>NjUwbx1=B+Y7PpGuA%V+0%k{`qPrYGmCit-S{1L~9Mrm#?L@ z*Ip5o-B!)VM5b*Q&Q7lKRR~Wbtf)_OCZq~of1D}36Bu6ZNRfi}J^jLkjIdo*)tF;9 zs<&vzrH}6sPKOK(JA{?c$qcJK>X%r+u?Ig}pbKZp9o8M{rzT(=-q$9X3iGybmRWI! z`hi)o-K;1Xn9wp_VOGpasmQIu+@+^vih$a!hMU#iJ_;Q4pwr&r<~>M~Z$9%|^$^{c zesa6{;^pERfccJM<`qHPH=u`065q}@VA)jw5lj}ruH}bLu5EavUUO>t&UG^vTOifo zMpDQ0Q~hx#idNsLs-OwH7*N}A_3)I^6OPp%n3J7?{Q+tcHFzLHtlV+FQ?l~@;bgacB`-1-o)@j7QlDO*mt=Fvd z_4BVZ?;6|s+vFJ3P_sHL@LIvdAhqrt-G{+o;(m3*8rE1{w zXaZw-tYoCaIR;m<2_;{=yutGY`1EaJQeJ%N|RfUk%K>xafCulvDEAnn1%yrq2x814i&a$M z$O7x^NvH#lO`KEEU$ykrljGEFcmPUIq+68jk3e+xoig3r@!P7~0;?RQpP<)(Tzw8+ z3EzSo))Jks#n%a)e5mx5`deg~c01%Jmcc_%8z3LA2mQU(QkOf<)Tf#J|7eKEnwPQ$ z*;kua8Pd93ZDuE$1oU_M)fQe2Fs!%@_v%*?V*qM(ry5bG+rc>2rB`fFf9@h(1Gw6u zMx3jgy3d?h@v4I8ooe-=L*Gh{NdGGc=bBtJ- zDY-wgL5`8zS22R>E=w0JbJYby3wV@>CM|dAZL+grlVpM~uvFL%Rd-qw!6~`xU@oML%#u3d&{*6^Q5+8L8FE299 z!jpX>hXp2tOjQTxgR@MBY00RKRez*>&4l}qjKdn(%&QxZezou3*1Jw!w6ifZhi(Jl>{R9gxiav7w<>- zdzW1WkT(l-P4ZL)&xes*gyuaehqp!aR*c`k*oY^^I}+8 z&xh?7L4ykft`loh^UcM@&*ZJz}fa6gqzEhTT!%PxAbY*4K%MtJ!c!;P+)u8=>OT$|HIhqhH6+}Q_6BJC}>_I1%jo&ATW!7U4t>}hb(TqT*Qt}ZA|+(GblQ#(Ja>_lKJa@vv4yGLp}I!tGc?U- z(th(GvktADYLof(O!KRCV72GyvPd(I06$>6?5o_RU!!A?Q~0N5#q$23Lc|iTuO`Hj zo6K)7mtX0ph7b2R*Ad3lLDrBRplp3uGMzw-3eII27}=+BSgIX&S74N@FR+NIWgHS-fT}o5gC>ub(~ISX#>S zH#SBq@%ck(PW^`{)Kf(!{Wv!b#|@0Smgvg8nCrStfK-8|nj>qyxQQU4)ck^!5OpG>GJeF6)n6XJM;I$c#MV#Pu zJQk~vGak!itCWt%;@8m4cq~=V3jfO)-X+_KxwS&FKvBe|MZe6DEGL=2lOb8YUtgj?z`YNq{C)e zSh3=sdWii!3LPN`bMnTM$8grT;_%$#gu5~qVVuXZIznD(= ze%T)M+t^n8K39^}gUl20T$nXfBp&r!KnO(khmPm+Lk%)tmaNR`-|%ZtqgJwXosNj& z2BZG^rEq>awo4A}7gxGXHqqz?wjJPQ6Rlmhr^q#*V}t-NBl-&P5(JPAEpj^#^eH94 z%e7{A?Eo)LlyC-k8Q#2A7UN@2%3{=IyM)K;4yZZi0hrF&qSPN4M5P3WNSw$%$B8WU;VeB3BOLY5H0$e2r;k&= zbXs2Udh{CC&ed0-t}?Qd;P8+9)*VKb=4sds(`0wJ)oZRa>G0XoVSj$OCmtMITImjr zDO-b_>z7(`Nx>G0Hsz-dcuUg0({gPNtJ}oh6v# z=cXp!3$56w*6>K%5?vzVCmm{mB(mIL_zO`M=(wQTT<%4$*`WrSO=SxtQ)~ArDpNRh z!4_J(JjqluN5f|Obg7TrvY^+AHs=A>4n35{zaGy{k<-#C$Ez!zU}4*q@j!D|J4@-l z$3;`J&eD{~l3GjC85)Hv8@5k_1r6P(k8c<0bzz@8>Y8Fb&c$?ihkBo|W5=k)t@Y)zS9#K=~H45|X zjjH~O+K6;1Z;k3^-K*<#7n&WL+r($K3FR2e6n2#AZ$dei%EuZ0jY&KP)Tqo1uA1*Z zR_6Z9#M$vv==cj%^^^K$l$34$>SylsH6`zuR=DI;-g!U|-~{1>sB^43 z|54rN6E%bPTs*YJ@V7YHPwkBn`ildbj$Jv*1X~Em6NUIx3+u|?+q#(79?v{<8V}KN zb=t3VYsVVZEgC}?!T?03wNMSDnU=q^^s9}$>Q7r@5*e!B$iyHS@6h!I=~p|nF@$5_ zwW0ce_@0SZE2eVW*LtWN11lw}-PdA6F{A5#E|2uC{@=Pc99fQ_#WaH@!eIgCV6_g@ zfZ-uHuX(y^rMUS*9rz8Wt26kA1TJ$18$11wfy=%z*ckT-Xg!v}H4bs2I6W=+W#S%( zsgJY1njiN#KI&Tt?meXx*-t;xV8eMaGXi$wp3lWbEB4k-rGG^K7 z!Os%G%FH&Zi4s9h!uh_E_1CQ*QKLS_n|JDZ#*A8^@zNc)jk5qa^rbnjz}_r8uh+-`t}iaR>z>0WNkAei+=u`@Q@ zp;7$JvEdFSZzH+&lDECS5+Hh`PpRV4fo{p8a6YoniR@(1= zWupg$<8T3ffHzuRGsXBpAjqdarJcCn7iX$JHkY4IMSzBwttGG-2{2~JwaFA0&vQbq zo&F7%xKqZSDpAh@O7B3r^ad_hF;9y+46K{5onitq|3(mm#iE-aIJ zg93?5SU-^}Z$6k(#jW77?J74*m4^~lOoah1Ie2FWChKdi>2pXzkpTEt0k{-^a-|6- zSiF_)1Dv`d6$U#aKy=~xe`<0%JgF)E~~D>Pc2 zw=qOzgcw?OAb06&Pp2z|a9k3x)=Z)l6fj9`vX)8kwU?&*iDH2(4SQYq)X11nOI} z(7WWV*$Gg6!F2N0>_nPP-kP04MKR*0f5lk2HA`j3tyzBcaclPUZ*^-{!_c>8btp1A znHs4p`TYWn+SaYwzHiOa@c;hS?C=%!!~(8)xV|+zTyD({ zCmW`8&bl=V;nb13hTFGhhugPid82R54wqZA)H+FyO(=b>bagEtB~lj+ zackCYNJ6Yzw`OU_yfq70eQTD#+?pMJs9UqTb-6WbH=ik;HY0TeQ?7eX<&vojxLU)o^sBoFw+GStg{9TeDYbfM)`5@xs&pf4?<*HUs-VxHUWX zUN+8QZ_Q?|huU2P8MG*;8Jp@94ypuk)kVHz7SXwr%#)~F#d((~b-Dmbw@P6^w3HFu zYTH4j-eL3F&D|ta`h`Rhd})ivdQ702>I*MZ;XyrXO!Aer&KXeLS}ux@yEH+R_m~rU zCDS6V6;sPW&1psLtlCC*Z6LbPO*|XP69w6P?E|Pgs;5xl^67=~!8(1E2=~J-hpM=D z2@A6W2Qs=TR)*Tz#tal)#G)fFuUtELHL@_z)jk6ghB$9JNp`L7ZXOi9KKe^f8V-16 z>*l+n1!8A47J7+=OXgPK$i=Ad(1}`xg8yt>A`GJ{laL|~K2BJ`8lUi>tLOA9UR@qg zKc`G;0c{8o9C=;s0mV(Zc=|%GLw{%^5j|_N>6K=HDq$hQEsX6f@-osZ`FlNo>C6gB z#OD>Lcj#miy^Tf9*U2;=`!nvJN%GX!yx1(~^O zVJ7fEOc|B?;4|I0^)B;LNM=igoUH!SbGb}YNNVuYGOt<2Gs1I@=M?Y zU=U@%s#udqIc8rsMaiPCo0gZXZ_K!i>w9}Y$i1g^@3sN!YShwuAPzG9W8S6e`DI^) z+>M^t1N5w|q7YZ??s|37m8{I^S~tv^pnQ(Hi5=zXY6c|aJM$vD}3C96H&hSJp^-gXW4k`k1vMt>DJw6&9 z^x^1RYrICc{we7~mhG7?7i#w7S{)zkBZ3>%-2z6ZQShk6w6i`%uRX2vOWtYb!({L! zCB&}qOs{z40JlAB49&94f#hA>L_ktA#;sdNa7}2)&0T30rleU0?!e0}-)!=ztz<%- z0iDBLJ{dV$QdH+2wS;Bbu>Tk`%Hu?={s$uEWQTN@OxWCQC%H0C+hz}?SI+)8w;o+m zcrqnob}YE77i*`-s}q?Bn-r?kQ>Qb&8Qm46rwgbih`phc)Aeu2A;_G%kQv5zTvYZY zErGzyNOpX%!6TTGdakR^laeXsMH#O> z0o?fDf9>T^3;E+oAL75Zz1$ml>b1|>%Y6s7|M~v*^1OMMoasv}83(rHb{ttJpi@S+ z(cSu~E9&kDe{_D-`>sIax_TtLtaYv{4j1-D>nF#j!zb>UR~>beor*N4<#R6Ja$R#d zMT^@4(TV5f6J)=U`S`Pb^_J@&tmP>8hq*E~ja#M{duqaKTGW|n$k0ttOI&jHU^)tp z3x8EU=UQV;tI7g0=^!uUlTJtLRZkGJ?Wv3xE_22ixsL)k89MbpK!{ph3Z{ye3+0-Ec}MM zsvyc71X(bt(dknnu2$s=?>N6cGU1xPnTYjC&Hmh6xu@))) z89&rrYfK#KWx4|HONmBq;I4D3@qWpBL;g|nzUy71DEiCe7d+DVcI%pKqs{e?lGQ`j z7_;0ZZLY5~>t1YEuAbI*ud&+oRmqwm?Zzxm$!gb^neWUl9O~+BZ5w2?yY}*-&6wpa zS>t*$^V3a#ZFOyFU40ZE-YRJuvf7yCD`|JVoB2%ctzWu2QrgJVZJgG2M`f=z@^u?W zR*ZPOR~rSojr5;ZeBG;!LfuBk{flSyYGbHw( zv&J}@Sn|gS9p?F^3geL6?4)C}ZqUP*b{P>$Visj3`-?`QZcaeB{!50o06f zedYR6P}6hkZ%^z6-NR~svt-SZ)z{RmTq}q_+Gr1V$7$fy0ju>+7=QAqy9Iuh(Iy}M z!F&!_qqoA(y8*gi8+T1)hcwdFn?m3T8@ba;`5VSdIku6ufA!--}L( zboUK8&$!bYJq_Q79cUQ62p%5D3xJHO8BXmaI(FT9?~>Mgew3CDlaLYWU!(nTV4pH) z8tJkAjrH-tSHn+9JISl{pZyLIky@a@+10Nrol4VRslmS)FuyFvqWl1t8M!Y+o_f}u9v>RLmp_ee#^Z@)HTopi{gjw*$tNXL z3T9pu%8Y$r1@pXKe} zzUfixf_&RpP&NTcE@3RVAFj&gX+^Zi!H=##c_Ge+*$NL!WD3b^HbnZ|N@?;9 zG4Tfe-yTWaDl(4>FvD^Ypn*$tEGHwR!VBF*{=h=5MsrO+5U+Ei9NMW?QxNTa^RPc+ zDvNF8`iV}o)zy5qe(@3!o`wBy-u(x@oAaRYVvq00lJ&FJ3%YC6+e=c1c&@yj`%lv% zQg@MakbmO-gFQ$I7IkRHoc?=K9k%5j!*Y#mb>Gd2=EkbNDfSX1FIu60P^7OQQ9jjL?zc9A8X- z3aFo;x>VJ#k_!ZBR#0z0|*d zPD|Y16ZY@UM|BZrNtOD0a&Mak1!j~9>Ao?)`6byLFGAY1)1vf3wgzs5M))ZS_#}N~&qH?&ao0FEf?L>eVe& z75j>FvrlmL>dkY^ULE;@^r|JQLPrbx*iUPoDB+nx*; z*j7&pdG50(-q^r8l_4eld2V`wKVDhLCvMIXr_sqOu#pmO(G6*|^Z@eJ$@U1P=aO23=2S}6JNywagghwp-;yVc*KEQJ3cxXcM? zN6*t6?cA^x-PbNo3XTSLAyFRO+(!D&lK2A;JdjR?zHBaz1?p8P7L{3XIiB%vHVZHG zKAYZKRW8XRm=cd#MtRe}-K{g$s%a_Aj=7#hC#x=}rEu&>AWG2@c2Pff!L*@2 z^dUz`FVKe?)6gaHC!c(>KVvF+PLF9Bj@{SA^A9^9-BG;#&(qVZH^=8FrJaZ4VOS9b z#(S|MhbfJ*;9Hc&0?@m30{e4e2~6zge*^X}q~t-nxo_;BU>Eg!xSy_5Bp-}@J^l8k z($FZhSA~fzzp-qNb)AW<^ivA%pb=! zIN?opQeE6@e+M%oYznN~`4{j>Lbv!N!|l%yhysOPnVn2x>eoLhewBE_bF+lOin-D+Bow(2NEf5kCed@>69ydN$!;^`+Qbhf*=+`0 zHCOo z>s&y8YFj_f02ik=NkAp9Dx@`eU;r}oMcDks@0O|5wsplbOYNG!)C9dlV=&>WHK2T>)$C5nJS7 z>8r)H5pCO8#`Z}yF$t@e$fq1O5riz=&?1(%7%!a2!w{SmCH>;=hn&t1G)nb-4WRJOwy z3A@id5EoPP#_QA4@Paxf;RPjgtv#XMW98rpWwfhis#-2$|6%=T$G+R4D-LCWW#up1 zo4d3_W_`2TGe)FUi3O$}qf%!puWNb#9`Cto)S=$wK^(f6uK0XUe7;*yHfBiv?+Cwu6Lp6JwQ^Z~5RhaWEfQ0AT|g|Uv2&oY zNc`49`2(Yqh4ML$d{Y5j2?W_{f4NTMV=#sBFf$ghK5OcAT4<1e`N48YDy^8!NG)2? zDH+==4Th+UoQ)4-Y|?m08t;Q@m{h37SQ{=(i(JED=23qFTEdm1F|GL)nbQ);wMA9t z;?LYCRT)Z`EUI$d`h3?UoB%DVvIdail(y(omdsW_t+wysc$$A9;JpGqxnz7aAxowQ ziqQ9xDNHPxWdhFhD*T$M(MzTl8rk=fdD~nv&&2d~Hd!(cQK_@VS~5T9yOgb=R#dK0n`w^zBn2%Y3hgdQ7M6ovZhp+Xeg|E$%`88f|%$mw1m$ZEG zl<}%Mfw9BVCVU52J<+@F1Q+U$(39w-pmIGgTC(faZomA!LR~Fq;iM^Qr~ZA3+OGcw z)K>j>qS~ncR;ji6?|AhW{Wo7dr~l?n?|g~}Q{mxm9=U<3-v%`_wsD(ZNS-G$AUfL} zy~X|Lqa-iR3q&X6J*s&QL{=deggoF~zM2mkvZA73`8dK2dBSal(OU|s@u*QXA~In_ zboR*TEh9CA@su9_sH&nk5TX@T{H{`^{ESvi<@;Rm(t|QlQp?Y8fs&zi zZ4)Jf`Dvr1pMEw`@-_FXq7^1ecIjsmB_HZ%jS_VYM~01#*La_biZS1e3JVPZ&@e;t z7^bQd5Nf?;O}^l7hK=0X~HOJzbVgbso_YovInBSK8#U>z&Fy z)oNey0i0E+T-M~#^?Y^}e9!+LV>w;~p@h0coS}^20=;S?J3{5($P_ubA<=cLrQf!$ zW8ihNWgX@e;Ob@mIoGnZS2%Il7Uo5o_D2@xM;4BcEUbzwoETXch%CG$vTzDptX?m% zUth!0S$KV9;eyD*TO%(oX5jVa)|7Rl-skLX5Nwb|;1T-7*@Ll1T*VzqdM*HqLyRSY z8I_}#wM1N!l8If_?(dNmnR}lx?qv#}sFzL_|2&5VpITv3s; zeB8;gyv0rNv=tRTo`a~K&2L2EGI!gfdNCHT;R33S+fv57a$KOi;WjQhu<8CJuVCrs zU&7ln1XA!+qhcicj-xV@==nIxNKi*Y#+&PSNbZXj!yjnfk>79JaASTIwN5Z9hO%c< z%U`a`)2E@)`By+B)kxt6g17ScE|0k{bkqD5%l!kCob!vD2Bgiqk~v^Cz!XimGTd?n zs##-Xwoy^!+MEg+<_$XS>o=~*sK}FEOt{juS-o(!tdO4Q_^}zpgO5x6(4NpA1u(;# z=MMWZ70sVWcSq^riIu=Hyp?ghXl3x|N-KOIcNht)+6qjP_b3n+-%^03Y(-^m>~v$k zq>2DbMNpwsFxS{%GMSHE7~J^1>HZ#p zIX4BSMe{0Qf^f5s<3Yd3Q{0o@)Wh0P^UpHT7aW@*%c6mwtbu5-B12uFpC{_)fPTJ2 zKabbXQ}pv_{d~QC9?moSenxbBMaJ|2V0VAKi?^c_Cd&MgqN zC2bEeUac5SQTnE6ARL;#Wq|Fih=i7)t=qzv1XY7izC=#Gqpzp?7)?a%*XbZMeJgA7 z21{TgeQFk!(nCJifmqCF>Jk!ogf3C9ehYtK(!MV=zw-mA4v^GMKupp1=n;AA)Qwa~ zj^?xfUg;H}Vp8cv&x6wQX}UdqB4g#yu`te}$HF~6C-OtJcZuI4xQqQu0&LKMZfLIE z0Z-^N-Rq|tkuTc-mC|Jm2T)pcJ{w^FwXSG-N?%RRRzuUEUgj$cc2tI1#80Wq; zJAV*?IH}p0Dp2~AY7ds!Pp7P~ar>_BoA+)&bD7rsYeDF3pn?fBb_Jr*iPVZbU(Ua( zL&OwW9-CC)pEPVs#P6CCv72|RM75ich=={!mWba2_Ms)>vp)cuEfFshx9gh7GH%Ta zE0eB17Uoa)!xWA67xffVSZ9`sKQCorVMU@=k|l;7&f9U2j9g3=!NA@h$f>B?ne~p~ z-_ky(2+I=mIj+ZTf{#Bh{nDMW9-kF3dg;t*0AH5i{E`5C0MR)r<&mCq!$R(aCwSj% z%@U%0(oa)}HV0=L{8J?9wUja?Y0Yphlj*Pp>bLX;_r|W2vm+`~WG<&vv3e8`Ixm%v zTE}in)<1?#Fb84_*UtbhYBoS`wQeb>TgW%DuNqaCpMH6^-&4m zERhhdW2>yITdxIArZVX5_ZWR&%AgR{V#m!r2Gp3Qd`oiEITPNe(;~U;;3mB~R(kS? z!)3arZb_G5pS{CH>HR8K1Q(3OkWU_nT%C|Cq_a9)dXu+g4|e9zes%uo^bJp13HsKf zR#Krf)HAR2q>wfcYfJMu%*@326dUuiveHfwvCHpU;`d6c;g;<1j-GV?{))0t&zx5= zj$=i(vQt>ayNHd+tt4k7fRO|6OV6jcI|&nxf@37F!hZ{ZrrT27j2=9+z_f zjvKgyEj;uMTs}H);EEih&FL8U3Y@9Q)JAyRRC5mn%{#V7l&m*eTX(nuYRL@te2U|Y zXYNkZrzE4u=~FTTDr?I8?db)e%+YoH*3$?;zE54bUDhWVvoJRrn-gb4os!*ZYFwPY zQY=__TJ9Z+8l&~2e6;;bHbJHCiOz7#vSmeX`Uxv?5wY8)2;VEL_b>3ibabdwfF>`- zuq{vD$a4G;LKeQJJ556OsHe_^N}|1D?2vk51kys9+B{lL1dsY1!%C4jR$Pj{knCAp z2dMJ2rwwJOq|K6)Syg%QNL7BMs$h9l;qt1JmRFs;JTN3uH8fIHl;l0!%}b;QKcEL% z9BI!I2*$!9oY>toyeuBfL6w2f#vQWrr-OWn3HIeE5&sL+zx7|A`cVJ%s(1O@o+ap3 zUjxyJa|ENi0b&bAyQj$!;1rBJ%}+>Awtb(TApduPYQYJ_Yp8mN@9}pVQb8>KexaXAIrJejT2D-1zPG7Q5{>@#gbv+esSGys1 zNvyaZfrfizBlVBpm>0j%r>=y)bxNjy@EUJJ3tz<7L>T-EcXa${nPuhYXTw%LN%WU% zInwmGAnJ1BMrv6=UvR}1FiSPT2aCfpp#jzR94+}pPC zM%@Y`QwXl)PVg9;OWsj`qag7q=G2Mq^^4YzT&}i&dS?WqR{etKR|WIJDl6DOtd0y_ z06!fY0f!SSrfhWlh?LIC*-K|{C1#3IosZBNN!N}9R?&dk^f|-aJWgFggJm6a?wLLV zVcxl=wDvZP>psc-3b|B({piPQ1>J?L|FSAK>f!TQf^Oq{TrT7F4X)3!Th!`f)9}#j zZJst2!3;hS@I670;ypbbFFWVO!U={g{ z1r|B4&%R44y9a5(&MNj}o>SY2i$ae3ar4fkADgCk{)oTHBSj-XfXw=C638^3djT;u zNy6ZI(DK%>a3--aoqJL9%BJ+AJxHeT9YZpjHBX;zAr#eqEF*NeJSoSzIi!osE_J4Z z5_~eX7bVcGGyPypYg$gEaN=+>yLKoyfRmR{Hhv;*0K@O&jILMDBdVG%4N*6~4Sjeu z97=fWVGs2d-crh@ijcc04t?$|LNW}*J%TtT#XSddwU2~cZafINDI!oxv#Ie2o}qG5 z9!rA8tKn9GYfe~iGrTB*JS>-8(OdAr^6zI&1<-IQ-<=GC%u}9VPW9W8r} zVbrUuxCsP1m7hGnbbBcR+Rb{TPGi1kEcf9HiN`aS)k^l1yn~1GFk{f-o6qA0olfJN zJ}%tqCd%$7;jeu21~gPjyYC%EyEGf#*FX1;hat%L63=_rO&AhRM&HZ4@WrxoSFTI1 zc)iouGT`;l7oE2W#SeLxd_*78mTcnJh}ey}FYrd51F>szUo@W=2Vzt0=d{_eYB3HS zhXKLpj*U$P@GP{Cr9A>(k|SeiJT3Rd5gOVSlHKZezT~^^@V@L|X6wK52Yf+%Gwcxx2Io5y2^0%1(M)2Qw{@cTMYg@}Mb=q%M08S*R z=j+%shqT`uN_agR`s5H^F~l8Gc!fyVm&3LtPs@7a+z}A_#(oVCaR3J5Z$tB!wHR5U zoMf5Cez8*>zcL%1a}D7I>TTlNmx_Gst5RHiB;Bq+ofuGXLB~k zUfPSEVKaMOIGZ?x&e$iduDmfjz2P4IVJsf?!#}5|85b8C9gv&oIC?LbF#ak>O`+%_ zMM%qCChFP7;cCexKqvL?z}y#d@qN%HF{2ySQ*$BX@J>c&S|8)Q8;8~p59J9wH{8=G z7psS=N=}0n<4$fI&e5jM5>QNr4eDuTLM}Gcai5@~NIfPyqM|5#Ws&qw>tfs3Vjwx! zxX>3~9|+FIK}mi+4GUvXj4`u&_N2vN~HCj_kX0c&{yN-{T?G!Zr=n zkr+|6SILhNgeg8iii=UURU2jZUuD&& zb04&%b3NbnE@&Lue93DJ;oN!=n|Git$6nFYO$?Yw)7D5+N2F%;= z`jar-W(En~xs{I@;@*0<`m+KLM5o?Nfaht5Y(&h%A4lr(DpOs=D>k>3ddVey0XO+d z-YIR`iZ2ywkPvOf{;jP&Bz?qlN^Em%vVt1fWbKk!YDex1{bZlr^SQY>u<>ir4j-*Q zim9K?xmojmM=?H>o6>bQ+M6Fs!&{9k*9I7@xKFl^U_>rdR28bHSMfPb=u%Y?L5w1k ziXyX%KqtGZQ`T;ju$B|R1MxaEo<=ba5H1=?!O<{&s$X&h*a~jq^4=*E^h;<@q2a8E(DNsXLAq- zly%~a1)9{{tD^1!pnHq*!ORjYK`|ISKN(7}->+nmF2#8@_=T z1bmE4!?Uhiq6EqU)JsP%gY7u7(UDAb6$?uw$s3N>cB*k^k*(mjMcq!X4gc0M|JooK zeI&j{LTbHS4z5+)sh>L4T#qfPd%X;)BjPcdc9P44BnLvx8~X*+UV^%r`*8~^uuE28 zv4DoJ=`zX-%Lux2bh1XE;Zgy9g$8cSBe6oB1d1IPXsDC-NK9|Yc}Oh8HtQ&||f?P?kt}C!9+hcs~W;v<4(&C&=BiNxO zdt$fA_T8**fdt^qDcUoS3W0EO1-pk+Q|4|Hh`;${5Z?_!wYO}7X}SUOU^7i0LhVx2 zLD40TFjh;Lj)-NX^J?5)l1v$=nHm*HLim4(dl&Gis;lukmq{38WCjfyC6%D4C{Y7J z4a7?jCSV~jF_3^lz*gxrVqb+Byav$(&2SuVwXOA5Tg76%)Yc2psttuEAQ(_lqeP80 zZFiigL8-=y{~;;orj7OrE2<>vhVJM z@BFsAdmTmgb9Xnca3T2+=RA=ETu(vqwzz^&`2DW>$hF{LBwxJbGl9eN!GjG(9=Tb) z)+O`jRyREcvhcdZ6>dj2XGzV`wgm-a*W=4&d{v!`gii25{p^R#9r0WQS*dD-SXqhu zy(^#=VbQ}vs8=pvM|BI!3tmTWlBtEe0U%w4uh+IGsc^;8i57Lg-bo(yo<{i4?CMi*HX! z4X&cLfa*SiUT-Q426z;Wwo0QH9S)bG3kIUmHlFBdoyF5&-l0;e-F)U!lXOY>8Hldl zraww0xdqgT88d;)qS2kaf#u*urg}%ekal>nBmQEL+8}crjmk8r;QOqyehaA^qTDb= zk^7{uq3hBQKL-;c_es@8RGQWg-_sA}r=fePA8yePrI&^tj(+&Gekh|e^r&Uh^^1G- z3+W(u(lJdiarI_?Q9#bCqsyYJrH|m_+D&{0)V2}QSt+7UpAR*IGBFNWRH;*4CoF~j zS)u-P9oPQVvVi7FtDHk|@zW2yH*mmEQ0k^18R}5_K~&O-8a<$@x(c?UXxiOWlXx9AVne<6mbDJBV=7ru#6nunj`-1c;vxP%7kS%qukmixmmt^=laz0$o?NYrwl)0@`v$?cI@0W=$ zSIgu=xLq}OQ(6X`rsl%ca1Y~qs=5fX7Fl^O_yR$63)-B_U@Qd4Zs?Ux=F>@`r?3hf z$4WB~-NByQ^m(uAc^jP6XMUS`=C_?BXMVe!`5j~Z?dF+3DR`R+qW;jQ_~Qc=9}-+3 z{L)|3;g^CT4cVnWI7IGSU2+A|gZZ7VsY^Pc&)_ePOzueez%^egHD4?>n}@esy$B%N zLc+?w0MDStFy{E?NohD?2lFuITq@Toc{`b?>KyeRWS;X#OC&(qQ_u$RK`w1jY>P8@ zSMUK8MZq9B2SxD}P+yNQ(NOQaD?A`=rYb!K8gQD9EhI`YeaP_pEbd;trx~}(daE-_ z_!FfY_R&E;E{7N%maL!=#CKm0>hxZ>BBP-)WzZ^uhZQ25l>JnLDAyOgoOo6RyLyM; zjDQQz9p1Z(nyzq#4~}L07gw>LGAy5^tuLGSc^{4)Yy6G z8JBt3q+{rfY#wzK2N`!0kR?NH;IuaU-5PbxV@isbwyR274i=A=5N+IKzqAdQ<3Y>d zOwC0{81bF0^db~+WFR;Lsd4AiMxXhwG`@>Zf#dHd^>*ysfBv^({qG4w$kdy;{Eg^)9y#AqaP0)wx7wlMf%ZW_v4+Zwi4b(FzLtZ)YzOEM?t4i z$n{-5aO}743kRhZ{GDv&vguau1uI0t10qHB4~<;`B~FXx1HF<_K^iq)I*@-Xt79UO zsu-{jaFp~Rj^WNe$jw6Z!1mqb+_U=}Q_isr()Gl*sIwk8c#!8Hg2oVK7r)yyGaq1L zQ|^~AO#`&NU>6+$6HmmIukx=nbKTgl#_ouEPUqP$?|M%fW+Ir~Mlcwe6;_K@e-R!u zeY#1hw(!(6oOWtrps|JygJ@`Ut|0o}e?1%=o|4!!OhSk~F>=MZ{5>l)g}-Nn&gAcL zq0{+$ZD<^S7lg+0_h>O%>6t|QirSvzLr3uUMDlsm_M9C$xTK_L_p)c6Ox0Hw2K;4W zsMmL8K@bw_ss+T+)q7a1z)KS3g~*8W*yl{xsZiZKy+^D) zqb9P6;l6_@KoG~3FDWU-_J$fR;YiJnON!5Xc!w0oTXzRvst@mdM#fg&JAA4xB|qq6 zS%4?gd1AhfXnM}0ndY*M$5tR5C2}l zwsjpk*!C~pk&8{=VB3lJm5KKQ2ivCM|9!CStTmNc^?|JV+1S{1uevTPIoP)R{8-Q} zv#2$^6wS-3E3;k_SkoZwg^Sq>3IccdP;?pLq1;@Q zh<$kKjvb35cqms)*FeuPcVkC{+Ful0=}=&SD)oi`v52avIlev2b51Nu9!v+JTZ|s{ zXTCrmld`lO-3Z55;+kZV9DC`P6kf`>Jmk?rKj%kL<=*&M-Hf zX{XtZ1XSe;TKPq4;yB904;;Zh>2;bo?6pohbh_r9Dum}Q70p9HiT$;{C83qVDB~Wx zX!s3QO0#?|2TN&@Pi3gT@m&?3*>|m&j1#HH<_%7w`$<<=!QZxh}ex~7&}d0eMCH0uxm>2qC9xYR!{(zQ3Ia0!e9 zGzh?LRtqbf02%6O8-UY24seqITxJ3IodB7t)&_vJj{{T)K>M9$m$IAygVcF8K&AuW zSOM5(0elEf#s}?Iqig`q+IS0lh5)ehB(nuU;yA!y)%{~@(469NfQgdXt2gG(h1;E3vGZQ4uE_Ckknt&!Y65t zF&wP&Yyk8q@iFus1i+mqn*c950fwrte`F2%UHt_L06pbq3rm~;!_`AJK$ZjG z3IT9i(|W2C;4qY_Rtv)&03`yj&YC5c6X0-ljtzi;RD4>83xMS1l398^#W73SYM2dx zC087v!wtZl*24YH32=mJUu<#kZ0E(ReBh*S8 z07K4rm&ybnhwRWY2CoxyIo&L3~#B>`AqwQ#KyV5EB91~|$A5EX!#7QhTAK(30|03#g$3j`p~0yxqM zFiOp{0dgGxV+CN91<<+AG3cY!@ixFH2f%;1zX#WyU`}g;6W|#2MU^$^qa6TS1fXt= z32>7WV6^(X4RDMD;4T5Ex4Kl}1UOdRX#sq0tNjSX;u17Mi|_$+{YC%{7`J<;ZA_lRJjd+0YJP<#|gj=3!vk_jzOQUjTqi)0 zs>MKi>kuY=m}kpPK)v zK>BnN&yl7}U0vtV`e-USF1eC};+2R%%Bo~Y>^TdpL%{O-gS}3V%(l1i%>whpZm_`G z1uP%16OvoIHx4EeEeq`6PVpJFAeBJo06EGD8CoKZg%(>7Lpu)x;`$nunc`U$&Ls!} zOB}b-8pAvU(-7dPqtMrLF->}}LqWCcSZIpBf#BJqfSZjceeI^4q>_Q)weo6$cCzoD zKcBS_G_+7j>d{_7svi4Z2V#LX>hPQP^?unpqOmxRt7t>cm$m+%lUVDwMTyZnJR9T_ z@m6_o-e{I?ID*%lPtw>H4Tp$Owq{6hqIBRXZ0qN18)ft$2R{pZx``cRu`%{W!|g;_ z39RkCT`{F7&;~83t?BN?R%@%e2RVb*>*?l9T)+DXuGnwT3+tZjYPd)G^;VwXAopXs zPl#)g4j_+hDsiV^?MyY|5NaCDcIuy4(@F;1RP~PjiT!1^zAA6!CnO+5193Y^SHr)h ziICldk%@LWUH8_WO&u9~uoj!J{_a&P-S{c=4u6t~pl0=7;a3P-`1{E{>@rT3S&sVG1uzuoeN!^1$lq4|cQb#DQ)RZxgIDS$s0d~mes;Zv|Gk7Yqi$N zYL%_+Jx`E)NU%ttU+tiN5Gq>Qpq>`n2^QEY-e4_mA-hupoFM=Y2!NClSFqdn>Zzo% zGv!^KybGpiNkFUeQC&3L8m+mDih>^fRIOE`Q34p+a7gbQQ%js~_^ei?a2YstN3l?l zQe}vWTWpX9tC8>rwHK?D)nCxy)zaXh(qME75pc-DeCbmrep(f^N~^8hBn3gGGChWC z1gz~t4Tgy>8E{Xtz=Y^opqs6cC!_UP8MV1#bTTSBahB9}i_|9X1bsmL2gKOmR6+SD zsp;u`IvKpweUHj5O(%~|liyMOTc=Q#gkP#g|6V8MQ{?xh{Ki~U_E2Kyt6!aH?;cI` zEtidgU6pz+3pu02g5l85nc|_*tZ7UemS-{a;W0OQsY#*C;$kwW?a|MNQTny9e|xnj z^aK5Su;}XpWwtXS(f7(#CRmO@UtAEiSBs@Xsm^b>Nw7WV1Uk7}47GOJhPY&cZN*Gh z8_Tkz#jjP2#~2o=w>#8Vo6vU%SMuQVfFg(#W1bS&0f?}+cQx@L)9^)Wx+-yvyyH$# zOed|+V-2JJO&0ZHZiEzV5~7`J^b~!atRG3Eu&E#E0lv~ap$_Xc^&_vK4eV^^d2e`| z*gE8D_MAlb{XWlQPos%v(ua|K}9)r^fJQl>N$U{ zhq`qt=?vARzqje<&&zkeq!CYL0<05<$wr*${H+8r9S@q--s2Mrc#WK8WUazDUlI_a zbo^n#E^Jc8Mt!gGS<$P@4_i`u)*0c{X|=s+A-C2fenN)l_i8uniw#>+JMpY=I+5RN zYxeT?+;fXwULND^hOrx8?I{+elj$!jG)TRAoop0$QUrK+!yg4bYmP(V)jJAOEbBR{ zX78vPQ@=0F+-pWE3$U=O91OZ$kc>gHi+*Yza6GG*XFaQXYmQGS-a*n6!c}zCy>2A$H?h#xn#dPwS^@8oDCFHy>g^amDK8nlEqKShmgEc}+ z&UqhNLO993`~EkKBuRlOE|?R;?$B_OhM`v>I=H(+J@9v|&UU1N9e z@O7LvXJ)3Rt_o+$=^7gWMLaY(6P_iYPuprDc+8(4bMYgU;6$3FSe6iaSh%3Vk7jf} zigvAY2*x!DeX4dIwW4PqNiQr%#P1e8dn_DPU)RfcoapzYHt|LEyD>l6Po&}lcuYP) z<$XLRHf9Kiiq=X8Csl*O7%P?qOLDRGh%5U;lth%tQ0eL z;dkHxePUm73M5fD90>Q-FM%(8WB(39k?|b0jf{tRIU7UD?-%>`KB?Fd`?o6|`*#g< zKriA!P{pUWPwd~HP=wB1m)9@AOH3vZtpn=2^F&_Juff9nJOT8$i z`Bd1AnQ>hHa5Pili2a)$kNqoQi*cDC2VW=CgYHoJ=!pHBZpHq+UQ=sdDwiC>F;ix2 zw|27AL8;ByzX}t6Gxl$KBKGe%`eMiaO?Slpy@u8tv45w+e+tJ8=IQt>USVq`{%ME$ zK=_!_c8<;rwVDH0ea&FvYwd3MQr5aa2ABwJc?PI19uLQD++SeJlV~8KW1&7K)tP}U zJLs&Advod%slz_AQyNCTL6?F8Va9}c9Mu-U{R0G- z(Tk)2!7tmPJPo>nkCysSSPUyr@J*jF`fsS#9=&xTHJ!wF;g&|S10No22XYcmkTZ%w z&PZhNTOj+BGc>4WWoE?E+QlwAYUxo7w@EdD}_Ej+I`U zK6l@Zh@DEE4kCu}{@F6y<8zs9E6A5bAMV17FLW{}>Qm^9g|f-S#5yHT7Eav1x105a zKhrB-KT^Z1`>E%W0Y@=mwqfxHhyCbmzMTIxx1{yviN33YAAHmU1|4_#zW z`?t#(V!D-Xi9A3ktWPOTVSVaGfzbFf9a`(8ur8snmrHbYSDeB=#`0?l+vcROE{noW zk^b4y)%8uB@mN&$?=qhzm4(N$sH`hNW#oLOXSLnli!5E&EsfJMeOeBg3MB)*e3!eOtG>d%qt zol#24D&!)#TLR{8!*bxt7a0M9L5@JaB*I!%7dCt;T{(=dh-LUr`fun&v*9-ETwO+j z&8*p3DQxC#n$6r<)a0%E8Bz#gHQV$Brl<)6>Y51&M$=n2h63gd<|w|=zIli7S}f;a z)}_-Wl`LfG+qid5rgIauGn@C8SQ=)xVx*3fn+KOdx!m?@({-+?@b+m)x^$b~n=cXE zHzjo*>C05>`C9$l6ThV7S>*rg>0@$@ zej)i1_=288W)RD@o9n4d5*}<4r_!gFTb1DmNo7-0UD28OE_EEW7^OQny9cW+F=5Ad zfI+SL_jCGpt6T?Uq7s+yX$4;t)pU4o&Sst&q`o0FC2mOFJV;^LZ6O_=zv8Q?d`12? z@6F5DMV)i$T4ISqBlKNjczkJn*3zClncnTU0dL(5ZNX!P_6p=*`CG@zqhmJG%Ov@#?c;FFM}#t$w&w z{bZ?LPkn|u>m#{)_L+8TCKBravdUB^9u$1RO{fOvQnz`D`sP*h617v`QR6G3&c~U{ z=7#h^!+zBvawSx-vAdk~R34o;F;YcZ$SZIh(Fv>StZzB$YU|r*b(!@oPc7ja#U`k? zZ;@S!G;(HnrK+nlp%<$X^LOf|4Vv0=v0qUrANL1+VtT~hwjNTxF* zIW=joK-|UQ;AY%@3+*`4T(}m?6=gq7ZRmD_w8>c203Qp zl>tj}xS4VBd<9!B*^*VJE|FqMQSq|ubdp`I-#F4qo{M{$zNOpV3ZB?d!)?sXiX5bK zn>D(MupRtZ4lW6x?TnwzzOw?AnKCdr+Y%xH30gJ>dBXhpVuS7d&4x7_;*KsR`!9Fl z=oLAfnsx7qRExNBE$S-1p4rPmvEm44V3J5u4@eUDRPw*c~%#( z`~&yCqboi(I(v*7sT=7F;}Vz~G|Z~&2tY*9JhkUt0qa{dLyA_K)z8jX+jSumV51F? z6iX&k0FKiDeeEBuAV@AOZjIL12q=>Tgy7=$JB|V3i&#eH?}?E)`}+L>!k(KURg&C{ zX9-)hKR08U?qsiIaua=@;%9un;sxKY_=(@I_^9t!Jp20<_kO?PnFlDIBqK_`Wv&5? zjn(&-iOY)|+Hsc`EaO26GLDXuCB)ia`0bX+i`{&xBiYU3;d}@n<*`gdKQ&eh1lJA8 zX0$4_~H2o4gA4Qf*d;hJ8-2b$47JntSJ)ev`97)7?EwKMUIG0m!J}Ssh>Bjso0l#fkSy(1_KHg zpo&;FJdtq54;^0HC{AONCZvlQ7)ow3Q);FgR{Z+YQ>ME}{G+4d{c38w!lddfqYdiAMj(e8hm zujT3xx)!}rWYqz6s{X!7f1jtn@6_LC>hB%;d$In`aZLFi%XiXKsEGb@5n{;&CBloW$9>Aln4(OdQasqT0N1h_>iR5$6b(vG@Tf0gFd<$UG(Q7s?1S7>mF88cd?lZVUw>Yt&eWfC)T#P&sya!3PEa?0AllY^Ri{7m)V2C^j0)+`(Q2vw z%vBfZ&m6UYPb&cFwM?U>Sk7sfEEBtOC==@lEh@T0mU8{!;=JO$@i^{C2EmBpkwv$> z3;OnCdT;%NE_>@fjvN}DF{bljeg_|u#X~SS z1vF)Irf&}r=1%<>p}JApvBtbyEO=io8yzWiyD$Ss%D=cUC3bf30S(!%1}8zDpds5W z$fGr6JCNSG3b_FIyPAtdHJf6zc21WEX2??KAswCJk#qV5Hf`sz6p7Bj%)kt6s*d>$ z_eY^b(HZ%%&RR9dTlb|5krDr!PyOIc{pG|^k<%c;TlbDM+CQ-B(~Kf+1TyIN+;>P( zmlEvAm1${Jd2i}z5eY(VX?LnMJyYM;`|9{$yDrwIGOS{y-Dy^lQ50$N50T_iEqM<|8^I zw{tfnBsybsXQ%$0(D?zM1e+x$5lC{!aEYy|yf?sN^s3y0xjERTGghLtT#sy9G;e63xz8J0EguQjX_>K7@Po4W~xx_kO)$xkB zrR8eeTDfqLgTc|#PxQ;Ia&_vX$raAhFD8_$OQITTf)i?-emS#T6|Q2z8A135R6NsJ zWGF=#LQvKJRKw3C`$Hc8h>uDSq6E+o#>UZ;ci+|ki`DEEAc-X)UebnuxNS&6h+}ey z%wFGcsi!{=@$DBb6(S39&Voo{&_uK}5{6;~BKi5$rL?!kpIu+#YbqI*qOGEwk{p4g z89VT49fUc_a?1AJ_$y*R$5{Zw4eB5mB zp;i3=@~B022va0NQna1R!DXLjVwvz{K;;P(0d&JUL1b2-BA}MjLNDqENmo_W9X>cR zkI=fVNH%|BN3E*ykV8Ill)TFi9}>xq4dtdRzb8C zR$1E0gic{5^_h%qLzRnBnrAa1Ggf*Y9&@43k*J zW8IpTQZ+RU7SP^sPwa29aQOfbpO)yfwt~y@>AVSJ@Cd$mas)2ojOOvy-S zC_bH;91Q(@Iu8e0B*S-qLMQO)qy~piC%*>p>4fkQI3hi=9EUu709_NWbcHk6IHPp8lJ>Gat?ojlP#oj&pD1ZsI4 zYE6Z-PF0pqrw`*fUW!jA4dK&iH&iSjrcWpBm_D6Ut9?58#HSOg@SZ`Ey~(bkc`onj zv)Saa35E{}BCU&0r``NItT%OCj@HGelg8iXRnrt7KAr1FaMr1F@XpwuPp6pP+i0iH zGP&^AxCP%x*Y;(26fsO;i9Zl(b6TZZqAT3J@0(uP67!9Ha^rWVITM%A=oKy_6B4K% z6{t+PG-THP#GS&$;j~4O6>g`<&i1dAt6#$XQ;ZUXp!RY9+z}&|zvYJ6DjdF6t?kGC z)2=z;xoJ?VXrac_{eGUCooERykLsL;JB4x%##UYD^An!$V}czT>2d-I(O$~TH;7eD zQNzvr4OJS0R$X~=O1L;W&r_~FH37LyKvIyI6AC`*@_K{Z4A;LPH$w^&Y?Q(mayc>< zb~91Ut_&fWMOV7RkI*7g63(PswFN5WM$t=k0X?%W2ooCqC4F6(CX}K}tTo%TX%ay+ z;}JAfFk7?bB5Y1q-w0bOrfgQc%oHqRC)R9|*gl)b`Zq~zpJw7mu9D~l*nqY4DgNp| ziBfU1#pWN)NgzfA6r^sK`cM~cmv(fx&(mMWwu^X(HSM(Ets5lFz1_-0e}}jBKa4ae zQ54jVusb96&JJKRF!~%!P`Qa;f&DuEU#sX)%mA3_>f2-N)@wf=S=kx4s6gg^(?&w-L)nIj&N-)6kj3|)IScLF_u zU%U#xximGwvv)SXnBt87FxPFQ5&yv*8PA_pD@Ub3yenMBGFJo^hJ*Y6wl*!)ACFLfxVRj+W5*dt@`s0gW$Mbi zS=GaleR%INT^3f}O804;9 zL|&7o;!!CH_Sd>bkfX(9m_$?fk z`a|OPL-PCX#BbrS)SCG3X|BFPUydIl0Ij-;^*_P@Ck~ld=2@OW(s9CxY%m7Pi%?e| z)JX_f3cMcdUNzDTLi!PRL|e~-M| zvtAN1^hw8Ha~`8i&SOL}=TY;8@EoHw&+*S>ou^YtY;5wz$f6A(yJFe~Ekh`DM@J9?{q+B$%+?a#{5xHnRg zkIY(T?NSbjT5dU0iWc@Pd%)OE1c@orC(lyvpw%1e-&5_u^vUq|5Ir?YREXa29$*&G zT)%0p?aC^b(D*`IYP#gg_oz`a$B^6zLzWoD)0fnicKKpMrH@On*d8pu3C`rlf=5zy z#>;S3rOar`ghuiDzx~$a!tw9dVlwtl9GBqIU@q*9ObhL%+bYrL?ZjoKg&GsttM=9 zmt-pnBV^U{L{cL*gC28SZVfurc1=&HB}}{$PL6Qzo764T#VV7lZHIcD?^Jhuq=A?7VZ{-x|%+}jVb+B8Ez%IJSSSCg!rp$X^m*t{+{X_9f%ggQ*myh zejPyv+crt)b}DcKO3FTm2~Lufk)G3e$NC1q1NE!#ZV(K%==Lg+TL3uO7Xsj5GM9Ao5rqk53~_Py zNw&BD1*o@>`RwX3konrCGmNdpAokj|Am3WBuW_w<9cZ1xQMTRHdy=-DsMRhN&fiq4 z4d1_7O($YizfF`Kb)d3(p|d1E66nE5A9U4n+`wo$%J3^G2WrQh^C{V+s6w==km${W}1&Aed z9w~jXgw7)!Lg#hd8l6JtYPUsSWN}kZSWV`;KPiSuPgnlClP-F^n;}e>jn9w`P zCSXozuAb0bCX|Bagi@~WgkB`s2liXr?X+c0Xl|bgrBXeiHB3W%LM=&f4gPbsB$&HU zLK2+844NovN`m(`4Il|V7-*3MFP4EK38n^zB$!_VNP^+QzlS7P*P$iB7s~MaNrDsa zk4d~ASQ1Rb|9eSr?wZQn`ao_yNvT8MmTQ!352_o%b*kC4Cr$|)x*8`a0aFQQ_T7q!N;Usee3*%5?3whP`lXYc_g9nZVAfhqdJZCrzG_nF{DIY^@7NuSm{X?J zq(79dS!z-(0sQw;Edl%%HK{p&vZk;>$qJ;iO|GV|0%;Muz*Zpr7R35a3Z&$kYX+|Q z7Jni#X@gwJ4y2kgdE0(Q8N0dl_mk`4wR0%!ce1n<9k%gy?KN%~67fS@?yANu-mUV4 zGxWPVpO-Uk3UQ&sJ~&{Q^1Yz#FiyQ`9&fFvtuW9?jfIPP!ep3q8`C{SLzjmtV(04; z%a6q?l2mi*bS1;^8JQC&dzSkM2rK)cB9vYh8()c1GIQcI&+@aZvbRnZ1&ObybT2Ve zGK&BhEnK<8!WEbd!j{I;%ed*1{?e`L;40~7>`-!EA`jfE&KG5#sXW)R9B1(F{fxEP ztYbf8U6VO!z_G5G?wMqcRhNj5b;iH-Sl4704m4ICJI4AT{z~>(spVV7dYABA&asLO z?*7LLHrEoj#a!1F*1E2>#`>wOYl%xdJre6WM)E_KtEYb|TgF?59Fg>tEiACi^d%M~ z;*=DY`v=CA?s6%wR$IkylHz2QH(Fxb&5AD3Z$igdEBgfML5!5jYa7{_EvnRfo57>l zX}T&N7Mc%jWcW%Dr^Z)Qvp3|^by8%wS!9G@g*b?el1_T-=EB~C8=V0@(S?ExEviN? z{uVM^&?lyEf2Ho1A|67iyAXq*eoEaW3XxC*|3JiRz?`sOn79SgmkTILR-A6J+9Fk$ z56cZEwnB;3cpte8H}En#h@iCsiO!#yxT0w;_5)5Up5-Hqp~5yrN_(QEJ!Jt)NPe;) zL&_p1H{pzDb~;hfy>>-whH@S(AF)PPRG(bYtNW`6|36azT8W^qP8PGfXt|4pA&X8W zTkqPRXi_`M7$lN^xxaHymiv1*X)Q#Ozg1l**Z=%Q(UNS3$lf;C`tZZVRnK{MUW$0d zd3SC@9Fe#?Un5Y-SG_s}-v9Sky*_v6CbZZ3ayH;?_sf6SSH16ccW$Qq{%bp*w!Y== zdx<5}K?1GJ>6GBuiI^4xnmpxjL}{y} z_f+NC{ZDdOpZ5-E@btA{g}F^N^OGkAPw6rv=1C4$)=R)}r?u1HA%y*{o%#qgwKe~K z1+C-@trGE(m``&*kpTCP2y0u~t&^;&C+~(tmUdT*s9EiiA9$>+%s~$I>)(r9v#V&M z770d4gP2*{h}9=GOqR_vbV|fsw6JU0KP1f^Nd>JmcawCk(=3w58pR^1PEy}UOIT90 z2h@i|Ws?MWH=fDiAOf=1a8p5J@x+qs@WCRcZ1y)+lui!B4&uu>d_l4buu7$eV=>b$ z?MC!!l;nxl!H>vshp0Llk)SDc6GcqxkDV$HVy6}|bXydLCLtajDOcOKm?AE>qc9V+rLs*Yz{>;0b_8!u_}r29#Q7|`V;h~Da5E6!jX zqSPwwGPBV6j9Gabuwd{jF-G>TKi4;813yIlBn|J?lGUzAJ|T{lZ8Az5Wd;?A0;`PD z4x&1c65A+-7uiW_=J-6eiaMZGgo|nP3?ZxNFLsK4?T&lsDd0CpGn4Hw@e6mTLfSE> z^9A)T`$-LD>f+Nmq2URc&Y_s7%XBuXnXsnTbk3z>b2>ZJ-F&C5bL2y&Q>jU7`%I^j z>6CKTbRHL<&M1;-a8Kf#HL9V)EDj}&Y{V@S_m0@IFmYW>+#;NZ&50wypVo0`U5SZ- zZ8CFhGIN`MB{SD9GuJ9JH&3u$W-iB?xue;X1e#YLO_G`GGG}g6`1j__ZJX(@n5k#( zIw~6L?*RK`=62|r+s4d+7=*=A`*>~69Et##XSMS^$IKNsyeTuc6XGN@w+V>@{?xk! zbgw!RP#Y5$@ts}{k`Ht0dLNXj>lRFG(oqy->c~x|7Eq>e;pZz((9YO`jL`|%_S9`s zIV>Ni>PA;@DYF-T*Py4Rn~l`*yU<26fB$1#mQD1Zi2rH+8WmZ8%2n^4naW%>I8jg( zXQeO5L|*qxnaD;_LOm@L=>=81&u%ok#9Wd#Ry4D(Y z+%dyHzf#ZVDb%Miai`4ZPCcJHEKCfyswa3&b%Xh+Z66dmLfidc+)n7s`C~VWb&>Sp zWkDdx=f{lx7sDsDhzX9PYp@~n9VUGdR_U4;Zd3OPBfHQ|@U*SifvJanCq&O()V!jM z3qf>3gOR!F%HkAQ{?G{Tv&Dpm*zl42`hTS0$T(!jh7Wv0UX9G{ig|hE+wg&V$Y%av zR%TkXZBs|ciEv1JozYfU$P}%G(9cq7y9=O ziynCEuEX97YEYeDuq*1nxjdjAWlT#58;QqNVO24z;hRGlYf6U3($|#u>ixGEB~wwU znP`8ntk%7FrOd(o>Bu#cbL#!Kde=|R8@%w&UvFs79_+u%n4GUycsekiHPe0drMDTy zXtvfFB{O+6bcr$Dw1&oxyKQqzF;CZ8S%82=1nJ`x3*H3yyUO~^j&-O%Wo>XJ+6r6f`b?=I!ktq;U z0IwDE=#lN;s^*C?n?8EpU)GM*m%aD%jp^A&nQ!piJB@R*2AAGt6lcp}Lt3s}VsL>n zvY~H#7hp(*zb(9j%4j}Cy&)VwCG(lufFdLoC6)SAQa3=2{X4v?uh-^h-Oc_N{1vn2 zsL0Rtt_P;};?08pLOcAMWET*efL)l$5KI)@rXHns)rKoY90g}KoF*vPhWCOtK#Z1> zvzyRy!e}kTBu=pKs0XwvZgBzyC#Qr;z7-MOeG!qP*3GPKQ@6<=A)4LTXKkIPUiu9o zmh3&ZE2KqqO^yE!ieUrZZ-uCd4svjD?ZdEuarw_xYoOje;8B z;yNcT{sGg8f?n(sv(`+{sV_xuTAVky=1CLvAT!f>mAR%EtbI(-t(i1e@DJ4Tghn*5 z+8aAau*@#@xP?+~_0|2_-fOvFMOp{rGtucEJm#3@Jk|*0)(FHlHqVb%b-11i*^^(# z5lD#NNWqxtzQLtWVsA3o|Flr7#k;6hn3J~f2R6Q}6?sN!m$n_qmJpv<7cd(sY8cBd zsPpuM1nRV!mW%K({)#yzYS!%*>cFvVBA5Z(i=0Bjw{)oOytL6KL?db~9-ubb#P2u* z+;)Fw-k3WHcPzJE*wk`vyFTm%kE-23WR~sf_jF0_y06ktsF7xwQn}PtxvWa+3S_=~5Dl+5UDDkip1=mf0GM}Q5j~P%T4W*_ z+$hbP`eU*VA}2sTrLV!~$inu&29sf?N;cdjZ^}U{cl`hSoPym&S8%C=>IzG*ZZumQ zkLMUZ0^O_!5yh0+2qPfOjCHfyt|a%kL?+FLqsvecIApGcYA;pW3)T6>UA9^D=!P4m z;m_WnVIpM`(}w);YAmMVVjamTfBL=908DBZB21Nyuhg+TK?h$vIW`)|cZL{IktPr=(&U-{Z-?eO`cs4F1+LK4D2wvx@S)(VZ#=r2q ze~sH^eAMU>I-!20YxI~kwy4#&*mT0JUgkS=Vi_MWa}rc2O+*n-nU61!kGb8(c8nLI zo>xs8@>hAttsvDPN~nh&Hx__1vwsKojB@n|b&mDBMK`}w43fbG&aj$Rbuy6V25nQmU$H@5tZY0u zQGUY{vf8elCO_Az13Frq@C>S~MjQg0s&3;uI6g%_BrMoA5iIcFaoJ1T)mWaxP>O#Y zzwY8;v?_+h2LBR4T98goXVRt}c!>Kopf6V|HU{{<8F`s;~}Qaz^OO_{LQG2qr- z1H$&pI1YM`aS#t$?qmeC{WY(*l88*GP=p96_M07Sp&)Gy+w3o%BptQ?qzN9fL>e?)g5e|k{ zm}_l>qyEbetBKQ@WvCd(B*>rMs+LH(A(6@XqA`gZgK%f%`Uz&brGag_0nN0?nRC2w z;5KrK8T?l2kh#8$&|uUd&J3JA7}PcUx0TJAe2&6!gXva+oI9d^xojw*96QzR(lO2V zwyNcKGS@$0UTvbJPmkKJT#=US##H(*YnV&TgZAJTO}AUrIvz1+>=3blx$iX)V4i$; ztM_>mHN?e2-S{hg}>S}8A^`Qq0B zO?Lt}^At6IV9<6RN2gpQa6b{HCXUBEspSANTBfPd0|Py(fu;)3^3g02A9nhlwp)EmGPcTYfxU6@ibx9imh1tHN4Z zEu}quyRB(YSurOPZmrbxz74q&MY&nqrm>&h$m$DlkI28othrU)1h5o`Y?OA08Q+s? zFJ!LP-2QT zs=8mJbm>;<&Q7``FWRI-AJgtrlD&{vq#jm^0Hsy{>Az(=e5T?-lYd81 zGgzqSdj?Iu3BW{LQu8w74AP2fm;ddVxp9EfiMKEDmL zTGUSkf148OB3lu2z8EKt&N4$(e1Z@{I1bZq?nza}?}YZ{8_e*`$*uM^d?8%RT!8VM zAhu{t2lK1Au*0;#$FKgvTenayVq4YaJbP~L+_}SbOwl)&XQ=DxdU{h)kGJ-B&?Mun zS3es2a?$qXE@HN)rT@36XL*{@L+l5I`I+ubIhQO3&TeKr0rg9`bHa?2Rfv-5pTero zaF-LdpRryezqYD<2|m)fzfybKV-8#Kc>r@K&2ze?h1-zh~?; zm$}D98R@grt0L3wmEq%aE9q796H&VDigv5@LWm>@>K4AxkEA51OX(uA+iB6E8pbN3*iF4`O#Utvu48JA^Yg|A!1YyDCs69F)ri1Ny~55u=^H5mPSx&Lw}^ucRIQ zCb$%luuZhi{)dxs*;ZuRmq3ypi3rE!ig)j zolgGiMLJ1R5LAcUHP*xZ;6H{g;UEHYv@B)wlLQYT9`zi{K-Gis3d}2$ws!IugS6=m z3KKii+jjh|k1#i07Ri++g+`T>7~7|)4B2U|%evqpE7h4d)3%i@2`a`-vnj1Y-3DgG zl-|swi-^fgPL@vYmKBE+R5#EOvN+9JEQ-n1wHhOEAH0Ya7Ilpb= z!f|yOtzYgsa@W3%V)>#jTk+f>H%OO;!>gi;h2hMKTC>^hV!9;;J3G1SCSeGtvO9V4o(@Z8N$v~#ms9Dm< zb{#QfQnlGBd{ zWFjKOUq;H3G!gTt%8UW&twUDLQF4(nVNh*TmeIl{AERquQDPEbvraliFca$Rk~&Y- zb+#wf>C$ydbja{RA?E+MUeE3GZ2F|rE`IpwyiR3-V6l+&&M@3UxQ%NV%3;Cs2LYex z@Alr1!-Ov~zzkFOeWd_0O;O4JinLkcw;AH8*}WN}hrD-G(M@TB(tltogj z&Gtqk_ZP(-`h*l>R;7kUBQC7_?vi_WVxOqERl6W7*%U&jQ>we<_WFoj9i)+gkCm$kTOm+$+t@<>=gckCU4Y?a7MFwQEMKMUe7F9dTd6nF*Rb5gYLy>p>J$B=Sbn6d z5A=_K{BWtA`p07Vk)fLTLA3nK_>rle=Lb%z8)?lVke-IyrTxD*XdED|pqM10BfSQR zzLVQ+Po@;RGI(@mug*wpHzraV?tcUn!o0&X@)5?rgP zL_6ovj@r%$tubdcT=Fhses#UfxzO}(2`;#>t9rDIRjv9nLr37uk2HwAM0mO<-XCR} z5lR@TRCOb|Pqvpe_ESVsU(+3Ie}J*i_NX(YL+040k#cCU7O0@n>>y2ujz(BLS`^d6 z%;wBsRAzH|@#Z=Nh%Kd?J6t!{VKvt%iU^u}(rWG%5Y!s~G^QFIqO_&vf|6!K>;9z2 zB@MZ(acx{-FKJRkPsr4k+6`4&4P9w9bdfZ4vYu#XLtSisv!SyS4P{sjoj-6x{-lOJ z5q%6JDzqBsBJHJZ=3 z3pNxaM)Tei@zD&i>RowxpL)&Fj7X~YDXG^nn!Bl&jz?!_1+38=FMWpqcB!iqZFsCU zjvTm+^|Huu+?s8*VUwlP%r*ivVzseR%t4c8>`y$g)<4ne!B(pym-iW&Ib#PUwfdCU zma}!H+v^Vp+Atw8V~;%^pRu7Nhky!%*uIAXvgB)aB*1{}_j zN%j6&>SZ{4tTW@+)Z1q`$Mze}q4D7?Ni;jmYWDiRIAIQFsbE2T7KdBIX_aO<8IG3W zoR%2Q&_un5SoJ>fvjK-QBdOjGwLfBFcfQQ6u+MNRzU;d?Q+c8`K%%YFFsI>hISn^L zd4zu_T`Z9q+vS*o)0X&)L^L$h38$%R?}VADaT8CfrY*Drz2#Vc8-W<%yOsy5$EcD= zSr(gVkjRRI)NAM202?ymB5IcVG2%Esh?wd zDyAab-ZuJTtHoC3_IU!}(HDtp;GETNdT%pk)j18H%7}JDeZF->e?UO8-w_q6&>#AZ zsBq?hBbt&lqLIHo(1leN?cL5j{fh9V7ZuM)U~O>03wiquUNJ zqAZoye?&jHWWW(UpuKtRH9B7G)%Qyou7Z8+GomZzBt~>$4I_Gs-p5BYreWgyjOZ=s z6gOTt{|?Rh@6g%QF^}vH-gO@&x>WQ2>KgW;ajV=(#pFu}tGeb^h6$UqP)%I8!&|pn z?yLTtWBofc73^AmMRlGke%M;QHb`AM+&XRwH`P%xpdOosIPUptWPD=9bN8R#xF58zqVZ9glo@GORi<; zZ4A>Q@>3grB?EsCawfvMO)_@OV!8D^9a-2AS@?oZCf^mDcb5!bcU)a7*Vo(tK&eH;F#Y^=XR<&n2vFb2Gmv8%7}O3kORD1 zU4D(&_3p$IC-f8Ul?@NYJ7Hf#=KaL(#11hrMZ6FbVb@HpIrz zQHU)Lu2H25R~g;}A_U#KPuo=EvTqQVaJK&w(YaB&&F<5?S4*F^*?k(F=#zb8*|fy& z(`L~P+kLuF_i3}$r?0SxcJ`?q)K2cxrNR&DKI!KoH*8e%cxVUoU8p*zaS=vT@-^L; z+ypbqq^oT-k)ckdpXyQ0hPYhdZ9$mFp{-)N$loppP2g)NUA!;AQuiQmjVimwDYF?mOXArYg;>7U}{sTr%I`Kj)LaL37~ zB~8Bz0;fg(>P*;COo-Nqxr{cwVBu>Ymbph5Uw@+zJ)LR+nbT~kC@Br28GbmSo;5X} zo^oRzLFKWQ5Zf42w^y)cT2^66R`>^NW)Cl%H9S1r`|K9)vyBK-XNt@-i!2>TQlqnd z%J?4 z!#hvF9@bz84aJ0=ey(1~9Q0GpiSA_8b=fH)n)W!GE|ofdWY#e)SA5>4jrP{PFJq0R zi>Q+Dz(gZG!3MK*rj9xo_AII72UNnam(;GzNkQ5^D_2E-rbmBZ*x3U6L6tdWv$E7Y z4HP~wP?-QdW&>rbW6YNN4lW?YR#R;Le7rZs(nm(OT9hhc3TG?gWu1R~>F9X=0Npa3qaQU(o&eH$pPiKzEy)ewb2_{_Wkb8W zI%UWPV@RO-ph|VW9HD++Q%b5{7#r<26l@{NH371lQ=WuaMWz!n+ed8d`su?X)3YPf zb0X7oBhyElBv3~+Bwk~4rj%s~B}12?JzI6Iu30%Mz}A)i%Wg+ttBUm}Qcph399c;z z1Vs5HE<$cB*hoxBMqE*9d?ZVcFFF=Wl5`g{)TcPnNecBiFKQJV;WvDl9$HbWT%j4$ zr-#m|Rl`Ds$qAxvrwA3KH#wE+f#6;AJf0xxUuQrfFNw~`j?E`6RcsFBqf_&trwQ~F z3pCPKT}%2ZFspvb@L17zD3ui(9-ZNfrQ?odl@6%Wa5<7_sN2=^kM2V-zt?+1w#I@) zghf+;K7fJEzBOCA0)t#<`gALdd zlu$7)rHLst&Xk<9!Mhfwqy~E5nm?a6Ba9UuN=wcm0;~tu@v6dn6?S2nlO`5B1JHU2 z23(cLKKu7iG_^k^S~9g@%S3nhICi9WeT7FTxv#9u@DjXX$ln6hndR!ub0kg0c6AGQ z-|vVuPmq!TsJGEuCsOr^RWrkW{H5jhD7l*yi|E$Q3SW|=e^>|V82v-@1Lu|L)u@#j z+Ke1VkfbC)J(ZLxD=L}kt$Pi`GiK$2v@T;X!`@<7UC0k&tC&@r+2>0fRhLzsr|Yhh zx|iy@v&(~lWrI?Kw_QFcwOpe6Z2yM3dyGXv+O2KAD0Y#NZcNWBnl&?AY0L_&3HT_r}jO2X=&UHg@qY<7}C)%HUW5TL2ikYEB7^A{wn$!?)?3 zTpt91l-tRFatT-+{EMx~i`4+5498bnMLX2hEJ z>vh&(sTiA+)09NRNm!pjMeIYz*D$SvL+1nz062ykT=TkdPw5hKmx~`VnTLl3%W?XP z^A1;3Q(5DewLJ%WZ<@->-qEW^Jdlwp=W>X%-eI#VXMKW-My7Z=ODGR}5I@70<&m&b z_7yoBW1Z0%S+S1jl>7ki%hH=zFzW`j0IIGYg$wS?&}DODFA9Ir5S=k5_SCmFTtCIv z`3k!$IwLQ(I=ClS&e0Ba`H$tKAR2|0y0S%Q_KYl*H3=Ud?AFDU`k_@!QdgQqmQZA% z)Rl_KGgDX2xJ0ZFls5RWQ&)EI)=XV_l78D^rmie(nld>xHr~lZn_*XWtIHQLMWA#`QS*bEeC=Rmm=iuFPf(lYXT4h}Z^2OQwVTu1ZyS z2Fpdb^X)1p{ucIXrulZwY4TPg8ST5!hJ{g=jRS0HKHQc%gDa^doqfEDF%W;kSKFJv zVt~VMjF5>_&l95Mk-+ub78a3;eP1Ovx2E(ZL55XR0u$lteihHw8QtE0dDNZGYg>Ts-(W)#CsdIGSy>)jA z;V;dJuAC#+l5#cq7%HE@ktgn=TNhKg7u58rPq6idjOo;|8S3A`Z+b~Md%jSa9tzrXlD3c>b?LtmM1q_GS8gi z3>SG!AV;BLhJQ39rUJ^Neu}_?tKsq%=fR5CthMXIv<OsmCc#b7}ICo>|_DVZ!_cH zB*};QY)<@}WE;^pz^Vn>NK{=Q3%r6vzl*WEtu2(G)hTjU#O8Jz@36QNFS{3t*cagZ z&qoOE=cz-%5jiP_=+DtAU4Q1PuVIf!aiBiepV=y=KeN<_d@izXm3Ha}+jrpMnxs3A zjIXcPLM=tU_oWI|+K>-er-yNtlzR_0VtbK5;|hr8mt_k+?YQ^6xG?$Nvr@Qy>)s>A zW3O=}I`2KFAY(CV#^5K9J~7nfwijG_#fJaO#t@m8%gN#)2<8VOfAx z(P?J|qSMX{T;D7xU8(-e9+ErLp=ZczkG6>W2J?O#zaj0TojV58ZxLO2AjG(>pr(KU zh^+Ks2(}31=H7})yOYH+(;-~rD!RrUID}txX zrai1wi(8rnHvIRhMSW|Q5RnOv6US5pvI{yXMly@mDyWgLSJff#sP=%=Ps3Vk1$dzV70NYcnok&VD*^b?;uY00MXkI0 z|1ozi;87M=wRlZEO2!i{GcMt+vHh%X&cpDS?WBXf>@^QBfyuTBGvOsFeNx&b;rtw*)Wk^M9Ui zpJ(>H&E?FQnKNh3oO9-os0T+iqnplt4>oR({`S8yZj+`if4R;k450QYLG3GdSg1{r zTtTrWww?%7cV3|!dd-N+T|KWzt-hJ!^+CHFuq%i0o+qc~Kw+V&H+(k(vAV6BT+N-k zgTra_@=ee82lJxKWT+;1hjD}X4zzftA?xI*>fM~rvLOzWtiR-LMEb;R;s3J`l0v2$ z!5#fI>RRSk-(&BLu41-i+vwOoq&6$1Hp|_C3aaqb0{)uXa-^%kh&mJ-45HkLkqQ*s zT6g181}7v}w)`u>;fiVsG58#<_o)V65p7bSMCXFy_Lp>W-+<&kb*hy-j~IbEt5o$* z_>%DEk|)mNMWeu>ZAFNp>xMI>)TV3SyWA1|=?vuA56Vi?aasK>MSq_wk&k{5-4I zZchn#pzkGbfW|ElS&P0WiTlB-Ymq&k4kn=#(d%L8Ao%K&S$eW-fD2}yz;LZzxeRIb zkggi{aG@Us-gR|TFtu#0T2#C=uWHe(V8N<-_ewsQF0s1RA72D%?7r+&Ysm_g=f#ge z{B=JVViW(I==Ft$7y9ZlM$mh9N2j0HfOM^)2|?B#eD2Lu|I^HN8|I4%zdPLj?a(|S zYrWAWqv<_PIC#2EeZU6lvod7O(}-d9yGW$ca*OO|2mg3NAY#q5qwK9B89wx*U; zNC7it!|}pY0hI@scS?;5st?)gSL0Go_1{QY+1wPkMrg3~O_(^D9R6HM&$}Fa+QJ|l zt}GB7Umj%}oo!cZvpEohZkSz`-Q~7nen#NxxgV;B57LCJ^}3|v0mx%bx?k3r{ZgW` zX?2@KDj-5ih=Kj(PIViRCsLQ~98p6Qvu{e89KV{w3p$3*Te$NtH%i8Q3>^^|Yj(Dt zA+&Zt`Y+wruTIk`1c*Ex*L(BdXh?R7IZj6gSRg>BmetxbD4DWa%dJ;_V~Cg??VTt6 zaNp{h50IF+RX3ag+s5POeh|#xQuCoRej}|VTcRg5$Qp95sjt19T=cVSKRW|Hz=+o{ z4a zZ$!*%?w-4-S@}#rukW3PG3`yGWjOC5epA~K8i%Lqy)rj=PK0)aHx{a^89=htKJPgO z((>C0u?E&PRJf7CzV zF@$-35LmR@|4#M&=QD+0_)^^@9cqLjgLaoCjAnm!gMF6nzQASF!rsR}m2sxE2edre zrQVi>qq)bg<F=wjJc#C*l4GmY)H;0aIktqF)p#a@90m=&hIe?cn0y>s8_=o?tYm zii;RzDXy5#mY#?`n6F8)eXwOP9$#mBw$4@-l-HAuHsP9!>pF~=7Jg>7vksr_D+n$T zz>;mLm91t;(@&@bRs=7~rHk?2j4L*4Pac^p4&jiuFyDRBfiX{ zON)e$`zyN*h)^#|mpZZzN@t&&{DFnwEq;R0Tv**uh?FGr`%HhJP4N0iDb@j zL6$Ntf5%^tTveqviauRHAKVcI(aD3*%N| z{LOmBxDmF%)8rR-De*I*6)@)o7`U!rP9(DzrwM<$LrtTTG6Y5u!MKD(t|os&vs!lW zkl2J>IzNLL%2u3ErBw4QKyS)!o|2g7O`4||6V8+*rrQ?A^aTR2OZE0xdx2fLk4gZ2S>_%UKq88#9 znb&P`%#hP<1vVyH@fK`~W6l<}BaT`z#W7z+E-&hgvwI^eT*lNQ{H2TY`uto|yAe@h zbiV9S>v?)#qbg_+5LJ_69WOT=;Zf{wQUS1UYPc7R?ZL9GG^QoFsp%EbjZ873BlxW| zB$+9rX<>#|J8z;lS;wElk_QEuJ6D-3Icku7rUGP=JvW&rm)d`uu7&V8jP-v_)nmO( zsFXPQPWrdqqdahIoJq+L_DxlPCLUC!n}gU%)s;+Dn4RjSU)iY&r>dV>sRG6KNm~}G zh4ejH2%Bg%S)ntIw~T3D94V}jPczs{;bJ3mkpdSApuEacSMn;Lbf+j(ClAP|K)qh9 zGwM}FT1ICM%;-4D=wb_^ztFE!5Q%M|Tis=5)Tb^?%jhlIFAJjGyfS-bpSoOD48n7Y zUM;-TDfDzSYVBp9rBRD`AFta(-oX<30K2SOLvyU?+is*+R`)F_Gp2ZPFv^~W?st3C zx;M!d0$9Y!_ZT!sTo2bWX~+L)x90QgCky}HAQVR%E#|3ev!`jKou%*lG)_;^HRzL0 zB={`kQQf*StrL~To{~;<>y0uZUzDXC{Yaq{YSa|g8Ow`6P7WO_cywLRQ&$%{CVI<0 z#!!5C^p?$X&5z#lB3FF>(28i(Vrc6?6~}w?F|gOHmfFUu1J?;P!3c8~d5I=*fjaah zd$3^@j7G3#QFGLHP+c@tIfcU>5|Ae!NXW$!8dsJ1rcFgnA-r=V1F$JlTcq}rCU6^S zl+pSk<*1X!DFTz2dsqvFr;oLI$kjgSYNDj;Rvy1JEInJ-Prv%;5_wgmb?(sRyjfUj z#HJ!X6-~=tS>x^UtFiD9n)QBBohd}LzE5;;BcWaD;msOe%`xu-7fLOd&Tf9qUhho@ z4#_7mFU?cmr5w9CI=NS$Ky8y_x+FGSc1u5jK$%vZ=BP%idk@$Z1t5)gXcy}&8}}+g zGf1;oV@|}(Ign;k5T@R(wYseCUorr5)h~~+)*_AG)Brrdw5Pkf&Ok%^Ca;o2mM%UK zp<=U~EdOFsPm?M8L`bzDWruo*8=+kLKcZR8f!nLD9sqz#mDvF79-aaqG!THxvjBK{ zfdGKpx(on*3U6WpP;LRRL;zT6PA5vvEjL$VLfHia%+5s?1{%@;*iY+bVc>OMrDNcH z4FEo*G5|O}3Ba#dC<_KY=uae8b?v8Bm|Yb!6mAOjya2x5lj&IF>nqGJ61%fh_a)sE zzomglj@bn~s+Ul?&6Ks9e8f)J+A$YudVT^M@hbvsPlGxgVxaRxx>hMw79y6Pt+x@ z9{{tK2JcWGPZp#g5ZueYUP$Ejl=!YVlMzk~yf+C}Kn0+i`#< zV@215YKSVBuKC$AI}=lxDy^wdPCiz0TuF|g)w}Kzvr(i?PHnB4Ud-9C835>(D3&Dk zW|HVq@%XSw_s!rrlv=31d(mf?dc0&Y)Xc&z!GvydnmSv$pQ!<;I8L(YLfSw>Lt@xD z5TzuIkj_5lp-V-IXQMYwm)LW^txFuKD@2j_aXsuK{^HejCzu+=k-DNK(tk)d+7>9=ho72{XXyQvN7oGxRw99;HBsx z2WQj;PpYf)c3Qf|QFMp>=>4kc?n9iVdZwf2YRT)f6pdOVlZ$&UASMmlbB2|ItWX}t zrzKfMmlR3+(_>+VI!8&&$t>_}<)R+xj$w7Qw?h=C>w*n+!P>fDb^11)sZK9q<1BUP zUbxt#p3ci&7L0!&5A>9J?$y^)Iep5JR6^=KAG{4vLUPq<0+mui`lA&srG)f4+X0`h zgtUcu{qRai59qI!64FsyCZFJp`_dJ&{*q5`)G9`E+56EdM&jvH#Y0SW=^KjX;e1-# z=Ob#O&s=EyogPe!kPhg>5@pwPH5u~Eku${{+|nAEQH+j;LFgfyb>0jT*oL~yD0mf<`Z0L6*@K6(A-*NN+9g4F200Ne zLnV^^=_lcgQHflKLuZF^i)j5Kzr&k;F^=|;Ol&MtE9j<7rALb5ocPgqAWGKJCV9=LaMQkK@um)Mpq>B!Uxrvdd z^)N!b3M|r@?NyaJBkU{n3Q005P#+wjGg9hqozWhh(FHmq9CphNl9|zH$;e#p?&Tyh zfymBCgdT47OEaTB)tHvi0cLe%G3gn-$t%lQj9S8g)|~KGU}7yW7Q0(Z?`3;1VASj? zui0)2T9$mZ4g24P(icr-m+#XMW?!@xe7$N4Vmn#vnUa+Yzba4L<>-_eK$|%JMOtf@H1GZR^%6*Bx@6)I% z)HT$swS3CsQC)xSp#9815?EU(8WztE+u9sFijn++@l1FF`WoTq6Q^uCW#=$C_a|M= zJkeg*=ntGN6L2k(8`(){Dl}I3j6bbKxu$rK!}( znjb5(*f0m#C)$1D;<=-cs%my@0JD^#{Os-6ETfa9f@nW`J7j|3P?YHP9&`{nF%p41 zL-`n^AjORN17ii8n@`sa#B^}rGa3uog%+ob)tf@a8Ifl;1kRD@%|xfV;b)2%N886~ z=*ObfR;2#REaOX7GLxA}WBy>Z&eiqTIe4=4sJ)%YI?O>i2+Oh{i)ArwpH|nE!l`7i zC1qXt5;w_~6st?&%mlnfef6m6Tr=1Xy@k_|Y3%gqQj^{IEofwAkY?<(WrFD1VBF*m zULzJx=Z95pme$SHgG}Xh0F|7|k)S8ylSS$H%ff#QZq!s}8Z|{G`y!3nVyP(8VyPnm zJ!2t;20OrNi={>|n7*)qp-Ko@`_VTTBOl2&XP-Z%T7|xfM-K5wpw1kf6J!^HNej(2 zWI1@*v*(~cUZ5wg(J}`uafjZ~)2WBFZZ-7R_)V!$4io{!&f-{RqB`aR+)1X-Xd6MH z6pirA&D4YgDUl)8yDi147L@Ag;K*9FTQ>UYgNJ}tm|3JdwAGK*BGiJ;JC2Xu$Al}u4HHtn=zLmYYieTa$}xZy29 z*%ogU5rND(JJb#2rMG`MU!_N`= zjCU<2YFpy-0?9SE$M2dYPq+>5MLKRfL)k0a*y;s( zgSOu?>3Nh*>|2hM*yfh3xRXKlguP=8i(22c=?C>-g!`ht9>Nwcz zB%w_$o6Jp)G%FKt$CE;6p{+?;`$JyXg!YH$X+nz=-O<&PN3)%lL2wH-{R7CBmRqO$ z#?A1_W|fY3LPkWd)M%7MR;QRXLcwUKnp>%BbQ&Zb7ZqknS%xY{NuuAAXn>)Lx3iws z$e2aa)`V+K0=t?~rq_h4wQ;FQU?X*-vuUhEPtw>T^-p17fayJb^{98aekP4=SZvbR z*9Oqo%g1Sh(*NdzHYgQ^le*wSZAzM#ZAvQ4^dJQHu5^O?UpbJaR+c26%Zjx4b6Ju4 z#EP^qlP33lWYgr}wH8gLDY9wuw`ACh`t;#x^1`h`ldn7sP5$!u!_s8eFEmZQ=JFIx z#u;cfO_na4L6ckVlVNGo)0#+kBJ*8DSbUt&YxP5B*v7kN$LO z{7{ANu;(SI@if3Qsd2wY%1EQeVoj$-QEkpf6&8yvdD4F zCdXF_IUbWD$A4#D$Rfwl{ z9RGP*8ae)E203291p70zxNLG1boXIrn+k-z#JVtEtFWOSKV1H*+3jXp7r8sB@S?h0vwN3*rH zNm?6vqdyrUjVpr3w3WA>YFG7^I314E@j=qz?(d}~Wf8&>!$hCBA-wrlsp8I?_QO zGC?0|AL$XbNYE#d#}irRA1xC6?HH3T}#Cu?UXqFz(~pe{^K=JhQ@}W zF(ZP)Byu|Ch?seovTm+?ZoVqLLXK{-Sn$f-kp@?!!QJINDDy*ur*cDUWRfq^P}m%4 zD2iTJtd*-9Mz3zDh%}5fHqOtOClC=zvb1?(r|>Y)k1l=nsHeGp<~(uwHRe3=5|z*7 z#mAqm=Lr#lg;hZ?SQorT&k_0AbHpvg7-Wvvn?6S@1!eKC$sBRX;hA#F(*Qz2U;G>) z|ECNR7sg(i=SiAJ0u=M z4#=7YW7(IiVR{&+>QSMzS$5I=%VOD|0$mx?!%;sK0%1=NA0Xal45qQ{{U2mZ4?X6i zID8i8wiy$|b9~!UTVb*5#u-@?MA^Oe1o3jdl#-kv^j?KELF6{7YtUuqYt{r&#PniL z5O;t-yBB{dzdqWYAZEz~aT`w-zrOwFSrf$Q*jaDWG8aLOInBo6*SANO??S0l`x{b$ zNAv_Cd#br=-sv(y*lrbE>O}f_O7}BQE%~xF35bjZdDX7T$?ff4by7y+JoN^=Y!< zO1IS4J~V9}7ezn(BTnh1;XGOhwxt zF)+A7ywfAgeRIi@r@l@$BG|c_^^8a@WjWBuJGE_o*36@qUG{RoyEIcOgGD}k^H3pr zYm3t6o>R+oFT;$=XAFzhmTJp=lh?rN;iOy&wM8tS%K1M8o-NLQT=jCKESv)5h%Uhi z&m|spcZKHsv*wUt0?a7@1ILdc`c#=a(xw26(%BR9NTfqYn-DLN?W84NvgeLV3e|;n z&S?po0!K)qZ6q3m)1M1&569`({ao+?hFU zGPS-bMUVXh>G1$|{qnnHoY?eub&c-8Y4kYocc2xv++^2V%*R34^$Ym2rMASP#{VkK zqQ*b@FVLZdC)1o#Mv@w5453E#w}kA+WK-i?q2(qu&H;O$iy9X}q_p&8icsTaJXzHE zeDca-*MBDM@+1`QaO}E+-eOBncAX;BI8%CZI~_=~>s7r%(M;*do^qjR8Pbz&yh>-+ zPdh)2UC)-Dl&LXv`zQ0Xrcv5=u^B+pv+0v8kQ2lIn-Q?8=lb%dtfnhW1l^W2b z^rVzW^%Jm>!n59|wG=&nC_sfO!H#C;z? zA*PG3r>gMvC8%*~S!*cIq!}5?4C%xoGFi)8J+ihhwi5YO;k!1mxQnBtw7gXWD(S=` zO_EGi#BJ6NwUEfDTQ6sADk}Px#pcQ{N!{wCZjip?vPd5;Z3dWa>WU3ZTw9p9)~B9* zpNbtT{HGiKQs5NJ!|0T8E)Iq5G2z^y`W9$77kBEZAbp?J)F@i&!aP=vm60vNt0yu2 z40fgzy{K6mwB`rEt$LC=BZ~Sdg~)91FJV;Jk^NtN^{BsdouAR@7;-8ZsUtMUi^?Vg}iY(UBDuSZ;12t+})yx4=8(wi$}4 zbL+~#`xgxJ6=TJW(oH8)m79UE_R}okf&XtpTCi@Ppy4i4=jdyR8l$g8>QsF#RLAS9 zPmR)7j)UiFR!@yd0%f+lxrLBy_{H+jU#$UgOAC!lQ7@c0xbGN=0^@t43>LYroXu0CS zWr>@aGFsCwB7M_I6|0+4Hf~wSR@L-}@W56UZ~6R5i&IG}qSH&_CrCFv#_pcB3X(+hAh#}n$jBXcLgutKR;N-zdKmTe_`;mGg>4W$>uK^q0Cd& zR2)Kh(Nr25TGccwlvmX>CzT1Fn35IL_u9`C6}(n5xzfx8&|8^&S|fEAMHbCsyQQl} z(YGDp<-JsVuU&CAF`rep)5SY5#`}|1abvD8SY}K%Jv|Lp?NTY|6HjKf$Lng3)zv;z zSNl`*SS)$0GxIo1jV1kIE4xI}FE!J*q6@(|xHz(8j;^UTAf8{9_aRF8hJae1<2Uu0%q6;cwrLMb$pycsEw@fM^?;=te69Vf1UiT5({HjNr`Xzv2`&0 zcO>;NWMQ3C6+)g@O~(^Md$tpAcmo9pQ!U)1dX5n`Pg_&!Mfk5y1#YbdoTD*#=p;=! znkC_P_!gKYlLr>|YcmqM)U{a&|472X+F54ga5A#i!%%O@&SF|AcS+>#6U@j>8Iki< zEGzOtiM)uZRlqnsBXR+@4w*ThFYt>Ug6MdNp#__H--XCLHjnPY*8OQlO_AZyy~=d% zR*>p~GyM(f#|T;JP|^Cm>WM##f{Lju@lFX$FYEsLLXD+v9@PvQz*bgINl=7}VK40M z6lYx`)~}u7$C9d1z5QK``n3SS9q1EAVIIRnG;IeE|4xDOCZ8VytbD8 zU0<-AY~A0p!SV(62v}W56Kk#;SBoZC%3%1$hhn#J_xHi|TsLCvDZ@jjaVd3#P7JS@ z<6svrO^v}HI8{o%M3-zqJUloKD4oHx`OgWC=Ksi`l|#PdfMhu%htnj7BXkaWQDZrL zg}I4J-+!lG7BzhkTw`wWQxlgIIGZXHei>|&UFx#mI2;&RBt~^0Uu*`4M>T2Rd|HF1 zl8;7TcuR4-D6oKZsV~P^U&gY@-)uINPd4#q6ibilYf?Y!m$hCI_ga|a0ePY)7Oi2I zeTRBVkYh<^9%EWnXQ8ccAODVh(mMk8SsLzrmTAeZq?dZ^83HAGpos;JOHDpXMyb7x zou^zU3k>?3Hbt020lJrqwGE=NM-hM+%Zt%{!`4DOvcFf)HYrE;-tg_bX}e4CVF^owd#19buQFgjG*$= zVjh*ko+63HIkEeDK%<&2&EK7Y#(jak_zsWOi;MbPl{4yJ37juP=B|m%y)QEN0WsoP zUMOmBBA~k-CMV$1_!jTt1?q)D!MDg6Hxohh%diW4M=yT&sqvS5*?Ye(JaqcELCkmW?7KjS1ss0cTi}m+$?E4lJ2k86lCAhapbMFvnmOg&Eh-pJ> zL=*i!l9ZM2*!Ynv{E;(s!s_}D=~nf#4vDkTkeno|4WsHes0a4|zS&*2s-gj)4^c0_ ztwGuYxBX|`UXW~KaJTe;xL)CZ8j9ygZ(lUC5M$N*(R$f^;c3aiW85xPC z(=b(IX0%Ve_eu()?+wi8MqY_Ii8!I~o+wdMh}|_tOv=`T@)#|gtXp$mdCeM7i%kRP zV0qWo>=g$TIrv|RO!Xt2pSuT33Y;5+p~HYn*Izb;t{8=1Qm=A=S}8Hx-b8SB`1Q7>R+h(F|4XUTL?k9P>= zS975l39tfY!Zlbd&+XMsaMMbvL*sZm%4rK4;=K!XLp%gH_VGxM9IzXL0^GnVtW1Gw zb1i zsUBYn+~1&y*>)LFs(C4Zj;&0bpm0b3EahLz>NSn5xEH=yjprr{oQII>sB0X=y$Va zGDk`#baNW_D5W7L)1SucPjdQ2o;p+C3wg~`Cv&gvg8nDBswcV1oz{-zBzN-GbRqmc z8rL)Qk-@oL)f*QNE#D~9T#s-y`MF(~++kPJo+}Q}vJ80GUM_d$(unGJbcd9ui%IUt zB$riMvIyc)N-F<|nZGz*b!X)(n-h{RjEP?zNj2cpvUVf19lh*47a-YQgr$v9Thwe! zSi>DJb8&bqo~iQL*$8jQiPj%v7qY!Dyc?U%{>bcuiBSO}iptxlYpfgM7tbfDt)872 zbvIwcJ9Y5`CD@g<7pI&qhWEb4kRLUX2=lh3)l*#6;v!cD^!v?N5a|NWBNjHBPdFR} zE33OgmE!HU%XI&H5cj{!0j7^A)m>&td~%{TUx-Z#)MtKQh|E#G)*BG=)V zxN+~$+>HpBn3(XO}K@ zGa68Obysg%jQ23VT9MIvbdM4J6|t?+Zb7&4U9gHVzj9&K=mZWX$<1QllkAx3UKT{C zr<1$IC)};cESLn{1Orzz)#i{1k{tj~ZcLt#M4C7IE>1HgXLxj$z2^)3X zB4(6V%=W{f%23^YM@U0s6`>n&${~&SO9PHFM$-=UXOLm!i2?dN^Diiq z7UP9y6mn>jrj0X-h0{IX6cXC9!6J1(wBFbO+2rJD>Lyf5wh2eWAh3X3gBpCwl!Tgv zR}?1r{EU|K70>IL1WGGCuVnSazJmoD__2-BGP8cGz()R-Ua;g z0Y4%p%cxS~kY(;(SU+_gC-#brN%Yz{xp`{ik_5ac*jx?7s6zzCZht*cK&IW7vWyzG9%(6mKfn@bJR)1$gtmeCMS3#+r{BG zO&7v$SQc@_EN6xvc*ZH;RQOHPfp9N#Y8dyz+N~_BtbJQ1`kd$k-~a;7RwT;eAnWKC zXhTFFJJf$&B*Hnw9w*TV>U0n=7(#cM2t`&j0Hg9rZ2_VTjHZds>Bi=X6BQJN==`e8 zZ2@dc5S>?q)sWC<9QJ_i=LWjHR@U&@a(qONYT9n8ji^pPH_a50-!njrKZuCD^xL%G z;YH+yIB4yb%2^`v>)#d;vq$|E3=a^APm%7ExWMZD@N?KQB2m*Bpp+e{^;B-dt_dUN z8R8?sseXG7eSV9IO-u?(ieooOCXbWJfCC;hV~J%vt0z+Ds3oW&CXWrwKC_`vO&AZy zVk!LYW5k#|qkR^g>bzdYn|;RF@z=>ymZwtT1W}n*>Ia?l3+6ZT^us%%_1)_GEH&)4 z<8pWa^&ueJ+f;!iT+lpR9#VYLX@+44mf$-72BN7h@M0feuLp_I;5IguqowYy-nzKZn8~(Jj?x@WE)<{WMtrtS>~$a#M_jCr|J)?x6E651Tf0v zwU|bhlM}KEveKN8kp?k?uY8kcYrc_8mQj@Umyd%ksZ?88lcKu`#mj3uVh+wWMgP8X zLz*e82Cv4`WK;;LXe$&?g0F)&JIOHZ?lpHy#9672c1SNPyxgt*-3^uP@e;J0;^#EA zX>UtQE9en;Iwc!CQJP!&KweB9>9;-cucUC~AE`|rO$ys2>J{fR|I%1<(3JP(`BO&P`_Ph_#j zEXk#gAG{==*aR)ZvE;B1fUxqFVV^|Kj(po?EFuTea@xWoc511%W>?b7(-crVw?F=~ z6b?ojwH1b!#*}mJcBmf=3a2OB>kBU{buMvns=;)IPeWo+8Evc3GG;V~dN_yVaq)QG zYPegghlWmQrN58Dnlq=h`l6f=1{yAE#mms&XrR2~HiWxnM!j>xwhV-@D0bJe8REU= zf0#!(IpA9fJkiUkdp$qmMNH1R>xs(UmA~RHEO&nH;y1+3lS?R8Dwl7@d~*4EOqN>l z1+jy_Toi^*k5Y>iwd#AFc^KR0%pJe?H_%B3teM=mGD#>wT_Seaao zjN!lB8TZ8GJmPp>OhF)I#c;>ALwU{@2(J>}A^d~zzl4K?Txv0tFoIA-IFWD~VGLm` zp_*_ZVH&|tXeP`fr2Oq$h&kSS3x1OYG2M=QXH3q-?s-R$u=yeGUX{B?}A-Q}r zCg&J~=sV?UL2Q{^T1*tpG*L7?7Lb=yVsqp&AvQ%W=f*1Ja#pNZE@iQPX|9uE-EuiL zwm~jO#@5Qk6T4F`d9h_&G@{=CF};KX1P53cN+=|pKqw=eO*oHGOYjq#3G)b75w0OD zA$*&#im;k+JK=|fdkFUt9whvZ@EBnSVFRIykZO!@?>JFf^HsjW(x|vNg&1)EMjvD2U6+r&34+@P+(FqCEb<5T{+fD@ ze!v$zmvJSsJ$b!wLt*Y@AA;K{j99To7khP_kpyDIwligw2vbCs59H{~j`as_Gc$9g zXLf8dvw!~7%uG6rWVT>HX5kesM`$`{kBKO6ga)XOrDv&fuEF~c%ZHrMn6$T7@>ZY| z%Z)^+&ju`T9vPd^1x5=*3-lKgCxVTGbU40O3R8#cme%T8-;%Fb)yHHp_Zb8a9#yBo z4V^7W;h7bb62(LC!{!}!i-lD+zQx-Dd&tZ#nM_++WUfdZW}>IsRlSb@VoLE`+EI%P zM>eT*xYL@%m&zcbWxBEzskhKd;{=jaW#gXNo$joXWLVZdg4jE&HOaGeK##38N0=8G)y;mCbtQ(MJMbt#ffn~}rgZ#Fym zsmVPvRq=n2ym+R1b^pI#x^JfX>3@*CY^Iw3A0#iFsY?EXmPn<-3RG#Ck*It z6=Kwbt4ZmU1NzuteRg0Lp8q@x-+!J(@uy{><-4^Ez}nORL}fER25|sG%w^=qj}l)d z;vKZTP(A&D9(gRfkQa#fz(x~72%KbLxtiO>$vx&7kfJ!_|SGlJipBof48l9jB;}ANP6h+Sx73&MADm7+(V^~B9su$Amk7x z5xzp0PMA%YPq><(k;I=VLObk;>-G+grx#%D{!ezMj@~Rh6=vdT7!?{zIG<2Qm`ON; za5Z5*VF_V5;TFPo37@Ak{mVBvk}6Ou_&@Y|%^s2OTtQe(_#WYILXhx#!Y>Ky z30;Ke39k?|k^(od@`}CoE&~3}FCjgz@vK~Sf#_LB7kQdwjU!7nzxU40sa#dpDd?<6 z*RWbwKg5w=8)|Q_G@CEP<=Ja!#-qMaD)NNmDi6qRmKA#|vDqAXgd*5iF#6(ehNGj& zk>zEH6wv0fa=AwyBlqBega0!9U!niU@~^%JHLQLn^mNb5x#(-JpTavw@Q1P;wR1~n z4NuN3ov5%ToH!%>gvY!>vn@(%oatHb3ZfrH89VBe6u5)`k z#j_Ts%q-2V9VTO|(RrtQHV{IM5b^bH5nuZeUpH9d>y3!7cV~*PJ4N`C=oEm>%7r@x z(86%1KwVU&zj$xLAWU|d#2NOp)vKiXp^=7O(pRt2Rqv>x>R+J27CnkgRs_LcAkAIB zC(Th*aga2LN2Ts|FU#s4mQ-S5An?1iu2#~s2NVyI*I{xAlst_5@4{q%2tS!CRd)m@ zeSthCB8jrWN$;pKto_lbPy%%wTs?!W!^^Ux=a;b6DbgP9EehA~PiPm!m9NP5W?K$t zifNDO+W&sP(49B`jVE`Da}mPY zVSY75M+?3>52<68&~cD*^9GjN0z;Bs?zx{;u1lBe{UYUZGDUWEPh-iMUhEBsc37Ey zR&{6VXrH&b&Vl8=kX7!jpH(hux}f=rFH~;sz;Zuewob3_PUzaF))xnyl>2~=_Ic|& zWMH}9Hp`tLxkMBXUHUw+;Q0eRdP? zkId~?cW69&JH=r}v_`CB_o>;eSEzGH$`%!)adQ(v41o~2amHEsg%!D7xm&7Q3WK@M zMTJ!@MRF~wYAKd$aaBu+TuZ82M$2_{RZD5`SSOo-6U%bDDtGhPKFnEhAsc?x4W*0! z*Dmr6xPQp)4-jN;7%)7tD^ZYLi9WNlEU|N2V^-j6x&i|IY@x3;z2%cC^q|DGoG1|H z?m%0G``mg@Wuj`1r~QQ1aFsLYVf(!L1wOxoBNXSgzNs9nR=v!#_zgSzNjm%B&j$ro z(+~=Fqa&wjNIt3!%N4#Gw95$2l0K*cLPNT+2dYu!?5<*%Fx!{AC3jQR^8OVgjphAL zpW)8k;cSpY=PwDpFB=s}4=s8I3H4*0r*Z*)7qd?A`h)qaJGh-#c+>`z=j0r9IMU>!@ z5BT>Y0xh>Xt4l zzw&=1O600OQA3>T#&~P}lMtiGqc6%oHkyxa<;Hj>3ZG=SQDm>)!9k*&x*F-+tmAFx zf5J+5+xDZ9P2!Iw*@%{w#-|)Eti+?8y{t6-YRy{*6M-@!B;O2q`yeNa@|~RgY9-&T zxY4MTtyQ6BzjrXvR-!IKr>`Z_xxsub);TA`9cl=-NAAB*XK;4ULHI(6qNcxWX+?GJ z;xVfKVIrhzI@gyNOh#0`S@zV2-sZ(lHT4~NuQ8y@Vplc10dtXuUqF}aeu?ie^oJ^) zr8g{0q8#sVk6^=0x$#X`?uXI!-Mm0YO!UD~0R$kbgX-SVKsfin%foa>mnB->d zjr#ppMo?D8gbK+mlUU_*>TLAJGxteFt*CmrCwOerQ){F->V3`Xwx1tLI77bNLwpGR zeI8m#^V3fbJlt7+4>6e7xVO*pL))!GXwwAITW2>KvV@kKSqkb_9Of~WO>3XJ{TI44 zCx>;tgX&xLa$j(yj@7KX9z2u~D14z0Mbk~K77K+M3H5QQQgF$*j}We)6lsovsGo;E5m6r2Zjws42u{ zsZUHaL%vX)4H?eLOYeaa8Qa+4sPH#@MDvCJ;cHTlkg_`DmiWG`*zc=_fNAf`wxgFh za9=i~3(-<(UFcGp3?L9A*nL}fI$?FJNQzBFlmFu zl+~gV=ujdzNNz0CUq6uU)Gw;v<{+X}#t|h2&lIyHbu05)xW*?Ki}zr{5+Bl}el58R zIKI#ax`WOz)2l0)3Nl8Ht^_Hrw^MjRAFyF;S!sUO;F?RSjKMXs7htFB!t^PHKpI}| zakRsGFd*IPRVZtMLlA4+zWCb~unxOuw*~CI=#Z+%$s_|(or689MY51(G181*#N`Kn zg>i*$ytMYaG6PDpPC7TOG4m8(5!P+o>%t->El=45Oz-JSi6=e%E5qqNgSnRx9RR(p zi4A1EFZiYA^z$F@67FLhS`RX8n$;OnXg$6_-1E)uo#b-cielphiTR>Piw_Y_GVpOm znz|5{N9YKh?Y1`R)*N-SR(GKfAR*^fW^no;?Gvf-HNfa;6<`Nlnt~ge z8P3A|ZRWX&8;BSLL1L>{rBXZ849d>!&p;OH>>61^kC3reQRm26d@G zQ0o>rjjiQcVL2DG%kqx|YBd5VDBQ_*al7u060f{ZY~NHBJrQCVXMu!DD|W8a+|mV5 z^{jW3w^~ikJwa;G2-ujip1#~8hSUl^DIquPK}$AA^C)K-(2BYJ&3^TUG}GoHX|aDY zjj9i+gsuPG^9%CS(?pvicDXdNwqbi;npF+?oAd}2o!bkICUCsDj; z$x&2u687?`a%q`WEkuR3?-;siDm4d886wNN)glZ~1=&FOpcF4+GcYqAhHdi-N zsnoW4plk?Y>!?7pLmRE(?9k1Lej6i??qOvfS-+2e&BqoAAN!ik$M))vyY&By`oEk1 zCxpFXp;!G(`VyROZ5l#%O0Bul?$gztSOhsFgR<%lo)F z<)won#L{U_26npRdL;qbzLS6RfgNZ8r#e35?h!iifRh=dVHl$d8(b9TUis->lztl8a-;S88~p0WusGq(rLEx$9HEMp6UvdRqapiEEq3=k&MGC^De2@w zGFcG$(cT*mQ$yE(!b1#1i4%Mn?TfbI|CEqkR^N$71wP#^z!taR4HE+k9!suzppK@k zRs5Qj6V8xAgO`~wcM8mG8+7g`mA*>3fJ@0{uIepH56mI6L125T=v}w7N&Ofut+7cI z_NM$#DcQqj=c3n;R1qtLSY>j@O~yGzL~MRq{^Lg(FBv(;MK0sqh;wG7&V_j#y9+JV z{|vo-uhh{v=MJh2Z*+z~@lp$eEoEak0vp34#H>)i6~n^tsglHTuK+?4mn6xyzsxLN z>wnf3e<4Xcr@NgCe1AM!TL-vV(u;?moJhr5XZ-J}m9J<~Pmr_YZ(J~8G?(Qw!~LU{ zejRn{UyVU+LD8b|YhvAUxhl3*F7skBxirTfkc&Tdmt3aBR?FqW*fP0P#{zO08=E7S zF|oC$b2)9y+2kKQwl3(a3;wMxm|GX@j#WqmPpnifd9gw+!T=eG?^5_uD}0&jU4(Ij zpAjw~)Dr3mvj~?GE+@!4Nq0425kbD$&yq&srz*|}!co5au`>axdgF~(a-3HGkvE?w8$Zj!qW?&8-6+;Rz`l7GW;aJ8aX<1ILR!WeQ2wFNe; z=kx4? zk%6sGaPb8Ea>)zygPX)T(r3)At(KM~tEh>-aK^Hvlc5`|WbTVjsXc^2CyeouQtvu3 zruEZD#UXAU9v|rc^XIfi@@s3SPSv9wjpO+|XQ>QoCh=&|eaf&<0EDHCJSpF5xEn9lF_YW&~o|W&UTXk^}+?^=6E74tV#gP*#LCgxzgt3C3 zVR_F&|4bcA!}&mdsGv1`oyXb!cU)n`-;GXlJVX}1BhV(!6|^k19vEuJ7Pt0_XD}}$ekf~4!K(;cYROOBHxZF zxh#q8k;^r)U2?f9wplI=5xFo#LrEthGrJLGa<>;}11$7ac8Y^*{qV`4tJoEF)*CXZm*gpA^7whI?4v{ASzL0PNp^R`g;XFbup`I{{a4F$(!qtRD zgrx*Yx5B!1a+Po!;roQ25K>5Fh!{RSNQ5%5|9Jb`RNr*;rO|kRN6^@GcE0n#rjenc zv9+7P(OZI}`{eEw?#vH&%A?HIvDI?7N$wWOT}X9AG z*q)8NyIJlux^9fccoAO~TO*fiV;yp7TREXj$ZIUXQ|PjoUtZ3Rjg!laSeaa=#yoPF z80)1;<5jV(aydJ;RxahS+vHL@Mn-eEf5_5NRPZ-cFt$wIdt!6sk{6rEMcRSxcoAPO z{W5w2gec)hgnJ1O5*{TyP1r`*MR=L;H^N(lj|ooFx(QywQH0|Ol1Ad6$9*Xw{o2O+ zFkv$9CB4K?Yp~SVLw{hza#X%=5W|EO-f;gBD^3shdspN!9D^semCO;~WgPC8aX8!@ zhe{8?8(%-*Ob)s~x1AAxAyql2z zFo(=#=8&0f4w)I|keO-@nTh6*sWQjP*=DaV*S$VoIzc9o8;VR~F~TGkuWDi;u32u5 zZJ^7TW8+Ezgzz`QLV`RmCR|5YNw|gZ9l{R?cN6}HAaNz$uLuuY&-OcsFL6_dSk>!t zXIo9UQLYr8EPBsDM7J`v8`>=zv~x7<0xw1oBlX_sj-Q`sAC1w*X^HkS@z;E+{Astd zr^wyOV(?PpZw~Z5BixPTs->8IHGdbv!_7#5?9`@R!{PI246G!NfRDe#Il_M=UeSQ>m%!l4T)Oj2D8!mrG$e&04hRNSh`5PjCZqz{P^5xIf zkf;c_|41pOeNFEUmIfjV8kZ(2&{mQEUe*hcNn2Te_pn)e47c%o_zjoLfy!{- z$r4yEWqihoXKxF?>1zAt9I5S%)Hdf~r*~bm`zbyByyU(8UC4~L<758AA2W+Dh8&<} z{hO+M82XNFm`>J(_wEgExCVDZJ(uw@iE`-=VkF&#&c`@fsE&` z$M4E`4#rn!Jh%0T06OEiH>kT=lM=gFYVO z)%royG=F?nO}}k+Afyl5Stj*tAXP?zOXAp;reWra9x;N=copc`k^SoOo+q+jE$U$b zoM>B!sWKjDn<=MbTW|tLg}`rqbY!sd@pD0UYxSRkr}K_}xuL<|`AV=LAeIa;uV(*1 z+T&LDKWp|6n92?QfZ09thuicAAA0_liQ13Hk_Uv6DD#m@g=V0XXk5QB~K|s(nxxVpCb0cSBvDOSN5FC{{13zkoaw1%PQDjD;F|i04L2CZM_sqS;ka9$7UHP(3jZ{R=kr(U~W4fI# z5{i|`j^=F?k&+>V@0Wcw@%4{(-a&4m<-SPge(sFPdLl~|m72mv@h$b4BOF7<- z=XicxNFL+K+aWf}7wS8)QGQ&OtNQ5|$@j9VdA!1Ye|z$MCwJsHJQ#ZX9BXtgOz2%> zZ11Yp3j~XAT{&S49R_P@;6t@ioNSqOWUWbCU^dGKYo4Wsg`J7e_&`V6yOtKK)w~@? zpxqdV?S@Bp%iROdbN5H2f&sOQyC=A_>K&b`rFXvqK%9DX?gJ9!Sp1vFz#)rIyTKf4 zI3k_>ypI=z@0TkUhjLL1(C{+j9&i;ngGZUK1KTMl1*^x(t#I5-^);;$7TZjOWGy8p zX0;31GTX{$e_(A!^1^UeQ6eg^c{^nv!O$JT%yVI)C_1H}|I>kd0=+B?$SDQt@KBmH z|GspCg&T@;aXj&RtS;O%W3i z^8K>;70-d=@`REE949%Pumw?9C!NpX50s_BBfL=AVPmfSQwnmk+n;ZvurTmI+Q*ib zo;{4Nbd&^^ZB0+?>v@6*^m((7qe*?G-RsTnfom6y>!HSwNHn9nA8@3)&4P?fA)692 zFe~$Ivd@O@%j&OENIwm#3lY*LV@j@$0~5{8DGz}GrRcYHnWfkxzVi*RYS!Ft7wJy^ zz#OLi)Icl@YhvSQzYbYF->q`Zfp0{m1Pc)x(-0wDOkmWLl!XYn9|)p;n}LW<$x|jv za{z~al0vlLz-3g?sS~>5Bbu`_Yz~ah0N)cROnc6-KHqcTAadi3EmPS=3SZUlP_66D zJ&F-DzA(55Q*gvy-*1dvopEGxa%%N<>;#?mH|^P2Pqf;TcxuX>iO2Fg{+z_Gspk$8 z%}KFzRP3Su{-hM#euXia;tm?;tRDw_ z0%t=kzQ<_yqzvpaJ)-Zji>!0Qyroi zS1!11Y4ole$_(ZV=F7~8+uloDxjVEl&^Tsk-hpRaLHs?QgBg66v!|jLIX0TnJETo;Nmm*WqU981K4kJ)+$HrPlDrBZDXLKRkFGnTL*& z%qjYibLlV?B8yOpS-d@-v(`E9(k#z7u~K2L#{BbO8hZsVr`I*^wvtQPmXc2HcP`9*`y38*p3Rq#J+*_E#*OaCJ$jJbBRw6u)uo5gY4nyY zo&V$&7cok7tomdn@4Vp{rJ#|qYoX|gc*DPx$EB`?uM`^bO4s7xTuQH2qGJ?iECMC5Z6ATB)9bTTPD;liurJwuMWD{_5 z@T-@fI+%!`EcqO-S^xX~rkDSGvv@`0Y2g)pMyHe*-s=htZw;@P`Pb>aS^Tb;wJyyZ*5Z_%$!}u3vlIjdF>}zN&Nu} z%9P~gEn>=cm7W3(lcV)h6`S0lM59qDCrhmQNOo4dw?D`1v+5&Z>AcZvg$??M)oV95 ziPC8I#fYTV>sAboU%6hlWAFr%A!nOSgJ;ot2gUUKi+R<2w%)FNm9@ojcFL2jl-9=p zA8p8hy5}~SQ)9i%9L>#v{ynLWJQnfTvw#Sn6P#VI5dWLm;H>0r{5Bh$qcg!7CrPf+ z%#;Pg*1u-J(DxT2>=Df9>5XQP2?JpS@9lb6Na36G0wx=g6o37TrO|Tc$}g5iOQgkb z<`;lXr29S3ez7!K%Kf7+mPX{^Jy(3OG$K6jIqQq15lMT`C&@PdTd z4$P4|Q6GeTM>T=bl42wL0XJXmF(t%my+jZq>J8rssWP**|22=b@@4Y7ff;;NkBH*E z9l88Z^L9KzA}+t=%e3G%(}HDI{g)BnE+H^0?Lpd3R;*UMbUaDD%pDx_BSNHNQX)j! z_fjf1VrgmDVKT7jX_18zE}Bw2Kn^{BXT@N@Sj3C?gJve5t1HN!RaP%7jgS8V8BEEj zM2TTC22nw8#En`)NmeiDhoypLGmRNN={gGwdWH9N%MR2JE@FqgHsATBsrk;MnNJ?% z`WoTLx_swU!u5pT65b>nJq^2Y!i|L8)AOBw=ISB+M8egC@A6L4Nc@xp42?Ay*oE7Q z@D8;Ifxjzvqj#O(V-z)e*DVu?vpX^y@dc+t%+RMp)bT$&cp>845De7E&h}GU>3Sz1 z6U;-r8RzrI%<5l}PPA^5KQQ(++TmK#_`IDb^Ds6xBDc+l2#lcI@^CI>N*2v|K8M`ZDY6R7xZHo!IQ|Oy%XF5*A zJO-r^=_k#BT?g#w@WPJ7OU49|4z{#JmhWGckXvuZmGDQ6iKRtPY$k4CSu#Q5rCX1X zrSqCIiN+{H4)5^Zd<%#{;5!o0C!YKJR^oyt{Udx+m9J)9)Wn z2cz8v;~PY}JO#$J8jOw&F#!a5k7NZ1GyQ=L`_lm^v?xt*jzxrHck-PCbGRT6`Y=7R zCq5|!?N1H^t)bsP6aTK3q{VLyl%(a66qSX%f$k4ddE?Y;s>hfw%Dt@HhT_`pZN$v1 zh-4jUHo!k*aG;`p#wC5Hym~e)@UpYljZ!(TU`=W&fGu2(Mi-)-lemp(BCXCmz zv@|i{ZXxTfRW&MD9<6g?=f(0MSTafek9|xuU*yiGpNBpsj4{ulT%6RhKs0LhvouC} zQO&N_O@&O0fh*H;H|FjSU+;0Ww0LjcNkVi-IWW9AP?i=&a}d&L9ln5a1t&P1a1fihx2GhXL`$5TL&F1m-=jZ!V!Pz>QeY03WISmGh5`_@kCH>= z8dW|Gq`~g5p6pp1Un99tR@t~bDLOWV)N~^eKgq$jsjPHF^0GVLR+ z-O1m|3A!4wmE4obA}-Cc=vRMFc@8RCcf*jipO*od5=B9vz_`r?(NhhF3Ctt z$Jh1tcD@NZ1CF$h7Gy0g8hUc@_ev%DRC?h__>Z%TO9R#)=zj;ej4NkAx6{Eb#Am1UkDhPQ`X=_f zJ`?-ovL+)JI9-i=bj3ag;sbA{Ly$y#LEw%zKyqH7jEjxXbOKY9_1+vBmq;hpb!b1; zYH6BS#)dySxfqX|dsDeFJmM#2MGEXP`aCqai-jamAByxh}Bf=B@)z7hl1Dwb``*~WW zx!A>S*^Rk^c}`Txr@M@QE zKfE^wc_lX??*aY7W^9IbbxN5cjId+6BAwm53XU^H64krB;cMwIa5}s%tp9Dk|`YO3j-3f=7_aaMVy% zqOcS{4sMsP&4ImnJRM=N*v)}CJX$@&VyJvwy2Tjbj-F>&Yn$vzRaBZWbhMpKw=0=W zw$QBnsHdQnLj8R2x$fUizBQNRiO zI?ck8iNmbz$VKQx>g~uv3&rNe{14oPo}@j1k@=)Oq4(WW{BMJLM*_OIo3&~>qP(3C znyXjcVWg#dZs)}psZIAGXp?Y@gVtv6zf$A~K|W7CV;CjrFnr#gW+5xE_h2eZrrDk$ z$r_lsHV4vsEKEpRd^3-!=Gd^Y9Ns*7YR~(yQd+Ik%;X8l!`pEpV}rwR<>XW@SDH`% zB~QVzW?qApIbeva`Gk6(!|MBsAa>WsHe!u?WI#9a3pjXb!`;{%SoTrsF}%5~r<__0 zT6+4xPaE}r5~`>dC0}&Z>nepwZdd8k`+Rr5T^Xwx8|_*^nD}Ntg*O*hZnI!HGCS&E z)Mx8I(-Rl6UI$g|S@9nkhp1YvtlQaWF;&n0v`1Fu9!F10zO$q`-+3WqHFT*NZsb|Q zQ&#vFR|)6MVTn$7oKQpD(@1+2VYL-r|Eifr;-;45t9nbIYRNTUg*P>>?e(6$*xSLV z#v4Y!L067;?nPCo(JzOtEaHG@X3eVkp7x_;nHK0Cp2~y|ac^Kz+MAY^fG_RQnCfQb za)~EWzn_&0&KIhm_1^p#O%~5JYI;|FVy;zwE?uC`6}@byr7JDj^dKduq|b+?i_S^CH~J z*fM9$Y3}a7%QseYX;}+3VJEBRVECD$>Zz1&1YM812yb#WLm~>Ox1+J0<`^eIj^n?`$y-Bq(skf0X4C^eMjhJd<#XbQSy zvfPcbIzu7g$j3MHJ(#E0+4jD^-U3Aauy^K0ojR1}CJ|WM?8K z*p~>Yz#YlL5na^mlZD~tqD0NU$laY%>B(m40?$p?f!`;j-WcZX4+PQ@>b3J`UwHXG zM?2?8%gNs=@rceq$5lg8NP;R@i@BP8i(g38>Re2OUda3#@g+NaY14 z7Nj6zsFkHX8W*&*ScAE9EHwC1YYBmHw2){dMhzxO)P&T7 zalFWe0BzMLrjSVJ1}Lr zrW=?H?o6i}mW(4wH@t_T8{W@PH@t_T8^|>3o;y6<_#NL4M>mjEOt$GpBAaepe>l3~ zI46Y$p&QE&3J$aBMx*+h7B2{a67j-bS+o)Nv*^aX-4@+g|0#51eLCGJ+x7pQZcMEP z8=s4AXsG|c(2Xbcu$L`-sFuK^>BiGSH#mImbJGnS_p|B7a!og;iY=@Zl}R_uLXn+~ zwR^(h=mw>I2Hhwj4~D*fjGYyRgjsasIOv8sm^Iy)pFt-A-6K;e1G~~5pttxMO7n3Y z8!HM97h`st(jR5D9=^YujSE)hvQ3YUeMIlwTN)$$bnpoiF_5;YnY z1zx|Y?4^odMUvb33Ga~%kJ4(gfjKv1Br{CxO}x0-#G|@ttLzG%u4S2p&HMs)U7wz! z=-vvx89TvAg}*s5s%Rv3ePY;Gf`hGM;|Td0y$=6FBPLA}2aN~HcRv47)KeG7wO@m& z*BMy$|5$q)xG1aieS8#D%rU0Kq@<+6q+}D*3PlSQl@tsUU&_~7w02cWONDT10z$@(YOi)Dp+iTwt>hkGi@bCXc#iHg~VV z-3D_d^Bg>X*U5eC54ua%0?Z*dpZLpYaGaAQS#d?h$zRdj-+=kcBt;Zp8 zSZA(o>!(%tTp2Ic5OLd(5V+wW`hlVAi{ANX7rabgJ3JTho)m5v>1T(qlqwz(rHuQe z=i79u{RX5>Bia-T3h~h$>rQmvz3-fO(Sdy_UeLE5K@42^HhVdhpmW{i_37t)_Ts7V z;)j@sr;+jQylw+c!WHg!PK@wH53@!_`eTPcie27`=d9NArMfH<`L7ed=8fC z>a#5C_$UwZr$xEEJx|?Ov*2^}8c+jt@FV6*Hs;9%QA)rn$PqOkU zEO!i2>T_B$!d)j4x$ervASbpYw^UaOhM5;|{3Df#UBT-FeANFbpm{2><*ReCMZ5>u zBJcn3xc?|I4thN2hIT2r?hP#rbJh>BXRZ#*#9ILDQel_fLT>?h^>#Z1=P1FQD=3!NKhwesNWW0oymA0MN_)n_ia zi-&B(9)fLIn0?5%R+xRDqcF1r=;Y30`*(0B+T0~$@%rn7WA@_?e#{u_u&ik0@^g53rg%pKLZK$x!#NsjYByogN<30tQ%0KY z5Q14;y(2fU7g?>m0%5&PX;^O0{Xv`gF=@;Tx-9*TU|b7A*@30QvHH~n_lf&LOwi0| z9U^7yvR<>$vw{!bLvt6PLty&Asby~9S?tcBBDtlC`kWHJq46Rm^(i|Z5l4Zz*_dDa z5JT9};NSZJQs#O;^zOq|EyS_A!~cX_cW#m0qIh?0p)J0NRNPke&B()Jz1!DVPb}jV z9NtFu>Vmw{E3syZK2OKldOe;ErQ-SrynE{(!fP&p_x7OhAUW*W=KsSG{r#Ni!UGA{ z@5#bV%>iXcpYcrJ!>XrspcnEx=+D3h%kw!`dU0H0nHTL%#Uac0Ou#9r-LrWI;MqyI ze-Wy?+@gqUUO^Y2@;e{kA}x%>F2^Ue| zz!Uos)PrcmvIE+P0Z@YV<6kzT=L~o4vXIf&UtgbMDd$=~E!ufrIcu1^G(_f}Uh5w4 zeW2zltFgF~IbRPF?_=5y%TnAS)Z@vt)>hw;(+ZX*@W>0s=I81fm_2!ZQsEw+)HoLQ z#22|>R+*6 zJWj#lPoX&#uVi3Ct0TpX8n&K_B)8px5_5Nxo?> zReF*{ zBzAc%CQ0MFyEE~+K|V5h9;bI7`b&{sOYYieZ{yxC+IyX+7u=PI36L*1Vg$sxr-TZ8 z7Y@bJo6#M^{bb(tv~oQe;rW3)EPlt#fgM{ct`PgeI9E$QzDpnGg}Em;5C?hV9Nn+s z9KE=gQEGeRHui-{ERHI6yCgQfd_rDMz-Q9tD*=N#YpzdNTqtO9V5_w5mZ zNh_Q9Hp=q$oZ)=hFV@H_+?y8|giN}IPj`8(#n)tbP4RxR_cORDykF-ArouMws3|9B z{qIK|u|<4;9oH$kxl6*VN58bnIDoFxatNEQ=^4XuObc7)2VQ)E7Bb756&HHs0|)dj zbfVUV_*LGAI4*I)prh|0PFY6W87_XEdtR8O^s`=huCOc*`&RG3sPIFnytED}I4NLntJK4xwOAZs3L8dKPYF{t6OLYh zkp05P$vkRr!Quo*Y|%PqW!UyV!NbtlBECu_{YBhmMA6*O$}UK6)z(TAV_Jy*&U%B?yB5=6NzSx~sdabL=zEB57-!BN&$~ro*_7_%H!8F~&nu4*YLPs2L zVjSRHt%&oPu6XkbRu2bI_%DHxfp&QKVUSLYUH&6{S1^?Q9M$7Tgv?=NCwD=KK0)#@xWA2T;O6ejIml-~xorX>Mnuj;}VsFkE1<$@6$~2S>1#iI*eW zdk^Hg{f~x<(5KAS)0aj6f_nYXBOW4y(0b5t+{j1D5L=AcOY`t|P*-%CmDv$zeaL(z z8_^dt@K>zYjD*;^cx?|kdy+KK)BPn%c;E6jJ%U<0_tX)-^p^vyj*b&W(3`cme!#Tg zfsmEf@c|wQ!jAe9s|j9OjC}82-wsxL()jCgQL|jP8;S1JKjO)r<*1Ce!g_rBL*uR? zSOBAsCE|U{(r|#X;yeroALQ4phHWF|n55Atc^|T|Ey}L%3?;mz<~#hjp3@vC4^A44<`rJ=g6Vq~0dc)9NQm7yZ7&WR}l zCmXk4W(`e_#$r9MSh?2Bi_0+HhuFp^pKP!R^C#<*jq#@ZzUE}(g3xdbKj%36RejDe z-CB)Q43x$Vq~SCK)$C{4uuONa5?D4WaIn91-Z29`!M*kVP-R-Y=X~r%Ipffih;`C| zsickb4jydroMX2>=a8#8%Nm?9_OlMWhdU|o*HpdQE2i`qI0{`07dY^rUV#r5VP2c; zy~|awl!uL9z~F+V=Oa|3Ll+=)7$NUy>jWh1w4zUobj-ncq4{sY`srCmuPWE#nj+2+ zaOp_A7f34Nw-wmk-Q`Jqz)0U}!KyBLSr@AZ;(+_Wndpw@dk?{NV4_FW;|4_9#h#d~ ztn>qmj@5S<@Y>DAsPI$I!qbOTUjiGCFM;Lq zOJIAW@u?5q^&NVa6;`ve!T;7}GHDlm4@qA$<&C73|KQmvdkHKlfT6MXcY`J0 zcZ&9;Sl=oSE}qs>&=C|=6}X4Q<%alfL+pL`!FU?1Z&)nBe|yhD{GaZbkN3X6$GZl2 ztqlS#tm4wwC)_Jb*)8K|T& zE}?cys05ttq1GrQbW&~G=k9|m@Z5+uBbTfF;Pw^P$!zcGWk0!h7eE_)n5*`H%qBeLHGcs~E}-K;J;6{;IRb(`nMxyx)N=n4ct z+(9B1yJMhgKK#%wcQfEjtLaAXr!F{q1OJ{|X#W=_Rg-B`HSzGPsqZP4b4P*UGDEW71k zDZvb5jj}m%yVjbH^@_3h=*_EG{CoBj7&wkx|CF9Mkec&??Mizi)-S+=Z1T+;tbv7# z?uDDS*YRq}iVc8VtPu_<-cgSK=I&`O?3hQ{dWu{uYB;8k-zL%}`Z&)$>*Y`j<7oEn zKt^9&H1e$=GZ$;-hH_2Xq1~Z0Jg#NCc#hW~aei{gR!WxISnegZh*6VeODjC!DJ)M! zTkpP0pL`a*jj`+Y?+O(J)7~1;9N3`q7v88(JN(|PWE{$#;l0MbJkAI8u`R|Bue$6) zQ+p2{uf~K}>zq(nmWaiaLdwlaxA(2lfpip*eqzDn?kQpUVn9#i?@B=)F0JZu8|`m# zPErH+^W=tzlN&-{C`z}2K^tfS?&XKp5XL;j;&(6B#Xs$iZoT*o$p0To-v7+6E_t{q zx%#D`*Dc3vs%2eR|G>Gr_}Ke;aB6&+>1YU?CHkB=-t*?Vyi?+eA1YSzCx58X zWtq}E--X8vP>OUG-B(H=5Y|}Dngo}ewutA7l!#rfa9Dul&s&nMaR&GKI6%>dKk1_{ z%;S+|CV1!LCQDKQmT!)?7^CIVyB{?4#Lw~M?}_JwDsjr~ZnQ<$L`2O4|7?9%irKLSx9Yl4_JK~n%TY>&Hv?c&RVTxpwCB3Pz)}O zy6U4iYXtfa<5896mg1Kyk&jDrWfxh8>*ukL85czz_m0YI)y7wNprrk;vtJy%^nLmB2R%ef^5bvjvabhMFalE?H{&rPJa$=+C9MYO#D(XAG46t!2dy5-3{RJg zbe+E7>-wkxhlelI72<0DcMie<+1Xm1*GF~uq!s>eE-uQUpydJc#ooQWdB-Joc{|YR z&kcJ8eLh+q`yF`&9gloL4X%t+nx)q*CUDI2`o;jR1n?Mal6(Dg!5*ru z^FGF6@B|nxtF+Q=IF=a^hhv!$wqqTiPw$+Xcd*!8_v~PU}jzwv4fGrb8btp+RHR7Gy_W4i$d zR@CDkpKJb#X@RB-tv-Avc4PSJ8q=&hNudtCgQ>V;gMZzPVt3**Y3L0+I$n{6UQ_rA zPaV*#eK`D}m6~J1I%*e9gtq%0eemRT}PQKEr36u3s>=;4Gt@7DzRee z^PTL6H~@({9-M5p>9)2{Hpcpp>HpJ|lRvxl>4tYc1KPYTS!^A7H+Fz@idiSs*-Ozr#Wh1F?fKV~1WfnLzg z>o`6RI%}l<%3;cpX*|864LhK=z~X+^^m-x9G)_-F3LC)be0k4vg^$P_&C}WImh_8kv8<$ZXbo zQ)`a24#i@ZJ8{X*I;xTHb9M>L!SOL(ddtC81%1riyh0xq!A9!}tUiCAlkEQyXYPTGNE~nki-}IJHJ^uW8Z-8BfgQ9I5_2{2l-r;b?W1}%pLPpd$g(k*1@~zGl5VH{Y5UV$FAUK zN8Dv!wr^K|i@U5Y#F1M_SaPI@pMP=B|16Z}cG)60i56v^9`5Qx?c2F4_Jydt95l|{ z3^~I+t5+xs4>ApOmvspxSkk#oxRX)x6Z@lOyF0!t6yX(%oS4A$vvJY<1TLI7ZsjM^ z;Fb0d@+=FVZhkw^;ILIW z&I`N7w|I}eP^`<~#3Kt>31;u7?eVlzDvj8bj*p^o&6;}#7>D&Z$wWla|A$)bbniI|Xhyf*G_!;HUR==imV(AI&iz28*`|YKg$5Uu$AB-bWeP z=z;_4Z^4iniFa?JF+NQNFOyO{-2=PJnQSe>(KAqu2eRtp0x!IPnc5BWjNiGMhW-E= zuFhfM`oUlFOc5P7aAa+B^PuSsp3dyW-SK7&x}N1tTp?>vQ*c0yFHDaI=+WBTI|dZ% z!dr9iXj?b|FK(FhL|Zt?7ETFGn3-Fl;Na3JIRHxbHL%_-vVRszi+_d`dn{? zcN%i?lAKI^N4<08ov+@h?($mxvExU*6~|{M#r+9?uBdkwoSqKSq8K2E3uF3bCb@d% zCB*?_fX?F|9CbCgk9QzYJ{9H;az;Ym3C_!nY>3pR9u4bFw_#tk^^Juo9wWOMI4Tit2Fcwcr>Oy7#aPh+F@_I$0&-s{y% zPc$_LQ#+Z|jYu_qT^!WW+`GUQUKtEqO#T=Aka1`Cf*%s^>=^rxL+^gIpH40KwAZ_V z{kVm2*!DUUdVgU<;)>T|i^gD##qMl})y-myu0nXgVcc`*6?Ng@(iy z@#$}*T@+iy8}bM(i7nb~g{H+8J#U3Bh%MqhL*x#QE&8h!>SNufN7^N^MXRi|t7D4_ z5E?dY_;4>iFFv#xkwq>sWyKgK+s-4}<(XKc@fICSE(C&`@79ThoS(}S5 zKpcWZ;OJx6oBjF%x<~<&S}Oow>2}mV_CIJlO|-?drVSUN94Z?=&~2-)cDvUP=8N1h z0Zdwl;}J+#CA z-jn3*h}|l)<|Bnq$$N*EAcVvyoJ6sZ_h%NLS3JX2JR^>uW}OjVJR@PoRH@!OzA>o* zK9@eAthjyg@aW>Di2&aEY4(jvouT@K()mT5i80>xg(o^L zJa3Y>vF{zJQQxKCF=WP_uEMgWcLI2ie0X~YPOj?PUuJ75eu5Y6ILFnTih=?=r?=9` z%hK{j=Hz;!FT*m6-dyLP+?YkjRvcb<=5=$}@hSE^#BkX1@mBpEsZi(9cUAduryp=a z(rr$1uJ78^zywXsr@HCZsc-BYr_LE)o8cX&F?={lu88T)oTue&(fcSq_R*JNBA-Zf1> z37~Uhyd9$s7DurMg{>EOY9;uLAnxY=<}Vaa}PU z5arZPn(WIzm^KYKJQIU_#-NFH`5lULAURq9ipIXW=;QSaDWT`s++jmh=PYHZdthlA4OMQU;VwaEas#*-`M10E^t+-lJRL$?^sM&h+@vt zE7r}Nk>9a!mdjD^^p16TCpJZmNkv6lDG+@e-RB-BJ`U;q0AGUqzEitmtW~k%DYy&Q zyhcagTs+FjKnDa)#}4r|e0Sz%e4GZ2?!6Xk4LZ{+Ja^!c!~Ln_;ql9Fpxv=We1ggw z#bdVUc0WEtE!$#I5P#QHjN)lIlkcC_6YRn(5k1Scue{z1Mc6g*Oix-O+O%Zoo!!Y8m59 z-+O09?9Q1T`&OiXu;_}pWpPoM*G9#C-wDT-O>-PmVjn8Q-SSDrqZ)3;(;-mU1Uw!1 z3!V}T`~`;N^O;?z$ajitt!B*=SlOV-TT!U+Da&i}UCXXwW$HUFyGqwhH)ICNp|2+w zqE!UJ)WI3pG7id)SeQ;ant7vYsDtZpCHU0Cq4tLR>o zZA}b0x&UeqKnJv^L%VM@b~X#0f%mMWRtk*&bp={Gq2l}|?uSnEe}vb=6(8ip=_f`R z7G87eh%-NS&~#V+X&9M-*RZmE{pr?}!1zl);lY;uvHBwtlfCyk3!7bwVlnlc^8=Pa z!8p|m7oSx;DSFx95!YRl<2hqa*O|!v32N}Z=N5K>F)`xd>DH{* zlf`{*Jjk1Vmvh0#^)YxYFY0yuF{YUGG0xbcyRf6enkj{4uJlpP*!$-&Ix1#a+T@Xw z^6;S*M4RX18H+i%)BpBltILi;nx21OGY8Z9prha(mjj<8cY43Y9?;W~-#xEC&As^> zoIjT1j}CeelNQf@UWF^YqXv32@L>rT9_YbW*wgSeILCy^zQwNC`<`TWr@|9mV(-sK z5No;J|8&Q8lPAGfXZ~nuSVl_6Wog+XCuPSL@zZE@@Lb?z-;C%9UV^N}alD+}>RF97YM@+sImx8kt)qp~@$9#HeZPl4Y`S?n+`X!e^zJ9BY>R<(f zH$W#IokTE@YZ<6tKN2np@J7^eWGz5z)`a~DENEb(s-$wEhlAVSe>=q38d?hGIz4tWy z-1WcqSI?tl3;>hoaQyC4Z@3-^rq>y^4aM(VO0AwSbnCx{3`O$<)%U2ms6+85$F7{ zTVp_N*ZI||RL2|DKwVC?+93H!5??L6BEcm(zeaf&H-0z-JI>BllZZ*R(zV~ zIaQv7SRIre|M|QNHkk29R1w>S06mp>=P<;%sQ` zz*ji45494fto9UeG(+GCyFh;}5T{;*K(Nx}AI3oS4N2|-^gZ9K^p}zP)iS$Foa*)q!hD}dY6Gcz!l>V0 z6h{3oMxH<3(W#wU7o?gNXP17D`SY3YX*GWb^DCI2*J}Pl%uj5G{DHxI%p{jy5@yG3 zUXSCvab>+D>{yNw-l>7qnYYKurw_M$>`K#4$?EIDBcO`#2`K2K~ z=KqQ8CF|8djio9@W0^{lc!I{QYGWpO8JQPJX%IZo%z>rGgs;Hwdm1Tn+T)Y*uliZ;7OPbb6_38e!?5E$Pz)^K^cJ z%4S^JchzF+IR870PwSi~fRMkMPP%_-(5W%1hZZhTu^Kn4P8!Qp^90M7;~KZBr6`RL(Psnb`gt0n#n;&jsEf`1l#K=6LSrGkqD zZx_4;=*!ut{)2^ksAsaIU#rtMtM?`SYDvFRupje%OL#t%#3bVP$OzI_fWWJ)`4As-Na< zP<=;V@i5C$pLP3b|c_{Tm292kxAdPw#U<$H4wGbhH4K3+zEa8Dx zbhyRi$jj{r-q(10Dd>S_Jc(eGkD*5|B5w(KuiANycyOTw?-z`3|7P+Yv-3`nXB}SV znP9xSt#6og8KvteJ<~}0eCv5pVm73FzU>TtdM*7`!Qj7iu!g}m5cK-087vD0M_x_t zA*TL4l-f_HRx)*6D79DztC)H(f<9j(n`A;4*yz)#Zk_5UVPP)KS;FAgTNoU|;N{xL zSq#39R1xbRD&nG05j{hxu25=+Q0kAoNMIHGA05D=*{}62B81)wl;b`zrHsLWmiX2RSTnzXh;3Xp6Cww`H>Q>E)ACm^TKxlAz;t^7U+dHG2KBkdMs=IkQ>T7M zc^r^Wm-ws5=X&CyQ;J$`$Ul${L+aE(5l9h%by{JaTCFjliZs@!B@&M&-*|xMz30-v zl{9cSUMLEBE*pHF`(zRgp9i^|R{SZafxkM$cd7*PM%LL3t<#3COV@@rsGsD-z7PpK z(XU6Grzm$K&Vr8EPw;C|P!S8tWkDB)3W`zNw4MgFMa##j0a`v@J*v~=)mpnAUMLts zJ*Cuh1kYbuGoq;w%Sm8{s>)d<0K!2x#tl&`@U^lzm6-9|p>Fm|!s z%x_};RFluXU9T??RIAU3#vV4vYVfUbzMPV&PDq|_BxTOMYOqa+)A?jlr;+-7et0Em z#Ffn7&isFwd>^h>bjU_ortr<+#gbP`-m@WIjJir2>r__=UJ7I-UKqs2bE@+s{xsu8 zAIsf?;p~s@3Vkz-KJK=TJ{-2A_%nI4$h*SMdoP@KJ9(?gJKgYT$6v2OxxPc3-!Fs- zxU|pUN~W%;Ku~wfGkHqBiP2xMVk3=f&8IU|!2lZ~fpAK># zt+t1_f73y2#OWbrQ4ESpR&9g`yz)0p1y&P3j*x#V>vI)e9cbA(>A$7SpMN^?&olXK zx5roUY^O^7S?~d%DP#;s>1fK8Qtk`9QDo`0cGqXQY*cog1X8O>-DRk_@yP2v_x^zE zJz*DozQI`ZN5_KgGwfi&H25v%Ph!UK()LPRDq(s8iMO zEFL@MDvb%M(tcJ?$L3Ryn|k7mo}g*WpQue^{;@kub&cuFznu9QXCS}IJt2OKiq`e4QL7=xQ;=gL zDSt>U(RylCosO5Q8jX#rO5&9o8&sZ_^Q+xDzFHkV1LfjMRjH0+|0nqybi7g}Nqn`A zA5w7=UxGO0Jc9Fdez`g}&`O^s>3KRG*P|spQ__d%^lDWu=_!()q|5tj-r9If*$MktW+FxU}8k|V~H>w(ao?fSBLqB(ml@c!(%$D@+5-%m1^0?cW z$nt8>M0v+A}Lyg)nfc2l@OjOqua4KLZ4&Q^xEI$7y6N;P^{7tYtfD0SCtNGwjgLY}uh-WOHmlDB zkLdi}>bH{rhK~Ey1c~p`@k%v9;#)-SDV<)X`bzp*9WPa0<{Q6oLK}!_$zMXhygScy z6qC>Pjbpwe9{Jl&%4h#LhGFcV!u++td~~#JsjRoY(eml@wxcPE?4`(Rip;W$6c~|c zb@;HYcTnVy6e**~Z)_sGjq_nR^|z!pklH>-wO42a^E1yz{=es%3d7)T*w+Rf!yU z$bX3WdFLR1pvmWalGl&j2IC(Xw7MGn-;rNKesqW*qmsgTL&=-g6TF%^!Qs%Lnl82J z8TL0_>@KzgM&@OhPH<|A|7y0u{KI`#-T~8x;o5)Ke zFVpZ^=vl%1HOx;6=Chl{sbMso!FY9r31+IkCYYrXO)y(^H^E$WnhEBq=HG~hDe9OB zPE&hMpsLh6Pkn4sJ<7S&){yKj4VYE@+i95hR@1FaL(&12%%6Q8^5?diU&{R5%pYs= zeLg;?ukQOX1Vm$U`|tFUWNZ%E7VYZ9@9WRyKJ{$g6jU+sBTU!u)dP zzY)wI*=Rd)ZPX{OM^bD@p<3}#j52>>A_N}{3SvC1j}d1&)iaRM9(1V6GCJAYXV`gk>LT*ilXsS#caPJikG<+z^2*8k<`z?VHfglFWR;D| zqLWB%Bz3=`vZH?1mjkX*9nsjJ&Os48U{i6#I<;S?yVNehZNOlaDxtR$!_gmiKJ?BF z>BaL;nqQ`#(0UH3wP)DmxL;gHxs{X~5Rwb130iKex>d`SshCV2Fx9DaogSkGXlzt{ zfk8V;p)ZsAN~!O&n}Y+tQAKHfl{#DNYfyu`*yK3Cos^5e0CHPGa!&QeCDuf=AIOuV zOOeS(*f0T}!<2?VLNMh?qy%kY^Z7A^{X?j8a!6;4T11_`23}vh9U?drW$;FwTFu}j z9jsw+tPa*Pn4yD}3|_8-RSaH&VDk=MMh!gpJNu3LRb@zn5d&a^bqaMc%~?ZpD!?>n zhbnL}%(i;VM<(b}<4bkwvb}r~Tm5F8#5OXP{1%>=%XbFO*99`vLxu+MI*V#*5V2X-Xx0oO<2W_#Jx^u0))aTy}o06`l=2;g)^NHEPrmj&}oXI9@R4%Ax zL&exF;y&bj%9T^D%*gSX+X;x+PJ217j$_pM8_9gwF!Aa&Uh%b^!!pWqSb%yg**1Hu zszDNzJP##S18k>&8_MOMB3EBLkG=Yk&z zz9;ym;H!c!3+@p7hu|i`#{?e|^a-vIyhku!@HWBU2~HQBD3~KSQgEo?<$}Kv>@9e% zV0Xc;f*pXt9>$sJJj_S_3igDTZw&UF26Z(qOR(pRv|j;XkNgHh*I(BMd|!xPs}cgX z9!cH-@?6Q_{m$_8)Z$djd+V`WxYwl?nP8ln$Dn<-SV0BZRFD*=V3?6|sVht{PW3gx zc$FBgYY=s?T9 z4CxD~c&)ENxinU*7>zY*4di()yi#MMDzNM0Irm?vFXm$COAG01P!$7h<+8EvAa6E# zt`M(QeG+Zs(fQYqx0$@aOsQ|sx72en^K&mjeuc^BjQwZ39?p90$Xh~QiQ%=-^C{*F ze--l!TFu|f{FJ`PpJnp-?A-d!HhVb_|AoByYUt*M+w7`1tX~)Zk__~$ynOGfTOHJ$;V|OrSA8heA!6DP=ke$uJD@<^<`hy92)a_PKJbt5zX^&4ZG41h@CZ;`p zrHN^eUu4Yic|$G*uWyJ~qsAs$ zoqUAGGIc!$2QL(6PO>JKzDRG*KNNU)YKw!H-EjV3YMe!lA0Sg7?(rn!hhDalc}8$1 zdArGbF2t)=wf${1;gR)M7<~Q!dBq`Km8!VMrjO-MLYk* z5{v%@FxWyH!T$=AhToA2esPE&P=7nm#^X`eKJrq?yD`M8QD3dJ@p#7c2zgV;8x-PI zt9^DJcM}W9D0!LoaS8L|`Xm1}lg}%PQ}@~0nO73q zljkPy3B%){9Y7vOs!JuCV4^zL1XID_zi@yC0{@-N0m@Ll4h3b| zWgehxIb|=k%YL}ts(ojzqb~5A=%@`m6AV2T46O}@ii4r0!BBoMG&dN!F&LU04CMqv zBZ8qp!BD?osCO{bGZ;EUhk`ZZG06@LS$}{v%R{D2Lb(6c(;8%}aO^=Z-TAQPrMD-w zn8r9U-boGR1EAqdyN1g|LzZaB6b-(UHT0*3n1Rr62$?|}8hP%GiJ_xt=q?(@o~+?N z7K zyM{|dLxyOG`?F=kijy^5ObzjuLqi2J#Se8Va5k;4RKK*hYS9aq)|&Hc0wY>#;1u&E z#-@K7HQX1{P@|sK8n&w4T0=lx08et%j@KS73;d90_5HHIe}bXUbtu?ZxPvLC_5x~8 z4ry;xSz3EQWoT?rX+WN@Kh;tL$I)nNXrhKMkg03P(O&zAZT8@7(~G?1E5Lij@Ob?4 zaXjs=R>#^|o=Dqi)#CutgO=*!AB<#f|3WX3%adZU2iXePH~Wzlm_18Azr0Av7QyJRXfk3M{3kR1)m|B5;;uD zFhKoo%FhhRJJnL~IN2@IxLf&}t!tVezsmF)H52L0`IUj!$FrF@fO0f5phg0NCGgm3 z21{7Y5`G3bIHjGd`BiFw*4(IWddunn9kk}Uzl+#a zYQM$?wM%2AdIu*>v^lPTyg2ogPLETM3a$kP%b`z7F{J%N2BDm>_HyQGen2gI)3S6b z;yj)`kZbuMUR`6?#N(!$sA)4bwXN`e#&!JFj(m3fXs7~#LT=4mnF+8C90At^uI~anCjUXHC=mWL_I4eCz-V*Y1Lp+@4 zLLs|@TVtJ?r7@tUXsl4b$5|5fJq3Mqb%su_RcV5$z+gq#(XU}SB`ha!ZLm``s$9E0 zwEKMW;?lt@3-O$)wwq;7wZ=p0n-idaMdZ0dJf~VI z*P{zG9#RkgWchU|A4_Yb@Z`fmv7cd9?wd9-6Kc_rjs7UH?ob)t8S#!5Bo2ino7u56}#wdyjR9#EG6 zd9?P>*cSVCPPv1qxtyA-kr~`coQS1{L#k0@l?rIAQ?(k)RJFzp>Koh`=KS;OFXRVQ znNF`ze!;DRn*~dN&G}mcU9=@UqWmLLyg6IdeVXA{_X=~NW|js%9YdR&^GgHo>rl{t z>tX%f7~}rLt6}{)A?st*V677eRtc&fgZ3uPqR26dd7UK8vD z8`VOa(3lcPILS*I2Hut+&sW9uF`CcAQffg$RjP2P$S*<^LXL&74mAy zn;zu(D)D_c)sSv$tqP=oy#{QnweF*wGZS*XLvpoPAXp7|hC0%!^+(Rkhu2D;Eg^l5qa1nX4$$QoC+RlPwE( zH`)c3-uiR1`y*y83}wxU;yOkz){(FQZ&$h-NSGKRycqozvOd{{te==QIF#i+4a?XB zF196{&xH6;!i#PXZ0`KsFV?8mCaSw(q8{Wg(kyj4%(9|1LM1FVQ5LLLqhOuuo^?m3 zcFo=6xT1WZ^P5f0vg~2kIMDEUpH6ey1=?d~v66A!-0@2jm(z7PvS1X~D$4`T$Hugn zS^VZPmypEb{`m0)@WDS@{G?X$&KVTdE`vn*?daSxe!*!`{1S)OWl$FYzQGGRtUWs# z@lvs;QEV|f$)lazu)4pN+hF6EwADys8J}aJA?l=DJeL0fob+QNxv|fLxS4HmsbH5Y zO6w{Bk7cd_mSQu$8xrQ9WN?m)%(PbWZjihQPD^h!bg_;`X9mLNcSrY@esv>G`KI`PNO`g#+A7!z8>M1~&>1$dkpSCYU z8xXyMYo$%-n z_AUXMHV(8=CS@_f>b{bVXE+$gey{nyq^NeQu+e_jcjYH&ivgkdYQ)Fc;%gAkK%8Z= zo+VhmiS`}>0)jtApuWw%8J=&1Da&mhbh3`zSO(LkA&v6{H!K3I)3U?LPB?1WlmfK3 z=kBmJON6|Cpw*t^F1K)s$hv`M41(qegvoMTuM!#hk(@(Y>!|1r_Dbs1zk&$P<0 z`#24<)N5o@|7P{MG@wa0eQp}K)R`4l9@EI34;gY9FA3uq{mdhW?b&z=4!P8~9{LzA z5!@`eRnQM4uU6s#Aa%2T@mTGOvXOpwJQ8_s%Z4tacN)S}JTHR&w|<4*jW)g8MQ?d4 zdRfQZzlVI=)C$MclibBNZZekEGI`-h?o&2yUK?DyY}zKPADOg%h*KBir$YLV}i;+stl*L%lt>SUN5g>?=4x zFdfKxj1U|vI6-i#;BSHWyqIII;GIC)&=qNc2sS(lE@+OY1h)WLzimLyjk^SY65KEN z2Cx(I-xWLpqz#`5)(aj5(iSc??!gjWfL4F>$AzUK-!WnI6`o&-~_>`g1;4< zD|jc6dLISS1{Pi!!G`@d?ujK|6Ti(ogw zoZ`R#f2 zO|xpbai<;M{ts4GwK66B|ANQs<{YwvPg` zuY3#S82ACGkAI)D#!hF!GX&2TJReBC*8m~r7!Nf5NX7zUOl$2&nY)Bb(zFQNjiSF4 zNd8WdrOhiN$o|__PI&}w*XJ#py8}%<8Y9SDB{HLIGD%n|thIVGjdlOM$SkzUOo<@# zxNxa>bp-C~Hm*Mc_rEr7T?B68Hp?%x!R4^7V{?84nW*iS zOc$W>;l?&($ms>WO>J;!%K*`v4x~{d1jhn7?j{IcxWkH1MV$ND-vW6|I9Kpa!Mgy)3tjU^l^@K;xVE zsFT|gBKk+)OaYgXSwIHdg7bm&&0@i<7p!;z;`Gf*Abqn&aJ^uO;AX+CK-%aREEB8{ zJS12x7!a%#Y!o~p=zty67bEBb(l_xEPZUfROchKM%m5nS42*8uHwEBAwPPiafi;5b zf%Hv@pnInk-;6kYvlU3+_yx-ZD+CV-Rs&g=TET!|qu>caQ1rFs7?eZ4L(nA{FPJEp zESL(UZ_*^5A($nYD>y}P7La|S1V|sT&M8=bj77HgBe%lFof3iDXyX<|;KutyHf(K! zOFMa<=D><$t=Y&l+L-};3}*ou$OUpvnksm+;2nZX1n(Do5J)|*1C4L8B9!@^jq8cP zJ?F)c-jWF1;o!0^V}J}y6j}Dk$~I(acTaFqu#Om@)gS9vAo{(c|6w3~^#qV*lnU+? z+y`X8e^am;$n%oVfNYy@B>n@C$9B;#Sr`lCIsG|6o-g$V#sX7;JQqy|o&g*s@$tZJ zh)z#fRNl=xcU*@*uY$a?)t@M9o-!8%39wC#(IyDVRy4m2`p5oE3q zE}c9t0{38=1=5}$M3(J%q77Nrm2El&%Y*@1{n4iv@3#DN zK9I!WK>Brz;B`PAhu;9CPPTJt1f9==3z}m&kbzY|>UW(K`W1WgZ~wu|%*4NZ+iM z_&OkU^L*t{1l_yA1f?A$#=>JJEgY$@KlCwukl--EYXrv&UJoRH8IZauG$n%WzuCA&ZE&fN z`-Q4DI4t`=V#_-~mj8iZo!}W|*7!;g>?3#?kmGl#;0(bm!3jY2`&)s4;LkNZa@!3# zJ=AvD2vfl{U{Hw!X#Za5C%z{54v=-{xLMbVjL|`vAB0QAhazy3_J-Q1sSU2tPweK7 zT-W5-P+ijyrY%`OyB>yV?+Vz!@B$zMe-N8k*Me4L$mNf+RW|!~x51_FICnZ-C)=Qv ziM}SWC3>G_ODvG%{Tv|e=?!GLxj@QI0a7YXck?*!7=y9Emcy+DrfwStcVIX^xnIHBB%Z$X^Lu-gQ8 z0eK9&U+@he=c;!Fj|hGySP$ee>`}p=1f!sz>0Jc73HB7c5Xf`4zJdb;(}6sOA0hFv zK>CEoH_=#{4bbY3KDirQW)=b&@B-PV*84j(7)(c=uPP!(mMoU>dgiMPWgM&*Ya3&B;vG4%C|bWkZb?I++maM&i?=r86KA&owm2R|a(=8t9aJax!fr?!{6)`_kSf*S=(1-A?C z7AyyHE~x}kKc9ix2t98+9IeML$M3n=Xy6i*O*_s zqc!~aSLjWO59u9goEyl`nmT^n3e z4srE{$Ubyo2|r_ZBEr<43bgBCn0Ehcv%%d8$H!_@fZZTMT*Qk5ti_Av($9k6ey@ z56a;4gw4-I>$!ks)*_nxycIXk5D!9}^BOlZr#X6BbJ-TD`!=aNC|W;}c5v?7Ep}{< zV8^5#AvGr^%uDlnLd03&ukG=!Dk{e_l( zxCrqKn}X(7TE+_yXPKPe5)!O^#j#e(WVzhTzM>2q<5#n<*orhZP1Nfx=M`J=!C*!( zgnquarA>DuZfx2rHmwBOM6@m8Hsyg6Zc`@GXj9++(WZayYrEgF>}u$yo%BfnVWyn` zhTF;V??n0JGBfqumK?)pUWSPP|6Ly0hH21cY?y~Ibu0e@Gl1q-_GaWdrDA1E zQ>P4sX-6*5=pZtZ!GQe!@K$8KD{Xq$i{8x<^ya?PvTtra6zZGVSOJs1Ndg)>h>Vzx z`3yIrobbL`i!}Ot9ee~zn?Ld@!83ix6IP}XrXq3~H)zkJ4FSj+|CS(3nXO^^m}Z}6 z`o9~R=Q!WqAaOI#%|)E$#Z`uEj8AOo7rPxSpZ&+(28a4`ppSABfeg$7(x-EQtjj_m zc~1b1Z`MT6`I?QpI|BDx8#mAfmu2&qFzx(P*O_)EylK@Z3CQ}S09l`bK-Oo7V5VR; zka8X%vK>o+3={!bCS~TgQ6@PYpNHDuP=BfD-!A%h18G+|kY!W?Iqs`~1!SR@0IB10Aj=v7WLe_{ zrwaZK$TC=dQG_yl;DY9O2*^MQkY#KEvWypjwB<`6qK^Ln88{AP8RV2kD5KXQi%Ypc z1nxC9Zd}r-{R35we}8KoL*{}7uKKUV=kXuqSuY~fnZq-F6dZBDn!@nbs&Wtk=3WWY`CWg456jhkE1RvHH;kKo)R`;AMh?1&0fc z5xh?D2Em&I=Ljwk{Da_f!Bv6}3O*wEq~PBLpBH>daG&7of`BsfQKf#4qmmkX{Ed{FQa!6ya(F8I9Q zOM?3ZUl%+q_@Usx1-}yfPVh${+xdcbt^RWfkbQ&wrwZ$o0#5pwK6jmP8IMVBoBIdR zzXC}98j;q(3{eVVi3YG~)(n&uiQs-oFnK={4z%4-Pyd6lLi-6R*6iEIvKH%{9PATrV*wh)6WK`w5*$*Lw#>cx$grh_X&{pehH+l{{d209Kr<=boKa` zRfk?c>be9-U6%u?D+9>>I~K?>FbT-GOa*j#~uevEyCt}YqviFS=Z$ELwz;zH*NdnMjJP~4K97d=e0Jp z!C~3O&FroAbnE-q;K8@(l;Li=^F*4Z;k=!n`R(=b6U0K zn|L67a}kif83?3rh6CxFTp)cj14z4816c>!H1N_>`-B|YQ`82B`nE$KXpY@L2Fih~ zXC;vJtP-pNlHc)zQ2E;<=)Tm(t&PB)WaB#fow{DM;a(dzEduvx8+UdD?prqQnh4zQ z!G(JqzlaQdwmX8%MITx+mjc;7lxd70GfB8CEGadDUu@jm2;8S_+$9mXZ`rt;+u&xv zM)MmuzvUd<7jd>7^G}8J3CGkiltJI5^>0~U?Qkl{slnJ3HJaw23G z*juol;2^;ff;obd1#bk>E-w(~IMzz~qd@xWDIn`cUu}#~w>L${d!pkb(eb%WM<9ZZ z*pDqcdH`uqFCgvc12lG|3~bxS<3-2yqT@!`hb+%2}HJI50HU_K-%{<(AZZKq3j=oOZmhrPF)w4cYdu^-o-%j`vY0t zAfPEPyA2)W=<9!Na9GZbQqHYXjz`K_3Zy?)0XZff0&@N+0dfx90;IoR0J1FRC1T}M zz)3$QvaC zI#{o)HgwP?z5i>2!+I2m-jzTWxCY3&tOv5bC4!p;pBH=yXnYzssO`G^8(gSzd=ayZ4fV8V0kak@Oq+M47$-4z;$}MU`rzy9p4G#4^0DVyJ_%l%Z1E~E0 z)cydH_dd{++th|ma@c3Ghn(6c)YlAsEVt7aR=Kf2mfHi!a(fB(0g`?#(3HQV4c(^R zm2GgSZxQsd{G~t!?gz5`2Y@X9&p`6_01A0w09-Y_-SJsWs<`=^jI4l>e~u^ zpgH_N2KEDK*IPi^^#PD})d6YOe}J^>N1!QV%2jRGy?4MW<2OK-aXFA>3>6$Hm?Jn* za5|7St^k@kuWzF)a_Fl-8yxEU2lRpF*a2kVWgzW&705cj31pq$6Z{BB-MogCd3D=$ z?W8Q-u|VqX0i^C;KprAnX1r5ZR75fvgj4tBX*l6T+ond`8>#@Bfvhe-O~<&x{~5TV&<|S%ybs z>955RWH*THM!`~>?DhzLJq17+Xdv^EdGiE#$fvq?YKmATz5?;$A^dy2A+qlJ+|LtdkJaJW7~*r4YvEREynhH zY&T<@f^8hOE3n05I}O{9V>&s$z*dc|65A`-Ucgq0Z3DIkvE7Sp0X8?bY1s0xjlnh? zTN<`YvHgGSy$fI*S9Lc&vSedDEZa0~P01gR9S1wXl6P0Dr}eZXTOzWgNb)1ZuDsHY zq^(!G%04V9kJcd}xDdcV_y}!)P(tuWQ!s5xLJ7g8hMLw;w+-Nb3DnRO(h{f(fd(4N z_dEA7b7yvTcUG1hQ_y<7yEFHmd+vGNbI(2Z&PKd{3-2{}zW`h=;{6QX|AhBByg!fk zNxUD%`vJV)fp-J=+l6-@-h1&5<2{4-?RejV_gnG4AMXe8{s`Vr;C%+~r|`aj_rK%) zW4!+d@0Fm<8obxxy%F!Nc-P_Gj`tAWF}!a@o5%1zhkl>NoBo~=pYOx{R?vAX-Y4<> zO?ZD6Z~FV*vffzANJQh~hmCM=Y&>C18?lt8Rh0}IshyFi(J>QAj>HGLcVk_wc-ROf z#-|2Dsi_X_-_)92hFSCHMZ1htUnrUCP9)+9tRNNbjKsqI#vB8;PkRmf-5HH14b9KK z?~Ejp>}L1eK4cS7eb#a+m57X`Q%14_bLVBa3M@JYk;l5M#|X^;zuwqHJTV$FC#ZFVY@YFBRW+0i|?qig@`U=-Tg{OS$V!)2}972aN7JK(*z zY;-1_Fvde@_)Ep3N0PDGnM5R(n$X@+GBM6bqJ@{wjwh2TQ0@;(CMJ#4Y!cpM$>{7v ze8z}rpP5Hos{~by*b%J!l}w`<5JUS|$%Jf1`&!Xx zBtAyDR++sf?7vTtk_IH;y(PTGe=V6FOQzyL3RxM;C7}10ObE>1R$|OWQ2vJ{;sO*u zl!`}?4_Z8me#9c<(=%G*@>Dz;pEVNNisb+gyh2e!yG0wN?(9s2rj4FZEF8uCy+xx& zA`y#Y%@cRgo9R#_7D`MewX2Fo$9Y?0C_|0@jyAe~e1@b2GOT?WeTzj>_&Ti>6^(|b zlasud_7otY)pQcKAiRK&j5=JK866#uPfy3gkcuby?+O0vA9#(?(9FzeYJLXyr;|s< z6Dck;Yl-)C84XUv+uQdD-alMCnvRh!X>UP&h*vzu@Z7O%lwJMqvQcs6dElCy9vh1q zp)fRys6HJ(VrcbR8{v;0r;PUYn>zM`DVx#ncr2BOM<*c350^|ZDgJy(B$=EEjT>5o zBqkLHn=qD_Bn-~>c+uzt^cRHua>-CCx+gXZHPm7$V8uF7t94F=5>Rbp8v3=3{UR;x z&;soHV8S@kq3s#&9+H|8)jH#QVnpIdC>psHG-<_^UgdW@YKX!Eecc^9)?cGCiiJWgPlVoK~BvdFB?gqAG@Kfp-DhJTGX2y0VZf`oLG}UE3qR+BE>5Y z8{_FjBsJeR(VrcBnlHsUf%xK?H?{>zg zXF>_XETp}mcp#mcNvFDuvGgRz0yImJjocFhAP8>QR7W9=FDDzcJ04C)g=nM32a9h^ z8;SWrBf$(;Y~1LKr^)_mZ>Q2Dk@3Uq0&)|`3U;Ow30PxjJEWu+a`L2dRhTzio~63O z^U0JkJrbEVI+A2P>6`Ypk`XCPqBv%~nJ~0JD#_XnZD(;GDJwIb7fSX;!UmU{-RWp5 zvSU7FXhyO5eIzamXhRya@m#I7?@+6RSBGiU!J)Tlo#V-xYOh=# zgf{@UDU%?1>W+1F6^&!w_+E(rw!nHdV7S*&miThw2_8bh= zI_Zis4&Gd}lMPlv%+dQh8PARB8EUy7CJ@)|lGkXE#qS^T-ZR{Wh!cm0jAT5WfZA(q z_#FyczmJv-Lo4GG)|DIB_$q(z)BF-k8yD`)>@!+U+oekTvesopF}84C{R6DeEH^(| z1fvrf{2R#*jZdNPFT)iwN$E&k5MwWu4M!$vl=w+8-Qi=xL(E!6Vu!VNmP`O|tk#rF zOhnVkDdc)#d`YL0+C%J<#=wsh(O@tdPfl=!!-!9CL(!S35PVPmJ(iwEtctb4h8=C& za-caLicM(E7=dQfGc&}SkCsfN42;1a$H+*+h4^^MMA9%0gVV6CFv%0#rXI#ASoAGM zW7z9U#*)kd(hl>x>8N%q?EKJ3*L*BA9U1S0*Q31xV?%>7Hr%+QyQgCZAOCM-rRin_ z+FZ1Z_$Mvm8dy254ZX2sDg@gA4%_T&_Z;FrMZ7%O(p`Icy8_x5wcg$?%d~3WlbS}t zpp6!h;`T+x5~0MrHpYHQdB9AENsze9yf5Yy{_4M98VX$fYg$psp_dg6u4iEft-7sa z?^q~2%6y3SWGdX=uBrD7>2x}-!~KlSlfe5Q+HA@o-y zBtS>}#3l?S(AyV({_|Q~r2M&dynl`$%~5>biF$M{1;qk&ynhdG^Y6iB?dJD0%dPJ} zU1@%Af1twrKKNIw&F`C@f4TgA^#9!d8}hsU#FMY!-%CF8g;%~cNZ&v3y|Z6>J^uL%_x{__FYNk@cb@2Y;thxQY;JtZf6ZLD zea91Df9p4X^4|ac?(cr&#?B9X`^dkX{lRtH?!NQYU0c@t=0{%m=$e1|-07coefPsp z{qVoO`_0$h`mVq0HqQR_+bbXb=!38Lmk;h-W&CDE`p$dON50Urd;gASKK#zc?X{2p z>Gy_rfB0VywtVj3_BX%p9k2WO!G|w?KtDC|p?m8?fB&;LzwXWFuRZwtKl$3^N8a_q z4>y12kIo$Y`q5b57yj_w`kR&w9Xfq&8vWJ2c=n6z=|yMH{&(9gEoEQ*;0*ouLfh-Y z+y8msE$@!K{H`Ch{nbBiHD2+p{lEFx-~VUZxz*R)z3Y{`9{Jpdzu(sW@FybCk1hXn z{XO4pt7&;+$F2YR<@-MKmG88D_Gdr)Qt0lrvuFSKnYL|xH-B^Y=_l`d*SEjW_KwrT z+tXcNyz0q6_*mOFCja8T#_m6P)yMztzP3%*eEwTc{Ka;E=*_pbh4$R^m%sb*;oD#S zsnNEtet+9rRy_HRH~jj4ceQP5`_R8NerWT*|K5q~+wOSe1J67WzJ2GpukUFcziq|Y zYer`8`uW@MYQ;#%n`2D|cc>S(-Kd$}ktJ|MGwtwX-KmP2$-1Bhp z_Rrtlz2jw{cu%_iYt>CPw_N=X*L*GT{odoRYkc^PPoCQMPak^y!+-SWfp1Oy>Dmtu zy}#?G$JT7Uw)dH;y5PX@N56FV+PB?Q^3bVoeD;q2e)jXPdf#`By>8#zn?Eyn*T!}I zHyC3-yX$QqTXEkVYoDq5#{0kY4`)ig{_uH96J@$XpUrpz3FXjIg!0w+-Xy*s#P>g9 z-;1=LA@WRX8a#seKlnu%q&nh@^qu~6O)bx1QXFEVfXTnBaCqI9!8mPV5afS9`}r~r zp*s8(VeaxjKmRrMeVMia-}i{`ZTNnJ_^#scGibN0OV@u3FbF=u{B>5o$c8hOSFisj z$`olOnEg<{mf_b%)GgNNI{jAL;$OU0dajJzF)7DmvzRmSis*hCJ*c@cuM@b zpZ&1o&+q5{pYT!PzmXNsg#X?Q_(iz^i@VnVemncl=}dd1h~N@zgcH&x%^o%`@V?XaVq7PAz8&AG z6v+cZe)zM)BzczCNtUi>o{F7@B+suGbx9_F&jpTpox^dLX9y`Vv0i~L2wqSm60qMoAH7X5C~(W1X9`eM<=qUVc#RP@uL-&{7h?8LH9E&I!5 z_Y~h#e609Q#rNX#t;HWG{$TN!iq92)rTCxldK#~9;B^77Zx#QrxTvI}q_Sk7TiM&o-dT2{>?36-%l@?N&&vM1 z?2~1m#_IxJ%gZauSC_9T|F!Zh<=2<{$^+#!<#pwa+;zY$qD*mkE&nrGz@eRB#RD82y`KpRlm8;gQdikm? ztFB+wxa!cV(5j-!>PjD8fy$c7_R8+cJ1bvbc{g5ftUOlvCcNH)*L{`mu6$4B`zt?C z`N7H$;q_s>K2rI|m48zC(aMu}{b}W&Rel<;Q+mBGrU%3YQHl^@6J(aKL& zeyZ|`$}^Q;tX#MH6{~CUs>iDluU5R;@VaI7-K+0e{pQujSHElZyYYI@>OWci@zsy5 z{v=-K^r!W2;&r`mo9{h%{Q+KN!w;>9thl)1Co3jOwB;7eZCic|Kp>00lj4$VACe8sQEQo(N?^l_F-uWR+a9b*>8_4 z&{~oRakP`=r9U=_!e@!L>?r+q#v;sM#g0%C3qH1Z$LRjueWTs|BSSag2L99-#^~_K zP;dV(^R^T2U?`EK1q`{W>8#J<V3ZCV7qO{v3q3S=-|-6 z-rlb6Arn(aKX&%^jVO0j_@mu>(R-_+?Otb3M?Y3^t-B7mH+0{$Z(yh^>-~Yj&VjCO z^R^B4NXPIE<{byzJ|LyEYOmM5d$6x##DeOm3t9|z4~^WE4fgJi!M@&MrN@r?xUW>T z(|Taf$jD8DYSZ@nkfogWd;4v-NuKCU!tVPdT#8@){Sr{1n9cOJXxh;==iGOIJ{$1)U-%rv=L`6p!sk!$ zc@&>2RPtO&(C&9!r|8L#muW{&;`#-Ap26oCd|q&rqxz*KIJYfBTKV;r%j~Vm^6Ro( z-;(8eLze43S+4KTa(ybx^|>t9k7c=jf0pYfvRr>0*N-=pX#tvMh`)2OGHpuvz4God zEl5*u@z;KDnYLfKfB!qmv`;9%&$O0lGc;Wle+@ll+73F*Rs0`|+FL z@5Fcd`*g{F{12B`B0}huMND%-uWZ9FB3lVwPBHu`=w1YPDP%N6w3s#tXb~-{8Gsza ze3Rk>Utwi@T2Lczhdy`Uf8;J|zk#})C^N0iV5Szs48I?r)2K~Z=?7b+LKn>ZlrqzK5e!T0^E9zl2{@1lFz<3Ol7{zBAZH}VV2y2JF8QKw) zpmt;0Vf;#=&Ffgr2Eg(oUnPh*lOHYn0QWjZk7|u##zfZ?!y$&+QH5gD=y5gf%;8Oc zNAar&R5s8zDoK={0gZ`MliC!ZXxjf}H1JC2YLxB(q$oZuC`88uT1n!aK)($1uNtuH z7`_9dB+;F)kn%ylIH#R>|BiMo@E%0HI3T6btCZ49H@WyIFtBr$t_+~Jgb|k$l1&|w zIuAUFemv^cgxHI-EhmTF_)GNd!n+6>6+#=bSC-UcPdW4jS@{ZM9cjfb(C-7NK?uUr6Zcvz4k?CT>{?KbII^Vq6tT+m47so zLmv*MLOK!_jFyeYkyI01BC3oaEg`v46r`HXlp_^0qDkeNdR@R^$y=S#P%;@A->6e^ zL(4{%D78^f&QFiUqb(cv_4adLUV81FeI3KYy`7^YLmi#n8#!(STK*jgMbiM|+o(_T ztgx1io3?=QNXMxbSXHa-UZ>*Cfpjz8>PWQG1#&v(BYFy{W(39FX7e@yHFsC}j7N5| zBaA$~9G%?NH?X6lZ*=&k;gRm$E}e`Zp-FIA0v7#l$klINHg}J)e6KUPiXt-&Y@pmQ z9odgZB1nm?*7cF8NKzMF*6}q-Idv$Rit9*viblBfCG|u)hJ?RKJsk@h2|LMj2UtBc zK2FJONgWiYOv@aQbYw$@qI!r32(BVsG@&DV^a%2xCV`*5A&jCHYjdsRCjbzQ+H zsn1SD#;3rENgcVCMl2aQVnAlhjA}hO6;DUQdf1qV#0)(YQ$bfHXN>X4L}XkF(ZYBp z(>4oa*l>5}o}u26n{snY>Xa@x<{j#58>*`GVT?uLP$F!0LKu&PL5)*eOhl7< zRh42ZoB2iM3K?O3RSXjtVVXd07@;x{i_YsvPG-<`mK2rr zic~kHP-VraduV82$V4ZQ9UTUSaOuEMz%keg^@g;D4d_0YArbb9*uD^Q`D2q=QQOxs z)Q^y)iCj%~*-YkclbRfvO;1xS%FGvoC_V(`_FcA!9N6-dMqNx~13|^Fy5ARXp zOqxMd6J{6C`JAe}rhgk}x*x;Yk!=MlO z1V|W%uO5X$kcET=#Q)49!>D1@nld5@Jw6-b;|w$gnca5V;%Z5d!wPT42=~!=S(lZ3 zL*3ZFu(!Kw6h*`^P`7bgKD%H8UY{R0iU{EK1p;%HDIW?OuD*i`5 zc3+t&y9qE``RO0%hr!L9coMK`0zoF0oG)^WF=wJSnzzx1(mcOVK%e3>wAsnoD{-}z zjG)6v^IJ;qXwb^pJF(`)2f@t#ae&nXh7BSybvl3%kGZSpDKDq=m09Qvbl^!QQYJob z>MZaX9_bhwaU-}uhyfB9g~n5uCZ^_f#7q*Y!cmIPm>9Vk028Bu!JG)iXPo#L5cC2G z)YUm^r;(e<5ExO}JY?$XvO~Lcx++xVi+nUbF(=rf;p*1_zAjYqPGC@ zb@N$k93dECgxpM)K(BlMNO%7*&G20mTgaISQ1Dhvi{r7vWq-(+iO!pNx%npouc7Y2 zzMFF3!~ijTU_$}3P#J?OgJ7wNiJLQHVlupEx2xR~yP%hq^R|*>;8a?%eCI&W#d*%#N{+!$X~puO13?!TI&UjEMl_`rlrkyi;z;Lh zCC9*|v|@SFfuM^!owt>o!;F{*2ZGj2n7$Xz{oF$cpKS+%)|8mO7v4$^ORrGOni~g# zF0OONcWwSJ@0dAE{+9EJP#Z5805pwnWwz$ z81tLOb!AZPh|S-?VZi&sEEwyyb55Bb8I=i{9sREUt^iwY0mGu*}=t!@-*DO1vHsjtU z9L5krDga-7rD#20xt>YHk3^W)31^yNs;6+MhdL>D^ikyww#yRJwGD-}{2gI33UPRXPc zW64zNT32re)-W=oBTByrxc5$lQCjeH!95zjaktf*29Lerl``@tWJhq@TPINPQt@ZY zraMECD6$N!j@Wc97hgK|boGvm?(FF8+cV_qkIO!(?Re|l1dxL2u>=T;EAjQ#1v82v zFq|HzlgF%%+EgolM~C-xc6JXB=aNFT9d8{?a-=5G(M9WQXB?ABp2E_DQ*W&P+Vm|~ ze>(?;hPsh5kHE}m4^q%`b=lEc{$88YEMZV*F>|LCC?v9s7l~6j>BLj9^3z99T|^zkUYZ3(VKEdp1_L!)QoMot zGPRf}Nj}*PRW3%E(*{(}@Zs~fiD{E;({3}owdpd`%HJj?QL;_D-g;}(W!{y)O-!j| zn|2-W)~3rWEN`2204>{e@H0oF-J>Q)0ibY>)?vaWTXk?WN2^MsE|awUUB&!MHtJxh zw?vu_A%oGdqz(pH@_AbySI z6gSOTX~kJHd7bl>W>jTKwF*)aIbGfq252tX#M4{Nd7$fje$U7#+or{L|7FM{gPsW) z3BO{NBj=bd?mae;aoAn7gN@BWGow-pm*Ff((M)LG}a0xvA#-Y z_L%x+KhS&j8jbJrYHtKWu~V8lsc%P5cXLh&f(@ zudcB<37*`m0+H_}r%u3jjmSyZCh7$=g2PcUMHA3nBXJUX-vH9e3Pin6h3=ZHVoIfn zd?D>jMB^cgIIh_$W&=C>20A>`J{(WuR9KTRe%FYbq)gYqo*jLjRcb7b6Es8CdZ|CR zvJTK8uKivKPad*`bxuWPMLqI!%9z_h=l{-IuyZPDPxt;Ez5N|SH+jOFGWL3mImo#c zO7`beQotXDkY{>5ZpP69Pe6sJ`*UikfRFNC2xK)-W5rzkIaO6OfbxYkPzRRE9^}+k z(E!SOZD3H5oPe9NU}_ST^a^!Eg_?6TrIKEu4ywaNAg6K;^5Mc9^6|y;NzAK`;hH$w zJ9xw*b|9yc_73j#PG`Wi#4wOkMFE#2(8Q9yctd`ej*?Gxgu{qhCQXqEfzBJc zM@Boky5MaOi*~&=*V((fE5p6XslikOE{^bUymt({hj^@4Xh9&S9?Q~RYhHF*1%Hoz4k;3YbP2)Ftis75O8#n z)Ml}$Ca1=m?)hjZT1Pw-!_hG1HjPlOf)kDAZCNHE*hraeZX#|ep%HNs`!L&pXOhQ_ z1#EWGzo)Nn6sLOZ#y~s*e_YH~+@?WLzh-1TVy^^y`~tQs=v2GPJOn?i@9FO)fkXxy z+x~~_2(^NXl^~cn+*6x@99aje^307%dx>`IeJpWD)4kgke@9ac6q!R;76x zr>ILWGYQ%Oo;#@NCTp(L>;SJXk)#CT%AzMHx%Gc0TMMGE&7pHsCq`N3$GPx}abFcO zNF|?)>J3$6*#Ct&7d9#;suxWb`4sw+#cGeO-);ju>-U}lIvzu&^V0TR!sioxHySX0 zNR75>qx9WdJ1AM1F$JGGCJnUl7ti`Y<{GyIE^IDTq7)zA&6|-Tg<>v^<&Y_VolU3~ z&A#!-gBw8$>NyFO(seiA%9JY4eOJWF-u*>WDJfPW0OLl6>~h7u{KD#RStJTv4q;U0 zdv1QH6h;&)Oc-kdHep;ec0fBf>ID*1xMSoLi1m0eXkncWE02^E!SW-pxFo{3!h_=* z9#JZ6kd0m>6F`cfkloEmHxL33wLV?5)eW4{iPR zsy4FDA~Y|FcX_O!5|nbA*GemhVue}3y5Q1SK_2sVlk|dzWToq_;ce3tdG5Soik7PX z(iHLNyc->|3-$svo(m)qVabQ(o%z=U7+3gufH#SZ>Al_E-8$qE>tH%tbwHj*)eJpm zipPr|~qa#XC$+@hPb-F6nbG(Sj z-cTYE!txoW>$e*E7+W~f>Ab7z#hO)3nd?z*#GwAW$BkI*y|60wNV;2HQ!ORk>C+4C z?Td9;XS1xB7rMjM=<4jQ8mGN*kq|7CKfog;d$1~4ts`Wu(}_V%`fdI|O|Z7EzM+b~ zR0Zqm>iIW$y)iU4e#c@lE9*j|NjNXW5|8w=;+|Qjz=H#btaJ}~Rb*zwjl^~)tt>~5 zk`r+f7d`cn4%bLg5JTT06duP7@p1V&m7)+xYab>%PK-9(hjamaQAlZd#TZ9(3ZfT! z;>c&d`XbjmTvtT-NGXeY6hgS(bQqs5o1pn(dOWpwme5M2aU%n%pS$|!2>W9qA{MaZ z>~=PSV^Y#cJH>fk)1ky+Y&ew}t8@zz!qyI|_3pXr^gd%ERW%Z?8j4I#Enc{bA6jQy z?{ZyMW?WJV7sw~8rsUM3$Sb1zzch?eR=NFI=Rm_K<&iZ>BRWyV)4Fl0nN%nM5FEmy zm1=&5tNc~ID&L}wuY8p!w~-+=lYd?ejyWfl2FEqYfQd4a7hu9YM{g+7j029wBY4)f zn-x~3R7(=wu?#a%F3ckRDiY!rKrA>CQjjOX1yPx~2ePiAazXSwcP~H?mt<~l31VR$ zf+U}sxQnB6C>s~{%2I9|T+5ygK0@BT!;-P|-cF36lkr3ZS-fzX%zX?qNT!P^csJe(f}mMn9?7{o$27RWu| zf;m+VIK$#V*!=ilhL8)+6dtCW9|+v$TtHYNHrpzb9~726a)9bLQgmzu2V=<)<2j|2 zck*+M*<92vE|byt7%Vw9zIc$A0NWyxvA<59Ppllan!iJVTK6t-OsnM?qFw-DUBZPn z5)h-Z9Zd5!QC=z+CmCJlheZp06PMZ9y^&klR726kW-Q3C2a{uy5BE=TymYJzIXg-r z#sWUX%f{%E`sYoXY12>-4)@b{?-?G^+0jUP$B53JmZSSNWS$^MO*HeC^+>p7qp82|@n$4gf~Ms!cyUSCzKFtZrWL3__X#6NGueI|#A>R(yR$iLdRH6+*}4MSTS4LwE*d9nfGRL}xI_b0PAPRAPiW{ICUSb^wE2@Ctw(Qy?nScdzx- zz5Zqo*hO8QG*A#IbJxDWg@ck;y@GP=Qa2G(uIp^Gyk~&&$r=JJxrvqZq z7ly1RCp)%_`EZetPsF#s=PKQpas~`2 z_)#t!bt7ufgKqGgf$1)p$9zi~SWZL?oF9lx$XK!o&w5z^XkOR*u2$Bs2%U7u(yIB> zV`zDWeo7CY3gL+{asFr?L0P!n6poFLTZA<4;E5DEpK{Uh;IYUpICGGl7fwA)P$uV) zF&P09=0!TE@^AyA8qZ*`mXm@t0e@A;j?ON=oYY8PyLbBJveF$&O+0&no#(L2h*cYN z20gEYmZ{`VWRs023{3mQu@7cV#u2f{RO< zn!u%yrs0YrO~c}nrY^W3(r|t9*EvXog|EvtD!6ErzizRJ!}g9Wh%#AB4SNola)`qM z2nCk_$3;&Y(_==0P{Sb{Aht{*qzxljAD0Qc+)i>QlC@=xU)hH=zPaI2y6rS0YPZ?m zgGKK*gQ|2~n85|~e1TSCkKig2%BiZ(WPRYz?6&kT4kwiR3K@-dw zc`7i(Hepyy!IQ}1v-A`**aUj^Uvz#eI}(x*Cgze{(8h6!3~be_!_nwgGVs;dV7A1p zW8+5txw#}c%e6J;$g~NS-x-M_hQMr{J{_4eu*%7Hy^BDD#U~cxjitnO&O!5GCwkU6 z1utkB0UiWmu|W9%Pa2*rN0KJ^EgKWYE$IjzI$_EdTYH1e%7BEF2KalqV8z)f0eHY4 z9|Z`KJ64371cat;>}S6V!-wm*ghE|Y10cL}o)Hp8LWQQ9=mMdoB8dNyoHBoa1-gNs{F%EuEKa79Op2gM z;X*aYi>#W|ldWZh8|eo9k(y_Vw(=6)IBi@P%QyOTI+@a^LP+%t$p|drLn9wO9#}@{ zV09A)9v(xSWcE_jw+t(XZ9eWt94;${Upd@@x9oB4rYYsM7?-jm&2GDPnBS3Zi9#fz zg44b%u0G?SdsSk2L`wMP4#TJ5C9G9ukX#TVFY|WO)8@z*6MF%8#F(D)$vKA6iXJ|T zC;DLf3r?z_XL}?6omFF|nx61OXBxu?y46U;9h}fvKKXPULV<}6An*|p{u!O^$sYQN zA&Mo;u*fZJ4n2+->3@_gRE=c?2f)k2+Do*qvH1=uL(C+J1)FQGVNZM7NOJ%>&|7Fd z3{f;Rrwl=?kEZ$yZnKM?3~XM5WZGB>nuI%3gmP*A9`H%1EH;P5^~pp$JtLnqkcwlW z3OSP1dIz5Am5x=>a|R$%OnheI$z+7KRH2p;qx4Hl=Y^7w8MLpJj*mteCVu0XCx#%B zteK>~B~p!~aoIk$udwIOleYyi#q*$1&jQLv1D!TNq+_$#OoT-O(GVUkOFLxPV-Vn| zAx)23H6<>qtg#yz6k`sNI#`en(nYcECPpWLwyNwm*awQsH9ifn$2?t$!&5$YY*9_` z;(46Y@d-A=Re9@lUtJt3cbD^jsSV;nw@4<4=UcG{ePb#f`<--*uZ^;8O(FIuRZPd? zIJS$91j7&&j!ZDG1Cc*W(2^+_3_7GCH5G|j76Xfc^1*{kYzsL4s<_y7@^V=M_SoxR z83Kwipx?=ndbntO(o({HV_|SPp_xPreHJ{V{{m~ zIq(GJ*lcqt6qO~P3XeBJmIpm?5}M9^i!f7ec(>AnU=2$rmmW~b{0q?*83GliQW(#; z$KxjOJo*@gZ!pRutsjPk+y~l;%u;ALShR?TF2Mt0I3qM9Auf$O!EjWCwhx_Q=fq=j z8@XHtWCY%PZu{YMjNDu!Vb0awaC>M7AjYynOIJBy}e z2VzrO$mv4i@Os={a>aE5bDt$pj8&n4MLoJ9W|@)?tSn=Myn-?~0bs$A2^Vc86>!(r zPQE`3+g)fz?G%uVsWS&-kJt$ia^xrfej>7v)o>ZWwF{(0Jd1Y1*o4xl_>R!{;q;7D zG88c%c3>M+rFC|b;DnLF!jZB9p+Yea5@x6DIELz6P!X^mM&g~sj4VF6sWMV%!u9)t z4Yl>OM^beH?2zd|2pSVT#i#6m-1S+4&pIGqX89ZB+jTEh1jVjj@SggQFm0r|t_opf8jm@i4QMTUAXI~;SeLR7%te7*=a`#ep7ZS09@j62i7q!Q` zBeBSIdRmW}Jx|*Cx}<#!&0Us0hUQ+nKGHKUW8>I1!(Esq5nE0~oKu)iV)2kpDS!{A zZ^1I)l4|5QOoEutnx>X-R$^P?7RM5GQX^OfO~#{XauXILkKCSE=~{|eDjk>OJ9m+VEz7KN<6x(cOjNms5|2P1QPg#B- z$doga$gMsNCC>ItU8V}InoKu5>oFB}(aer842V-H-HQ$&ZJBK>b0m&swTB(CP;@>O z8TSUh%NR>f+KMt$sC3Yx2$|IklCa`t07MjaqxOQ9QQZKA!~@ESed?aX0z!}x41A>p$=gILPZLMp#~{tEfR zsphI=yK0UFBy-Sl!;3#J!LdT&=!uJ`EOE4t_Bc%pUNSs`r1~5N@*T$ciALN5!PH*w z80=*T+5t#U0+?oT(Rm--7FZ=ph3Kif5vQizT3|Tkk9HwDAwgD0<&{(>_jm;ZEM-y= zQ)gGQZvpaTaB^9!3`$&9TO)OKvC>C`>Sy}JGog7ruqQ0izGx1Kj1ZQhQ;ieMWZo&e zfHO@)O2TP!3VRBXqy}rk%*v&By$)8p>7{H&6(UI`)1uj>$=#SqgODj>?228^vwN08 zfZZ76p*PqgBArnsu;z}i!}!<{Bqis6B%k75C(;vPbd-uzgbJ7ricOlIL_81xfOBXHwia?AZbh?2 zM1xr+qN!?Fqxg-je|( z(*9>0CrbG6o7v`zyhKMdDK@R+@Cix{$K!n|9L@+()r%uQI$}B=D#~4cw$q)RK#Jug z^9)iP6~k7Rthp$MecPbey;4PqbXz4z@dam|lRI^Xo=PK9YfcV$RmRxtn6ulilWcxR z4lkLMl6Qo1+tLvoE{G{_HYj;0?uF($4s10~37~^o=tv%hiF$w!Ee2s_AuJaX%tA@q zkv&eL3*d~E*xrL(GsGR*qHg)bn@MLkJ4g=9Nt?10T@-L7ySyjKYa^N4cOw3~%<2a90?(-6N!fBJTsR=P^IAe8CA5rxj%YFGxf3sSI|GnXom*3~|vRVQ$ zN(hxv3R)2->6ZdW5T@hUF^kioow_rIN8%VpjGiNC;2dJ>ETg3}O6~++*s?6g(j6iO z2->zlCt{oPtt=Ba=PI;~gVYAo=WJY*1#)weO3|JqY*A(*Cp?joR{H4zJH7x{VY;wj zI)(9QjPqnVegxK#b~mzhR&hKBWj$qblHjvJ34j!#AQ_QcD(QR$w(N^N)a<|{k{T+& z8^$uOI0Owl9&k#7dmC(#mn2FY*`i}KWnF;OkpzmYWF*)}qc~#?__MQLa4R0AZJl=9 zobpJ$kmzDdCq@cor#DulY2g`-kKvdKJl2x$++@hGTkLEKv2S!dj>n~rBMHQ<2|St) zM@!SDQO=KP4mx9e0O#|K5TZzyF+$#TA0?K`m)jkhq1l`2zAtdr#(Xq@lR88r#9rE7 zEt|0HIq8Uf%7GhYW)q>IKWyTBzF8IN@iD2vh! z5r?ylHzF(89BgDS+{nOUmA2Y_piIvcq4<1wzKcZ1qP(nvN&LnatX%XOUMoPV=)XZMFGP##x#! zXysD&+o>qRqjAh99hS84!DTY*5dro!8xt*94d-MH8G!7W&>(_ATvWMAyXY}GPc6p& zA!+DnM4)!efY%&$52aW{m71eC5<9> zw;mC!$Vk&&46IVW2kq(g+ zD4TRv8E29F3ZwH(C;?t$dQk|abEyTMkBw@lAgK)ol(m!cqiIF-Cm2hPhCeAzAh z2m(yr6wbbkrTl|Gq60;|K*$15LAg67| zRM-MK8J>wmo<7|iCzB$4=pY0Eknw|_md4XzGCZezP!|x3vwA1!S+*DICnthw+rAv1xdR)qs$neZBk6mLcNAelqFgy1yKsgUzz1KWI9 zGEqWzv+)jUspEvBa|+QFfNZdL!#I;MGAym0_)X(chP&s)n?Nm@g!8^+8U;pk>Yd4V zlcB2FvdfBkhv>zsu#2iO%Op)+RbN%cpd=B!nhpV~Mlkp<3iPBx2|Q1Q7Gi`)K9x$% zG;Q0)OC+nOBXoXod?Hm1(cgxL2W|`ae6`#Bfo<$i8|2_`BrpQWok*0x8XWD-ZP{o( z4Vaa{X2V#r30!O0xUeQTfH^$UPt>2Covog&sg5Tm2`B%y{k!{ySuaU92r1T6miRyv z6;lNB86JWuRLE02mI@-INvTWn_|^lr-R!Gs3{_2ZRP8)?Tf-ey>d#;yKmCC_4%}h+ zj3hk@QkF2-LdseDXv=3)`kAqQ#c5brSv|3RW8s0!L1yv@J0Vex3A1UMFlGW5`*G&bc=B0C?uyE^0+WKxO*W=-L&r7SlyLMXt4OHNLoT%69XfJ~B4NE#9~RG2$Lb086->|I zaZ=pzT|loD`ObbYql?mQ!Sm2>9t~C9+EMkogEx;d1!Ui^ziy!lq>SpqN{}OfV|!Fe zIb3!%1VZdl37jP^MV)a5;8NhXI&|g*!zisFtT0`tRMuWFJWa1`Lpa?7M*t+ z`vrNF6V1dGIRJAkt?l^QJvrF+ix2?mp<55Oq`uC zNhie@D>lL=V6?$w-aF|OJ0oFg7#|nHxXuNfqvz%g$opdHejVW^9W(^J6M zgu|TW&;;BIPfO!NB(uzBnA9SXn+;*a#0|yjWcLkZVJHwknp3*veqW%*#zaPY1*V0B zS4+m_$Fy!jm3Tr5+qbC@ihD%P)EX%-Zp`9Nz)LZNVSRsMR49P_w2_W?++{Sg)uhLK zCl*i-hA0g+iH$M}ND>iay|o*q+3V<~Lh<{2vE(H~iI4rxDAD1P0ga`jhdD16K+zO} z4hyK32+cAnSU^?IgG&G)tBy{2^;vAPXK%kiAjk~GxgVnw$U$SlCGR3AY6{(10Nt3* zj7DNd3aBd@rJS|`YK5@DI|Mx`R7+*O1vW==TmY7){uGKPQ(t4e;O^P#703u_GN%#g ziWJ7UE3l#w#f}Oi%*3Jq1&~q^ zHljF%*1IK=^*FwT*2dAl;}JSYWi&aDoWtpYh1mkYB;yk5!verPFBpLAKZOzENt}mf zquo;Zek2pUUDEAyb+S#TSMt)$_Y2d(9#OW-$eGV%xv7ihE4w&y$bpW9Ly54BYFXVc zoO=_BjpGCt*(c_zksG}v{xw@l7#W3pEYkK0%rs!q%)}?XiX~U!FQAJ zT}@ic(#XNu(atNcD&zd4mK|HvrmD7aKY7@C|+AhR7J@1Ty^ox&+1 zrY|N0Nf0;DN!zo_vrEkpkMS$e(uKkL*S@MGWW70qt&0^^}oLshE*M(E1 z_lD&HmbrL^&3!mplFlPOK8?p?T5EwSIb|`hogbk|YfU%_fafF;S^3{MX6aRU zv=PDrn8#g7lxK@$8MNobRpe6$GExl$`HeX!`3@0$U>OK48!7r=W6L7Tc!ylWWh{U^ zWB-3|7iSN{M`aB=Y(ePil_u^YXp=#9h&)J{m+XVe?Cw{jx2>Mr%!r$%QD(-MLVh_R z{uTKPC%>TGLdn0I);fgYr5M7mSWp-X95EQrY_N^H!z?k8Mn_wU57)RXZUVoV+l?8< z8Rj@Bhe2lz(s9x=bV$NPI>y#Ub@OZ$mJ~c`@G}d-7#k3ZaSps{Mvv(bU5@cr%=1}h z5C5LmG`SDOnQjmtCDd_PXaljsMIV-mSJL?*yp=)ta!^-{>v>7)LV4+1ssk;%W)Dd4 z*@l%lDkR$xSMw4xShV<~-1aEbpW*$;xxJ2~A?XbHgii5AGfb%-+Rr-Vu6*oPhSKt@ zvct+O$~mXTvIyIvnte)*&^LQdn(5iF8H1WIE*)jMq0ADk1rl(QvQJG2RDlY+%#+76 zpJt!6ti&wC3MxpLZ8C~v1Wr8DNzO>=0Wj*+(cB7BKu(-;QcQ0cTl8?cjRZ-Pv7ESbw{_0@ZbL|9RC1Se+Z3y~<%X{LU*lS8BwsW_Y0BojH3 zc`Ym3LbX>uT!jVeq_w+D;^(jSFR~=%%T@9*fKmPI;1`l<}YSS6*kki0!u21ubS!K#I)#=nO&PmcSlJ zl7*O!wMm@iM^O__vI(_B9A{C8C&1}|S2+FXSuCm_E7(p!3=H^_h`S^hE%gaxY`_WT zPikRof=dvJ;!v*eyeNsYy6mfxBXK=FgH5;eFk%%je^3i~6x0A!+p5pU)7-C{h$ND> z^SBV@p+GuP>294WUW#K z1MmvcEB1^YR8nPw&V@{p-;e<3$FZ)#RZ?)4&5)cN5)a*($C1!@$`CTHt|aczy4Ql3 z!-iqYx{!-g_zJ(u9RgS|dsNo2X%Q4MYwUMPtYaanKo~BJ+I$1%qG|&Nc}Wx(Ag*Yd ziy31M8Rrpn+n_Gwa0k_so{8R-c(jH87KLjD)s9 z+oQ#_gl1^tT3nmN_lR~YeuXt%3u!6561Xy^rSZ+cwWKz~%0{#aT&Hr?+RL?m)J@^; z1U}P%LA9Ik*0s&rwVEIQS8K1)cB6a}uMpZXv|d&!=29~P2-Fg9JBHFazK4KC6!kb{ z3+}aA7uuY`y$Je1ICDJJ+Ptky+?}u*wVl8xfi?#5e_T5Pm|?)9E3!p*x)24EtoI3E zVE|5qVcQRkrWr;N+}8og&~5>~5%!I!*RbF=39dy??=24J=-pP}I0Kv$0&k)w^`5xR zsUI_YMAVMq#d$x*dg(^vS=3EwQ;a$!B_X`+xVyox)~<8q>8Rt#y(^$-8RJ z=Mm;E=tVEeT6J~wg5)x@ec3`l$hn(5X4Xn-^Ps{Q`Vs}y{FoCyF-T;HNjhm5|DI-a zCoS6mx!Ry@K_BOs)@{J&22jx*I_WBLmbiKZZ^DA;#CxG@ds#~ao#fVsH}NomHgvRA zi~mVVNY}XRlbjG7lIabuR90KEc$NlyZf_(VxxHx03&VT=tu{ChRZL{7yx-U4ZPm^< z3$ld6vAEW zH7mF&<%=xHG_%jrHcNY;Ya?P5korm1C&~1TY$$0Q*$dvA5WaCMByExtay3eJpoVkI zqA@9jw&sBahw5gD`RGL&!F83&CQxr4S0sKq`Zs~!&X#rbn%g*gpGc-IwND#eImWHM zq(nb>!AF^F^4O;hp+D-#<35gU#^^PLzJ!6fr2I7F0Ot#h#TI9$7(J;59|^b>q5p~J z24sWyXVJ!zE=kd9ZNMD=oN#0rqM)kloCj{+$!6d&&cTO6(<`$tBGNo(HtUuOh+lp(>ei9X=WKG~M*~J*ch9oAA8q_}F64R=1Z;sKG zc*yD0Y{P=LKz9<5L5UN$F7=S+Sq9M^FJ6oMGs1`PBFoGzIDL{2#^q(V&_Ij6)RKJ! zsRjk4Uo-+Zg=jPNHOh2|zERuF81u*q)95j;xzSPTyJ}CWF{&(XpY0S4n?2;CA?JuH zftD0=Z<0nz`-n@w`G`vr>n@)}bxVpY2_;!kwKKQXAU~u75=@#&-z}W0wf8T2Pt?(J z8n%>lMF$tTBsu2;)N?)q;MO|{`6CM)Wg5q8Nm<~U+zCmbvfO`Y%X5q?G&)i_vYirVX?>k|(QncRYL9x#ZIX)H-3n$jKc%@PAM@Po zMy7_6PaMWO(^&q+de*u zC*Whn0hPG)i$Mt~$>ZRX#s7S^EgKaMqvr{5oM>xN;;vsxNS?dX;iSSp`*`RkYcJJ!OYvh)gGuz8s9=pX?$TkWiRHWS2p0GC?fvC8l+T@L z4rTYd&zDtPtht43$6kZx^eSW- ztszgCBJMP6;XTtG{$3I@>@wV6yw~DFTRgn%ka(19LK_8LC`LeWe_EXx1*J%y4=*xR z?5%tGl^sLUHJU#pUUD3DZHJI6n&)N5SW4gJl#R>TmKT1ym$7K(NA$@Di%Irp9CB#c z)lp_$Un-6lis2}vlh$i4AN?&1?bh~6q@gzqFFy@QI^A_S7si)MuP>i0xofGntCk$n zXfg{Oo?zn&%?^27>q_W{JC`NKmy4rr6ulCt^9lRf9nDbOXO%Sn8D#X3 za|#;qY39RMy5ty~tI>QSF5Y9rU@?Gba% z2eKn>D|ZylvHB%t$IdI>ik*hEnkm=4>CPmB<6IfztBF&fU{js7?NOu zHzHy>v@U61CAP2k@=UfATBMrtmmkqf^>+=hqu+c@vj@1%v7D+DVx0Vr8t0^5Q#KM` zcW|=_JZ~xKu|Mv;<*S;RV+6&W##okvTg=^>IjEGeERdack{*{roodaB#Jl%|@<@of z?sqS}pZ2)5)z{qgsfLt#lefjho2))*8riYS$DxBSc~1-BkxHX#?Y$=Mmc_8Lt8kT3UIhWRaKGZQ4b$ zM>3;{q?$(HYhjUiCXllae4LcIA3^9`HEK%jIp=Fw?{*-YMAasl;X|~dTybh$$9@5sf94!1 zXiQ8&dJG1IGL5a6e*j);9e(pXL7Hh&M1edP3k#kf_XljGP&55H#TuCt1MZ>t!55wJ z#X0u6wM7__Y-O7lNXn6%@%mQJr8h|JlJt-l9>I6jdvAt3`I&VNgR^OKZbB>RlxuIW zdz-P&PBwfqGV1u}tHtN-;`4y`+$=tu#OL+w)1vEUtqoVI;WNAOZjkv9>Q0EI=H3Gt z+{=!`Qu8mfz7|GVr=+XgGVnQ#6^Enjf6~iINEToBsn#|Y3`0_c zERW18du;|3%J!5Nm}kTCeI|sR%uhBx z%erZ%uhrW1Y`4>4l##PDvK~Co(3$nhVbZ#7gjs*0Cq+H@>~k7z&B5kIp*N#!cELSQ z=d6)mb&f=wJKSTmc5cwv!sk*n7qdg!g7&UsR>~f6Ajs3G$MbtL+oAD^Y$_ikh`uz_ zBKe?EfjD2Sy%O;dDlpxQO7r zjy~S0U?06XJ!D%nE2p^xpDSDK>Bym1?^vy6#s~PEGjo)s{XJ6S0vLZ9As6nHwqqf6 zU!{$m(#@`vwnMQn=K62XtEMbYxs%D_CzldC9N99LluaI5_9iW}OTHGDre`|HGi;riu-WKkmMsb#x< zxlvs5G%(FF8z1YDw7sm!2~8fKN)iQdqj5328li=u!8Jv082%~HtRDYYuv;Y(S$STIow;RS=gjr%7h?^N>?F~X zvb^jR9tB;;wBNyX@&-v>N7*hUgN-}HsTjM*WngK0YvGuQlf>?&&h)ZyBp;e&nER|2 z{g#$Sxnxn^vv8!*k+1X7m_cKv{pI>FOd8ejD!~cC*m46Grg71NL&H~7zA>W$EM4a;^x2UWYad*qCke;~}iQq8= zTEo{7LE-Tsn#DMMSgR&qYf)DZxSeof$33=e^BanbsWBqAp4-=$`OJpAW*XmTP@D1w zI&E_gHxHWoV^%zgEFbmI+OMTL> z(B8XRP^nsbh^>e4NTkdPu;$DQ;bZRJO)~CLmKNW=Eyrt_PovIZX+)s;0LAC{{K3*- z;us&R`53IqL?#9#5u{W6R1cmbl1U97`{YoiM5r>9i@H2cN^@BCuibU_%=MXDZJzC8 zSr8f9BHQC!<>L_`Ndq1k%gn~9LOpB#zT4z)W~-{Uy5GI@41rmunbsN_c``i1Mm-b6 zy>+4iNuc}Ph2h3$J2DF(7k1U!4KFe6xV+Iw#xn@{&f98bC%-#omY#0eFzfP2F)71* z6~M|UqU$lN1ngj+6d#*s5@6?=Wy|^Kni);6#;U1|B;}@&9Ww7%wv}>{UG8af3!?f2 zgtzR6J)=ssAgab$G~jW{T-ltY1vJvpIv=ge#8?&*?e3gs-cbS;l1F&Rs@QWrd2T12 zLPK<;oXX64&Il~0LlE&=Rob%kBtQO?DMBN3Hj75FWAZTM2v29n(C$w;v*9sR$|4)a zUc>>Max?l`&XChcYI%ULzgakQ^lSZBdhYwl-?S(s7Z z)wAHNXtZkcs}ZM>lB?Fe6v>fV)y;fm%E+YAauWU_MK|c28lt{aE+j9qX@e!dQXW;G z)h=Vzh<`42ugF`WoDg}2N@mP6cMnKQ7auFTpX?q<$Yo`uAJMbu^onB~C69`HsfFM* zWMX9Jt=(Is*bVo^$$!bt6S9}w*CX$aq9L?G#4+RN3eoJyex?*z1)kxMdDaj`=qUGf z#1od5>`H89UI1xyFY=FqY%P-Pu2n*|pKX>W=W}*Hlb@ES10t<{aTt`j>%Q*lq^;!{ zN_%0q7WJ+krW1)IEt%=mWVhGS5$equ+Gq0YM>b-1^XoKG2C;2Fei>I^~XR56=vz z`8wt3&~M6zaYD$<(jj^fMb!LqHD5=r+~k7F&%Sem!)x1N%h?@|QgbU_4R6nhtD4(H zmSrAP83(4BejTT97c9wcNGZh#tekx}DiCCfAJaHO`7phLo9+;Zw={NA=?O+%qAi`= zVwbQ?+PY;x5nm}&W()o&n?vVUUB_}@x&hywt3-LHlo>&FI)H%=i6dMLtp&A%qBhwo zk_yTun8sbYSF7B+mSx@#;I4W~rfN-8>9uULwZ`8IsM5!^qGUV^V;!jHc9+j%r4K+@5k#^M^o{VM|4B09$U>lYNxEpwg5;fBN);>aMUw{8$$S){ zp_L}0fi<#{?=9D(DV`{Ive6jMxt2L^6LnVwbV1pc^ts(j=Z=8xGL?2Q?sm@IE{BCS#lJ#K<-v>sro*%c&@yYUoq=#s4L)9J?d$O>Xiv2;195k+QyO@uz zR~GJSMD-Ws`x*^vF`9NJa5iu*@KoS@;OW4Hz%zl1f#(A~HGMUMH6u0qYYx~HsX`Fs3*{z3nP{`0}7g9o-B+KvK) znsyaFHq}1eP|~`xwYe2P4rz#wXxe?P54Jwi`grT<)^n{-w?5nYe5=-0(YCH_Q=6}? zxvi&dr0q~!v~8~K?zZD?544?Vd$jFT+u64BZO^n_YK;2Yge$lJI`?vUmz_!o7-yinR_;2?g z^WO)YAMro#KkYx~f7<`7|9QU_s0geJYzp`S&4Hf4NZ?Q)8kh^*9XK9%AaEk^Xy6oR zcAnAd#lXs%t7`O`tu+lbU7*fn}OFxVdK3+@kwgEPU~gU5pR1s@DP5_~*(I(QD0dp7udP^+z|U01uQ)>qqH+fzGI zd#E;AJ6C&m?eW?NYERTYT6?PYZ0-5lXKF9jzF51m?y5SyZfjjbU02;;-GREPx>ViK zx_j&HuY0KOWZe^WXX>7+yHNLB-3xUk^=s;{uHRB0tZ%RHtKVNAuAiyDz5ZDJef1C4 zKT`jA{ptF1^-tG7TmO8$)=<%~u3=Myuc5i2r(vYwP(!p~uHo*6;|&iqoM?Eo;Z(!f zhVu>2G+bG>vYd&Ty3 z+c$0ZZExP*vwZ}z6x}|z{qF6@w?DA`#P&zGpW1$Q`}yt9Y`?hu#qBGbuWHttw>CF4 zcQp?-A84LxPBkBGzPI`Q=7*Y3Hb2pPrunJn3(e0pztCLLvZm$gmMty8miCsumi;Z^ zmYJ5@TaLBd*YaS?BQ1}&oNhVS@^s6yEzh@Ttre~7S~s=&AhA8IBdv#8qpfqTcefsI zeW3M3>!YowTF5VKB{TYK!!EnO5YmaI>_-BpAVAU?(2ap@An;oG|%|v zAkW8q$05-V`c6QmANQStRG;&mhg?7Fy9mkF{3{{b>-;*T+XsDYhb|66!VmeUAmelX zqmc6B{`(>4C;TTN>8Jc>AnWJ-7a;8y{Vzb?R|eKV;`P85$b3Vf9a29S*blj%3d}(A zj|PrG_U{io2QR25f9d!fKEJKa|&8?%?uXt? z)y_b3j@BN7?%ZGdAhhRX?c>m&GqvZSK^JPDg$})d&0H(%*3_+o9&M@fL6h3+dZ0`D z>kdJiX6ojkPsi$xL!%z7I{}?~yzUgV>RjD<=+(1z7ok~N{YvQ8x_TYj<*RRie)ZH3 zLcW@Opj@RE0Jv&i<5}J0Z{tR^OeEkJz+r|19pl>T1)=;HpyL(s;V#yRNYvBu-j$OjuwKqnt>JO!;h*LWU!`E27wXr|V*61usrNr!g& zni`;=JrV(iAfu=*y)TyQ@v^CW<2aP@2ba&Hv*z60?fM;8ugBCpB`aI2~GL*VQq;O(Q}?i1keX>j-~c>EN& z{51Id3^@H9c>O%M{UZ2X0*+VIodzGyf)h`H7f;tmTW4BR(DU0{k3!dvwcZPT2jUNE zIP+N3PGF2U>AxB}5`>0WNIQj_-%%IO@L}qvQRs8;`?coWT0WCftWn z@gJZRSQu}AMU#j)h-NdZQ@7KMjF5EEM_;-yz zY6>;)gv347`h(V=widO$8NAij6qD#_*Z6k$4*Kr&{ju-UzAyVq{rljvyfwI??$7F< ztp8rUzu~3T5^kmcLn$9=TJCRoZ_8I({<-DbEpLRZzq|FJ*2h{u*ZMcD{|vqUd21&d z&Gxn3(e^fA^B(l;v9`Zz`@6QUwSBAY-`alErs>7n?U1!CzA9g%uLe@{9{*qa|K9&k z{%`vC27dehvG?t9QB?2$v#`Kwi;D`TiMkq^w`g}~_Bu1WcmXeoq9{mSQNRTe2zJfN z3%X#gi zHk~p3V5&0xY`SK;33Sukd@shyU>42&fNxUFW6as+BJ<gbb zYb0c3XPe!YWt(c7V|(7V-1f0;r|pdGoUO*DYmrF(tV)Y zsynVb1JtVqE@1U`eY}1sFu@qTOYa35SdBToNB@=njJ_K3H`377aK9nmFv2j#Fv0K~ zH2sH$EruP2eTKt^?}2eywii2u9l_3FpJ88w9{-5_ls&>;Vz08-Sw9=hg>m9Faf=?|0N)B;Ggqqz(8Xd*^(6!hrh=2_;s<`HO54lI+`9d6W#2zXrXCMz`Uoe z=dFXFCo{nh2W>yvh61Io=eP6w_{03y{EtAWN}-)_ztBy1NH7Y#&>Qt938}(ZAydc& zR-G=C2#bYf!V2KkcZE&DF5!^yrEp3(C;Tk@DTInG#BJhU%+pFS)IP{Q*Iq$zV^T14 z7C%jOf9U?ywbOTk1@^E$O@FVUl06Gdb%Eu%3*2v9q_K^$yU_~ze+-@Y19adu*b5y@ z@us<^a#OImkJ$swvljDWxA~m8+8k+V1N0$Uh5~uG=*)Q4@&@omh2;#8#?KZFuzqJN zXMNZ@!up7HhINkhS?jCTE!J|-v&LEr9H9h~Py6?uEYRQ^aQ5pZ+pbH2r}xD zZ8ZO*paTZChyrkUU$H-=Xp%S_czm=t9+=z-MEQd3+N14edpz)dw*3bn8-+vTXzyUDt%>=Dwk$IeN%Smub-n3RAV8ue zP6Gv=t~r-OQZTY8?&)_M~+#IPN(huie(Kt!J#)tl^L$-EHxALA=>b}>h_09ENpqcyWN9z~qU(m1B?}DT~ zjd`mwL>pMctA=Pc2Dp15o5tp_r`R7rttPy=SXC@F@TTkm?tAF8I~f;la|?*Pk~l1S#ChK z4uxEu2=18&?s>)fn)Q9_cI!Utm)29(pR9jauVZF5v9+{y0pAFq(IDGUjMhZp&uO-0 zwpF&*F>;%2J8XNXwRjF3)rRlRb3D(-@$q~jti=g@G5;+8BEJR_csu_qq;QyE!ps{4 z4LDC&4~y`O@H_N(2WUc3>?bCRY0%?~#kJxGumZmjk7KS~5O0WK_6S&k?d@H_6@Bba zLO!pwzi&ThzhVz{Om@t1yb7JT8FKj`Fm5pOCisJa9oI~EKSqtn;w)HhL<%?2&(yDg z*PxvJoc)PygHf?TLcYcA0D5U=>}?!i%r+K6>$#xQE}J?5V-%VfLOUrf;jjpFmP|{j zpiv~Y{P($o`(k^MCc_vA*>ZX6@G%Oy&|*_yNgz_7dRpnl4ufm zVyXC+xK-RQekU%pCpf&0PaH=b%%NcTR>|Cq0J5F|>Dx!2js8bLPCaG##PEl~K&{+O z>^}Beb_6#D=yfWPYm~7aFscbwO(ACA@5Xr35K}HN%~I1Q(=QgmI^TNJ8e{9sX8^fr zg=e6528zFkO8fo92B{22^n_u?>)g6$bnioN|Df-SxjvOW#9e}heaJZ2D4AEmuJj90 zkgd$cV8jXGrsJLmIyRfe!S1|)ku9>UvmC`7Y-f#!r{*be(AU;)@m!@X*0$7kKR=N_ z&2JID6T91I*}e8l_MVQx4wqvE`hC`Mjf^{^q;jyMZj!D@_c%NfE8vMR!k@qx9y6q| zCEVv+C(!(P>hpWY*1k zsCVH7SP>7vX2{?k<6h?mLDn^gOlxae2zk8}lA55!OXh3lX!x~;fx{)tsn=mmmsw6* zsw@Vp+1dw~Z>V*gHPf1Fbwf5Sv%X<{*ZLv!+o#t3*5i;*zd}CUu-*#~)?=7u&)e46 z)>1z04o}rEeiC}|JpU@cm9OBB@PF_(_+UW|?^IhM1~PsymGXJe_s;`WY!LPc2Ziqi zl^8Cz6Jx|4l=J#S6OI*&#K*-FaS{AdFN&|jGqni_;HY>~yeJN_KVo;<^I@GH148fO zNQJK{%aQMR%rVpPl*0#{zRK~D<7G5AX61ZWqe3)i*OwSjNx0Ub|0OG9<(7{5G> z-+bL7-3#z3y{p>@pVDE97tiZ{)m_!y&;`M#6r=C1*8?{W(T~ul!#m@c8_|a*zgt zxS`x5+yq#4PXQyY;I_b?yTK`qZH-fnUgIm!Nf(WNV>6(w2TTu|MnNBy0Qc`ORhSM! z+g^l@4TFA7G(QPMxY+zW5X@HK!B5R!z>Ys-{?Yu0xz-$HX#!Lj4UbB!#c1hm8DdGZ zjKjDGyeW&|ODVT}W;tT{%JP$?nKcH;&;qPK)jAu#%Malj`2n);BIHF&AQ-c)(B`qN zw{5bOLGQHUtw8yy{1|>I^vhw4^mV>D5S~pK2;`VaeUGmSZwns@WkQ8;SolV`E(D3q z#5ST9bCVa}5Z@QS7SF=ZcvDmXZ4|?&c*_2x{XE7r3_kD{uWK^9}M*FG|YfE|D@puLlgEsHlAJ0 zz6Z4aF}suf0`&hD=rGvW(%2E!@-pKJpn!MaC;5_k!fqH7P06rLUBKm^fXWJB@c!^g ztcJbxwfQ{tRQb(KseWhS8SZO&*z!2$(bJZfEU!|$z18xi7cud zG0RWbn(=+1mv8b-h33M2z}Nl6iK2dTXQVw{v-n1?eRts9l=t1_Kc8$a6c#+U2NlA4a(Zg}NAowZF zhL7Ma@N+3fFKqiG&^Qm8jj-htVOO-V@Ibm>TDDr>xAo@jLO;yYV$4j`GhWHW;isLx zg<+~;fnlxTS7VeZ%6!CZ$CE#U=j5apQL|Ve@#Ea@V;RW#wG}s631<@aKO)>+nR%)rtzQf8d&OI3w~j*7=&oa z0{b)Ii7L{k;y|BT!+WzzH$%Ts-`vo}(8s`Y(~SFp=$pZ3SzszPeQ3%sFM~IW1>#Dx zp0?R}Uf2uGZ-$h33?3q8v6AYA`*eED_?CK;KHu=Vp(Xf)gLUU+cd#K`A}sThTni%$ z4;%57s!c|d2q}KhbOoCFDYFaK&Re!gz*p70Sy(6Tf_7w92Kw3=UVuD!j9M7Ff$BpH zFF;B^$QofcKF7WdAJ0B^2lp#yGEOu;iCMnG*co_p5_I4M@V6KIy_xiNy%Jey3^P%e zqk9(8=_TDOy4AWjbgT47^&JfcLoZ01i|Dr(TJ$x@hz_P$(*p6FgDF!o(YSB1&S?-} z9XxO942-#09B6+DI$KG?PRu3!bwe^DT1AM0{ayE6H|Wh1%+JEY{KMSEk_u1u7R#TOaBE9ztaXZY ziFG67Y^1HPZ6N&2Uf77QQ5kz0zN{Ozmb{)f1JyhEqdWt-5zwT?i0xb#STR$43O-4F-4m<-MIB1S2i z>&?wGy3Ah!AGxi5>m}PkAq_I+U2%_i%)S6fWR>HL;|Iqj5_QyuP`{o+*Iaj>u7mC& z-6(ig3!q77!s~L8P2rw353nqSeE8P(n=O-n1@f-9&>uQsIwaK)@f6_}T?jHH7$#iT z6ERcSaMRG1?ZRfk<6(kjI@jD!#KpJ}MAI3jyUxPyHYS-eF-KOJKQbRR|BiTDXLuea z@{a>+tfDd25X$!pjH`^F7=tY>tm(Fw_z3Y?LWl7oj21sib_P4yxZLF9GlXx&C`SiG zScj481tCmp{QRJ2&1Y?1ct3s;UboML{TV`Ka(CU^I=?Ol()hYQ$8gjju&=SrfUmyb z;*BpG6{g29z6tQHMM1Bwv&^(6**fu;`8~o?*ilczn>ZZS5u^?#We77GKdHK1kn-(- zC9?ES>$kv{tTEVtAHFiIgcb@mO*Cc0^4t!u-eGulCL)5k*7^~w!_RDAzyfF|bb^;u zvcF~T%Y-=WUcJ$ zY#O(Z`-xj*T4J)A2Y}l9&4;1cmZ0?$toiWtZG|`Ix;4Vq3ojPuCflD?$YFcR)EpshjSbns=X>-8>b3p&2VPzpyANAM0 z1iZu<9*33C0+?tTWa2j9AuT+gMxz3eBR9O0uh{m(BhicRhnVLxh;g2W{pyC)K|O~8 zG-S}f;XrH~fY*Zc-SoMzEZ7^z0sqm{EfnVYe(*v;5CG*SXSIwPa%ROa1 z&$mRB^eMq7ye^y&+KLZ~2Ju56Nz`2#f=nn9&wo(&i0&=S`n|dk{TxIMSLtIQ$Hy4l z(0?BrV%g>FtC;gDt`8z{_rc0vVA%ohT4%_WS=L0@Y4iA(_z$7Uj-u^xLb~vj_^NnV zTx|auV}=J@49J%I(f$SS7jM^hGnfn?fDS*hzo6D`+z_siD+MC_m^;Yz1YL+%BEeJ$ z&C}X^KP1VM@Z%1#wL*7~E($!?4csPz&xRsiOKkor@WDQ*o1^n0V*3K@qt|rn zbRWVCuoE=>0x{dukf>)7wq~=c(=c8!X>wSiOVU6m}EF=mL8M+B}@=1>2io?H8df z-r+XF+x{Cz;-sm@amFI(;gyJxd-^P<{lT26UUwXY$$n6#h9rOUQxE zT_{Y2y*yKxgBdYjSO^<+t02Knc~*P@KJ8b;)j+mu#rMPyVX=HGu1B1Fvwa(4<-6^B z5ici^D-tyf1ByM382DKlvAXEEj7T`m=ZFZU@eUHZ>IwTpp%2kF(TBtH6{T;ZZ>R65 z?+k7qs_z7y*xe8dBw&K+AP&A857ckUth3pWF4 z9EVMD!Fb8o)TDtQ@Bu{P2AGB-@{^0$!hF*r`13Xa;T*-h`QCI;xFLjyYBAc*A_BP7 z{)&Bz9oDZll;ZBqkcWQ#c*A?#XyYo=T!U!UQ8o$o?2Cv75S?Ym{B^?5P|Pm` z{Z{a=^QZVr@HoT@9AYseVC&|Bj`KjpcZ3fGG83)vhV~N&izDD?nJDInkHY`(jJOQC z`fcc<55$k)iTDI)YmfMuco5NpPEpnO@RM&A#~Ld#FY&uAH2W6!&(KyPh@k8YQB z4{U{l)+6vAoP_W9d+Rx9m|v{FTd!FEg#8d?3$-=1HM6y_wX)r3Yj5iWzh`&&Iv=+k zMJ~))TL>>=9?nK|VgWo0pYfIa0AUEC2YHAlJqce=Td@<2ObZrIyE_m6f=a6AgBw-%A4-yBR_D6@gevoKvN#FBczHi$$1 z$za5b^AK|^*B!-(-;cRx)jRY9;p@tW|B1wczel{G9iqUo7&$w#L-rZI07?yG9|Gd% zk^7N_QOMwYMiy4(NZ{)wu;9N0y=qJvbCkKgc`!1NW&;^6gNE7)-_>#RFUUP2_GMT2 z0#krr3oY}J_wc&q6GY}tT7HM7X=d$$T%+EIK8%O0z7Y74c#zjwcUmhDiTNH;h?~~7 zwvMpa``HrVH7-D$Zh`FuWEj0>dxs*+bI`BN_(*t*3;3ys(|KUUui)R}H$iLdM#Sb@ ziZr_*qo_Bm!9>`0Qv{FTh0a`ynYtC4^EAAnX9XEKMHhw3$SbOaFIg$7ATc7uNJNFB zVduvn&!{J6@7tK2YI_U#k^9(_?P>OLu<2g2uZ16Zi+u-l)%Va-zaZutf-E93HV+_^ zC=qtSMC1@X>X;3k^c?J>ci@3L=J?KW9^+L*^k`BjGaPd_2>#}li1K%W7J5i$1l}1A zM4C%|a~_?fds=r7-$q;ez23@V|mpBjcw%uxl(G?_S6m9Knu) zh2lic&r~2z4=l=M>?)wH50Ue;0};b7sC@pBt;P(j!R%|owSXPmj=LX{+JL;DzBF<; z7CyWj?omYiXL4TdY3>E?748j0GB$8q;XnQyw){zW&M$DkBlaK2`{@LIW;BY3AP+Dm z8`BVNbQzy8zF_>y6pdV*!H5J;1h$@Se$M=oc_TROnE50)&2J{r3KqOJ47oOimKpG5 zykL1BymkWdu5<7iK)K^%b{FLEkFa4|Bcj)r8wg8Q z!Z?3`%&spG9XJh3vYNZf1sj_nv!fOK=Jy-p;fpwh%!z@>*hoRt*axrj7RZx*rmsvt znL^F?Ao|amZRXy{yGnt*nQhKTX3ZRPFuZ_mEFBPg`U!FUe%3@p^d}mZGYIV+d_E_ujLJVZ+;w~4~hH~ z@cBmm3;sT2ADR*29|EmD1{i4?;!6kN#rak+!q=C8=w_-oPRtT>MHjrf^Tq9AYs8c~ z+k4n8cDsE7{JBNQIGO{0JCO^Ups9BvpXyKG)~1d^nsu?=v73xfK`1i_;{&~osDCU_ zrxkfThjrD^!6dh}DbS)#-%CGOKV1JlY^xpAKO1j&3-fma=IxJ$pOM+y95R{M9*cmv zcOeTe2$^@yI36gmAD73i<=*EuaYwig#?Hnb$hTSyPyRS+T*k)%E~C zpL)ud!-G@Yrsv*9HtQubruqEl4wT?7)kDK@cphkqj=b3d?a9bJI;$2c+}Pbse#hcaDn z(UM1o%_7}%Kslj$o?26qev^J1@_~td8;DHE#|^U#FB!H2V^qMi`kmn?(6SpcnFa%2 zyurQ$-|AlWAo6^hAP2&RoTZW6SV*o#kX8pFsR-isbIpwp0CAVVZ?(wy2E48x8+RJN zLk#Q}zt34NSRRBIo5-q{5g+Vj>&C|-t}TK`zXbZM;XA^beGpV0iRjrAK%ZXWlCS_W zq6v+1a(0{jRd}K|*|$SVT(a*VJhwQMi3FVn!ox93S4wC9Pr7dUN03>X1@txzxU9qw z1qmPM|8MMl$l>h5?MGa*m9f3Ci!l}vFFU+KNyah897LXH8|T9Fw+6X-AHqviS=aws zP$1mY2FSb%ymF%MCkWysEY4Vga#t8X`jn_Gc02IOO9nkU0{ zeiFG1FCq$X6_My>6hjygeI9jN-tv0uW#lNRA(55HFV?~9IuJNL6TXzE`FCNrRzUkt z2LH{2v|WoFjI-c5MjYeFaXbNO`4SM*CiojdY5eb1=p>nY$|S*hcoxy}mrSpiR%7JW z!c+Yrq>=&=ie#X|cMy+ALGI?KmMCOo&WGj*0?O+RJ@K4vyX_m~9{Bhu*yI}#Czv6A zF1EA3WB(E!7GL^alQ@#kEXo>ujC@~)P#TBs?BE?e? zDL!StZoeO1w3pz!Vah_8d0>NQA^)p&t>CZ90QUPu-y8mb?S^j*Hw+KrnNui2?rcm% z9HG6*4x~31SpzrC?V(v8wXA_h?K~$o3Qd93Lt; zpyfUmeh`{LR<3|W(*^cR6WHZn6Fxi?N_{-d;ngAiKdEb~k3=qEF6Q1fb^y1G+lg7$ z#Hcq8H9m^C#!h1s(|w@+ljfN~k2T2E=?_oAQb;1%+8Vhi1(5S)knAe(z-yQtH~2}= ztuqiYS3qWz+AHwnhmmzf{h^hi%rP{fC3NCZ_^ze{Lp6o_o_KMn6hL|ryH2W>JEv)zS$FV-)oQt<#d?=;N=y$lSgg#Fg{j(qVFpvOvR8x_q7 zkD*!NeSr^$V|~PU_}_Dp`?(xhWMwqxv$ih(I~w_(eIYxY$oVco#C#2My^movL@gqN zYGb4^8u4=-@;j%~Z0_~Q?X5&c6N3yNvie~p@>WO&=U(LHTs8&rv11Uw`lk%+1Lh0B zfVIf7P+KAqCyYVX3P+<_gMbGADd+k$UGdPh{v#+ z;Vd#)E`x8BSkVxP{H7RtPdjIiqbnK~!23_uGwcQLT&61-y3(~bqmj*8Kv&&t!-@qN z9vX%TW1QfZNJNqQgIlHn8LmX`@FDoKY7npJ3SU)!a0=m)d324zHXuQgofPqZy{e#= z<}~$0WJvaTs z|HCQ*0eR<6aM}{&NtGdgTnRplM4TuF+{Qsi^)(Fw&rL&Qnyj-4tOmGXiufPo|3_2q zOG3u~bh^%luQSmc|c=J`IX?ZV?YT?M9Ni~QYj?DiIWH!05j*CdFCERjIEwYxY5;BXdNU=~ZDgcsR3Cyzr zUZV@Zd)mKUVX~aAE+O*kzrV7iepSf{NHnsRL`PR`IqAxgC0Mbw4XX)c%VkS6)`k$- zl?#vMQpl^_)&q2XR{aW)o>=ukq||h34J|=_^O`y-MfgUEby<Chf^}JIz(3pQx~xj@P-|F4Nyya7rE+Q=@?Fj%*Ci5CimbkJiVG0ATZz1uzn4$~ zl}|3nC$c{90M?k0bygAJ8?wTRtO+D*0gu6dbvfWW)`l_Dz&A>o4;_tFRD0 zS^)p$N@TYjplbl5!8Luc`foTgDKii|Arh+unr*`!I*o9U7M#c4 zqnv+P>vVvw{%g&}(6tO?y~udVF^lU~G;M&EI{}WV*K~w$dSWGvKv%&eVeJc9{YO?W zt;33zi~p-G$)fHKs0=y%+RO_wbHzV_qXuQ^lTE!uXngq)w1KH9Gu#RCl z)qNYNY&w8d4X43h7vPN}nov#oET9cXi^brxH^udkQ)S4bKJ*`?RbSZR^Qgz4NGpwU#aj$A zT6f1emm0HmhsV4!W=K^OfrRa+2JQWv7S1pf+u4BfBF&r${>tP#> zYHB&AAdKb?kXUAY95WEbEI>OJqYY#w*#&(B;+IL#$BUtb55T9af+UT@lZ#;&5KUXl zwnlD73`ZVy_j8v5cPVg}0(U8JmjZVwaF+siDR7qpcPVg}0(U8JmjZVwaF+siDR7qp zcPVg}0(U8JmjZVwaF+siDR7qpcPVg}0(U8JmjZVwaF+siDR7qpcPVg}0(U8JmjZVw z(1-%(87A?O#Y`|xDY5ze470iJa$Mc-fBLD!#bzD0He)t4`Ml$1#h}kS4tHi3X$uPT zCl#ho(N0Xy%gc9ZCuC|1-Fe#VJZ;}0$=WIT8JV%+;Z4c^fkZy3FD!Dmyz*U_`i;{q z?-Gn-PPd>-BK>`_ODlT4vda*9yr_$r{=VF$1^rz{e}`pHbdov(wKjYw#WPqpt7Q6| zQ(-Ugsbqo__b5~hvkS+)1Lvla7pX;HtE9&Yx{sXlP#lsigr3Hi4htedtafDz&@FB@ zJa8g)?csQI-~81{}$@j5q9t_ z@_%Fg(hr~3{w_c zSX4L>=V%|$7h2cxMuo78a&fVRnYsBWn5Dr9^o`bc@-O9j-+t!q(f<|&l>4#fA6qAE z25bYdJ%TM4+jMLnVB3Z52)6Usf(|fD3v8XRS+EVpHWpg}wi0a5U|WH01GYoh&SPUf zXPDO54A=%?8;h*~+Z=35u&u+k726(c$FQBjb_HALLA-$x8;7kowj^w0vE^VZ!L|h3 z+t_wvJA~~VwxBNKmS9_h?E`Fku${zKgH3e^ZN=6d zn}BUFw(-~sv60VG&|n3&J3n(Bj3OhKQQY?tb8A+X%w`lqT*GnwJ@v9E2q!vVb7F2g zG5IH?XK2%NF@4fq+4*_(r31fB@ka4JOyFIRx}>V zH*kf#74gn1^>naQjDNg~yrb}+?#lj~b_DvBK;P0giM}7P zzQ=)nC4+M0ZRF(LgSS&7aHa1ZR~p}ye8)9XL*TCXJFYaoE8&i74R`gs<4WMJz8F{C zU;0e$B3IbITxqyV|Cej^cagV<2L5iR2C32TmuvNRng4Qy@EW-qkMWuaN)~{718>tM z92$62B6;^{{n=6UJ&bN<4DM-oa{W9YH4Vl)8mG{Arxs$hK|0zKcoS>j-H3rvBIO$X z0`=(de~XR;hcmcB-fLTcH`;3Pp6kw_X(#%C09|f>FJ%3@lVkC=S~Ggi;a!kA)DkHB z*Ito#+y>rZ-thd!d$+fRT={Dqjd`*0z4iP5rjA}{MFwaScrR-GoejVBv<*-;@ZA+7 zLf#UZ3(AmB*F1M_E_VCm7sgM^b|n?&Ps}VTVwfpK6Y~o*Gh;Jya~Z%pSN4=lZDwI% zexVlswuK|M_&I~i@ST4M2uRLvfK|yYIKm=-? z=|$Qp=^2^Ybewm&GN%-{w61(@Zhm@(*5%C9_94)cK07yiLScI0#Fgxtrq8ScXDyh++TR5g_}1EsR_ zvR&Efx!F(9>YGx)oSm0JI-H3+wG-Tv2vmMN-(A?at+CnxE-k8_l3(P~=4MaMMD3(I zg_%X}T$eUK3urqxmplxVB5itbV*ZqZ?A*)@ZP$k;<`#C-X1Vhw615U&XL>`U@`_xA z?ujmR9{*@3`sU^)rf28TzLS0%NWTe`&&+Zbt31}ubr=f(_ znVDV?Xf5h7nEyi`AIolZBOSMf`%M3MUy&>0Kip>|_Z7IoZBw%gUGDVUh5;fYNgqJk zg*ovLv>%tBmx&qq5EutPS{Lc!t#;|HnGcgmv1(WYA|Ic)(yNTExXl{65$Qw;dI_V2D zA9ZIIk;V`%A67TXF@Ubj!YSF9P+&ST-h|!VdF~=Yz{k@6A5MADUPo#8w|t+Ohf&MV zo06I5LLW$3O2fY`n_f7{O$rv(kExE%rz{9D7n!gH`Pq3c%DzObWm3+CU7kI$Fuy22 z%cV`proHRaqsJ{e3SNO$f8xpMGiJ^rzJgFjLCoIZP$o1eLKz<)A3{Dx9bFg6bk$mtMuw>vvrdre47KlLL>e&;9}{(=<$?yvs-JNy3MKmM;~ z0C`d*{_3AdjvDqOn19*fx?*>h|98D@C=~%;@$G*KDhG>a&+(L$&V6d0cfPd1w{X$o zr=NLt$#c)YuyomrFD-w0#VadUy}EkMYp=iY=38&CUH8tr@2!9TgAX@s{AknWEn7d{ zw*8YGWjlA3@BVa8#om3N?LYAO!7mOSK63Qfm&d<4@%715r@uM#ZRL00|8Vxlb3e&d z=c_OL{L8NwfBXH?yw;L&Mbh5A1KhvJ;_}Jus6`1OY0a2+k@2AtDrDD7r%+=g%h3lO~{;3=!W4> zt_@7jqq}$xsh>f;q)rBPk$SM@;l9U79prv;FS&kfv)EFq^8^YiG{WOv-i~^Z;2v9S{k$ z0?9x*LcqFD|N5Q(i{FT|jAC(DMiGpAhb8w-K2hHHc*Mq!dza3izw4DZ#@|B(Y2n1! zf{Y0bm0yg7?`SN1{;M0#F_M3TbYb=k6~J{_vNT5R9wY@zajp3f=dX;y)nqmKVauvR zR%KvE+8gJ&W>`&ji())A3YR9QDSIUC>Tjh-T*{n`>JX=l2Kl3)R1}`Q{%TuFs`Jg} zj6!zcbeg;kUU`X?W<=yfrd@hXnh{y*cQuuYlv_STgD$0a(=fe+1alfqexDcH@?I$-cl9LCa3z3SB(exr1%SxN^0VJ zE&^wV`JUVSCw`KK%KLBn{pC`o?BBQ>XZ#zt(Qk6q84-mClK(y2vpXUu+E=<9CzI;R zMXB)U(lVFHsYKP3dQai^{*7HpcQ;1U?-=^sntp5PcO?B@PQO>u z?=|%M1pR)KejlLUhv@fS`n`^RZ>Hbt>GwAJy_{8XSm8B9bork+4+WkIeG zd7c&%5KsHKJthZ|4jB0lRD}KoN@vX`FT7DCKH_Fq;T1ZH*(51JK_dC?PFb@zh<_a@*7v;$8TIp>Uso>kBR6l9fWpzwv*N}?$9Lp2?QkN zwfL&G)kztzuP-h_x`cN?eQ89#NTuY|U+zsK_j>SkYyObRMEj1^zpUqr{4IpNnXe`ca0QZTUWa`9<%6T z#%gkFxs-U8{anr^)qjSs`s#1}QV#W8Xid~eid3Xxjil~WDb!PQb5Fbt6ZPAr;I>F(wcW56|x zOY0=R@+WwlXSWg@p^-+Yaumb-QRKX5w@OM>%cp3M)Yg$|R|{u=B1fgY@|nPCDY3@e zUwvnj!tQ9&)t;nD7p49x>8q+oapzVdJFUrTP029q)K$A*_To}iG|tdLp#y?uC$p#c z{VA!_NAck`e?oO9OTT%}b(nl5M%uZvCd4O{GS?w5!-DsK>I#?9WAVFm9#K^Z!RKz* zW4|k6fJ-&N-7*;>R+S7H8=OppYzz^yVIFm;ANU|jeiTHgV48qb@=WY{TLS=qgpH*X z#?@0pG?7S8tsePoW z!8=Jq-5up9@*tgj1-(uopStH)k(zc#R=1KEG>pI=6grHbz;!%xY+bW*)Xu#`if!xx z`p!^E6`+T7H9(wTj?$$f{w(3zD+wy4+nUo!gT=bXcB zja3VX_g6~z`YOonJ#qUTgr-Dvx06qTlj>*#UB$?sgAAYzL1(~u5%q)!uu8nDv@AvX zZBK%laZi*JAuqiNDye_2x0%%6=^d<;n(^W5F8~*|kirjC1JCp?aEHlb1(XYw5|n(% zq4T)d3X{3vx=Q|rBlRe8_DWnqkUP@TzaR*YP*gXSRH!*lNiOdBi*i=U2avdxB|?0= zLp;sEC;rgJolKD~RyT*L^J9+f1Iv5t{xnypXNH=YRdrjpQc|Uh(zWU?noVK;L{*Z! z9EJP!BgNe<3>7o$7_dSk^*Z}P0rI=3s3dZ-77{KZMRKcv zQq-*9=Of6+`?5^Fw-e;!-Cje#3I6eJzf8YR({F;ByxR$~lD(M1{8cwAo6&?+@~L3x z5Ov3pVTg*i6QIQaA(s+Na#Bp6MzU=GgvdR1nLBbmoEnoT=39~JA`0a8_Js)N`v%_k+hl5n`Q zM(L>u^Oh1EsCi0(d;Bq_@kqmA%RD~P9q1*36uqUiKc%#vrL>2owCAOyhgEwa4e$() ztaT0a$iXg?M^?Ey_o#41;Yd^Z7A|{yq`a!?JdKbw{*2KQD?#bFal z+^Wgg&GKC9?vC}8D+9!rM%9*{^1e)3qwzg_s}|+ex|3CAoRes4CzmzVY=YuY9rDuS zs%TRDHPSbxDx$vXE_YT{Z(JoguG)u7r291kT&bQKrz^oz zlj~~jsd-FO`YtX7x&_mesd@!pSsr_?``+NIb*CdRXXuz!&B4V0nIfvD-rCnzi_yF6{WkJOat&~(tF zYX)#$HLNZ`?*Q?dk+kDKXq!z2}u4z^|{Ah^Qoq{_H9J z90!blJwfq4dOgWkN=TU`E3J6W?g+qSjdvrN+|^-OUV1H1!dpt|ypgoCYBbs)ktURu z1s>{}C?%mi{BhSKnoX)KYyTk4ob%{P9fcVcn7|dw?vqYjJ=&|}YfZ`LxG0^xdX((% z#J=}AQvG4s>!SkX5A@y}=oGzBbrvU9Q9{#p_>vU!RdFTz+}C>Ss@jWdo|*#9BJ%D% zP00mtji)A4v*06oev)S44w&4Ynrzpjo|-&YS5Hm8ru0Qz3lOikqLfHZusq{RubV@t zr+S3M-Vy@xelr;{O-W}owT|X4b(U00cs|P;TCED~dP6IyU?hB7^#+Jk$F_k-K$^lB zBJ(e+bf3n%1*PC}NmhEwRaFFPxLZK1O>$2RFfgg3I@L;VN22bTJU5a8-pIUF}a_rQxihm;! z@S0C{`so7#;|pg78F(MPBNfKZ34j4v0c#}9e@NO$`sCRiJ^NfS>UMRko2Bm7bycSN zjb};u!^C{@A4*Hh@@ywGpX81%z0$Z;B`LMGzErW}L3i`I5kV*W1*W=G(J=T`H!-q- zUXk&uDBXZsA##}N7>`_pi3b@(Ced`v9jbX&qn<#i2TEz7NU>_mrJk5~m?Y>e{QICp#^{opENZr7&xE_WT6jJQaxq1%? zoY@nmi>rPpAR;4fiO2>GA(dA*8It9(Fs{(JxKh9SQjhY(U|7Oup6x^eF`Cke7%zzm z;5Xx3=B&2>GViGyl?R#X=rM~|&dVS+vjk>*-6hH|gFc?=$|31?+koVh5^KkeWj`M!hr)feuN+4HB@?4K$}x%%Bcqsr?R{+9u_}&II!}NpW*s`&8UYu{Be2T?wa3eAB z>b(Sp@Egek<;j1w3u%M+orSH%X=uY^&3h2D-cuHlB$sxAsD*)DrmZtF8(THh9FLr# zrX@!OO2Ui&kA?sFF*c0yt;hV0G3u$Qe@sN6cQMJ`vu7|86RPN?UaspbH zM%bslKmKfW8|w^}JMzlTAeSad?ooHi9o!`TG@dFGMVL@s!uln5C9TfStxu6B(}%#P zRf`?J+yaGQ?-JL8D_Dv@E&mR8W;yY25;tUk6X7C>*n{ppgG-1wxK)H;D)PAM2Z*Ej zF=&G{ue+A)zecKuAF;lE*imp>ot0lA)sh15lfrfND&$?Hcq230b0MOUjg8?^UrA8M zrD{qSDG0df_$%ghjX!NilS1dUmYQik zQuOjRt5$11DNjj~HE@bRqQc$PBr6^hnyl~I4X z)W9x{8hGCw4Q%?C2Esd5>>3Mt`{FO>ge1X(n1s?1-VhJ^&}{7P79Zs;ULSa@Pr0c zhif*)t8i0C3+c=)NiHC!uVgzs z;>Dpk3SXjXC?r{2Ai6NgBa(ZA+^76eI-K&MfFz;)bd z!H*P9E5GJ6D%JkU>eg2)5f287GSC^%4#+-N%ALTws_)ILBu8I{??ON>A!uRRmv>d zQ;tgB#-r+|S%fo*H1#N4OLsQ4gS@TH?QMJyZAKe60|hYElSr@Bv{$Y#|DnZDy0ZHk zne~mD+#%3pTuYMg2lmE1sBiYEziak%v<>1xEk8qQsuK@tX8~z)>Qwo7O`v(Haz`7)(M7+zwci~HH*~6hgbGAYO_5jP z0t}bi$$3^j8&%h?KS>phco;Vms6m5u13hTvV9X9Qps{u(+69hr4YYiO)U0%$E69Hs z?it>#F1%2$I;huG{t^}<5soStqkiLZu$ugCv%2V=|4;*xp{1RcR){Y}^$+lBl(Q=i z!Pk8Q$04Z4f2eUYNX6wuT9YeLgHS9Guc4I@7wSDyD7Y*L4mT734y>+!`Hd#KGt+<+*6exb;|>G6gOvNJWa?x=@y;qz5j{_Sb@VnvxXkJ1g5VijN~P?UHxw#n`3FW>U#+HO3=6Aha()~sKtBRc!8n(qrc`-UJnccXIp=bHCIx@f)eYWIgia&B zAvH;#`5slwSM(|=b6?A0eDO6&Jq`{XhFpszPy|80I(?5(NhajLsJNnVkbna+A|2|3 zi>;hwFk}rFD3GfVf<1)4sfcRCtwV>V$acz9!0XM3;EfuICsie45T%sSt4;$D5+;#8 zOSW2F&7>2PPpLgS)xjtE{e{0wE>j2Z;`bJ*tX8*D+DV{0NZC{xsY0+|Ol{-(u9JCn zJ;bf{j8{SH#8sWACls2JGuV*^kM}0lAf)RZJYMRr^jw24c{4d5ehAN(#AD?9aPT$$ zs~Itq_o=0sqdgf`6(foCayxRlcks7p7k_m6_tKbJi4hkf>q?rL;cilqkU?yN>apTt zoTA6G$?;(E>H6ama%>l$tv@a$$FZWX{&)^KZZ9sXKb}jDn~Bem<1o}eAIJWw896Hd z(KPSO3>Zl03!8Ja0FU_XrS*1tZ$9&Vr1qCBZBUR3Tq?Im~ zUV%_nkx14GG{~p4OCouQZ}hJinvpVPss)2F~=) zDvI+d9}g}I-Uru-F-h(KtxDO`)wRBc6rb{wWSJpVfPHpH^j}T#db~8p2iPtcTzm(M zcrK_{T|f(=xR9U6m#0c%E}BZ@OsxMa=^}s0rLG7eB?#kGcW5wNn&t$JTum;(vqXL% zHQl55OKwfzHg_0XR&_6K%CfeX_PCm1Dp*^)uLXX7@3AK?E(t6yKLWp*RKs6Sb4P$) z{wOCNE>%0Reviv;H6A}2 zw^#L{1C6&2xG<<^dpZ5Wb5pM4RKk1m>5vFSUtPJH8^zWs*4~gNp3K@P~QEZ z|2Q6qkszn(NN5{IqV6=*IaA#N!<<2eLg_zVJqk2){{l5vK%QwNv>~7<#}6|zha?~Q zk4x}RxpX-}sq$1v9|AxzDy|NxNjb3DYDh8qlgODIPu$tt>ctw&iKe650MIgCA${iNTpB7 z1Fvo-F>1bMdXQ8DU|BtwG(dhKf;=8X9N<%Lqz_kkXu^)xx0pV^Q={h-P1Cpm&1dhT z58qXIGQmn4J^k(KP>Jq&GAj`|otZ~~vC0D@J=JsVrfb;zV0ifly{U5F14}&`)WD-f z__m}y#Meo)nd%aDD5Ca;&JUiKplry_`7S)rUQNk<^p2$G_~R@4c;X2Rublo2drG>5 zgs5O6=?cll^1JRqT9PZYc(Ag#x@b>=ayB$iNY0g!$XY4yfAvJ$GEdnb7??n+DFH`) zG4gSBDXM6k(QEGvD;nr0$W3aAt8U_{33e;7t7>T0z`AC+ETl=*O-aED0^$7txxtzR zS=jR%$*}sPrlHqh$L0VgBtfu_9Uy~bKI}Gdp8|^mnRk-01b0w=>$pmV6Qo!7B5Fr2 zA`AKuTB(wXYrsC$ZJp|9@{BsWvbD1oSg^saR1rh#kQaWDcvZb&2IRjGjcaTd|MwnT z`?n8{MmzrVgZ)wS(69Pb-n#BYk-oy#ZUbszPRqo}l~&)^s0Fwfz>~KK(FzxtKTxta zDGBp8oRG-BiV%kosu>!w7`J)CDY>ft#Dokuf7H%HWQNWTfd$b(HB1y({1pkKM*`3U~Ig1#{ULQ3uWqALGU?_5G{C+VZ#eU=;(B6w#O?3ue4ywYdS+=p@8XY-rqFq;#c zXu=ZQm!p=qA!x_<<4-QCt8tcf2za(hq*%@;FEW3fWwG3~r!!EupU(_k(Kaq9zB% z+)p_44E{gty$xKHRoXv(4>RDXqca*BD%O}(7G}c?FEiXT0>Ypc7>a_F_>w?KsDyL- zQljX9%Wym8K3i?O+ncGow$*N1zSWk2xPWGb=~HC3OPjej4Qsfvf=bN)d!2h`80cm9 z|9^hJ|MUAjpU`X0xzGE#&ULQ)oaXPgt8=7glG$9&LuF5)^-G}Jb#W&lb_)0s6U}R@!hsDjJqooz*Y+V4n`N=9jMaxgg^3z25DNTOT%1^W8Cz1@HzC|_~QEEUZVYy_4bSL4IQ~TQ4ET9i!ty3LL$lH43HwOJQOFByQ>RBi-%bDK=TL>Q`rLzy7wapY2k8W98IWQ zG<_h-uu(!RB%L-&#Ib{|sGT$)cTvnvnng{alyPA$C^n8#vAps`#$?+?Q_Qhkp1N6# zW93M%L89-CqioVGIA)Y1Sqr7H?3tCrCVLorrsnLTK;x2^gATl7e-8 z@sfsOLmoOK7oCQzpyOSB{`iTX^qZk5?<4&`4J7?hau$?{laRBJtK@lh(H!^!;cO0= z>hh93KM!7h$zxa+I^8H)OFe+*#2R zS{@4ae+)w2g~3}j2tDoU5)KzD6_+RKSU#B5{`V5O9b$(5^1LOoXW7 z9#D`Ji%!yxd>Fix5d#9-py8tRt-qfNez%KAoWz!II&FQ?CW#z zC?nQ+wa=mA|FL$OJ9e#m(d#;KI26B~kEl4|L@}*F#Z zLJncnxrPNOMlIgveJIlVP=xoPDbg5ULa-EAWXKl3GSy-K@*#w8(8hvTAiqKUO1vo6 zQjfkLzPV60L)auK_P}r7cAqhom!CMuoV^SeT2v+mG4K+k2T3GtFl>p zFeN-YM|<$0Fw=+Cmvf=n8L@UEjty{x%3moTiV;zM!e1-bIFBftbyN6{%FnayymssH-LM~p?`NON^aG%7M zp)5!G45b0_b6sj_4fROulwO1DGWgeaEZvrl7OVpLPh?%yZD_yCO;^`kPqfnSGpFfy ze+&J-eFDEl+n?xRj=O_7&oncq`Y3bu)G_Ckx8OYeSal~H(XMh;OYpeus-|iKJY;qO zdTtb#+*`a5Zy%_y;mJFunfL}B%t?O(s}1IV`R#Wh0iz2DpmR-^-%*2wIj#TPj_!lo zxmEwHfv*_Ds&bjx^4n{0HbqE}qldECNR#gDi`sYsJa5V324@sY4?_1`^p%<|POL=z zIftnrXd>X{eVua??n{iw^`6R=PJ@4t_{iC)-qJ^FfQ@Ha$|dZ0WhkW-lv&FKXP6gNmMl3#o}>^zYt76R^A z)_%(k4wcyCSyd7trQk#fSLpa_f>vq-Hk&vcM^OLf;;zABc=I5mu-qU_Wyr~u{y;%= zo8kIgsfSK3q#c1=uKaVJ;jZZ(EKok9DBn&*!m@}R_rHwSZv%>*Otdwyk2!9+lg{a! za9x%(5h>{Xqb?aGeSHq8z47v8hyjF%d9rKa<$+fm*vZccda2+g<>x9T;l&FHTjwF) zVX7G3ILaq2xx|PZ+VxPNZXq=KFYtjN)>9XiNQx}+w*t#M zEDn^y-Ofg>^L(cZYRz^vA9@af>k>*-Qardg>9o-C&|;jK2J3n(p~25T$N$Aamojp* zrOYHYwfMgX%W}|P-vZ+_;jtBg85Wxg&Y*$RckfIciXpzUH0&2_IZ4u`Y7kVopI zKY~S$4yR2<+$D{jc{mYv3s9~R9KQV92(7jRannA92!Ob z0Phhy+1nh~Lee9l$~SX5?eA2sO={OBjj7JPN%zuAFTFtw0!=}Z==a~Dmw#=zqDGf| zkI?PjHW819!2=PdM%Wyo8w{zRQEcgm#M`BxD`)4rt0go(%ez+P9n%W*R@c2l*|k-4 zoMEb~sR|`+pJcwNysNhQ0+LqMHC9uQ-Z9Pn%-0Ce9%$AcQ1Z>|#zxmCXSp9AL9r!z zyzj6+L_1S!m8m%EX@&G^t;Sv5i!7)u3pG8RnG=_ro6oi6m zwuceUJnF_O=HaNThdntmDx0d$p`7Q4hK}9F{NfW7;;tG=xs)yLd-cw1`IWv#=TSDoKmz|k`4LiVAq~X>=rQ_bcADa+XilysjmPVu zmnQb?WY?o+mN_OmH&11&*jK9|I8(QQg2hJZCrI3Y&D&qm7I`zduGl4<@1h6waZ7XTT|fxiFUT zxDc2Pg&HaBIQT+epKIbGa7p2YrciQ$6r63gp)_-Tufq;;xpP_BHy*3A?;BxsaFVk~ z;`!9s*DH*syNSuF{z%VJ$~%N^UgFx4*yukIWa|oNhdzjW*=12M3~335h$M`Bp9_j@ zBQd34!Qg^t6{1DxBKA0kTIqh-1JHhR)){P_XlS{|ZI|elw@mojs@ss5O+a^QB$Sbw z!KI*62O75E66qr<*BXs>TMsf;R$Rag`2aq*@OACTs$<%!BY4mrNXKkA*8XewgNoUL zVsQNx#XNY-0DV69A0!$8;hg98+H?gjicirVn2uW=9$=!aw(>M0)oJ`hl%|-;_pJR2 zXOrpam3Zf!#F#+vh*f~IqD_SY%G<>zw5usqO?a2KfpeFHxl%RmRGr&(7UkSqB*vr^ zxeO`E$#)5t#7oj;Bx(N=^R6;OIZ>6&*RQ>dvNw^QbSzNlPQBrcJ``1{RwvIEu865B zDF!)Eq$^wPQMzz1w+>fu!G%1pS>kBGwbeUN8svyX+D!Yl2JbdMZHE^hBHI2Lf=G8q zN`TA;Hwr4wN}-sJ;*w%4H>6$gLORH&sZE=9`M~UghHd&;SCDA3kJlEplY|%!~;X(q?-<_D@ovi1QfG*lS<~c@3VMAqf%mTdv97&6c)ME@>RJnPoLHkBXKH zv`)AiJVt&cIBl90caXHf6!Y))~nt27KML`V=2dKTkGF3mx{%0 zbZ&?vp2av$x>wvr2ikbL9#2@G^`VX41C&dOPC;w(#BKWqBp@|qUxK=1O5i;}N8}jVE!4ErL36z2zxtl>j~1op{}P6Qpz`%gb|b%4)KcWfN}8=AIUktBn$epb5j# z1c>t{Q6kHdUfgD#sp=0NM#0V|9qx(>O*zsv;4+WxXZzp5z-Am#An6=HcqaaY`ix}+ z7WjA|6b2rsVS$Ib{s;GxK-(UX+cs2G`Vu-H>7{F*sVe_-18WS5re23qk*H`;o2V_- zxRB;VEVYl`9RF=?gAk=@iEodJjZy+SV#*N>e79ptuFEVP1f@a`z%e05N(RfqW*`ru z(>^Bp#4GMDVhUmtbnSg4j74uNF`<#*J<@@8u$@l%1)E-m71}1eU?ZjHD7dWD_m+L3 zm5OMTCLsrj!8g(lfR=>r^iq+@TBQQi3?49GHr6BQN?O>1P0O*&L)-9J0;H*RxbG$ zi)eU6GjMhW5=Cd>IT97~acm`j6KXG|+6f;y(i79av9f_SDJ`bnsKcS4+L5W_S(b9Wd9lJV0o90=RD`yw5ZLf7+}iU9Gp9g3O&my)3vLW);Upp&ODn3W zj%>@I=n`nT1=psnrbM1M`!NHm6?DFh)k#`B9M$<|yKjX@k%W}p@6hgo^r<^VS2MNk zpep5Nu96mDU~)rzjr1)xSY|3)E$u^%flV)~_(TrGnBl|ggej0-l0;TRdtR}Xgqv_X z#fI(zgg1+gM#O~qQQ@Xf;Zwt>={|!SdS^KCxOhtZgz8!BH&F$Ba5K%dRp3Ev zHw`)IFw9$$sgx*}xGLIs8(k=>$Q8Tm&xf%47|KRVgd@#&0R(TZ3La!i2aifx-g?6~ zPVwCW36n46knqWOkt0kh!ip}BJ-H&oW_q3-Ja=zLL+BpIP7HhS+}+ag_<+qLP7_H5 zU(mU#w__jT+P{PSR^gW^oNUC)6S}*%N-ufX%-RlzX(0Mc6>KKv!mLTO&qY#9#BA}; z&M$6!@Y5)EFrV9RT%-X)YUk%l=amrG+Z(AC_j>%|rp*_i$gA_DOHsaCE!7- z`~ou~xfD}fG}bC4njf3lyuV5L(&Zfki}ZnCX~x7;4oXuFG<{9f*>K z<4s3wZzAp~R6mXoyf}V^T@N-IAO&qzH462_i)?VB8pB5=s7tr|-ObM9*DXci82x?}{&dYyFf zxgASVkwq)2iBzC1vi);}Ip3!409~|X3zR^YFQ|w{d)ElyxxbhfSQe^9q20a{58i4b zIWH@-eLKoPKS3H$ow!xDb>X}M%pFNjce1X9xLAMW4!EA6x&s;JdiPUbrN`cbG@55f z&C^yJSS8eCUsD~oLBgJe`<0Y-`GB;lKw7z3kTh9Xwc4#w;C1btjJT8ybj?OvwTqtE z0AV8SrvZ1d2577IqaSQ)(P(J5U7>_-HZqr^-9$jLg*ZM_wf+FOBs~w$Ed3BgD zT&}&58;Q2LfW4ue#FT_Ng0^uQ+fz&AeHgQHVYpba`q&^g)Ah7>h%Be>+` zbYEABT+r!CM{m49cKP9dzc&wHCW)-S{k>Vj!U%yuy~(ED*b&2qfM`v-Z7n5qlixQ} z<#C|7^gKp(F%1PTKEV0qmIZzxJLFmRcX1S~4C^L*T z5StXapqb;)DEHGq@_n1%^*{;QfMR44M#v(0Vg^v)VzWuRbvO{=NkScN$~u=`+>CvB z4SpJNjFB@lKY0pF{k!6Vl7NnW*x(ry8c*3F?(JZ--o%Sr2dOq)$N9c+d z(yLbaS6Xeso>ZSOK^lRaPCY069Y+WO8&B=epis!in>Ip(O&V0?lcaM}eWM=~o@VyDkY)^P2Cj2M;kbA{ubEa~`udaYOViptAr2Auwk?OzD} z5)x=IZfpTOW2O58RYK)Gtc1=Q3%xjUA=q;5>M94Si)V2zJ?F0#37cYo0Jpy0yPFT;V+gisaf2m|wX2KSCPDB5wi)JfB0138lc%dv&hG zD#s>qj@sGQ=NgI2zbMMt_O-J)r07KrRHQVBCk@=FEq!L(vv%NwZXsM@1Qw~%HX~az z2-tUSkHr#A-c!PRx;rwA=%k;r3+}v z}4P-&ry+tW(Mwy=xU*FYqXVZjRs!}1j*;T7EJQjOR<b&1b!ULupN;9KcE@HPr7QfDE)zOVu!zuq z0#1+d6I(r*GMy8XUPqVsL8#+MPZm3=fR#R_igBA@0v}5RP9+UD1d;e;R9c&IS~y7p}~*#cLYRidP0{p8}8VYtjYrUS#ei|+Tz ze8zu|7y_|Q#5m}M!NhbsJLL<;{UO1JY$W5rowZl-8kPznA7Oj+H8T5PFRtM}7P18U zd2i@O+zKGRp-~8Pa2{u^ejd^UsPO%f(?Kk$&z2e>eLxwmA;NX;bj)^`)pLa{bfrhY z^qpsfm_)~e(_M=rz^Jy&(S$&?8`>$!_XV37kY_R7*tmt*CbLbTbBxQ8jvj{npCXMH zRXB?xND0ANq~`McSYr9;9zAU1Z9?uzImF+$Ls&ugh;bJO`=-CiRDl(@mdxx88L*ef zg~nX5XHz8Q6G7TAx3?EW?@S7q+dIG5FY9BKfzMoI7x%>;@r=VnwF-A&_!L7tQ(>}- z+2AWe38|@625j)fe}>|GHuy3T5wO8Gz+A(Yj`dji_MaS~MA+dA$Nm*&_;gV9aWf+| zF4+#9Y>jU}87Ofv!$hwAr)X;( z)WD;#$XAD?%p%`g@X*l~P1Tzr+`|pIW7>n)LuHBo$hDtLueg{cG#4}6;(CG%rf94F zI*c}Mi^&A&7WYj(p8MOzG47SVH=(Ee$2MM5Tu}aw= zw4Z@rHdIuJ$=Cia9)~hCx7Wdo74z-F)PUWr0e1PG50s+nW)^wcA4N!zRlegvR{7RY z;ypBET>At5g1^Tq-%M68rS-P+tVr@Rt9-s9>A78xDC+!oSmg^vl+XGS4))tgTerxW zL{|Cwe8HH`@|d-Mf=C%jy7u=1etmmA{4g}>x5~GfS>_mp+!1|57_3rHw6AF4}O_#zHvz9x6RiG+kB0%&DW@{ z)&nazXm` zKf)h~>bK3u?2$S9V4Dw&&->lB`KUr|6%R=fw%IgTKYuSYpZ%_y9X3~ z15V|$&gY#e8;jDr-fkf@$c%~EH6-hNM-k>`md3E*+lPn7>OWBn{T87pJ_{NZtT7wtn)G3Sl_bF$1u%IeztEw8wOhEyI(9*LAZ6F)^D4S#}N3W zbpr|XKI;CE{G;J_G23rsn~(a@9**Ljd&ujHX%8Xxtii%sw%!$d+qwNb5XFr1sThd` zjPspl;V{m3nAXw*jq{PNs*JnJf5$lAG^oLmjH(EO<3l+!&PUAHXPl4m#k-%ly!P;sLB{#05O+1@z`9K~&R1{(@6#VP&PP-S6$;rnU#y(| z+s66)shDxTk^WTQHqJ-g`2pj6F86LE@EPVaU=u^rr;^smWD@pIKyec@J9{f;)PTVU z>jiIGij*QtARFc*6S>SV-*I?kQ<3dfr16hoka0ft2Glzuwni+-&b_>=QGx~9r^sm`Uu6}YpjnLpo?)o2Wc`75kIK37#wrFOk^dp-$n&& z_Qf;SsSC_!kx^>@>%%j24(<}mX8SI~Y#)mz(|uGyz;xdeG=muW2AJ-naSJltM~^|K z`{+>*LLgiqzt41^$k=c6pQE3laCxXS!u5V*eKfgY$WKcDC#pY+FJ@3G(M_*Dw`?u+ z2`X1wh@0jCT__@X3vAvX#jQx>Ex(*w1=N=Z8 zC(7$mEMo%3{%#lDw3hH0`)g^B0~V!QTTT(lSS6TfPT@G_eq{7 zdR^N%#e-Fx;u*kIz|3kW$N+u`_$}ht#=1mZ{1geqMj?~*#xb-Zc|GWMES+A%XbSE{ z2VaMj=1<1T=60l&H-N=6u{@T(Yy@g{?ZvJvNc@Bi#IBbSwCh#+*+)Nz@DsfGK@xGq zS%_(JELkcDFE2iLS);`9cb$fBEboAk2W6&uF<-wXl%hidR%5(zRGK7Ft#XAW`r<>> zi42@H_>9E0LaO7uHhgmi#IFq{A$igDj++2#KtXi9kS1j`qp#4kYK6us8EkJ~hPiN< zTD+5fJWIXn7Kx`Ml0ZOK*{Bx7JokzXPD$&qI;Aj2^ekvaeEPwl5t2@{5DA8Res`GK zxRZW7V-FJwcG8b$*kMA#PWthgzQ@&gbObtDxTg%QHCV%F#fV$%ZNd;3^=N(r8z9Y_4hr+eQHa!al&u;aTI`nTdL(QKf{PzFr$H4J=S%fhT-{XAron1rO}L+4T@SvqkO*S#GSv!~u2SrdbHC0-T_nRMH+~ z;v4dIwIZJ*ym+5K+>P+OU8fPclYT^@6Gos`TH;u`!Yt`L#d}-O#+%)l9dk>d6VQg^ zNLrjAxzr>_V>X9fwo3}ZMCXOl(fu+CeN8IElwnQkQk4(gl8JSI9v@C&9u?<_*-0Hk zty8k3_5RxE&V9sA>LemC61`c{A~_B*0r4Edy>WyqDM^lG63BjG9tjvo%$}2rmt=(o zV#x`Th=mUXqAr7suFZ1WAP}`eGy-c4s+tJT8L`DY-l3XtkAUkIjtjLTYlh88Pkh&* zyhpf%`xm;J2q}$Nyrb6KG}$S4I^B48R{kdOvi^9@Kf zs5KW+DlmoC{3r6FEjM_MiwktHoIu`_&Wdoa*eGaght;T)XP`khph2E-fk*W{j!=tWlg)LB&%jon0I0OdT^VX8zdOk40K>?5Xu4{8|iQ4!hwy<2sF~* zN7*=_>|||NO$g8g#Tq}F#z_-{YN`Jgnjo+x(_-&$ya7rDn;>pi3gJ7~Llozk!W`EK z_Ao*E2x`tG&hg1}q+=+SD60QEAo5H{<4LoM{{W58*YJPAc>fAn8HVM9qQ~T%z;FUJ z9=Ab?To%tK;z=^Z?+TeQBR#zcw-S_h3m0%lVH6^zJSxFA)Ncm&;RJN4a!Hg2N*O%Fl2H8Vq;jY?+|EB!>EbeQK2q-CiT&c+aDQwX); z*MU?!yYKrvt`U?Ct2Fbg22J$lZS_SiYN5?l#x2iy+0 zop3whcERm}+XJ@;ZZBL|{c)q~oU&8d<3oq&rB1&LI0QIBWy78UZhY*Z9tZp7-upt( z#sL@sI{azfj+kEeMoX`65Tg1AVZ=9=_Vl7&!!J;axBC-dy6q`&UG&#CCRgM!iKa1$ zMHEs{;vH%57Xx+xYSWdIPu9#-IxjHnea*1QZa7>W zT&QV1s(}jytVh*w)o@jCVOb=2Y-AiIqr6#wg@95j+dnqxN?;&pEZ8%88#E5+8`8*O z1IDhOH_^2~(k){jecO*&>Awwht0nX--U4fH#3c#{>=o{966Opq2a=5+oN~badIMBi z2ME=RlQBI}V$jVd+_-MTTopoacQaG%ytxhK!no8~n!mdw{9<)9f|M{}0|>vgryX#` z8jDQ?@1!ywJQl8O_Kd;@rJ}PmTdvY)&&!88>%w8N#WQ#@0aZY?m_nbV(d3GK(Hk_* z#@_m`wc-aWj*+~@yo z;ebqV)L&KI<-D4-R#}pCuXwkLzgsQLa9-7uNUn0tIPv%?k2@no)qQHxqC;tYLxss` zz@%}WNcUZBftaTc9YtzHhEZf5Oyz3CY_)iw3fll>W|!+;mAF77;&+}JHxtk%IvowF zHNVIC1sa3J&|@ek8lNT0@2S70DoMh%w7VDce_jhyPfFNhW4R!8&+J9WNBkLBRmT0c zhgAGSYJqoN(;sGSzFvIy)P?SkCOOdF45dn#M2(8^jCbGN#=`f>t)(c|-iOdkl%f`A ztLVc=tVD6P+BFAfAR3R7*6tNu9CT{WKzxB3py24%oD}nrT205z$Ug_aYW(tZ)WXtQ zpsOZR+gA@P*1*5!=E@2!hifj!8BR}m(4L{=n4e)c?NHj#2+wUSkq&4LN|mR=^PAMG zQ(w8OSi6TpDYe%X=1McbaBQa+hUqRLekYM1iNt8VE{^B~Rf%yggTjlsWR9!ocsX3j(ib01!E7IJj}f-V(shoe5>+v$$8w#fC~hM4 zu=1b`AdL2|g^^ibHPmI#uVCfJi<7=hDsLz?Oib6|xLs`YD{ZrN2<-0BbjD&td`Jh2 zdobQsmkOEh6|rGO9h=Wp24>?j2_~oRbtS7^$tv9ZzDwvTQHj@>0f_p)X_Xr^#Wc3Q z7D0)F8QmkL828V)GBCKSFt4{RRXiU3L4CW%JyVzBoYmuX)^uobtmNL&3&*8{3q97R zf>iEjA2VggZOJcQQ<6sxfxTP#QXC z{q@ezJHgKCuc)$T!yaBvZpCot``%L*oS8jd&j@FIoAWr7NKbu5Ol<`5UGWpJ(rlH; zPhQY7xo`N#!Z2q;IN$2ZSC>nCtFT#|NCkganos03p9uGPV66d1nUoV@d~10pa>n>_ z4h_WdEJr8*i7{Z^82`}Cl`!DVMh$Kb!=w!G0;|KmpK25N*orAx5UNzKGhs&UlPn+Zo(U2G2gAN zqB}+6T`K-AwXn$PmEQyvw}>AQ=fV=mjF*8czhm;Enlu-nPb-+j%nq>0Ny9x;-S^jgB@t+^;} zP`U0>yO3ZmC2-AE``Wd*HX{s7b~u=9ADC>Is$z0w#c)m-{toh1itnHLdMGcx&mK;F zjphv9Sd&I97D-09=d}4EhCV`XDEC`(Q|Gj?_s6LVLldB@4vUAwUBg@%qk7R+ynBRB z$zoTncP?SUiO zxm_L1Rqg783q^}vz4Tn&1_69is2P5;y0DWXcXgrJO`#HghpMa&&NxW7CL@fFtbEODK4lobD@1hYFT7;8!(JW(sKy=Bvg9DX8BJiC<8LsL}Yw z-xl*{xQ0nr><(j@9k5(5wYZf;petQidJ9n`_fn(nf;l^zw10}Hf`E#tFEBf)1JO`D zE*mBBjPWaEtrvzhg;EgsC}+u!*mRSa83C2E*)T4tPUhbgE<2BTMSDba{Vd)dQK3k7 z*&}vRdZ?0XtLX9|-+OWAn9ovz99okQJzSjWLvrm5_Y=!DTj;s zr^SjE2x2)Q(ydCusW26RY_!s22Wa*a)D&pNw8`x!d)`rUn<>p?#L@(m6EIyhhHw$D z!_#zGHv|dZpk`NR>KxOY6?#rvbpa*v`FibRU&4cHs$L;-aQ^n=hyosfR2;i+;$=)+ zB23)rPMe_S>w$(Q^yNFy@B-xeK*Liw1@@!iEa70H9|!3mYG>iufVB)C63#LtOu%(J zDu7IGz}CDYt;ya>C;&b$V+_v@ZYfA>QcjLV&2f8-3voQ* z875oPdkFR9dB)2_DwBV36*wrVIL*;Wot7ri@r-D11~q6b_DDLx7|DVf-G%$4k<|l^ z0dN-(?Pt z63W9QOAh0P;4=|^Mi@s4J+VQIkn9Dsz))5Q<8U8fw28wpH5%e@5(2;{ajXF4y&?3i zU3-LVxt5rko+yVtmI3nfGdJoB%-9lNdkL90S+{sQp=Pr#wx5|@Cn+%a;!)6EWD|^H zVxr;eM1R4l49*A~Lz_5aZ6GvS`8rk*k1D~c*9JQjpnzPe67>;NLQOzE?8SspO11T*=hoq60pS zj0>rmNPuBK8Ue{UcnZWn{TjM7c4NX(DSt`qA?q3=aE^kj$L_)oT97bXQ;+;1aQT3} z=lUt3X&X^O6o}&68!@D+0n$Mo6NEytXDy1>kAX%9kE5$N5Qku$KvlPW#s}u>> zc{JI(Hdz|Qg3_d+%$+4En42M8IYKSVk}fiLzSPd#h0^EDT_k zGq+TFgSlnWADHWqUS#fiX(w|xO22?hO*l{qdXq#7JwTfosgikX$SW`}9T-X_%)5iU zOPH6GucZ0R`xJR+Gw;*nozA?^lh?$&yU9C+dH0fcBD~I{QwPZP}=(k9$TfE6WQ#^1_C>G)8|7xI)G63&Nq z_(HbHArX9Nr!T}IheYzBUA~a}A!f1WjTAg>YxRqBe|0H7c~bR8ea#;10u4z5hx9ldArE<%wQa z5JZx4K^NWWz<8jfk`U?gQ)pz+8k6oRs3Ee!852%eBBkpw0on13@6zcoD9_{gW_W{V z2Goq5j)WYk?x#565nH7XA(P0FdbX0T#eQN8Oj#}zC1Goy9*LuwVOi2`(0#@i5F%la ziHRG02eY^^uRDhI>5H$RcwE-OSBG#4hbGX+gqraEn#Z6HE;m6w4BCoz$;U_@_MtL| zhDyZe&R#|d4LMT&4yvc3H%Gb|Bu%CP{72T%P~$u>oemxI=O|H7=Skp&J55??5~~dw zsnD&+Z=i#&#=w1_NJ)uU-;ow2kuKvIZGjAHe2^x-s9~D;+5>3{m9s6`PY8Y~6E6Rv z4dA!9;h39)qfu!=C5rg~cc$`$QPOk2r~Xp$_;}jKp1Z&}-I=}Mt7Pj_PfW83d4=ob zcM=%+P+VR`o;=S7VxxR_3bwfeAG$ZFD)rxhr$ao^Z|yw1*g!asdl~hbr*69v3H zr~pC%4e@cWc*JvGmULpXJf!~HUwHHPzf7dvjOFXF3Uw`L^Ng1k2TGG3WaT?E&oU!A zemc+)ZtZ8q1#Qy$mq0VL8`fe7f(b&tUBIMzxX`V~eH%KjhlCJvHr!L5tx-3nM35}b z6OIR!J0%<_LmWbBAr3jBa~ZyVI9Pvy5fmoZo1j%6A(0-B^a>g(6H=InPZPH32M~=c zqv&70Tn^P=fOH@SUm6-F&7yfManO|qEvQSzN<-kylapZgMY{tihhgpfzuJVPpn~y8 z*<@sp3CaCrRT3s7OK{7V>_@tp=%NIBuGc&LPgsw*s;96>GCf&BI%in-Vqu&NEq?f1 z)l(5Ji#XgYC1{_79MF7u|4HA~AChV~JJgu!uOpS4Tzv#AUb43*jYCC?Ui;R_7-zy%3U{9M`D5s42lpe3gG3I&Pf%3=Gu0K(YA}umC|c6X+ml0rK?R*KO~`(5M_ErCf9llYvx#Xm9T~ zgC;$W@LhDO@3(M6LkBAQuj&JML9E}W53u_nj+Fgp&%ycthYql_=Y159GiWop%?RrP zMBpKC#{Wb508~2G4S}@2v*khh0IUt)s}JBS<5wuE22crD4=4i^1C|070&s?W4rj>! zMSTFOO!QKx-vTrP&Qgf~%=v$tK0xvtR4>y9=sfhj`T%K&!dOt^9rNK|4|pEnKg0h{ zeE>>LYr21}55UR|O82kz0eoe5p$)wN6{^wz!U2(hC_n-LWAnd2AAl+oy;=BO2q*?@ zq!9nu{Fn6s7{6B0EpFn}8gS|&?bmf4wR?9ICN8%FY?hewOdb8`>Bm4n#E54SBc4f& zcxIWO1-E>Q|LUl0yLup-g&L=obbU@b|GF7x?)-7b=;-4(=Ul}&AYE|80X$@|cG&rd zJ_1HU-@U~5#=0*37IB_w-G6~qGFL?>1*6%W6b!D5TsmcQbj!RFZmzT`z)geO&r8YY2v+t0}1+)D=aPxFAUxV$M%;7ZVovt zgia8}LVzW5(3`_52(9L^#>{nPLb%!nVHiZO*zJmOt$2aDGbPv~!Tw*gkucR!;H-cK z;9@f8h@CqV49sOgcf%wg#Pdz|)5wbp7^1yZzFNXQM0CVmhRyq?`?mDqrM`JxwmU7} zC*ZnMx(^E=CZ#a@q!f3MyyGl{PwWeaz7H!wHM9LBN`^IJC>{=!V9;HD|AqHfw5^Sa@zgap3fu#flS9`kP1|*P|64gQ}k}d%i zc9cLY*Nidhz^aJ#O1AnU+E2LblH0x;3#2KaBsvYt-#dpybz9CWF?9GOWmkx+qDM$% zCYC|S0V~T>ijUsP4vWajGB#;+wR|omfGiZI|3T(_(^@5F1hxE0{COAEc%)2&WKV+H)Bbqte9O#tN1vIxY#5G%Oz$ph||}fDXHgJJ1GfhJ$sG*)AKO;Vj1h(|52loqdX( zWSKw+yPTY%z~?6VLWIc6$x~qD0=x7?q$|OhhZF-3Hi&tSNNjB3Co>Urw;CD-!{n_X z?lFbn>toW!hp+(e-w9TGeS5*YMwrgv9QZbG=}zQ_h7~Q20?JjefKf&(JN>gH15{&Q z2oqG}B^}br+fivEyx8T4jqQ*z^GH9209#PojH3d@0B>pDl z#4hpGf3Zu9lJ>|2Y#UU-2Dt$02aaR*qSwI|LNHm?QZ2TIBmwYfrCEX8-(@VL>>1xa za0sC`XjEyq$V7(Ial>AktP5F?nt~=F4ila840HDAgzJ!87|BwptP2IzOse7! z)EtbN>BDXzTzlYM?Lp0)%k?UUT6_3iXS=~OzNouiscdBxBON?#UEcg34tp1WnOGSBJRQG%Jl3*yh`Yg(2Cy=(7a)!ZtL#DutP zk5DvmHz5J;^Jn&YJ-S+ZL{!LSe2}cWRoRGL3x*h|4RM)~G{m9o&hH&Clu#7&;K)=? zV;B&H4N5>V!#D|~8#pEiT@MWaFnk@o$pk2}6d!`^1djriTe01MVBN=6i1VqU@r8=+ zmdVZH(VIEEk@@EGVPbvW<09u$MK#<(%(t5Jv@>Sq7-orYqIi%66F$?n5?o@@14x86Oxm^+~8EGC=E%XRb)v2#gt7#nq=EF=* zWJ$MRrm<@hqigY0M}7UvXaaIy=3l4@`~DBdRT*Lm;$8h`gB`$0>3Yf_lq&B5C31;wATC%PY?4g`$5v z>}G$R_=V%vs&kIN)k``AjX}^^1cf2!wCBmiOXN1sfWkYPKI0qN=_N<*l=o%>UfO@vbUP*HJIZy>^=g8z5xnRZK!?$sYPXYAokB{}Gqxh(4Scm}p>B&7E6i?4)nfX)ju3Rq3nm_j}D3-Ob3;Yf%yl=-@5UK<405s zj1R{D1GpvmAb|SmALqJ3^!zpG1g3BE| zF8Wso#t+83@wI{R!TBHA&nbQm2rhpxUJ~md-#JDp;}9BXat-A^Z?W?Xe;1$fE6$YuoO@Z zpueYpgJ%Ks7pclFEi5eK{;8N*=*V1MAe0uSuP7~?vutHyE>x6MIV;K?!m`r2LSgv^ zj(b6wUFb+%y=u+s(!x|ndFiZWs|rdB%enU`++JS3x*SCma@-SCnlGIk!iOLv+fg9r z;JA+|1=TcvLs=nrw|(9mdxpt4t)R3N{paSTqH@k(`n=S%j0_efP$@ZuWrk!FE?Zmpt?={Iii~Az1uq-Js4PX^@8<@D6ntn$^% zQwj>o3)idxJy1Rw$8y(FAcR)f*RNp7C`pZ62H}P4>QC(-5u~@M7OW~}STC@zUtU;7 z{X;Z54Z2sPmlqb=SFK%9zIxTl!d1Xb`HEE!tV!XWmxC*i9|g-X)98uNz`Y$Zn`i-P9xN=F zy=r-RA)$oh{zk0`8uK@T)1?&#(!IjkFO-)f*Zku0!es@s3pnoikXePx%F+tgILcRV z;GSbosfYwwaP$1Lh1I{4#W62;kCIKGtitl5)#X6Za*!AhfI%xF49s7#{6QZ^ej8LP z5f7*W)!xJKv|){-aOM0JD+^QBu$coN=T^>hlrC7cZpEqsE)F*{i5k-i?-w4B#~u{( z2lNlqVOi;lhrfl@D^y!BMPekMVeOWYdmn2}77YzIkNhb_>DN(f?y+Z*-^o(=I0Bwi z6zQeHnqq3-456q9Qn>Sdsq`^%S=Z$NAB@#D}p zy1Q9x<`v41Q&jT{%U7;g1$6t6!*MUN7Rck|57enJ#@{Mxt6XR)fhD%7n|EA-bY2X02YqhL&64?+cpc04u_2VE;HWoH7>t z5DBsmqpS8{pn;U_!sgMIdO1cke}iSe*F6p1OF}t zh+ba9o{!uzeCC}5W@&Iq(BtZOwUcm!?TxpRJU{S9Y3Prpb~5g8zLO?fG$LIa!ao6(OD^?;a7x-?BLFyV zVcJ(zrv^a%A(zI9T&kMl2p9f1Dwpz-s|8TGR5yjuIMNsrP&nbA!lB#1o>P3!slMkd zxRhs}FFf1l;`PMJ&x1>KV@b`*SqWDUCI6Z_gVkFfB!RZvh4ol1%*Wq6t5_Guyp0B)nyNruW<-# z*R9_`>x z&KSR){#5Iq+pch2%qF>Iv6Ez3W~wjc|1RE5UnmT2%zyQn3L8)$p6Nb=zYfEVu!A$1 zQl15`s*I-zX1_EfL>O#F8(=SKj1Xr z5?~ZMMBnb116T>5{FEmVK4pnh-}Sj{UShg;39#9m+-(r-X(mf@+8s^cL9#1 zSoy1vt278B)VgViSr4GUN<1lm#X?}6QW7T1fI}LI2ViE#fiy3o75_dSry+F;N-Blh zU&Q%Buf=ZxYNkF@d++h3r2bJW{Nqng@<UtU4uvOyT*?4rU4X~G0RYg zzgILmGF3y?f%yQ518c!5)LQCmiA<5$v#MUD1poREt6SR7&x*;2$%&;e+b*1&^*5|Fiw!UtC+uCexv-Vn(ZFbw;wz;-k+ple}+P<=V zZM$siwYjGMdU{CG*`#wxy-6TSj19+y8y++~ZuqU?9m8J?DKQITejRfpMsJKZE-{uE zKQjK=c*)pjJZbt(?19)1V!uvUX!#=XI^M#Mw%LDt9cyo?< zk-5-ZYW|tI!#vFrZ^^VQuoPR?Sk_x=EN;tFmYtS^mL|*RmUiIp8_TdnQ=&OBHE~vA zQDPJy!)Nog{0sam{7L={|2h8^Z?Yy@ldKO|w_E>UJ!<{PddV7T%eR%-UIFGhZ9}JP zryreuTaqcsoHRY@g``)K4pHB-AmdVS+}$xb7|~@hD`HN^oQdg)8Dbo7yv1lTCK{`Z zFB*>;m8RQFMJBiDNz-oAtENAi&Y0Rv=Gctbm9cALe;NB#>_1|s#2L}oHF5jnzKrXR zyDL5`eq;RBcz66S;(r&vFaGWLqw)WYzZM^sFgoGZggX-A6Ko0hCKM;EN?4yzoggMW znealws|g1ZjwCcEoJlyB@Kr*0LYR4kdAyl7+d)@Pns=FBH2>cGp}Ezpw3sZ%EFG51 zmT8IciB*ZUiO(nQNqi;o^~5(5>k^w1-%I?@#IuQ?C$=a4Be5@0$*cL1{AfOcpU6+< zqj?i==d<_){8GMptt7*3;ID)^Dt#wh^{*Hj^#U zHp^CM+iLs7_NDFO^xq}DMYvnaam{dUGuRC)4b_GwgFR+$Ohrsp%%d@fV@}3=9CI~B z0X&+F7UN9gy~a((2$R{AX}aGen5s<&O>dhTP4AgnP3KHE#x9KA7keyL8#g9yQrv|2 z{CG!vN5VG=3Fb8O97ZFn%`cf>H@|KE$lPYWWRA3CTUJ^=vs|^zNZg&+oM_``^NaXZ zyo>)S{|o+A{uuuye}V7fzu`lyqpW6Yk#(K*IctIKQQMzww@=?Ry>WUBsD5$MFO!;+ z&Ln|7fhSNu?ldGDmKwGgerAvi7Yrj~>@nFfFT}hOv%uJ3{JUvn?D*J}*g3J;vCA;# zL*iZrE$@wgH-2=&W^<-xLSjbZ{fWC0k0dVSxATAGE!IM-8+7=-^>N$Nw(-*^O@EfK zRtY|Vy0#i>4c81IF{@*Qn1^GkV;+lnHs(~!Uoe-h#pIZ5psWXCYZLxyu1tJ2@uS2) zS#L_ZCF%C0X-USU_@qS8?_EjTl75=BJL$!w-zB|{UVszeo&$ItXjyB>G2CZ(-mu5; zvf&SgLzt;kW8z}?nBy^jj_HiK-I&5gV~KH%af7kO_^9z$#v{g4#xurt;|1e2<3!T~ zrb^QulMuHtZY$_`bNo~B&&B^H{^j^rLC2rPD-$LqOi7rUU`U8fFeg|Ok`vMr9!+>W z;i-hD6P^dnjxtX*o6Kgj)tqczW)?AKN6pRV6Xq84Y0&OjjNk1R19+p^Vzs#NrNz~FnqLioN>7EI%B-iYMf!5Wt?N2Z@kZVzj1}J%(xDeT5WV2pD;dyx&NB+pz&>Eld;A4 zDZ@~g(Q6Dd=|RCiH4TlO96L3(EOvCuX|@p1OJ%(#VdHF0O-b^u=;@lPhak+9Bu zhh+z-O(`J=XvY?4h2+AvMGPtTpcV)`S~UrXX%mDkS; zFsD8ErK>e=L4){O{ur#=jL`2mbQ+`0Em4 z0%I~OAtNCxVSd813A+>aCcF&pGS)l^qmpW#WzH~XnIAI$%KTnnOwO4l@Ze5!q9xgq zW|?Klu>1^^_j%%Y{x)7?y#eo~zgn+a$J-{`rh*$hYx{$3-*nIPe@-8h#3$7zy^+M# z$#du!+E^4<9=9p(>A2_P-ioV>Ym4LJHSts8XT=xC*Py*eXuZy=Ij~ZJB~r72xeqW8vC3t^-4fqkMzLpff}m z^oFO6yNxd!_Zi;;uRdWsZ9Ho{XY4R`8GDT?lg1QoiZn%;rkY|+R#TcO!!+O2lGw}} ztjX3a>r!i(^>OrXw{@@eWl-E9>s!`3P+hb2gtY}+u+@4N@8WY-oh{rJVT-isZBe!< zz=FXRYct!dwq#oxcw>ew%QoM((6-37)K*|Cwv~b|9k%thjkZc#m956M-L}K_xa}!$ zg6D0!ZF_Am<9)u*b_n!ZXKS&w+RobAZ0A4=9e7i9*?RDnS5L3Q`--~xm{K9Nm38_nw0!+G_4J3M&9`5NN(TI_a+@uWV|KVee?2d z{OLV@82Qcb_e^Ea|G6g}?#ORm+!MpxH}*Wk+~4h)!rV9a+|As*zUP;jJ8#AEVk*nu z{46_UehL+rdR`5m{MW{XOd3v_B}Vi*7J@?jEj7W_!IMRpfRupz2qI}DK`4Oz?Z6X~ zJh>?pcuU3(1rL;#ewZse$;m26I-xg^pyI3)-GUMxA-2kCt2KcxXj4fMSaEp;6FXOJ*{AwV;KTpUWdY{@1*PyKQLi3 z$JI?MUsJvuQLGQtmyPged@Eh@wDLlxnc7RMJ@gHj#K!tt>1H7G$G`srFfh!f;)*RQ z?qR?-z*B(TfJ1=y0d0T_09B%j8x4pAOaa6KW&pAPO986@Re&b}zXrSoI1Xq9NPx=# zHLv0#08s!dU_M|ezya6>cmc2v&eAk~sl7BK)8HoETQkgtIGN408Rv5A2Lx&P>MPLUIwz zcH)#P8?t0Or1kViCm3{!LXvFyn*+Hwol~rYOA>hcONU=Ru^1Rb5^It>(Zo&zP>H0I zbtiyiME5T%&@UsU^=0y{1O&0aMWeaog@E~hEWj*)0T2n$04jay;7d;S`8ezu22%SMz^S}-}pzlHXb=(ifQ=0$QKRreu6=xT8f+gT&L66oH zF_}N%TaQsG$3GeqZh(IsJ3&~*&MzK7+|4*En1Wvc=RSI0Ig8-Z_)JF5QpD2;lYbSY z@GDRY{Y_@RJAG;7&`fRtPK@L~#s5RzyT?aWU47#xnMoMpz(fp+1#!3xdz=Q+};UdWpVjwY@0klK|ld+74QQK;Z67+FZLR8B9zTdsi$xH%X`aaL+_x|x7*jf9s_HFI8*Is+=ea-+p@-;u>d*cVV4s5oo@ z7C?@9G9d5R;a;etAD|uZD!^306u@*qd@W1K1mv>j02F5)fIR$n0e%f|9^gR0C4gj` z3P9Z50C9AeY$zfKveNfDXV^ zz#PDIz+AvgK+Z{Y&M^%zA8qXGK@W&+v(^8k|p@%!VBD*+b*_5-W{yb90@$X^0(0PGLA3Giyb&42>{ zp8~uV@CCrH0qzAH2zVH95a8Q@*8!da91PeFcs*bzpdHXW7<>Sj3^){U5a2MtRKVeY z;{itif{7d>0Sf?c0GtPSBVZZeO@K9kqX5?djt1Na$Zuk71{@3c6d+Zy7XYD7DtiGl z0S^Om>3AEEOVKGnEGJ1~dbn0_+9Y4%i#8 z6EF$TY{xhQCIcn|4g$OiFcmNba6I7EfS7!auK^YSUI(}ka5P{A;AFtHfVqH;fN>BY zj{=$jw*vM8d=9WT;2yvvz(asmz+-@413U>B2f@+~Xa?*A>;-5Zf_#9BsxP#>|141Y`dI1&y_6D2>m;_h`Xa%eRuF&M@Fnh8>va3k<%*Q+@ zEWkV;2I#^(2Q;t4JO|{tH=jFkvd(82)-gW!;%-42R>FLtRWQCz#Fy#mWn%T>8dxRb zxr*`O4FWzMtYZ?&@+)-w3ap5HR_J&u#0>_1gI?Bq7uHrjtMqbL>ERkZ%$pv3xCToo z%d61)QK#G`;_DP_;PBKzlj7s$Px1&T+rxVxd{$uX<>S-y-Kn>eC;fb=o$;yC%c;`C z)Cu^k*85q3I|+Q2f^vMy^?t6@%U!Ck?|13>jQa%@dj6F-z@+N>gsnwRH4cLq)U$KvD8+j`YKH}7hdgq9G$zyB-amZ(+5Bo@7O9Q1?4*8Ao>@RsP z4K2eIgr9kfL|*b9>t$Z@AKQ=VikevFT%G3Z`&4l+j=ab+Ngwhf>Cf`XlWC}xIs*BU ze$s)w$uika@@E<_s9%sr+0H`vb1+iG=e-)vT=J_iuH@M?V6lDV+ce;k56HV5Kh{nD z<(QF1^V&J73_loI3}dd76GnBjOZ^HqGtPCh|JRfn!d7H|ikI8-DVA z)Gzsk?I8af@tgyOzb*!!bAfFoKIence>o?N9LC(>2(VYi9AQpU-k2*hl-ckba+76B z-lq&DeOcFZj41t*M)Tm8{61CCLh`c2mpm)uSBbm^&yprCG0twl*fEs6C+CqI-&`@P zt5A;|m#Lz!lFrdIIoF+He#`dfi?NsO&k=RW_UDMPknNW;K(;?u@P}+q&vFX{)nvJD zQHLzIKrf4Qk@;o0({&!^m`Pg5_T>palI0W%zB9^^^Md8f6gaY+T*3dceX=fDPN8V4 z?9U8AcZu&3@e;ofH5=nvBxok_q0)uHalbbb%!2L9GA|cEGJjU zFWAI%u@w0W>vYe@UJLz|enIhYeuhWz9Gj*9pze}{=m_PZVXOxfK zZ%TrkXdmy4k^*uM-Sa*m@96QSpbv04@M7)A6F_n)Ir`#H15dG0RGTRaF~-;0uOQ!+b-UMllFo!;2dM8KLV*^ zP>&C|e7^h!Chb4b+AnvP@yl)pFRLhDc2}KmCF@%z`m_vkv<__$QHqBzoGEbgRD5ED%5u_1sbMhhXOnmr5`1P`4$BF4Z%Zbg8FK4VY@>6coY8IQH z>HLO*k;c*BQ?+!}a^KSBqTZgo!1TKE+SM!Y$pnKG#(h}Hak-aJrA~Y(A;*iaU)<^Q zmJ8*Vx|DH0H3w~zqjD$c$aYHo7~gcjEB|aE*O%zH8SV7qV*uxS+Rsvq?Om8d)qwI=t#Oz2lJa6`_2uPt zpL6UNzC=>(tHoy}=odYY-oIuXt&{jtL|2=u^fqy>-P@yWI&OK{oM@rl@p)sJHd5Xr zH*R@LTCXbid25$e#pI+ONR5YdCtWU|49~R|AJ^c;XW9Bqb$Xfyc_Hk9d%hXf?&h z^@5eFPm-lK!o$$U*gh{7??dF^FW1NEkdcfbo}`P>w%8CSe0$P2I^G;BIeyYM9POP9 z%a)^9w6!~r7;TamOFm+x%xhHF*F;- zai;QFjCGaYg5i^c8hHjoT)rP8-;ODUkNc54fx{Dk%g0Ys=EeLY@*L#3G%oj&xG}(V z>une#s91wulh0V2gi@oH?@(nUh3`_yzY5yRH&NvK561X)=Ri9s#J4!Qk2dMU8Vo*+ za^dCQX8}6sS|Q%wDh7q-fL5docRt?-noLOxs&HxM^h1|R?0Vz_>k7~fknQj zpSy_}IvtF#6C)*Y^N}_U7{tv7?i}QkW5Uwe_Bo=2S%Ac$jz0^fQ{R>PFWc(`^;rh{ zohR^fSiHz9N4mEzqG~#EWL>Xp__)uHr%$|!niY}pyOn0JPvrs>K;DV3k z(Kay){5cclkayT0+E2KG59JU@dbjKd@nAFL+jEkL1&|81@)22+&RF9TjO64aZ7G#&cXaQsllUkH~c^%JH$Y zm?LD2w;Tc5u{iJK`c^1LIZAKV$Uc$++`)6#X-L;-I2K>db;%2y7m{~4-m(lzZE}em z{hsrbd_GIm!SitTpETx7W7wda^h+9X9bgYBM>s!Oa`#e=^vku^NXtO$q(qZ4fql+J zS+qxRCU6|In-vH3vXg+cSRVo$1Nbc9Xuyqt>4571`vBGeW&th%xJTsvm;%eEuID}L-aAg1%OR}4*>22ffSG_eT2Rsf`vTel&jVTkd9A8rtm2?W`V=6J5|qP$_W|w%tOwizxEAmczz)>Y z2)GDgFW~KfO8_bLivVu}%m<_`aU$SUz;r;ae|Erg$ZrMYoar2+IQ)PbAZ^XZ0M8)( z5a1+)_W(`<+yY4c+z3c}rx%d+>xFza9_hMTl@5{xpq;eh+sD zt`+Vm+$lJzl~Eg$>k;$Q&QplF!iOsaXOAJ}WjGfzmAaE$^NS%LDGzD2p9_gcNZHPZ z^O*B)7UC(d_(azOYIH`)-Q&C0V63B;TS?hQ>QY>LD5t2+$aWcP3fmxc6Us=+V{%>h zwlUnZPR3boQ5>B2oCD$au<1<*h`MamzNA%$ZbkGbiWaBjHS+bFZe_5aaiByms2Nl{7=fM z`(J90Ea$ȶ)!nxRJ;JZkV!cb$OaD$hPH&ku6#=jveaK&(DC!ks!|MA?n@+w3Do z)Pbhl$MCKYN5r@-#1PZCR>baR@)4qZymTK!-8m2cIJXvKzRbtG;u>23|K;$d-bX7o zPsZk7CJ#q_8TN5(34KvW%O=|$8)x8@>G4ck1}v%fb52BQ#aMp*L4N;?p_uT6`ZHq_ z;*tJf*`|1ta@U^^Sbl`-D}VT?*wWsZpu7+9KKbcHnd$9bN=|&yj>tbP%8={7v-{>0 z+5ny}d*R9?Y)_sXJv`wGg}II%-GOwLaFwX%=+PBOha~na1oU|5XQ`3M$I8FOa}H(l z8KwV<%z3niPp9%z@qD6e6wjy18u5Il%oWcCB~Lv6QHF}=qH?8pump)GLDYlwM*Lng zu31j`>!J6LY&~`E^pultOu_T^@89~})5ngVZ=CYyH>XVb+v+_uqN>$t^$l;gl(@={Jwd7(d~b zTQjrdH?i2rv>O!V8aR9dM!6bpDO~KHhVzFH_s1(?SF09|S_o~d@+%XD4YU?dLa3iIMgYU^mwk#3A&%UfJOInjppjU0r=E0;&uNN_~UdxWrYcjI9Y)5 zi+l2$D~6wXmf@$)NB?^KrGAChD}KNQaD1qfP>F|Z)Mtn zSpuaPujt|*twb}Fv5;|gtYU^;(hdu0_qEVCso==ShqikETcR_ zxeaaPS(XnmYzZxF(kg2QO`}0gf@)S?T z$a4e*^f3x?LLPlyi?v41mLe#@)+hwW;f1^|y1BpS-ly`HC+)~bwZz#14 z8$NA-)Y_Jdk(I4jB(!<_768hi-alDL3kfMhC@<3VxKTPT<=8s0n;;~X+*=IM{Wo<% z>H#u+1aQ)HKV{ZL-A|b^5&!rQ5}Wd5l-PZ+9Wp;<*d*OQR)=X~XM($vNaH?{m?QPH zkz%(Z_bjyf8~vu-wu8GVtNFbct_MBobSXYZha-6@_7|1(`MJ2h7%kuzZG2cmINL8* z1IPA@F+8F)u1=TFFZq+LSq=)3*JuZ3kI12vCtUI5xz`$$MNIDd8m8jzAYcVxJm5S) zt{0hroD~Cf*q$T9$8@+;hZ}V`PlrW-S0G;jAapJz50Ep;0oWICA|Q3HOhE2G(*e0I zEy247T=P;9CcYi;RzMfdfcgUtLYVxKqC+bn^H~6|1;p|p@^w1o{`o8*@!NH%0S-p^ z6d=n#3CQ~1*2BjDha!Af4>tj_{=Iz#W1bAV7gl=Mt#r+5}&uJc><^v!@%5q=bq zJiAGcZv@OixB-xB_&PwY_g+1Hi4F?@N%x6>Y~Ogm34ntD0Te4B+r=jn4&Uw&bm#=+ z{1^m!aXmkaFlSr`Am_{}z{!9Ekk0u&9Q#EF;8Dc0UHG1jX!qs5Bh~$@Om?h6<(O;H zQ&wc}dcN%alC!^$bNmHv&&fE)u0KitpW$DPZ`N1WPAr;i_f}WitEyLljqT8ej592w zf-ft7qJEYn&qm~#5&JzC{LVXJ{IV3+JmXB=E_PnrcX5xt0+N)omQrH|@TB%vgqUi? z^X$A9cs;)@#Wk8z*EkO>f=|wM>Zekku>HA^0sNwve0zlUNS4nVAzV$kPm10HutVpG zmO`5ZXR}Y>#kP|XMMztVynK3&O&&_&`oL!z>Z1fQ?h!D~EmkDp7<#)=D*Llk z)KrbSV{3@s#E9a~LJN)Wz;(xt(r*SZs8R8WrDKs83sQ%oWEuWZL!#7VFN_fr*~FhO zm=7rI!hp2zGE95!AiyR-42XmF zTy2`-pgp%0koMZcfJzSwwfesWspIm@^vGvsH<&FUtE)%nmvPAN(asP*{ zGUOv`>pAz?LZfcB*T8k7zs3z2Lnd&}QzMv(6z-i3ec^JrvGSu(%&(o*i5^N@Qr z`o`Hz9o*1OCtlJ*?uFSu&N|LV*1ZyYBkGA`yZURiJWA2JuHMA9g?kB}yz`j|A88-! zkLF@JXMY_=I!YNgX8W=(DOrGaOKPx;?rG6l3($7sZa;UV#(fw{HJ{!u7wV}+Z^}@P z9VJokkL9Lp!C!2XF~VGZxcM_a2LXw4(5?BiAf>Kapcj`OQ_0JE1WMbKJ+G6yE5dtmmyEenoSvG7j^T zGjuGzD@hE=+2j|N%!lidQA5vlb{tBl&ctUTb}h24cJLaxmD)eKkd(SvU=9Vf$$e}Q zTR`2Isnq@1Zh4buC`yvFoTyV))*%0WnVhGN!YB6b3&X?H;vK!$#5*FR;~fke&#Q>1 z{`2^lc!#_L7*%*ytXhrxaAkHqzNWekzomqq6yphr3k58zTX`zZCh_+6BBE#OGGm#{K}9va)VjHGaKH{Mwmw)iQi3qU+~`qQ8=cpF?An z__3;P>C^OIz5?v}JuLX~Lq+npvEbK#RS9xS?^n%Ie5L}ww^eJeSz1?DUWT6AbNR6f zTw^S^dwi?JFQ|=4VtuI?Bi>i45}Fypt9(^eP|`Y|OK{}>EWr^MZ!#w&_OkR&y29G0 zuPyn?epjXRzxtX1*M4o_pz8)-Zyz#r*zge}Z%DoIrctBQ#*B@c6K~6&IBD_}$LD`( zf5F1iMT?hw{^!}hv9A8U`*mrLF~L8s4SaZ_JPrF*>g9(2W^lT3KVvTBi9Ca%m0muH z4Gj-8tZ%^LW_qCEfej5Q2?h{R8&|jz1G&$tf{H7SZE%!D17Zt>2EhVUc1gDcw)m4lY{Ss$MS?h`Evf4 zo*i}$P`;>OmfLL?F$^m188fHH1eLs5g*h{3Mq}pOlAbZXPg2e*`_h`4D*O;0Io4jW zw9dYAX<4~_DdN4jid*C5U{~Six9r}E@|aPtlE21<&y|1|Yq1Hax@Sz1tEzlyUAcW( z^(ybuWypyfF{R&7XRq_s)Ku3ZrF`j1JAUR2pE;>5M;YQ5&)9-7qVZ@y+n3QNDb0>6 zx<)g6D7(--qW~44iJsc(m8b$AQXx~WytC>adzp`ybM5%)uNAA=3}CG=e%DNNFiCuP z1;2yF4woaR9lwIcPp;g93$L+l9b=#2wWH{j)pcHb)rz~yQ98SWtD?AVYp?d;t1VSk ztPGT5o6?q5udKn{=Q4Zh*kx6>2-4tdUf@^Tn^rxB1vyAejLzVjUSjB^VR9W zdf2vf){%>n*uH25WqSI!Os4x*Exoe}l~%`K*emdxc(S!9XWXq{(8o0^Vls+xi{`uK zbMw`C%f2Ar1m>&pf!pxQhy1n5=m2pfMFngZ=EUdFesT4xa{LVASTGKN-ODa^wd>|A z=8N{bx~6;;=K+5N(_U82tLaf(okrzrYcOxXF{Dg%W(qprEa>AyjXKUsUh?*epBN+; z+|?8R^XZ~z;`eLNgg$b}W2U8;^tI)8`|x{(lHp%C2kp}Z4KK_0<bh!=*Iv9r^e%VQs4hC_KRpPsq$FV;j2SaVnP_~yX%&`6kVLH9 zP}~jDi61&0l9Ys>_2WmLZnGor=l;fG&Z;tZ&5Bj}&pX22LA{7teHCt4QhO>BD=O>9 zevC&@xC3HJR1)Kp%~*AK$vR;|x;%wRwP(8KVHv@aQ{uu&m)*`KMX@ZYz>>2Bo35I* zcr09KdMTD}>kje$Uw`b-J-h!)g-#>?b&tP%C?6y9MgJOc`quMbcYL1V8UJ`9`BnbK zmasvI{^QBwSNUh;xBtIB{OJFs<680mHwVP6@A?<_6(3^+2{*(=|Ha3BwSPwbOMCy{ z#(dcfU`;9bXVl10)Srx>S^00Cp7>v_w^6KQCF+;HI7nC6``2&qHwGT~=EmTI>ZZ^` z4?ps)Z-3{}$G-c$&5wWoi7ik5;D=kc{b>7BPyhItXMgh39nbyj=g+_Ji(md~=dNGx z-t(K^zPR_LeJ?ldKXCBSE6pv3kG%TY(bwO2^VspXe)sn8-}yu9AOCdX)#)AeE89svmc*3-}%X>pI!LR#fb7h-6(zjM(8VTl>Tq`|NnOV z|6}@p*+%vA)5S*h|91cL^KVnJshp1lN<)4M!4x`=pDRLt+$G6;92Q%O8zA911?a+0ZFQ=w<1c4m#z|C)Wh->l*=*|l*Mx3Rw3U#EQ9%(mw6QTQm?PJ3<)f+c7^a2 zRrqS_^th7pvQ_1Jpa^O(qYJB7iBz{whfBT8t012Od1g9p z{J3+uGGvX(@$1#n+3~yQHT=Z=Fq4wJg_|j)}EzczFxmDQ0+VfYG;|H#nRor98 zPlqq7T~VVaEB2|}RZFCt+S;Y}AX98y6djv(d#YmRi;O)ASt7QMFi}AXUIrzfzg2F> z8@07%Hz-T+YvXvew#+UM^RREJxkqeXjEyQ@%B|HKyF|xXeJ9)WMVPR0e3kOb?tuo4 zCh6O%GX841+#YkoOY$g744mkG6FX;_x}?0qX!e&jDF*io8{U&1F>Q*W1ln~8-J*N@ zSi~hYRoK9DPlBx=d0;`QeHnh=9J^83znU$)aR zc$Xz#Oggv8#+b*F4g8~T)yr1YMM<=BX$|OL@YWYK!oay~1K9U2{=9qxmej#Cu(Vc^ zoLk3eK{{WSdzR816x)L+sk+J+Lw33Rvhm$YT_TOhvixpyR-deFH(xTZ_DG!7G+$uM zR^KT`pOH&+PN07gOq}cBM#4>;I7yj2d6F^${;_araHHUEf?Kx^I3wj5agc(Hw58{ zC}=VY)%jWQGVvBKh7qM|#qw2?8t3nwRUS+9_J6evjR=7QI&%teldlYUXTmzgJt^)4WSx8@k zvsSoua0}raa7&Oj5AHD1ivV441#tOrd2kN6@o?#Iqv2BFhQrz62Eh%0OMy#6 z%y0_ag)*Gg!kvZdfNO`-;7-Gxf;$P<3imeLF}R~}hv5#vHNowL+XMF;+*Y{FaGT(~ za20SxaO2@p;La{XIdD7S9)a`1x!}^_EO702qCU7*xMOfla9iLWh1&?X7H%QjM7R{V z_N8bC+-A6SaP#2C!&%@?f^JQ4q$v&_U?Rb{2I@*+maSfcB~+Z9Abu{s=^z)&8Bqgq z4#o^=1sM1o96PMW(MOH1M#RamEJi6riCEL7R9i|qatpKtfioi%gT z+@j%1`KWZfzJ*uBhRvRtGm~(}%xNM#V`iR!ZV?Z!GW6%Ef7m?s!Kts8e=zJ@dAHs@ zHoLI>&Ci;4?L84(|MZDnZJE3B&n!4loOSK7gkOJn<%jd1n04**Pi>g;?E&jo{^|FN z2JM&{Z`!{3r@dPDRo6J<7Wn&Z`sL}F`vNx)|Le}k?+?~n=T-;5@sYQ5U+pixdv*53 zU%cBeps-M%RA3%=BTwHtppf#idW(dxz(1&wlHB zoyTg_I}W7pD@xoxyQ*ctoDbf)R{Qqxr>di|aHKmBv<@m2r6e^&j+zpcKe_NU7`5`Vn;@Q+@pUzYUqKA-F}Z=Q1H z!0CgonsCM40~_nj!#-YfBK14NTO8lm@#?s}`;PQa+V_Kr1$~mY99n)|?ysj#er?~| zuN2&LU-^YCH{L(L{nK}D+fn`6;%nwjzkSoSc~#^+@*R1O{6=0QpOMGNU*s+F6?uyM zL|!5vk%!1XUARmwiIQ|@ajyuPkA{uJXq-nzpX#Vr)}Ia6F!-4#Ph7tc;tz?46z*JVL8TQD8j z{MX0$2gmsBG5+Kj|CKTRelh;5V*DvFe%@C#p8vMq%qsZ} z@fWU?_vp?d%ydnUZv|xjLx8Mrryky_!%cepIzZ;*JJ`uJ;uG{rC+f&Y9E5>*pV|V* zJD$f7e=FcAz%0O4K=KSMh)U!lJW|!B;y#6UZzfJzyYhnjfYJmFD5$_%Cx_Dp{P>G6nX8HCUO)g;2F^!S}RWL~DHyx%>& z3F*vB$ERohLwY*%^XZv?kDku5`P8F+w!2l2->XB$@wu}{dI!=OFKABB|G`r;$LxS9 z%8`z|bKH6EZ%_CC=Xb%4(>G+Dd#vq0RdZN(?Xt3}sxdWXclIbh=k9oAZf(4>)?J2*9`Y}IPs{FxoW#-eZ3`e(Pw^PbogremAG2-3#s8G+is`j!3K-V>?l28mTyIN z;VW@$;8^vtJYY5$o@wex1;{as55_Dcroyo-|u87a7jR(=U zO}y9a2sF)~|1w!`pT%Q#+;@$uB7c+FQK4Oh_uY%Nx~4eAe<&qv@%TqDT~VEuK$Ev@ zk_Luzdk0NA)(h_d^qsU7Yof3Ji>=5NzVgMR1W7OMBrvI^dr)D>xwm2~!j*QHHW-Dv zQTV8r;}pcZ;I+eBVW~8;&J_6lhsG}`u8h-u^NgaXg%=iQyuL`YAls1x)|mc>oK|$k zQo+V(eesrQrJ~s$#iSIEprV1oc52~^z)6_*9katfiGR!PvsRW>gqiy}q?8`KG#@*r z{R;VdCho!hMsbNYS1M>kWJ3CEv%?kXk1v6PsJ>pFAqnhI&wN1DcB8WS^J7!o#U*O1 z`cXzxMkH{~J0#0#^$xJ@zRDAL%bV;8UYV1Vn>#a7Xq_H7=X)Q{GGoT9J@+cT8a)0X zppPYR#2X*XTD)jM>48}OK%w;(b&Uf>CeMtF->qG9OPqr2XNIhCEMC-|Pf&`Q{cFw1-dVQY z4zmYLGR-q-0NxK#*I2{XsMC@o>FTrrCZ`1>mZFv4Zc^0MX0+vR>KeCTw+DS?RZ zTZpKnqsP8p$3&_c|qjMuea@5PKdSaF;*-Ekojsdxjv z@YyJ3XS*{_WHfoQuG@sn!O{yp^SGw)>a0?0amniC;F!$PWObrN^~RaK*Lv2kvsfY# z-$L8&B1@9T|7o%}!IS+vUqPt&T=wtQ%`hFa?M_KTjCZidUw=XICE9lX31xb+=3ekk z@MQOA9lp^SC;TlY|35C6E}B}hoz~hdsKfSX6L_0*|An~l$C3v=`z#VcWBw6sY_aOI z1kROs`}pgV6>nBXQ(FUuPxU2({XasLDT+62+g+HV?ti@Un#JcMw%rG8yPNK6N-;HO z<(s|5Dh9>(ad@WW@+RBvUM}s>fj9+7$T0u>CnYk+il!8ZOH)T^n%Sil%b^Kd5h`(M z(-E9MAIzVq-U8i8yTkp6KR|UP1M5n+8?(u!U4Vc>rSZRtd+;D+K)3ox zmW&hGXE1w{eM#A$`4Tgl!t2yqvIhG;Rh?FpVh$#TS7d+YEw3D)y>fG$a=wLc?FSRR zcc?8P7x>e{S@RnB^T6@WP@WR+(tZFm_08=Nfl6pLFs>yBp8&?I$3HP0nGH&8mxO8N z4|phX;ohF$+C(*R<2NP4xC}Sc~6& z>R%G6v1spMjUb)FW>41IL~k$k7G(9kqb7#qGr%j|<<|Ok3kEDIB0T=5FF=AQZne}> zTvBlnOJOK*5iy)=3l537RvEuIw2N3JYO~9&Z9;!N>tA97Sp25SWNk}2D9}+tCU7?= zDq1Bef|W{bUX=0r0&T%>xLDygq5L9~;!Q3woiBE4xh#ln?Fa=}+Nh4>7u9#w39VrM zz`2${C*tV$-YC;up=o_xTE{+JV%Yr6=HM8X9{{yR}jh@nC#NbY}cfd zC_?S<1Q%INC)_b5H7CXe@3Ux$SV}{A*T-)cc%o9s7r)1>1k>AYK^Ns5`(9^M&KA$E zRMd|m{qaK>QB;2cau;ecPz55&osxj2HW}+|ab~}$a6o^4q`|!-XL4$@Ql~zX_dP<;IYdk*vp!6q&O#VqQrYY zWKyr%d#LMSJ=!01TG#c*HXl` zt1^y&09l3B)usMV>~%#b)3)23A6olEk3W*I#yq+tJSepGWj%0f*cMuQ41wNANoS+Z z?T_;&KlrDn_s#LG>Lzv|&2Zaxms(0*KEe*RjB0+I0?gE`T3^9_*OC24?=`Cv zLN#$=Q)q1@`}}<;QQ88?4y&S?U&$kYJntOr}Xy!qto<>|6VJ8dq|yX6)Fma zt)M(q6bRei{!^W%PKrRccZS;MFxmcy_ohnAA~nbCZ|WPG7auIOc+>&RMhWb+sJ)MO z29AWh)6BjTri7me^Xq%DDLgc6?gA&WdYQgslz|N z3t^MLrJw)aRQxQEIyLnYChO{|zzcn|0i?TBkiP(3J!U>Tt!}OzB^AUD29825W}FBG zG6CH#?Ga4Tm*XLDN=ld+dT@K)cr&ToQ>Cbmdx3&bBjzv)k53MNE zanx=&NfL*vch-QGKpyai!0#PWQAGT7?H4b_ROtmeQD|z+nwRVyT9GG8P1YXljT@VS@Tj_0tI?Ayn`#!MTQj3+^rdj!Cl13nm52ZpfWjBcye~6W`LFr5{bTsd?&*R z`xGeFS@Q;kUUC8TX*^NfL7J^QF4f?ydFIedOC;`ZH=@Z;tFHzhJBA4FI5poKd~7Ye zLNm{TUIUd$Xy&1U-tocEIwbk`_wxUx)AVXE#5`H^tjOlD2154lngPX_~=L_{zD!9>r~T$DWiW$_BA5ht=4GU{ISFg7{8r$YXH;{PDUE1~NRWQIvku&26l!nQw%WT^{$E@yRd@$u9Dec-IEr%J6 zdju)!{{5#gAdkW;2SheOogif4Ijp<3#uqsd??7lv0UM>2+HcfB2-mkl1v&A)_d+>3 z`9th4$xlHd9`CiEW25 z2>$(M&(rEI4iksL7=&#U=)uqyMhm_U?%E8$=|j-8{?hTF=nICLfDs}i65oiPn~K{kN$IG8Tf(%`O4#8nOnO*G99?V>O~^R(VT>`LsBT@(zF8nYUp@Gu=T zB`~u~dt#^15p-0nx1{fa^b0V54(a6M+7MaMHA`|&Q4KQA=Rnbhxeg3BcqwN$V^>B8QDcLdlMoxsbMol#H9uVt-I)Tm&{aeCJ74#*ZodFtqAd4+|43C z)CNxMCvlt*(Xx=l#od8G?Bbrjqu7mg{rtyV*XxJIuIt>aXjNy>m0d+FC~y>iB~9KK zDwbD-<>Fod9~bwa!1N9?mfNYQwQGg9)U znj@OfV+~ybbg_nBWvsV@wAX+u(S#N0r5YVa3eD^@ErDZ*;aQ5U@mJj!G2Q0&JKs6= zF(RqGsrzC9%bN-*%oyMAuu_O+EGj_{6SFm3=F-Lw(IqHpkI`X@c6<0MtY$-g@zo_~ zRA$PW4VftfCTbMh?k&Q@H7w(;JyaX~fA91JuQFku?M7cVBUwni>;vBW)WiBRw*J!% zz~o9sz6yrONHLOgu3bn@#)bl-i`vS6US4tv7QC$FWV?iJ0m%t}m*gBSBagjJ>^=?f)eYRni0$j}$KTuw3=ubh5yH5>2k&zz zuFBq#32X08aBL^OG@JyQwzE)?Ydg_>2mQ^K;)*34fuaA18eL$(fV~h^TXV7RE*1w3 z+Rtt?!BV--rY8D3P2PT>lsWsL@4ay+7763u0L6dbc$g+qyh-Y`^kAGiZG70GPP5ZD zTrC_xI8QAc6pRbM5$z?aar3MM7K&t^sc8LYiCQvXU4W*p&Si1=$wB-{3HMSh^qAGT z0|@Qv+(Cd2l#W_-8|0uEo9FuW@!e&#FuY})tLTg9P~crmjABgfw*fuDT_-7j-+qBY z))Vv@TPJJwyE}rrjv)c#se%<`y>^=#fO&m??;$sCB(|Ep37HP*8SG#);Qf>=s+t2CtqBKN;`x!DAD8_~?s zF1fL?7w4o~JE-d^J#}wW^UJhhX1Cb<4{)*Sp~?umhA7h&YV@&%E^R25O5mY6muT{) zj_mU`|0ERTX_4r5Wt#sb(nzsA{2NRYD5gVA=R(t9>OBvIuQ(K9p|hdmaRjvH9r{#d zNS{3mwB=99#W|E42g|)J1QU@Uu)ig~MBDJJ$YR^wDF?@+n&;g?GU{Vv4xFg}n@j>p z^X9=a=+X+233e<&(iYn{xfpxY!=C+ZW>1c7_aBiYM+hFQsc6goQ`iGEd9qtp|D6Pm zhv-`j`?aY>np9~1=_38zKNl@BNT1&>C7&QYGw?tL+a6Q%i-PnAZGLi07wIo4GfMhr ze%hV%v88onpRxH5fVWVPL4EuXrIgW^lu05S`B_Xmp_Fj|p1=agmR#D{?1Od7ze*cT zU)09+7n3o=+FGHiHB3s%O>ijQD=J>V23;EhqRq$AN-qpW#n+30+acXBtu>OKpj)??gA_l$z z=Qg%R-VuPHgSE~Y?hSFczS#=ytvHHktsk-mot9u?TYm)a2$>h#c3WUN#6i#}Y2HFk z^$Vakr@Bk~?CCC!3N+ao-$w!rs%o=5;lYts^i*g+BwXN#EwBYR!5VWL&7_rzze#ZB zuS7W=XkgH11uriaybO_WqW(kj?_z-!iq-}(n}u{DQJvGb*6YQ$yPrf9)=v(M{`_h{LW3-!Tr(P>_)Nv&S+Hxo3(AT!)B^QPI0Z{#6OZ2x8?m>@1EGIZq@Yt;$JOAb zH-m|n9Ja!cD>HulW6>hDGzFaM@!J)hX#A=)j=U2~w38@9974t(uK6degVuw?Mseg= z+LOz%2vag2Z_7UHbIb;Jb78#=a+#fP@})V#qlF=MIF_-HEAByyqY;LWQ3tY|Da1{Y zhk{xzq;2?UMpO5LJ&_J9o*R<4wWsmIS$7m1U>yHvr83WJS^p_Ia{uatJtep_0Og?{ znhIvG02ADgtZU!H1&8jZ1BF(M?-AtuqZk!6WY=rvQx<@ z8SC*Hi_hj6GH4AB{qXli-cwk-NX5Zq%(=|^b~{EUx^2T`4>Y0ZVBj=_j;-+|_yV+9 zXxs1>e3*%$@tB&E1JIy5fe_r)&c836CGtbh1LZgChAWQHv_$MTJlR+J2J`Afe~$`7 zSN809pAExI`v-*jyEy(#7}(@*1^fHfLPheA;6b@!fDab>n->Nm+j)?F-@F$uU^j-< z@Ydff{68q)JJzEndJ=FWVAw%9Peyf`I-nK&Ocnj?S~^ERDVI*$?!NxE;r`~~=!p=R zu|_&r60aC`Fr3fk{5I2QPNpaOHg-3{?&6Fg`(C}f2hiO}x9)ncyQDdX(VQdq|E#SF zqpUtj(y9RxHIz5N0%>^`htZ{0wKMntx>)c@4MmvVRS#Yc4Xa6{9~$x+PNui>R!8u$Q$UZoW)Wgo98}|!;L{)B+xfd# zpekBvYAJSUe?z3{B}VeX#zCRG*tuYEH{)>Fb}ODq_}FA$&!l^mH5PY8Dn=um=&l&R zQ4t5b72I;WwCAxpiiu&{)Eil4T92hrKUCL`X^mF6v?XYSjJzB{u){nk3hFvj;_3Xt z+;}-YqYjz^906A-Z&tiX^bDQtgCbQigJ@-rvzYdK{0b%({_`Xc%iTkFBGW!GnOvAm zw|TNBcX8Lf;I8|~T?fqA5KHcQ3zO+B|DPg(w`_qMNUw!oAN8u~K=|vJYqrMzh`}mz z>pn4i{>uWr*K;!a512gb|9Sx@pl{iBe>Cb1Q!^O$M{Ssxk*>BM_csj>YYoqVGU#=SW{FvpkA7yw_VXU2pZlZzJc526@&7S`tV5wu zdT>DPVR1aY9rX?x_168*%2V^Df0Qlr_#N>u2Xf-HUDZuV>V7EggxJJNLBrL6pz|b- zqHT?zQ0QTSvo(G|Unv*e#?$aZCZ^an{E5Eu)3Bm{14s5wEtH!Wbe^(3v=i|q%=LYE za1YB07keJg`*7|3>fBZ}9-eWgreHkOWbHRLFiWeN2!F(< zxwT_L$YZ_Hv^SW9ww7wa0cf3CsD;c^xTkTUJadjqdkVO5lhs6|fUi6)<{Y~cN%T8U z^;OZ(m+vq~oTsx2Pun)lgh*J76I5%(C@PD?TY0Sqa#7r(=)aj_F(qazIeWHTe;TGJ zwnv>2YKPvGhI&{DdhMgNIeg7N+VR85jN8YfPhY}59<-=~11G#w1!jtR2X+b5;bxdU z+55ezwKs(asJS%uyF$}(-C{kYu~07hu1iwSr~`4X+Kh`OCjk3F7yBDb+oVg-6#Rxc zI2fyJ!);3F8x}O^nuhvopreGoVfB}HD&cz>#Lc3a&}OD~)mK%wxH47yAxp6Zv5PLW z2J@|0jf43hWO6VcD>Ke-gS~8xK@4MdzS(z=N1Z*=Gu0Dxjr91Jj#SznK!Q4r$22bg zfxdIJH@E05PG0vE+7r6Ztlo-KnuhRqvC!Lg=l2czI&lXNEYa7Keb{@wZNt5wyN+gS zT#10kf8R*O`=_?0@K+q-SZsa=v5_29xn!ggzM6gUv^a30;Z5{Ja+7iQCX(Cl5}jy$ z`|zGCyPJ29f&ofhXgV1u#Fd+1;3UHG;tkBMVkyT_>;*(>?`#!1Qub%I#(}t5T?_+; zNY6OYaKBlx1>VLnuxg5*8!aH$u-B901AgQvJZxKaS8HX zsV3sGmz*GK2kt<9fB`*bg}#gHXtNSI9Emb#!~Isp)))XGq(p9ZSmLB;Rcmmi%+|>5 zt=fEvEXSs1;=s^!tU~vo*b*2v0$fM5Z)1os737{}5t0HY)DBs+uFcd~Z4b>uq2V-H zcW>6+(QuyyJ^l}RENKuF9ce4YFsWkMRK+^gbKf(YYI;0MllvaiZ9+bDsx4C8 zj&6FI<))|c6>{F2w#FthT1Oi%GIZ^Ic4Jn8(CAE1NVm`3{yYRkU;#IbJ1w7En|Bmz z%3}{Z!dKvC+I<+H2?&aNQW&3fY`lYsvbVvtkf~HRa3(5hmm1^hA7TnKCyYF}UBxZa zr%B8Od{E-y<5+zCf>7AX%H>|`jbil?b)*DfK@d7l2j4F!NPIrlxEo<(!m+Ff+5Z%~IiS_=Aw^I*eq%Pe~-DAXd-%f4o zjs9^v#hZUO^X4CKw8)!(ay#{7a2p0*6|iOB*4%x~rp=FA zWy21kNZ+tR)kyZHVqc!!T$d!ZmL168(wf1i*ri*8xcmAS^cjN~9vqq$m)%_38p^u` zLhUJHxFn8N_aT~qi`lW4Ik7^sHe5M{^lrt7;kvM`@lAMGE399Q2jIuORV!}0=Dy9_ zu6Q#6k`}SJZ)#XRadTLh--L}wSP*WKZKDMtSf8v-mCcj#v@g;?3Yvj(tY5_rbmlvT z41>w{e_#jNAJH_B3-7r3y6Zx&V|?ddn5!4J@0MxOJ{ynBmV{lS_< zT-$YV#F`z}xZv7k?J8UhU9?!-$c~!+@TSS02FxaT0Wavg0G%V~I~(+MKsOCKPY0bx zp{fRbdxO5Fpzm1FchdHNib(->!3DPU>oRbATs034I`^n~8Rnp~-L^X~BPr-SYzzDj zyy2PD7ecLQaNkhDU@R$F!MTTQffK0DqqcY)9^Nn=w%?<^>B;e&|D!ADY#n&y{PAJ0 zLPMWj**7ww2FEPH!nd_GZ}GUx>l9bep^R$Obl=1!8u5BeyLuQqj6y3e8rr^j2DS3W zQK(RZyD%Gy+9)PB&o&)&Y2&arj`&(5zPDL?1&Y@Oin48u!;#Tn->LYF@~cJpovO22 z`Ctl^e+*?Gh3o85{#!V6#jW+jR;WAZB@84U^*v9n=lqFKUZQp2iD9jt>7MiNxd%qh z|6y4DA=~aqNu^cx6YutlPEPaJpB0Tb%})N)#7>^=(TKjH5lv{oX}Ghp5vFFms4?md zT%#yJE8L=B(Zj5+f;&XPr&#c}M8O?B3f_fAhYI(i&{J?7Jqtbq0jWCo_?t}rQx{Cm zcAQE0aK-dP2ssYT;svA_%3MMVD%=Pi@Hc!naVare4UzKq;_hziqx}AjWhC| z)yhTcS?yYp+M%b)ydBzfk=mhs24!gxZ}3Wa_{3}71gN-Hz-#p0J0Q=z(|9pI2Q#8r zyA344UUEDS=(IEu@ZErbyIA`MWGck{wV5z0_8|lM64gGe*X5qAy$Sx|om}0XxNR*q zDVRFbP*zrPW#3AZOWS}x7gt(~ae#_Gb zeAs8tX5nh{rW-(<1&aljMCBe%H}P^AZ+jP);Px2a;d-kwDLA(=RKM}ej`=Ol7e;d? z)bBjA17drlGqTZnaijA>$a%_D;>I=eX6Jw6TAZhF^ri&+)10gguETHBHFyvh)Jfhog|uuApyc zi*t`1`GTc;gY`|?P1g{&e!!$5N`KytdXpQy=MQ7ccMQJpS+)Lj$axw&`Lkj-&+VI%b51I!8qKwXwNNC3&w{}`2_-ZPesaP!Fpyf2;?gip# ze{jNAqAkV&X2ntTuZ`DXvB6cF@y?UN^RQ2XnV3>>ZG(VFig?RN;}p`sB52^oH3_P? zpJ9xIT_J#KVL7}%G0_&72(Rkvfb{DOIZr|n!g6mMYQ-P_H{wrfS?^*aJ3YC1x|I_+ zuI-mBh^MlFXW?UQr$?Z+WBB9N{&u?Ch$gqK)p1@R&Q^i5U*Omp|A@ZmBRZhXB}&Ep zgT^^s<>%{pH!*L6$Q#h}J{iqByp4x^k{hnpbJQ?Lg~;KSEwVM#+tB13AcUqThf~?^ zB4XtWtTeq`C(4zW*9c6U!F7N*E^Qa|6**{q6_Uc%*cS+Lkhrz;WH)=0#5e}Ng-IZI zq7Ow4*L==!*w!2WfD|Cw9zB@R)X2kA9O+nHv$b=F1=VaBM;N;w_Ubq+J9tsA3&{ia zYs(Y`lSX5Nk7Gbx6N0z6Vmv#ODmt^|eNkMhlw%F(HIUGe^+FIfKxCmy(2vlnw)cbp zOJQb<$UIDD9xh&RHe@h&-cknZ17>dfp~%=i92rmIk6ZgE&iTRGL&UWwBO_iV?4HpQ zUQt|en7Q_fTsuWBTjNpeX7{ifBPUOWyH#loj}_+I31mLsSPtN`EN6=-r%ErU5#{J@ z9Au2$CmoP{P7QaPv~1^T+lF_6)7Bpco4Csg$q?r?V-bcRBtaCP2naFRdXq_c(D@(T z#3^nawY`aDwc;?R;w$tWq3=cb@Gj~f#9iaIpCJ_04!XUZ3?;r;O~>wE+j@>d8ZRn` z<4jnvA9Yb-rRBO_7CJ&ec1c8tDT{5iaT-IA{2zP4kI{A1W)Nf2%QR+sj0}>6?dxQDaNf~ zVu_0J^ z3MW5&8H4Y_I!}pny991uT1?FXKa`JyG)EE;ZM%C13pMO|Z2?YtQS1|){jL3>P>$o>vdT#qPgi7up#6pYq_58eEZ~wrAQm!6+!gca3~8{vQwH0CmFKU>5Bpyz}R?)ng(PL@S>D7{W%D_eX zhIeleH8kQo?ZW%fedMdrSMk;8Q?O#8ACO9z)R8z*HuqmB`v~H*584`WQmlybKh?{& zHA2P2@Uwj1)uL=$<3A83%WwNFyr@E$#NBSP21w>bq1tLuq<41aW-}Iq9xcv}X>mWb zf!CMN=n;COlhp=Zzd?-A?i*v;-BnE$tFg&y78=zU4fo!zH~I=$d|NK0URSxPIz5hK z@IVjjN&n+b$SjR`N8=CP0mZNQ8}|BiRVA~kqQsEFp}=l`ayH(dX*Q36v^3bIl#~bq`Mf_)a$r4E_wMV zM#6VRi8l2NReVHcT}QI+I|`dRgp_s@;~A569mkNU*D#8Ktm{Y`VwoAm05%JqA3;`B z#)M+;A|^&s#X*w7`ywws)V|3$Z@ZQXsiccsFHES z>azGJn`m*B)8_~@Z(3aSiS-bY^b|k5^XFrV#9X2AwJ~Eg<5*3%cNaDM-mJb!>WzxGu41l&9VYi^U_8hz=g4WtLcq@{*oXq{Mbymt2hI?O#Q^bWN{TZ_;r`Tc~sD61I9%bncbw;_O+ zi{-Md{SfpPZ}9NGnsx=sLV{KV9APVgL894vRU}S)(&jYH53*{5HE zbkRONg^=E-^&K&N>Tk3c^zP%*9z&Xc1oc5!Cybu%!cj1{WBpJz`&a{{m;qhNV01v| zFc=-sTn3{9Ivzo{b`jSG^f5dGuReyFh-Fso&+v+Y6SPFzdQvhS`V^K1Tr0ziRCuLY zs3I>?USq}xO@%YYt^ENvma`^s#t6ZV86)0n^!0*y=tZRAh{|zDA4txawsBa1+?wMk z<1k~+y==@FY-wEDy($>pEoaPebfrX}0I$H$(fK;k8|u$1^Sy)g2~>f-nlXVkKG!OF2(lZ>@!_~evw{@B6F z!MJ)a5b?gPKs?yi0;r3!V(ph0J+-59sP=$FOVYL?#`b(iI9%CJyIV%~(^R4z#yyge zH~={RN%&}`T`Q7_1GH5}VsDYCeiVK_<6L+L-tISMJ`_Y*&yCt(nX9*UA7V@$;dV4J z$%v~&+^CLlYqzW~A+mA|rr`TodY5;wu*1K*7*44isJ$*@duxx$*uQtn3{e-U9E8k2 zmT1Y^PY{F6bcb!res%w%gOyins!ZyuJ!B;PaDVvy%ImaRBf)1R{9u3h)yiwM`9{J* zBjL&Y;a_yC_8Ra+qQ z{H0q9FkjfvWQ`O@`^?B=LY~SSv{4fOZ!!38QFP^KwN>jQQoT1~?(Ia@N}CF6hj#u} zG1k2VJE|SHchKUC=a*>~9K@|m$yY~@R%UB&NW^iGghwDFiUoe<6wrN_O!)sO`xf}9 zitGQ~>~6AzgquJj0TT!iUIG#b2q9Svj}1Wq7lOM)5%9IWuGT8t3sePyo7F6r_4U(V z?XTJrqph{Jrak~Gk3cXXzIfCJ79Uip&h=6Sp%669{=aAD?jwNyTRv>=+_^JnX3m^B zbLPyMGwIPx`aosNbP>0F3hD!PCyENBv4?pYs1(mqyncKX`Me>EtDl;tv;i9>BD|0Dpp?FI{T%mNusbk1VyFu^n39<#_~Wd9G=2-UWr@ z7R*;iWVjeH->fbQ_{l(|*~5Yu<%K(HPsk0J z`vWQ01~Qk%TI*p)f0ESp0&2U5O~Kfq!hr(p;c*uvZWinqCEeeM-i{W9cE4?@NPuX# z0Ejb9F%ZY4Ev=*4usKZnYUY6OiNGj`X1~C*)&0!?eI9@&pjBT0+V8tT!?~EczYw&J zY^m;-0?J6;*$qnO1)$t`9+am!lq{$%1(crpZm{@7UE2KTBd4Gn6l&Q6$V?5oT>u%X zujvNl-U|RZ^g(jesopph%Po9(YYLT^2PwSR7;{sW4I4A3Pk+qjj z@?fIX2SBc|H>*h!!_UboiLALgslQ^0J?wukkoDM~;%y~T0HSC)M9=S#H^_QGH<-#v zp|?Jx8?>qmK>PK1(DrgDJt5!;D1&v3ouoRYTmZ_VZcvDzevQn*jy_5ckYv72E&&p) zYQE`wgj|$>zR!;g;!QhA=y}u0ZeB9rR5*w&{`HfsN8q(;8jSIL7Gp*6JYCUZ(#EGBAr207?icVkOn}$97C$upz}G@+o3C8~!~~ zUW=4LS0VCSq);Y4n5mSUSVMpf+uOeVDU}%X*mxy#Vx%6%E$bKTSUsFH*ck#$_5n0|;u0Ilw zEEADsO=UXHeVH&X7m=4YU9QXV$Se_=)s&@I$0J9J$k9!s^{MelP$H3FMN@@7G9Ecr zM2>A5tLGpxfjl{Q+6#sNQeu#)4q6aB{aXh}ii0`l8O7TiOzCgqm=+%f% zjE+2vyx3c8;=cWN5Lz>p=aRblgKJ^~bkj|7kQWP(7wZ-(>Qp>_jEEnjGmN)QGvo1n zMSNdb^b|-d0MSt0vYle;Tb@0RVwZS%^93a2gW~uma7rgWDu~dB0YN=51T#LA`5WX4Dh4{Vp7H+O-u~hs5aVzosGk#_G zo!)J!Xu>amUp{`XA#eHXaPagdZuCK(nR@}Z-BK|hzx{9E1|2-_#_uS8z40r@&yU|T z`27XHefVuf{@Cw+v3$b}t?o^H@v#^2CCM!^caQC@@W_)<95?ITL74Qi zB@iFAR-EdJ8>`Y;aRG@=j0dc+iu1A?0ggMe8Eas3S~Oy@TgLL9iYxk#&T`af(( z__VFh~Bf?HokCaX8h7m`xw za|ktB?c<2Uimmf7UM5m80qd=&i)b_PiA%7bcZmJ@Zqka;OZdL6NF3cvSxA@n^Sl_((EM2VqY9FIzC$72XZuY{W@u|SSZ?H4+|wy)Nvy;E{< zL-Fhl9&D^<*;?RW?3>W(B}(5|KCPBA`GZBXV2E$PFl;!U6)X z+6?$PbwpOUfR+jDEQEnLhcKn!;WNy_4lR2QM&D~LfnDBMS#ojXP zu4uoBGOW!v)6GG;@S2W9np==2%)znM;Q4T2TtWV>lfB7ew?}k0Hl_U~&Fw7>gbEBr zD9zo#c1@HM3$I!5=HoE7|DozFL+NCNM>Y@a8=!#asc7Vbt+^=LM8qU&BiL6}ER6uk z+14hciE^3`^ZwH6pQT)UJ;<8SEuuO8s1fE zzjHC(|0;Cr?GQrzTggN>iB@seK;x(dtGe}Yk=M6_I(B^vwSX8Id0N)G6u5y+!$`|O zAFwl6&he8jHu#yCHOo(i^+(9!SQ)dG*t?PL*LwNG*ygXSEK@sIp3rhhV3xL|^T_Gb zX%L+-`V*t04}4+}Q|xCeIqd{2;`L7;G)ytQOWhr7dut`pxg9~HNWU2rh2anNZ!_(9 zCpU(4aYeZF;NMST#vd9;VW%iCEMQ{>1%?Og>@x)D=subNUkqGxDAf_=;+_RW(}93q zFozFk@}~5HiJMF5hePEsS_nHUE2-`VMM|L!7##vdg#t~VD8=0TZ!$&z5Cls&a?;)d z9@-5%C7dzCA1t$|hhdous)N$85W}Sp4w5}ZE2$(;;V6Uql&mN@$kmbl(uJK!*=;lyL3q-i9pv9H_ecv#7$2;0pfsdgOinG zjI_rL%C#tK0sA5;=X3+*5xk<`9pDv7R7XzG(eHlOQp*Z^Q%~atsCd1R+5;$8+U)d6 zn^#+BL^2|sc#o8Cr^gKAGR>;}6<$vLW#eh4IZZRo9hhmBCwU$?oix*+b%M3)Y|4i9o{>=Du!Nj9f4;OimxzkUE|T+D6EW}<(yn|$EIpHC+iF|8 z7rwfEI4Y~HwsXO(;bqv(Z*35^Qnz}{2K0Rpf+aO_Srr_lzOBjaVlI* z9hBMGfQn{%C_Ape5RNF2_aNmp9Z_V$R%jo&p*WK4h9Y&4qXT&p3_;rL;G@bOqQ-O2 z7|H-Gms)N+hz4tKB%18x?fr`LlcbKtE&y&3834O=WdL_QLXJY%HfX`obdn;@95S5r z)dqId{RkJBYSX2Tijrn;McELt757}OUG0oqg&{oNUp6k@>&tLtgQS*@hBUdEJ`xOnOW2*>am{8yz zGw}&ZeEOFdBaY{RBAoiA6V&y4P;V{sS;U0vw;{YC^J#?Z>-X|_5&&9j+Yz>e>$mc# z(deykW)c0ZZ$?bKY+fvZt>rMQoMLk8s>n=2av~8GW;mpsaH-HW*QuU{9Wj?T&Vv`J zr}CxE*^?ilO0DeKwYxrh0fYKB+M?f&zZ^fY6*GKMESwi#KoZ^=VuwcWX2Usdw_!)-|0=>Ee%i ztCG8wjy@3Tdf84`-QqrwZ*k%e$1F@Th!u8T-AYk6EtANC*Z0=;9P-Q|Z4Of*W@T~0 zpDMPb1)Nan^J=WHi)`P*`2`roDJm+tOE-aFFjTl;#~uZCd54IrX1KudGJt!7Eh*Yb zAFRqOIOfKDU(uEvTpMNouTUe<9>$Ge=t0(7xPq$^UWJ1!L+LGTY4gZ`BSrNhfX5cz zPMj;k;rv+abRJ84mSsx~n?GD)`!vxX?m6-PC>C3jUiLNi>p=tW(E#kj9zVf%n%|O- z(HJ?18bSNNSna`%f5tT$FC`Jg$2fx_HX_L(uo4{gCO(M%-43_h<6nD$=IL{JD)xNLU zaR(-ulg|WOaMUGg)zl8I%ucX$aa9rdMS}$4wD`F2_Uhxv1cB|pa$1xp*CUrt%w_XX z1DeaAsD>dIYk{H*Tl}Y$8MSLM^>s@+#7z1ol0tfjuEdoxFl9jwzH@$wgyL{}eRan7P+PlwNLBA8{qFXC7k&Mr0 z;R$>`Bd1q53#AOgnWMJwMO(&&S zdDlJZunbG}vf|aa+MBM1GEX2!GifqV?^^F7j?O2Sbh&Cc+EfT>JO*G$t*al{s0B=u zct@PcLt4PKL~!1VdNdFKk_Uqh3Z;nmHe3?P^O&(bD@_}m*ONvd4w26y1q45y?qi|J}?wOp#_QuEFqvBQfWzm58J< zHJ_hXkprMq$`+ZEnnHJiVF`dx|}XX8u>8sIXKP>GMjQ`klB^ODs>rkqJ%HyPBlA* zu*ES9(#LNf!pAga66Y{IapF@QP30QHXw1Nqo&k;5jR&3U+ z(gNxr>E4?#?})yh0693`h$V?eT)VXUni@@n>^Fd>Xf2n3tpAQ$x#A*!IK>1%4SpuA zG);VB91_4kz>5ewGi;g~n(P zE5#=;ZL&-jD0fleQt)x$Sgb*l@C`3CDMQEj;FVX^swSIUhuLRl(b0g!;j02jpO%Sw8P9z3in@5 zkIf;}ty107F&d&(9#+4iiQ-#5zM1=QJIIbjy(ri*aBX&E#?)$WBejC90b0O?DNOlY z% zU^~%?gf;M_XcO@y_B*7Bmsrc$6i4x$|H6tfWl<96fj>#}Dizo{iJ|@r>P5l`Z`wZC zVVG}|&8GQSQ3T{+Q>K+Wl=Sk{l{c3=R}MFp$_FqHv$YQ-(FnHSm5R9JDQ#H;rv+;= z)CvCZR7hV&8C#Ee9CiunaDQ9sVyNfKPOd0o?dUfMRk$#SgqIS$VH`S;hrUbqE+sj$ zg)b`N{wJ#8jIbm|o7m~eOH?~1yn5JAH=^3sl^3Dveaju{AZX{%Om$AwLAtz>=qzIg zBkwKGrmF*}QcX#;{>RJX%_uoM1AY{yCC1|N!Gc4)0`w+jxhs*yc!$WVP=P}%OMGTo z8aKk@BEo!bw#JzXba*5t`B=xN91~vl`nP0m{ya=b`CgS%dhmI4Q?MgViqPdun8!EL zvKJEA+NIb{zjC@&;IZP!mrP@B2AZvj9qA#+2LLUduWs8*bm!6Z-p z9ne$)WUoYu1SQ4WEvN{vy_pE1{Yw!nQw^^`#Lf_o29&N zY$l_@YL*FTB(9I-8qhRMU@)6w`#BXS&S zN+a^FvNmNthNBc3h!~BRsud8IXXIt|*>owij3>qR1I31U3MsUl##MNdDUq-j-=iS| z8_cCT9W7&j#7spvcmpq@QN&}Ux~a$(C|shyNb!P^6ImHkVzV`)GndF2%0Wu~AH4Eu z(#Csvz$ra&FX|ucxL687WyqawNFkUIiZX;5>k#NGNDv<>1Q0@FnfugADe54t3yyW1 zVnc`-(ucU5LKGxL#(~)3hM|#EH4T&++A1kB1n`A2=qU&XdSR@%S2-&oc^3+iD}XFM zC+gP%2=wYwy-Y2j^ZY@EmT%_)I1$6fg#`=mM)4q(H>@*54S4b@8Cm>c%3V()8kOXz z5+uQAzW2({@A|d(abaqgmkmM)dYEMG%ZAbzg7w!h7)TI|xZzvr(XYwFQV{si8xhZj zeS>#ccda^wn1?AQhsO*yj$v!HJI?ew@mFt4Ag?V0IOiR%6IjRm#OdcCq>owh`zm<%Owb!Aw#PM2+!DbUXy7p-uMe^ZAUC z?3qJ+VD}1)6(BoNbWKfkB4uR_5LvMWL`;Y+2Xk6#s(ehf4#zg#1&0!`S~%TqsLUwul6G{g8SQ2B4bXYF)g&~9>^827k?LSdf|<2Ke-?ZS zUP*_Qu63Goijw7JxyZ{l;*U;CbKX;WPvQjFn@lN*vZ6DB%l(nQ#znH<;xoA1ghb3G z7}_T0*)Kle*hp6XowzKHu|%F_1f@_Nnus|H`i+Tr-q_6N0jn^I1<&%bn;-+9*I2=> z*w2AoVk*y516&-NQr#c%vXjPeso-fra2#kWZ}0Sa}Ok z9;VYg_AR+V=*Uu*mVA z$cmKGDy67O={u@L8QUF4`nSa2CV*_f@eC)sgog&RyTQzKx|@+F_wo_Pp5_#!l(Exa znCs=@+O^Oj)!mKRUdRaCz6tsbyViQ{EcX7}X5Oi)P5>@S z0x+Hcd<+1__OdP|&w#fUC}P6biXF<-tF9{RT5*haw1>kwDaPNlD5)l>+kD((gH~-1 z9n@TWOS`TXH2CVXq=DScck>eaI<%X|_jOFS>F4a`U7_)nrnE&!g|sQ&te$|6+s@cF z`$N#o(>A;6^tV-ZEw&gb^X8$xT!=&+DY;-KbpJ}-$HX$!{^V&_3e{i?nS1MJz%E&K zEwSt5lds+cB~QY*G2aqu-HmH$94iB{E-lBp^Z?eSJqe)Q zTc!K&0^(>&W$$A=a+mJ>?E}mzg4okPJJ%46JW}AYQS#K+$(7M@RWw}WobNxs?ER!| zU7WE^!*UU4oGolUAG4~nbRuzlg~jTLMIIDlOVx@P>l-1uD@njoK-WSxk4-ic1h5PN zOsX4&5=5ATtzKIuZON-<&)fs-6e+!`*{>)xLJ9>FOci~3aU3wVgy6An4&)-^Mrlj2 zmj!qRb!x1d9`^P4SS?Id&swLKz0!^xuuum|A9(|rX#v-E_mrO|I-N;H!(5L$C`;Zz702vwh;A}`pWSI5!Gknn{Dc{3Agy7T zMOg&VYf_MnQ?fTX!Q+rtIs6nI&@-ks5WB#R_=X;}f0t^{I#!y8{8piLaFAg16vGuq z)SzQu<4kL$gMZ4Cq9l+=d=FHM4J7o=8VsWt`ppsNVFy9Ns1K?#6oOz?m72UDA9rbd z;I*);s5Ae}n%)8KpEHMG44j7*UI@4FZ0Y>;5FrvTI1WKZ>`X)W$IFimTnBeCtn zeh)hz>JIf^NyTKK7_$V-;mP(@>_u>YO0RHZL4KArOSI!A5U!Ct*S3P?m{5|47qn3A z4OmM~ztod`fwd`1{f-as-Z-J!zdS|B!KBk;rC#n>^^Z#9Gi<_T&NB|bl!8F-mwFlp zYMyMTBy%Z=Z3zzF*P;}y6`l?)Ohph% zTVXxJiPL0M)jlay;-DTr07j1q$jh`a)MG5*=D2JCGd#OBNpTULX>mZB40 zub&QDeUC8tB+yY)V+z1<@?eRLyeeTi@DMU%+mm>yws*Ejr`$AqwvrtKvj9px{Tbxc zxFsPsO2zfh|J`n|k{yV8P2<(;VJU*K!=@hq%0{5o%m%{NNxjppVXcn-9JT)hYDN2O zBFaRqGO;{g$xCYR`_$m)S5kwG9!!D?1L9gb8w2v!Hv{isE>H$yVjCGG%47x0_CX9p zjpQ7v%t}xkM-r`2Omj>b3VJRlULKfYMqO=2DH%L5H0CK&l)_pUVbZ2%vXu9!cq!yU z!7QKDDJ2Mzfjdo8Y|>xF=K+ZH$y|cmrve`x)XT3U#KvMh)n*TEEpc#i*U7Oq>yOCL z>7;0h-%r3!??V9xk)nYl|7a%tg#*nr`8&Wf{sh81%5|@H^^|dtr@F>WdGey30|e z^<7O^hNuOy3btD7N}(f}Qe9ulHwg``(fcEjH=3KzjrO60UP(;({W5NiF4c7s2N(=m zq0W@A2Ppk83JLSi`X}^tU7N{KN>|X}S2E?_lBn^a0_d~=fnfCWU5J=@2-PGjJ3Wjd zwKGOf&S-PFyw5C1!lzD~Mg6iHpItI6&Syzo?2|WQOt9$$zDBl#X!KIR>qfk6(ylnw znxpEyBvSo`>Q@Q?#&)kvwT%cj}6wLh8r zUf0c@n`@Y`vFp>;I&Ew1wvP2*!VJm+8_UTPU@$Y#$ij_h9xrX?MUZ@&lU z>Db_QmfKrrS*`VHiWdtecX_JfTIqo(F$e07tnzdvqoln&4JR~kn!RpS54s!0istnMxS%t-^`ext+U{w+0Vm4>SQxb6*vc>q`!|l= zaM!_3a*vsUt7+*PKP4qR4nEKm1(h^=;B&8W5d@n?I-KEeTm;{EjUT~{S>qx4Lk`Uv z?HE!xo@K$K*3!5bDW0P15T9~VeB+2&^p||} zjtsJXQHrXyPYl>PrQ!l!kwhi?Y}l)-U(rawo}d9A9f|t#y}_-8g`nM5$hZ+-{T*&B`=$5$fBL*+K>Vwjx7 z8++70s9zvU{s<#E`U=5fKYtckLzJ=G=_!8GX0s>y3Vkt?&O_2bs{C#ub2(ygR~W(B zf{7EZ2wC9(xc_0d_r;ke{vp_vB0U;9!lBS#c|Lfa0LyNr6W1Fd9Ejr`GfuZ$j;q9w zNOi(Z7+c;CReO>uP=bwRf9Yf;pIgKagB=+95UpEZ7VT2gUKGz)wZ_|9_JO$CfKG{-O}!B*%%oWMui`b5K7%2gT-o{>qEdM%jw~hth@?czd$MXLc3l0FfqM z8jREVsReY3_yStw1iKf67Us~+`_`P~0Wy&qx8Lz}n~=^tfp5k#;?@Uzr6tHUTu}EMSP#5j#6nmsK>~#nnew@$&Q=>~?j}w_Vu=`olK%7D3 z{1uR3V)a;bS-eWW9rjVQBrtM-Ram8ckEfS?jKA!4%t>fIRhgR4tDef6M|XJh z=0$Typf=Ho1W&G*jJD0fu;Rji*iE8B)JmDkVD$hhhvotDcc>Cv$~gn*&gE3pH7H74 z4K5&_TkM0_c&r(ptUN(8)*qXR4Y>sO=XN`|HS@^7z!%(Es8h^@ki7;EyfYFH~cA-P~)VLQ!(iVCbK_~d| zYj$uh>4AScA^5Dq&0BoyVlIXadBgh>u@qGS9##&04(ZgJcVR=iM!J6jkbnj1mW!4zkK*8)q86#Ac7PH?EpV3S1?up^k7Y7D_`oWa$pQ&hY;joj#5C;G~&b%}aQ z58U6wtO$50Bakx6h@c>B7s&}FQ#Ee% z^5jA|Vq{?f-^ltQ6n{_Xdx*y4)1xsoFJqtZl`u{p;|hR(@ao{~8D>LND4eRE&{xKq z`2$$y9rqGt?8R@nA^`_dIBvPpa*2cwoYi(|Z$xlWq}Go<9mc19xM*^w)mp}>Te`Ov zV+Kj+j;vU2EtPJ`;!{qydtIM!(qM?#FZP6=q@lqs|26eXbRreSZ~3|(9GIpr9>YBN ztbL%hg?U}LT#<)KiPr+>&m%KurHJ9CMQG5K9e}g@wrO2uoK|4tU=60Ghz5Nf<|*{+ z9cH)x06u`y53rQi4uuZaC=119CNQ1tEpA_W2&NMd2l*8zxcs6otn$vBx%FUPBQniia?oFzg_Tp(rw<_jX9<6$ebw*ycJzoS*Oe@n?$GxCNt6qjQg6CjFD3x$!K8hIc zd`pcAKQiP@)ygY&p|Kt3HRNB_7>?nrr3RuNBMWRZ{0hw-xL20Cv05hAvSO;TvM?-5 z(3_lRJ@^{>T%L={>!0x2k|Qds{tRM&3?HD3(RaaseGi0;RtK%&tOgw9kjlhrz}ZTW z+Gg~}MdHuUj0qOC+CE544?aUPrv>B11TNK;p(I>`nKFiA^~wLAa(O@8iHZisVhr5{ z9*sGmCLG!iuu>i2o9^%!PFxsQMshu#TuU;=W26ZmfK~@aSF`EJ2SE=`L&K46$Vn$o z2Vso}RuX<}FCw6QAO-+86r)1)exO5H6m-?0QCU*ZLZyhif=PA-0dh$Xsq)>?b?S@=o*lwzb$R-dE_KW zNP`p$lE6fcS$YKwKK(8alGdn05rr9g8IPJm6Zdr-o55yWu5k}GKe!%RXK2Y4WY7X;upU&*=W3XkD9d3LAZ@Y375|YD=EOOzMybNiQyG4j z@)Hg8r+1LSE^iMX4E59!1OAV~JTSP`5#a&2blS)R@WZr$2huRzQ9w(@;n|D*L5Ond z!(7@)5)cGE+s?!frtBc$P#rIC#3UwX4+o2Q{d&@bdD%3`J92M|d5L0h@P#6{ggFc$ zK*DV`88qR~vX`9pmljKPU6{Q}g{Ci5fa=Q%pfbY^#|*8w&4q?EJmFydhF30>C{mI@ zV&Jp91*6QkTNJYsa!FFfM)QjC3VT^2edD#u6}5YWA_kGvYZnpgNvfe6cZmjmHk@c+ z26cE9Dk+ask?`;`-mXPRsFN2$`BfCoauF;4g{pB%CSk?+r~C>%zJPQfUxkoU=@FVW*o`Ooy&BfmzE?eaEyY?imv;|0pL03m$>vPE-8Ly+ffuXPbi5S~dIX)O#p zI(af7tQg#_riR~4;fX|!LH|0Rp6E0@`Av+TfQ_z80%*1gM#jNCMgG!PNT;k0^p~oq z)P8}eTntc=&@rfe;qUG*WQVmU%P0q#(mhMD_@@wWf{e$dLA@c5NY4E)bY^hR2$3SO ze0@hft!0wDFbdmbxIb%GH!(xoPI3i(ip(swmbESaiJ2goA!vJ(fEE*{pnE+j&o)y) zxg7WOaslPnk0l8x$6?<61?(`0LkI!o1$++kAm=c5;5E3Nb5i(6jw*$s95M_46Y_~n zcHOXh)tvDI#G<1zJZRWg*HGAM!+NP#O|Y2cf%Ty-i(KEgvBk`5>3d@@ic)Gg_2< z*)E_`YM-xKX5~l}5Q+Syd{L>cz(xj<+SU#%56KPhg}|Gxt;dS2#!T&<_OwBcY?90c=^n4sJy1PmhN;w;L6UMA$OsMHlZR!PLiI z_#a@%A|FMSBM~BPepO(#hpS6jJ%p{OP#k6fG<*m7*cy>z|9Lq`Yrwob2M>P2=XT_{ zQsmfnUJibhY7z20tf|5S#0?aDtY6@gT)I=5VEy>;zwv^@KPl%A41e~_!{-eAe`49482Fp< zS$ikUD;MQ$^37*6`caY$PD>?+HQq>Ly7rFYgwC)`NrT=SH|n0m9|fm-29Tkc)sLeq z*?!khC}HNyWWUCGF-RFm(hJGkQp<42gmS&QgGM5hH~7kaUCzxc(`C8}Oy7yI8ylJf z`B;>*fKlI$<5MZe1tI8y{QpNMayre1a*f}aLkcugBd#w- z5v(81)xZcoUG_mCrO!rGbRs2U?HSP2&}1TXc)Q0y4 z52ElsY;r*@Lgb$!L)tvoIbZIF8bb=H%NAb7a8CdlR$A~7X`%8;3n-sB2QG3-p{Fr; zN(&yP?>RC(s-wBZnAJ&ZUQYwdosrPH<4R#KZ8Z2u^j!td{1YihrI+n{04n!tug8aq z(3T2-kgKi`T=XdJ1}a_Dp1#CuUnJ^4+RDxg)LsfrMW67yO9A~HZ%)|Zf||3D+5@d! zBb5LLHgrD*ykZhgERFT}%baLFhE8`?CNjrzQjYva!Z5POGg}+$DD#`JV>&N0lyy)I zUk}}5_bovYKO6B4<+q@{j^_bFof~yLi)YY9f9-3pK+&&~)ES?S{uA>ir4LG6^%W{J zl)zXT33T_;IYnSOS%3~eP2|FEbdZMplaRmr&R_7@>SR5r6MKc#-UD#d3}F{XnzO?0 z$LTIk+!OL?%qg76}Z?=OC}tYwXIu3=Y9&;jZub?rCmNeTr0h+lyq34sVk%ICyYCz?mfnB zQTL<9PonN7VDR6M&0#>E$V(=+Wd2?w7Ey{ zY$kM}UFj&|Y`W?Uc4eyg`Vq`^+Hvl_=x*cxS6LUioGNn;K4P_s*J?NBx{bW91NUGo9)Fg zDiMD6OfQA@sQWGQ;&o*CC&4xEu3M2=y5^ADyQF#dRI-wjyArO zu3>6*>6*8cdD@znal-S89TreyXp%Bbb3atpvNA<$Il!O~4%kW#F4cCOIpZsJzqP`) z$mkQX_b547bLK=zJ7T0qc1_cE^-zzZ8~~!mzZ|eF()LR)Tz#nQ>UUSzg6%2N3+{Kz z+=nP!sJZL4tGC&9+uV=Z+9CltimHTUz{)f*}HX`8#5qA=9AYF9T=)U!7CCN-zj z{gINbxsL=!lpI`g<}_ZHr}TXDv^&G9q^@r#90u3yx9~9b!U$JzlH$TnrX$$yG&1}! zq*0Nu7Sw{~_825-X`p*;@9AAmrKkVQE=y0<-UQ{y>0QUwKJ+fB8T2@=>Zf-}>e2Dd zaqr+a^`l`Ax8{xg-!$#p7(ARI-!(ipG319u4l=Yg}qzo#u4wX3W} z+Yd7Q>!`nl4zA4A-Z-FZU0Vw=LQejnPrLu*A0iXHP?1Kc9y-k%;57m4+)oBIkz!NB z)%2SvdTxdSyTlx}n)C){y{gDae+E@yGOt2?Y9-Pcqfmu615UGiSVMFyx51mjNOGvK zvX?JV=w<1Ap^{-cL;L>f?@F52^KDLYd)b-_&zH@kPFCU~ASn5&P5Nbrk7At|&7Hu> zyfX?*64;lJH3K==A$LvuXo7ihG&c;uGzU_`{ct(hN^>&B28kT5P*ucmw@>LpgI4Cw zQqtucK+fzn5AoC3<k^Q(()Iot1f8$;}#AY4)3M|a;T4zxPVuR`}#FweL?7diI zx*3@czj6)qRpeUlDu>KMTd&KfdVM=n3c-@){rDW6*o?m{dOrx@c-fg1ea(n_hgdBK zzJ~uzl~Q5%a3}$=EM3w-Pbg~K6i*t*3|Q79D(aYkzeyX4Ah8S$<}_TXzw1bCmjB z(<}`XS+m>`Y;HGf!RGx?YUBT|FYLDCOaY(tuwOyf1udbvBYvF;d}{Ua^NfDiB+Du| z5NeLh*}I?3M0&rg*s|g?ZC4BxR5twK@Um|`ogPtA_p^MYi&v+}1b;XVo|BO1K0Z)+ zU5&BQmc7BVgOw@4v%{5%!Lwybaq#RqWmI7FUlvWURMhy(_9_E{yWu@9opg%Fg{{|H zSRJBzepjJo)edgSLPjj6Il3sr?^VXTj|_JLsYG zk6uP&xD%|Dbj3=adz`^mCltx*7ye9~-ym#)obATH5(a3|iQCXRIS&h7%KN}vF8PUd zZ2@))AwZoz(#>xPF^2A$YIvqBk%?gmiA=k?X96Dz4$UF;MR4d=6liI4P`MZ*mPS6V z-+^`p{3+hy!fGiC!=HT%vP;NoIOJV&cqjF6_{meBl1_d$P?sxu6^Ee;2$QfQ#4aIc zI)l}o>`nmpy9Qg-8U6bAvcA=|Z|+>JLvOEbzVif51?v zy~XcZZc%ZHBVOXagUy-7Mvl5ZvDUQJ@zxBs829>Ji%{2RfdU#HxcG#JiY?3U;oN3r zz}6c27Bzsv7AOI`Sw4(^DBQrKn~&I1QrGXocgyHv+qbwKwVubT2h6hIhg=i}gS!a- zZRFF+7e4Lb6 zR%8yEvG5uK*FA0EvuqOhEGym+p*+ohx2No_To1!%cmcS-TAox@ zlZf?-M2-C>YMmCn==|6o7QGi@6GL|^A06+)5Vrg1h`z>0$96F~h}prxJ`EC#4j1*f zcCy>(sKz>>rAk_s8E!t8!pR*S>zYAjh%~A~SdGS3fqngCPBRF(xrj9|0JZ zm2KR55+Vm7*TV*(1-K2Yn%y+Wr2WzU;P;^YmIUpu=UJ$bU0=e~7>p*ko$MSf>b7pf z3}tQOY+)WJzLKc^%J~!wy8h+)v7l>m#+O9b)+3-ZlmDWg4{x9fb9U^JDexr8da93D2h2yhguf}d*V7s zV^6>@Ojg(AD4|AZ)xgaEOrvk3Q`W`Oh*h`qxYh7G0QPSaz0T3}d zEbKl2Y#>=ANxGPi+W_wd7_DP#a+mb>u&#QPET+=NnXq_^xH~=Ua`YnZ^z9r83(%}+ zCa>(7lc?+^fQ_R}K;O_SP=bXG15jxTW+8o;(m$v>lx&=C=@HbgQaAVPFkT$hVf@L~ zVLUga!}u*&78O9I-sX|4;83bG0M-Dwn^) z6NRkBXFY-JoMiu<;e;+tW#D5^`6S&pgv#m%~o!ugM7HS@l)k$ z4|@^&S|rd9sAdx(ijr>9kLC*c3agj1lh6PglaV-$eF(aMH2N|10`65sx#~bKTZsA@ zeR+bdlpup`Ljt7x6$qhWGHSH6aSm#o+Fo4l1=SWrU#hC~ASenX3@w*b z_ddiT(sbokDYK#J5~p)vOiu|5q1@)+)Ga~RM-QXZl`J3oq8PoPaY%652l+K zY0iVRC56sl__0*}3c)YL==BVal=)ph!Rv?g%J}O~@%je6e#l=b@oRY9K}7A1gbo3@ z9ySVqAbry^29Ke5$VAHQVuVcYg*)xJ^eeXRv)Kj?E*%R^PBY(_puFr;e9-5CTG&r` zl3P&XY^uN_{(3uJp?|^k9Q^fWykf`O95p5FVLlw7yy8#6s)M`t`-9*0SS8)sj#@Os z=xu)^4H}lpK@2wQfPE|%4rjhjf2BHF7e@HDIQ#S)w1QXD!+uZO>ljDSH`cubWT)$(5l<13j`6b zv*>gROP)xaS;cUO*#P@?az<-1p0;zAf6rlS28;*m6D>2rOVl2GLV*|W7JpfrngLlh z80&@@H}d)$X?*XXxy{IrF}60ilcVJ&&|PR*nI)Ft6R^hQLf(heLUtL-G}F_%$id5^ za(ctL+`Uu|O=^BV3vhOl;3lvNfZua1n+yhFU!>&{=Nt77>=@@{N0(sbi;=QaOgGF5 zjKWOP+JfbsIUUztjLqi5=2EK$mofC?ZYzG1Cs?8lUi8dc7`_B$Q}c?|`R4q+NSzh1 zmqd3=K|t8bZ-ve7?uSb?TWOz;Nyea6qxWr@#{pY^S^W;CuR`!a^&6sTCMkt5Dw66T3*l|Pa(9(7m~3_b5ASX6jBGr_NFN81<`emu z{YJKk8W4{?*M5HY^GX;0kHMnC{xgy9G!m>$Sh$TE2>qw_@ zg@C#jDS1K0b0T63BCt*)Q2<7Yw6nQ+e6uk?IRx-+OS~;%VztUbV~P>OXJ5!Vxk6^bP$At>e!eqB7sW_=kT7 zNAR5#19l*sK4N76sD=F=dqe~pyL?I-5Fd8pav_@8!cIT*Z|CUBtFZy;B=>W0`t&n^ z-f*Z64pE)}`bfJOgRgp-{~GEUbH>^Uu?mB z;16xME2-NdzTmMu3?qLrS01EmoyhbRvmNT&wDWShrEqRY+&1x2X~u~;X* zuU-jwv98@imG~A#dc)h#1qAmlyhL$)7=v}j~N)SNeRJ2DwH1nSbb85>oJES$uH zs)jeJji;KuhX+n08p9%?A5I38|BTs=9Tbdj(ZD#gyhnoe~FjdWbTGYQ~? z2@!O#*hJ}MwWDd%0^5aZC$8ct9fq+o8_0qt6^B_rUk<|5OUC@1z3CtR@h6qdq*b_T0TpeUOo@b_h<@~U#Dz8g&byJPl#HBX_9rmk4|Ch z+hD7}{*Kx~7aZUP2sA#nbGV2lv^!Wm@?&A!eW3FlKH6=hy#qB1p%le|`5CtAshFWm*7-SR zFaD{AV1K;~2eHFmV1da;f6Y^41ZwTb(uv0*&cjnR!=ubWOEER4;TV6RwU|nV0R!Fu zNs>(hoA4<@+?4AQgv4*z`(o@kHN;Kff+ zE-BXIiZZwWx{RpYRI5Ks3B*Y>vtm1cv|=V|-ZBrC@jNsa{HMsV#;ewsN=~jq*}c$w?P^F&DSqhoFp{LYy&xpNYb<2`9TW=Ql`=)h_S)`lla=P; z$6Kz;pjiuqLhiw6X?!no?Vx?Pl6Jf+EB&rAi;`RR&I%ZZ*{_^7YnDg|PXZ~kW`Wz! zEqh0qEp3^3WfxU}tj5MdBZKs?Qnz1;!w=@Pt{9B71*%hP9kt67v0v$7#XYg( zhtbpyg$pT#M!&j~ES0CHfGm)p3SAKY z$`3eM@TCJ+ak)ETQ(jp}z@}^S2pHWm7E22-*9ciIhq*#tPn zv(~!(pZ7mg{{QN)s^<>3cKu?gb8V>v}GQSj5p8sP?VFR<{%2yYgY%; zxA{ozcU?rwmQ_8X6GC~HAxVozZl>oTX^R)R+p)iNk!60jBrkd7)kq@KtStuY-;RSX z@5z@p!3}_j84M*;O^s^tenjC4EMF3ZY)2F!0e?fhv&+2Jr$;J;6zdR1Szm ztTH2jJCVYV2w$W!UKy`=&xn1mqzsAXOu2=(BXLGpK$%r2M6BI8NvD2^Rl*D))a+Bo z!!9Gd7G`(m(PG$;SE332Xk~9~Brd}o8?ZuC+IffA%ZJ|#3z=M;rEHUpy$OK~tD6ij z?ldBA5RjsmVHE_%ahY}%xtS>auPoyXCl;oV2bX3j=~^0~I5ph6ptTt#I3G8~Ps7E? zKyWOA-1`J^uj5R`D{kNEZQ&QJRNDRFB^l)MkuPKt6*Xl&6}t}lZuG6Rh3`*qJ&Cbj zws+mnm7lKHAq`oSaqIQ7P>(4C;GAf-dH@abudfhrng|#fGlG*k6$+6n{SMt zV%~ia26>`{-VhlUIl+5;nB#@;;Pmi}@QKizg)5|JO;ySPEgP`Y7`t9SMeJwbY^C>X zDYOJrj|uwIZ}{?($}8l{OA1w>u)!!Sc{d<{c?$!A-3s0r=p~nrMR+NNQ{-jXLub_# zw#!>DMR*p49dgG+gv%(LDj&npWMe6uCLf~sAryAXbp)p`g?q^RDNRobr^~lN++`&0^33`2;AVetTMRGo+TuD0~aT$qXKL6J$KeI&VY|beOio z;aT|&M%erTLvJxlPAvu&%j1DMmxJT zA5~mw$0?JxYq5^&^ta6#;IXhN18D@tXDyfxSF^z|?>5O9>y%|gY+qr8ifcu$ZJAs^ z`vP!1aXq4qFTK(hzBN$I{`qArlZ3A~(AOc=?1Ol04q|Vl*h~|IB;Q1k9}u{N%mdPK_Oi0j8YfT*%z+I6qYQPR;znBV8G6!6?3XA(i_jak z657s@Axhfk&*$1+%>Iv2g%(tJeDmiEv+vsN6k}0xuu!W8lnp)Woin19d9}Fy^cdnU zM_j4*hjl)x4Sm?)qQDzNs7R#RPkF z95(SI{T9HEox$iS7Zc95oU~YK1c?+c1zr!uNMwddA~OVugdvy(U3^DU$&TDT_*D!& z%MN-!`3w|b!5gt3A+*~N5|{D~vhze+7s*B|OOn<{^6gouWhHjp<7=e%_LH1GwD?L# z1&EMyhNy)v*V)k}pg=g_!c07)P@7>7HEVp;u1wiUQ;oLozmf{z`T|X0e*(`V(zpir z^0FxC4YC)Bx=K$7haOh339QQrS&TirC8l4%PA01H_8*fy0zt|v=LVrON^oO`_ zmi8;&hwSr5#L(JlD)>72+-mlqh;euki0Ocld)@76gx*;h9@g?}UWKN=lXyET1BSoZ zs|Mhf%R9Z+3b-7(84po4qZd81vJ9NpLRGPhybmy`svci8dl@nsd!rBPa$_DKUzMR9 z*h({d*?#H4nc!nmT?zhP5&SL}-b@gR7CjaM=oqT{RkPR09vOoq{-=F&lDZoaKW>VNhv=0(Md^%Io*@I>Z>k@p= z#dlPMoV`7alPpvxE|R?rHKIqqxf^f`TWDrYDLIY2ANEd$tz-~cbW5-m2~6NyXQ8e+ z0Ow_ILhI)R{=dVdm*jJcAC2E7w!#l|*mil?-$82ZTI^WD8`_LKWgt_5B8<0Ce+-%E ziahpyArWX^HMWy4iV??epFpO2@kjq7`pnC&GfUfu(r}X%u5E*D4c8PL=j!JJT{gI5 zT}ee9M~{i3US?|tVdyq`*#I;9-2Y!?ClG``#UOxOAz`pRs20fWr<1wI2Bl{;d$a;I zTYzr?8>;=sp?I5#H#o9>NnqtDCgvZ-%A25m=1vqu_9yIGUXWCWb4+}Yh{={lhu>wh zDEQe)K3jmzKQHS8XpwoKAQ-TcI^*=H6UI)~;6dF<)mYE-!l*dT)N`i$EPLV5-@fW#@q8BsuDYAj-cJ6(0btYnk!34`0Y zn7D3Vtl6h=dYsomdY}o=;5!3lTDUEMawR{)DCa;b35S|dN+i^YzuaZDhj~5)mU#q} zf8o$x{+;UTk@HcPSj%z=pfQ^tCY0^TpwN*fsCBSW11LoNI4J5bk_?_jO*LL?kZofg zN^7L%i+Sw(Uw|S$z#j~aFSAK+j|1PVU>PxV+NWG6g>J#rz+Og@S{IS8MU@~)3D0j1 z_D9UpY!7Cb*cfv#Cm0GFiK8D0QH?9!GroeTX6nu1jh2LcnLKX@_h}#O0kg|SpC~V) zr7}sqzrj8NZO1g1I>?%QDbAX4b>+}cNL~4m<0@-KCVsj2(eWh8gWp?77pb;Z^uX^A3*fWbe4mf^SCEdr&B5~|;%`TIHGU79Y3Q33dFW@V zPB5CFC&rc|wi=bnD&;u$k&NxuV#H|~+y}IIe!94#f_q6g$3yvi=6?&a#uoXc4H)wj z#BW^y+=+Co+`L0Y_4(#;$CXFhp*^FI%h7Dv%_o988?6z2VLZV*n%5K zxa07D%;K%sKZlE;gs&K*`?#D1BFeOiq<|7A}jE5zHq*gN`)8u!1b0e3(P1wamV0(^dL3d~4Lr%jta9V`12 zOUY9W;3l65)2`0oRu;HD#7gOi-<^m|>*{{KGj>~VWzf~xK-B5-LO{n+@U1CFa41J6 zw0Y3Z=pFVQ9Ux!XifH+H3@xrF^|H-}38lCqUD{wCn@HA;k>4OlVI=tnUAF;ycsU7L z14L-|R@)mqKy<*a?OOul7k^onnooizR%7t!Rpv=iGi~qKT1mt_k}Tp%ZH^99mN=5$ zh(8Sr0fpq%{~QE74p4gugmGi6?bo1MS{1IVRXjl#m0%HAkRIDD?Kl{Gqjmvw0)!ln z3eS9xPqrKZI^Ig4<9B}}bQB9xwKYRr#0-i3p>unk4x_Q{^N|>K3tZu-^n}{q%d(tS zEI3G#zU&_a3OYx0Z1Pq|@K}yqin)^@9K0H=$LmY1DQ~7pb;3VLtmca+u|(o~>D=Kp zH2UmrkT~}J$)ie#hduc@-(yafr&89l@l~XxxoA%mNA4}P_~3XyHWl{8+>JY@VVZ!n zW-&NZ=H|x0UiR9nz{n|Jgq1%>k_?sc-6PP1c-eMDG>}1L6|j==KlGJrk@)&9qFiQ& zAsu82t$^Eub{GppyZWk&%wi(;N>A8*jMaHa=0NZiJCaJ4*}Sc`W>D%W_+IJc06k!= ze8=hk@%HwCO;*<>a z6Z38<5|j3%_)Mw0PPUSant}Kgw_KGxBaoV2TW7lXe?u5K?*y5QibMM4YL;aIwf9OU z6Ylwto9_=87r0vqY^h(P-$lQ_3(C~vOkr&ELQx+};%XV~j2lz~-&lUp3w$1<)*1IX zj0LWEHM@s3gDr0hwKo?mi0vGh6JOh2bj(L%@j(2l_N$DV1B`-vg4oR#uHekJUVhE? z80&5`C|kXCr?nZ7y;0fHF99istajM&C8sR^+8J$i{@5>NUbm^^vu3@butz=ZLR`v? zi)tPztY#APi%cEZwDx(Zvo%YaDylJ^^-3Q53F?_~jN+R(NPRF;LKvt9qTvN&Ya8-y z5&PWa2hFo3zM3tPH`mY_L}K2O{4gPEgbdYNAY~QHIlRKl)06N>pE?_A(0^HfRhcG7 z^#_485@Nc;uZVs97h_uEaikJrEp)dnr-e*Y%6m0*r-7g`A3wpW5<)U@*}5^`87@RI zt8%GH7)Om>lbCo_F>qsno6N7vAFSj)@Tw{5K5R95z$V&kSe{rrsxQ2)s z@+4MYwbUp?i5zJx>L7!0NySlj+ge6g!&2?1 zfq(I{!1?T(J--p^NC5B4WOckkal9+%Pn2thu<0a~)*sG-f9E#vNt*W);P2 zoTxRX0VwYMxNkdcHEW`~4SktQzs1=CU)Ba~7K$!04MX-Ga|y?`G&gpR3Wa1Ke3z4O z4~iTK&ZZFygWyVj$EVi6A&tQr@39YMUgW~7QK7KFUk-e%yE7P%ew;<=oc8hBm2;A5mC`%SSwMv8lY$n1j0fO#;N5bwCS^%w>Ucn1auwJR#|M0B?3*=2L5%Qy6Vk|}$FHIk9*kW(U`sB;MBrE7q^z_fr20nWV!3?hJc+CJh3d%3)sfEq00>QFK>dZ}`1Iu2;5!gdn{t80LUNpi4iid1Nmy`@nN5>o&p$e- z&bO1Welk3zXW3TjhVWZ{N^3c=6gL4d> zJ|FTqk!%OXne&Nu)45J(%Ra~cpc#&O72&FHe2+!NvE@Fd5m@D33Ib|9>ER*YYmU=q zAt}{Ja!I&JW3W1a&BXBfFVh${+c>`I(~Bv!x!Pu1FN-)+3~}^TCY;#mLZmHAG@+Xz z=?d1%cU^c!jZV#w?6K2jZDv#VfG;cCgMyCjs;D#JDtu5tDt4^8uz*m@ay^P<43A6) z^_fL10JP*$A?|oZDM)eoM}bBPuqM$MBiJ64T=uR!y$l|v%|qqc5)o8iV7B}8M=m1v zodfU;vAU(p_Lh&AuhHYpU>d5EvdmABFP1NMHBDtQ_jlyAcHZnUW(cICnPm}Pn(cXW z2#Em5y0?d^g|)I}-nNgGga@AxSF#qzTgWw2N9V5gM zLw{)7w{ACU32sL49+BQ@ttXHzQt#M)yC2s)PdKlon;G1ue!^7JP4{OBlFU9GBn|;d zH*_KgR|C^Aw%u8!BQqq25gj8`Mbp@!5DK01(H*R4>0FmhaD|C#Ce^4{{YBehYe#c{MXuLqD{_0`U2`HFOheaZAe6)iImi(q8kG0WMH%x z#{(pF6jtG&I*=@EU-nEQ`YaHS2h_i-EQrP-2oqtj6nEpJ?yYYn=F)c0&XYEPt-*K` zM!Cu<9IGILo-Ucq>#~$D-sDhQUeS6FZnR=GA<(hj3QtaXP{p zPxQcp=cC$l4M`x7dO~U#pCKPq2%Hpgx%Fw9CUBl8I0HT%Zo=|2z^*K!#@5ka4+|MOI zH3RCAzglY(js&QxInrDnWAI6A4Yp5yDfj3;N3>45zs`zIYG6Ar%Ie&VI6nvz&!iEZ77kY=wrVD}aa-fnPe8mSxlnNwX) z$xSw_fc#DryEB#}LlhdxQlPb>wseu9w~; zL>{T|y4G%BS;ov!bD+bqqkX=8d1n6A-IXLlUR66H=OX9I_I6D7yEoqG=BWg*L) z(XYy%Z4K_Ndnz11T7pF^GKLF-J{`H1qf^omIXN{rG%#vw;mW<@70kgvny1cB1SruL z&f7=5^B_<{c9FP~vM!t-cFu3;2(T8}8(-|{SnO$j$G$t+{Fyy!Z{FSA#J*K&w-HU3Cnqtn7tSg2P;wtH&N=Qt#YnN`FWCI=l z-b0@*;7H3JAq@KBUIC7Ki`6R<*{O0H%Z?a_Sclr9p5SR?FGrL47t8d@ z%K7urLqzvj_gDL8DN1ZCwyoQ#iOKe1bZ_;#o*bahR&=@Vc!pnh>!bYT*7J27IyN|h zY>RjoL}o6ClrAt`_{<|io9ACKFVKe#)V6u?!kR$e9(lTQ?t(yHk39KmE)DcOD^GQc z7SHW_j3=Z(*l{(!Oo$L!vqwg{H=aAXd(IpJXzZABSyVOjv3#&?K5fxeb*671g^!G! zv>R>GI-nNn?*w*R?M!;{7sik@D;R5< zVq=Cz;t~YFw9`%&Q!lq4Tc%z&&IGs=h_N@@pCNLlaRD7`lW_^BtR8Z2nk{#N7@uJ3 zndw)5XIaIT!DPHoljFrtmUb0l-J7bXRJ??{r%V|i8y6&Z&*$bhqaINr==!V`@-?PSxtj~}5)VFq7>+|Pia(nJ2vB3?y z0+n3}q$g52&oT|9ZKz$S`RWfkl?^_oqinNoOMeMUd$!nj)+G{0P@e;F9S*oG#Vfo; zck7AkBRAX)#=E=q5Y0VvnM=oe@pJ1KAKQO=n7@e)lMfTfzCO_|zp+mps~2|MK85M- zU{{_|^u#QhI{qU8k4|acnYXB2r=>4U(dZ&0n)S#0gSSXNEb=D)?l!@nXJ|Syu0C>O zlQBc0dItEP2p2ARlEXpqws-l9LMDZ!UNw4K4zs4Rt>XOR=8I%sQ5^G$=FIg=0`P=D zn>jOinxB;tIUVP+pwu5f7L%xlD{@$8xOr(WMtc;F`BVhgr{u!Kyh-_{0}ehXSL%X< zV_f~j-!z&n*G=w<;{dk$!y{-*R(EQDoH}DI)fx8OO8D~zfES! z>`fSK^|5OQnL)JHO%E0~VUZT*p@4u|N@n_~bw=oB=~HrKyt(lRaRvEnkG>an$uu5N z(=}-1e-Kq4ySLUHa6j6`Zqe8Zwo)3)SmOk`z5nKpa5m^I%~XsZN7UDF?J&h6o`32!fzT3U{7+tS#3X-!&b{EqP8Dx4#@1=!W#PY{nX zpw0)(Sf*l!&x|h{bboIU4%VrrnSAVpfJ9UohkyCYSm%LX`VuQ$XctFRJ~?pZ!bz6@ zcDgqa5%Rg%cRh9vz0P*pR{bzIyVw>H0@L{uCsvX4NtO<$v&=X5x2K zWh%)YE?z=$yLwwcIq^eNuksk5i(MTr+@n0Rc##5q>LU$R+^HCo>eR1khC0=Cp>SX@d40v3ru!A9 zd!lD?eDl#AWen}&NFj7zm$IknF83=Pe?QtUI^QzE9sK~4TfeH+&jUPvpuGC|W1a_8 zInQE~(>zz_Q7oSKCkNC7islwT&DP(_GuA;8{pxI9u&lfb8Sm)Db@WKr`<~GQ3S%j& z3dvCVroG4BtCD=IrAC%t~BvR{4}(9eZivGPY=*$g+JoBBt5oZi@efh%kUea z%UVnF^s*OmlqkyMP!z%c$PtX^=PXf7J2uObK*&#de)TZpC%u8u`aaS}9}P0UOpK2D zxrBW(!vmx$4n@whjKBT3%Y=LgN_E2>(&>KBU*f{C?xfipd68+yr;69`WSvD7mt;IyrWJJw-7yo*PW*lL6`Wp<7~r`wId`>Wcd|N>=`SH6ON!J%;+?Cm;t$CAx!| zweNYbTAN)WV0|2Awk$g$b7>+Ko*@vrAY)Lx5&Qws=`|EOv=wrhUF1B3LEb{ui~miB zdw$!&c4zcMv0c`KAQ?=Dy*WEgtvjV7!l<{A0@#2G4gDH+sJlS`y$&Qw+C@z}vRT^=A6evQ?QT z<$lGevro<+ha%FwrthFjuxX68fwgtGsWsMr4dSIxgp0M{+lTZea7yZ6lw z?@R68w+!zq_8z^1MPynvrHpQCxr}3=lbtN{c!T9N&Q4bF!Df~jIBe-3wyn_b;tg=T zl3mCuq8Wg%jvX%bMN}fzJ2I2J!F`qlj>+^ZbNFmQo^TXgjQ9;x=p=LgDFeFLa?1ZP zawZjh1sg(u%RD(s-uAqhq_O^6OuY>rB82)`PI1JT<>&W8bcE&diIw7YonvF2g$Ju9 zS3(P$Jv~+UyjnTG&0?b-oX+@3+PZiuqQV2M2v-G8IMX!==pU^s9lOGOgh5A&p z#1pX4*&&1y!yddSG`{biM+Zr*;It8jPG3rTdDE2W=#GVB%Q`Dx-Y;CN zn$oo&srIvT0bW)Tw;KzmbiJL=fj1M$8RUU&W2*_x#ZJ#uc6y>qLDJ+m>>{2aRHuR(KKbPO3sqx3$0{Ns92JZ8%jP&l8de6{E$iBvTUYf)a%h}%dVpZ?nik+SJCf@^EWWCSFv*c z$gj3cr+ziXeqTJ#s#y&+)+&5S*735I{;4^NF+30Fv8!oyjyvIoF{oo;$4y;RYmeM? zg>q)hkabDvVU`OasxeL+yRS-VrPXL~y0>=bX~i_j0_D3?h}gi^YB3Ty<6#~-C8OKw zC{GDNDtfJ$TjOoIh)L{=b?QaRPc;>WF5fh(=|g@WP^;W+jdbsK)~P!YCq^%VbRi3r zIN>eK>ntWDZWRUD7dJ0R4{NBTEAfDQjsNrw$RN*&IeDCf_z<{3Qf#uvtfLedn&$XS zqx-r}SJ&U|_U-91#$s!p%#NeZlXN83IwzB}`+ew`$<416F^l;om5`@&p3&?C{S67u z5jrk_0sL;jW6uhREk1MI-W>C%d1kQx9C2kpj~Ak?M%zcz$7hSBG_EycvpDwsKc~2F zWfym5ZgCb_;S!vpzXKen^^H9O@Sc zabvQ%^67gWAUV}3hgMaGq-eHQ>~Ob8pO7@u@ed1Z(95Kf`Lze`9P8}>*<#P ze!Boe`9lKJpNqxx7Pda8KXE4$))M;wv%aF>oOR(xqeemAjFMc#`{mDd(c;| zdpEm_qX01=t9_~qIPBGiyh)?K*`PmOz`(4L~~=n~?6URpaR1 zdFF`3V1VBxRK|WO`M7b4hU=448fG(dKbf@Fzl8BOI{V(^H(eB)38Kz@NtZMz^HCG? z(b78gC^e;@#G1Hk@yragsj%8C=z^`Hu-2)V37f1*!=)?mTA$fPslc;BS)E#9f+9Ul zPeS{4F@PN8(6k=5*@7mG%#~VIr0T)M7_=KrMKE?8STa35B4f1NOgG2qC%6>R#Wh=w zr=3hLh;hWUBe>h%g;|&{huQxx=U${w8{B<7|OCY95BdQwXgGwca}K*s19aj ztvc&t5;T#Eve7E_bzkCj_ATb}G}BlL52__r4u^ZIEUez(^a=1;AP3ZpERX|r>d71s zYab4&rB6zXv|#ZAs8e?U8G0V|0A&EAYUY=0=_nxX)+gy5T>DIV>nN|$<&W{8S)>|#-?RJnNe}v%z0_Do$49{xG#CKx{6=- z)`8?HSOUOMr!kn*iMTCX&6FVg(&X;Pb4E09y`TA@iz=}}naWVyb`{;Exsecr*sgX7 ziTiQBu!?M0%8fXy(CkrIWUU{1K>)S_Kq&{>(#tw+wN6vX5khM>%ng-<`jmxPIuS{L zz4AM@_6OjdJ08V$`GKE||^*T~o*n;%mB46s%)no|g z0j_*Jb=-a`U&DFrPBllrp2llCzQ8TrC8$Pz^&8CHmW6w$W8+(X4J?py8B>vOq|0@u zHkMFdbq=MPol#zyEZ%z~yEg(RCw`SP117J4ZOH+1rZyJwJ$bRQMgMxUijfa$2g27Z zMqbI^l#@SQ%!3&)tC&CznAs6G03?jk9Z~n!bAf_QnL^FZD3eXPpV1jz#{$tAzm^3= zXZ**$V=&Q#7iR&{8MgtHZb*W=hW#RTSg1&QxP*n>8M$iqsm=3ouv)#*NkQ_}YiSAK; zbtzb+`jJtl7!hxmG=(ygcr*oiCV_w-$!75wnL@x}`9?973>ViH0#gPP>kAF}E<`+> zLw^ntbu;%Q>yEosFh! zGk3arR>69H6GPZ74&4*}hHy^z1o;9D%S;*$Y6wqsYPwi+4E)Z@AY%aF>1l%5cJ`|W ziRAcsM8x{9(5qwdwlLKo55JFdp;LJyI{X`=JNYnea-My*tUvv!qk%a__*}NBVxG=`GgB4xzT`EF(G?>$a%9PgDDKBxe@2^M%^RW2kLfXi?f( z?)4b2Hcjhr6;gMCKe{*W6zcAa@SG2-@c9ha{w!g*nwy*ziNe0uB5Uu?dbZ{j#tDpU=c;U ztus+Hz3DjPv(lp-MHe32JAFb`bzA4UPjCqA`g?xrF>wZnFB4y+TCtwp%j6=z-#S^^ zb5I5Ol|6cQE0MaGe}?xSG1^JHk3w^UTInU6q+m0G!i__F29qb_;HPUJol*0F1gq~nOm$>i0Z zPucark>XIoQI1(_aZ$@VX4kkZ_S}(6qlFzFqE}WP^ro8ePq<)!he~;HcV3&yPkD=~ z%4>?&;)dZ$ZMX*32wws!#_SPLS5FoxeHDLUp7;v5TX)lq{u5J*)xR)irkN5wAXM&x zBV*kgkE4flTy?j-{kS>O7$5v623XB*-&UL5-giMwy0$QUa~Wq^6Rzn^XBw}yykqt= z>N+TOJ&wB0G3$D;=)&FCVznDw+najq%VyPle)R~V&9By-WH$F|ezie7+y9}Z|9+~O zyZh{qd+&rvgb}?>Y~R02+aG@g0=fS>`a8lq!*{ILf5>;Yg?Pj-&@|=scpn#knb`9w z^&!jzc!Mz*k8XC~vY&GNmcylbnKUt<-<8IFIk+=O)Z-*$oc*~mXc-9C3;dahwy)EJ z(^-ni5_?v@U@w0N?8JFn!CPMRYdqbkpX!aa5Dzj)-RVI(Fo$qviR<~?@-`#DJQlNm zPV{UBnVXTh!)TL48I$zNPaQN*?9=>pm_oZMypJ~)#=VaxmP_>14O|*n?%nLZ?R3Cn zhf~pWOk?p+#6oiFUW!exYk%_#*&ueBX9!H&a+q{B+#W$r|AK#;v9IXL2~XZYh0(Yg8k zFzCw120cw@r0WLR_uNaR4t<(>LTVYP0q72U?}rj@v*U2%LWv9>tH(=0Anxnjl}hxP=^ zJ`Kj#&Uogss;aiV>-HrttLTQYP2PkrmAJx&@7HVYM_-CJZa%bZv;AfJ^K$9*xk2MZ zd(CG1;?2QBuLjHBOw~Ldj7Mg_5sY6m`#(crAXRQWH|)8(bhmwPBI11` zvDW(xar?NmZcm?eU!A;^b;>Pv)(7GuOi6g3@u_oPh7~-rWAOzZ)6+ASg!|Ok-i$uc zcpuaA_u+DuehSPz>YuL-!Q2DP4JM4ycw1f1{Nj1=N%fx~L-G;zuKb$D{Wmefu_2+o zNaOmG=}XEc!<{PeCl0j#;osT25q(ebI=?3T@4f{OKz4mC3Qq<=#_axd z8Fy2L>_qAvjyzJKwci-9J`9|whwRW04*?!)yo3M?>2e*%i zj7vrToQig)qR+_Yj(UKYBL}z7j2xee?oLHtNJV#q?ehIrz6TF&@65|iDU_5ONU<2; zdYl$D&D>h-VlWxnOG*qiof$KBe8f3xV#I-~@ioEp{Xn@vb8hrN`EhR_9Xeq1^EhM- z51NxcGC9wd@6!beSu1`8@Bi%DFw7OU)^cw8{;w_PCOjdCr0^TivU{3si6i!ha5CGw zNry*{7W&mYKS7QDolX|_CewQ5mXsZm@&ld1Mq+l#A4t&=6V{(k4^-dMFh#&{P$1h` zP>ue%gms9VFCM4P#3r!`_{~c}CaPzT%19$B2DfI73eGOKt#)+JcXBjPT?zVQj^6V9 zLcX(F)+_sUnRpzkUVV*|C+t z<$mS-7P^5MbiRQr?rhCK4Bi7ofm#H53x(AfKJ_5qaOnDba+;Z`I(kAd{;bf*kNAt} z;){Wz7c7+GZlSnfxdzD!x^33#k{e|0<-`i>-ektJ<$R)84b-m|%akD}wAI=r;+rP8 zInc$XuIY?+F$!I-CsrL1xX+Ua+_;-b$ZT=8{r*IZIwzW>W#Mwc9J80LNm}m z)X>EOjYYwNz71%r$mkDS_cdUBzCud+DkW*pj}ajH&fTJ^KmCIFX}QGAzKVRu^c}r9 zKR=)@1KzA*(bHFgEjlvo-h!#e31(}oA`rUvdjj!7Rh-G;=B_0on z+5StKP#=E{;02~$|8crNceE>@p3A)E=1P#uDw=XxdP>nh%>cWjXR`vzyyoVu%`Nd8 zfN9HMwn+k3T{)DU^Qk^zI)oE#~(efRj ziBGq-3{jXo>PZVgPI8KoW>yXe81Biza1zOKXhd(f+`;AsN`xm;p$1+o! zh3>oJ(?Eyt9tp6Ue)0RLno}9F>JFY-%wX1ivU?a%zYgUTt34xfiv4GujA~Ihe!wVA zkG9NCTiTiIE)sK`$u8?=OlxPdzF#8|(keG*G#%ix)+bl{#yaod zO!w-E+|M^g&Sq&5Sr0*?$|T2x7Rw+Q_Ym!cBkFL!u-aNvP)tO`MFp_$!BlFe+_YoN z78g5xnBE^YuZ^tp`%|wGgyM)gFb2sd?v8YPA9qYkLV5H^(|Cs9s=tUt9_(<9<&yLx z?asAHvAKLq4kqPe&LPnk#i0Po1*#4c)I9?*{`_s`(IQpCl|ZHyR%% zn^=OQ_OQJH#mnE)BlB@Ued7Tk%-t$01HJVyBI=qg6H|0--&WmUagV?Yf#d(v&}GVY zw(V`Y*qAY$=L*N|B0OURFtSBP%&B;8?LU&Iv6dJ*gLjKic@B4wX3pSkX+ljrlg#A> zf-X8M*7^1I@~$1Fq9|^h<&+d{I?~1XmE7qf$9(jwY6d8-AB_>l7=a}+0e|C;j+90U zd*(^O2dSFbZR*tMU}o~CwU}s@AIv(-XI>bfEw1XlJKs`*>w3zEE!80YPLROeV3qLY38y3o&Lf%89I$jFpm>!5Y&;os_hk>Ze% z*IA)4t=K{r{UWqWBX-{^J5G6~3YDhzyXN&L$^nop6Y!)D|5W$N(Tpe*{aa-(D-B)a zSNrZrSG6d5aoUGfE>dZ~Rra^k)0uR4bh2Olj#mrsI1}&44zH_SlLF6k)xlW*`Qh_% zlawR96MjZ*aIU9`#n-pT`@*x150CbE(X$Dm6Ucbuu8CY)9l5AFGOao?wK`H#9Vx12 zbgvdtM$<;gv$2#X$FXKk;(*zo^3nb4#+M z79#3|BwuLlRNUs|O3mz19qad4bLpUJ=ovOM)yRk8GZUT*8@C~Mr<17X(gAfkkLkIT z$@Pd#r-n{WPp2Ll8VRTlBMq}44+!K}avQgGmY$&+_|>Gtj426kbO#Tnf>(rM?B1f~dNB6z zIHU^urnktpSn@lwCI-TV%cIj%=l}bKS+>e6_4-v^dABtnW^j<=U2_X9pgISHvfW=H z-yBv4omU1c9RJ=+uETD;=R;EvVm&KF{@+nbONKkDD|MIb__EYe%VU#5(&KYneb|%G%IC5!==&p&dN*MntxY@tfYaXC4#lq83YD7Cd}aC;iFC|JzMaHdwEPXZcgR{>IMjp1(PP_?v} z*5an!G%L@2>wfB(UNNK1p+?+<9vmr@M2A|sdq4U<%kO| zBVlM2ju|m@C!C9)B=cxbfy~5Thi@tgSjG1BGOy~RPM0#cw7H}^p61V3^YScr>jcvD zeRU>JIoK0lcA&>Q03IK=X}vEsjsH|aTB>ib3=T~dcB^IS1>!9_07Rng4FG)VPX6{y zh9ov7Bq-6|U`5A{3WR_ww#`-5@|m1;UXhF)o#1YLmPcGejoV)!ePqpmwFEh1)>)B~ zS*4NUSznA4&H55|;7#KWyz?=~ogHz^Iwv}!mV`dehCO>D z=YKn)I`ILkaP=Oi=##~kzoa_3U#tWI=~G{X{Fy)7BZQrjCOsv`Zpw8Ynq3s<>O0-G1Pktl-C_iTXms3bu-UI_G(4K8ps}qB;di+O2AaglVH5`O> z$oB!6$<<=)MeAGkqLTv3l>=vPgsBjK)@5LmscdS7w%&b0=TbZ87P6Xj$R zk}_A}!O!yL3!iCCXH~dBd8k)F{b4B?%QYY(VWF#%`*DJNmnC zOJr1O;j4a&p~~uV1#0^9=`3T(GDnJEO%~NUSAtbovd*d@jy{8Q13Be$%2tuUVqO_R zCkWaHIg)iI-&oO9W(O{5>6a^>vc|1;OYryTLz3Ez^zO5$&b_At)m*Q4){k<@1EyT2 zih6(OGsYqj#i#>;4At2`2X;qUXX2SL@<|+tf15DRTh^LTKGm~QGi-c^{yw#NTC?2a z80)l)pNII?A#K%NAQG)@FooKy16=-K=TR|R$%0#2`g`%=wkxqnh~>BJAWMl<(5XMgCtwXt-1&ve|*^)Wj7j zN6a;*;BehTkkK`H9iGb8y_MXLrp9~7m1}{)REME1QbwO1 zTHbTIR`%5Vgc#KkMjNGJ=&M|4L+9A>fY$CCU}7#V>B)3Z(dAq!gw`xM2Gljr2z(KS zh*6=h2&rQrRY#l5KEWzIrmVAKATqh!>x!H}8+bU+0zQ{I9VbefF|UcMA7nk5oh`e_ zkLgTw7Q7)M60=7gW}VXGm|7|F{4YyoJ(Zo)ERX{m(~X5L{G#n+rOZUp%!)lLMui@c zOm~ureHm6F58ZB&;5e29V%UBCOmq-ReDYpdAj%bAX3H#=>Q3&Vx^w}AhJ(AxYVmu5 zpMGKkT@8WtCc^B7rY&IB@rDEl9b;6=OJS*w+!3n07_vUSI>+@DmP4Zy|BIh$DmAAc z5y+Q-l!V|@Bn+nNBPy2%MC72bxRW3-M1V1HkEwPIgV3~0^&8XM4hAA6hR-R7>5XbR zZ9f)%#Xht}zHnuv|pZLinokUR^=Oq#Q0JArqn4;y1Ypb z`G{xy!2c=>1RKv1S813*jXR75FIN>H7ZDPpeA2S|{vNRT!)QKF{6zO3v8o45JHLpz z+=ZcbE0aASZlQ{NiJAptm)Iib_|!LULtq=d+H-EHJXiG63nmcLW>X<|B7^jQVmnOR zsgv0z`LCgYjct$}k`(dt2Axgr*x;z9u~_IZ2oFxtdm6-R7&f#q0XomohX$P}4Pdit zqja`Wmgv2F=S&(F{hgO`0%!N7?oFd47GnRfQOm$fuCi9KXMYc27P+K4a&C2Gl<=pP zRdccyA$3D@dIpgdfYzgDkf!x$Oh(DG)#Q6bk*X?5o(lNIIpBK1P&foG&V3~rh%wO? zqU~_b-JHP2(@bcUN7iLoK(y^h-%TkJQ<^`IW+qTrq}U&JG?WhD+Hi#Rp;L)kL+j&# z+?lIe23s1Ph%u>E)DdP|McB^88=Li*$!+D9e$nHG<}-*iai)yn^%leES7I9Y!S!wr-(JZ-gWxJj)C3=wy*wcUwJ3?Rn zjcf}|kQZmD9VZ*V8YwUNa*dnQ=kFm}atir!0NsHv9&+~a=vObHV#ls^;xek?)XOG- znPoZ+th(e&NG_S-HUXY3$ateuJ*;0ta*>N)-OI~xiHqe@M_Z0^qqeqKh8|(u)1ZGq z$kZFXv6mQ%^~j1keYv7PwB!+NMn6O{)~UfKh1o^P62LoouJ>ibd>a_C#NBV=YcTO? zWE1QBA>YH`xm@GfVBwhvo;4bel|0Qtai@u55-22&Cqg6;Inn2Ty80IdSiA~>5>fF@ z3k@-e)VU@a3*uc?szOSuiRWb!v+-=LWZ@A|TYwTgr)1&jqd(RA{1(LhCY~)aL0BaI z=!Zxl&6M@cw6JQE_qz2VdA?bm1M6>;=NovA{dr1kwm_i`tY5?L(#R@fjDRA3uaC_Z zKwIQ%2>j)t9W*Rq#`)4yAYErF@3rb@43m%;Pg672@-a0-m)R~~pVMEj*I#vsEBG4D zPtAzvPg0y(&ZoX2`qOzifw|JryswddOVpGzxT>vH+`wiCqIAbxiWMiXKnk#KqMU?l zhc4-EWNv|y=-m7F$w zMGKd^HBxCqM9eF`z7>Fr^@&^W;eYJf7r3>>v9vBxRSbuu%k+57j14-YbR`mrxug?S zb>^$SaD&gqwaIR?O+?zglFskUcF(_rH9}0HfhOY$+7q*}{wb3jsN=fSp{qv)pPZ6Q<3q6PVbMYc^U=hr zuK6@wfQZr;(&W|;AvW*K)Vb$of0c_f_1CjAUqPYo&(xnMWPQf&Mc>e$Q&{uOvX}OK zNZ+;CNoQE?u!hok(3GsS*vpjXNIG?Qw}%UsBx-tVed=8X8{tu8b>pmT-6^Y^N;X-0 zAxRHYxggverg*nc5go>ZJH3_oGMSTSnTUS!e;}&OAWBr7n#TTv%ur9QHaz&VvG(thB>QdRObB>o`HM{!;dyOh;t2 zhU7@KdyU@lBgipbjGBHBY&n{@-`&;+bJb%c24|mYBXY=2SvyzUf>?Zs6hc|vtuuB$ zEn8;BCuSjA^Y@E%sj5;po2l&92ZwYNsX7A(YhPdb>A7jEN@ga~{gN-mN7e!OtO~CGm>+U`AT^C-l`S8LQHX=ov}5^uU}2^&pp-jE2`=zLEJN zvXqT<^Ydred-DneP|QUlWHj{OGoR@u(o24Fv(zWs&8ww<8k=H6^}*0M^Camh<{c8O zaywUP?j)Y=Wf%qHZSu3lY*rZlkeM2cj|f(DOSqep6B?p)F!qn5Eh*i$Zr!%Z-AZ5i zwe+GJ(kNeHRt2T}=;piX7;I`z`qNMK9W>I`Y!69WpOH>6i>o&(|k0&H0p$SMmAz5e%sUU~+wRu+aZK?X&nq&LHw48pB z;hRh-?$)Om#ucBqTg4n(SGW1gXgxj-Tv9+CkxF#qED#&LBP5MxeK{XmHe64uCBe_fFPOCT`8S2^Mb6pTENm zzv`ClC87HjUO$&^Vc_S{{T%u^+DBUOKBY-rE$H$<*CxECDP$(18w;aW@QG&4QXQ9l zFa)IPgdS_^x&dTlc8FY77wLR-MUb$7Ig?D9;#2wlpwtWBpX0gP9YYWy`d%mtBw$O+EJj;0=QL<$mByOSk;^&CEM;W;?8 zs7{{h>m?LtcWGCwbJUQQ-4~ykaqxc7$>lTdO>F%A;+u#`>n&Cw5Bagdv!dsvzxmYn zJ`duY$U?v(uQRQTP&eV;liY<}WA(41r>6?!Vw>jKllW_k{Mfv}hDE(2GzDp)4u2Kc zX1TeKDJ`WgAZy>ZcryK0lBZ$JVCmzEeL9K~J{=RCksPm%14z>o?5R9@O@>^KMTRoO z6QPqBrDN7h4OTtn-c)(ir~Ys)8tmD+PGz0ja|tUNPS{r=3?ob0kH$a5fR>?Brdupx z79O*DVq~9$D)q!>|L!c7Y3nAa&}mezo5X9PBh_?j1$#CHu~ww9a@rhU2Pcd7&${`o_>(-bqq19V-qS^?i7# zKH`Z!Yg(=%UklE@2KPkuJET1{JZn`(m~!veZMHA!yhis{DZR8Ow*P2s@ZzQ`tVWB@ z#RvR$Qfz@Ock-k5v6>5ne#?Ou_r_k;@u#Dy`ugM<>P?p*cei5QPKEkeytCdM)o} zuQWT`oUdg%n?}Pm9iNBh@N&I9nmeZH3)@xoNOv&uLC8VgC>zco%>N1zqpjD9#l`Gw_=%V?MdnW&22@Tt#J85?@Fz|N4?m6 zuph3fBE0XY=xG&=M;b3$xKI?`rI9hA7AHW<0IDz3j+|oH(@HSsNLEE%= zG0BBSck;6EHA!z7$AMKd#c5i*kzS8DBPaNk9a6gf?jZi-*GQai5%V|PauT6$O7m=i z>SS|xbTU6Ya*5vU%kpbw@!%~TA3`)A~eqSUS^WW49mV=G%ww7;j`2xn1v-{ zq}t9$nIppIsP*Qz5vuH5+W4Q$FIF@Alcx+#66ZwfnGL3_MiKhuZ;x8H6h z{FR{sEYyB=LYfwPbfJ2zgytReM4wlMuvw3pE0Gl9di^g-rzs%p40kIUlr8j@G`5e1 zk$R1agw@_5kZ6DMT0DHt7BZvNp?YbU(*f1Qh=ZL7%6gxg*pT6P^8U~s!FUvcESfdQ z0lXHhM!`S4??#v%+Ao0r17N+JD-MrPZ_P}l*1MQcHjHS<_LQsD`v}O?E!Ate6focN zqK?lH*rh|P`88eCdYfs^rU8}0T^J7x35PejbbI6)d03sCs&1cTGO4S1_K9GzMUPXx z=+By4rY-VxU!RO=k(jsaNFNKhp$hwygZi42 zvdNDRexo^zEkP5#-2Ta)qd`vbQFO-F*VJeH;rxc7D!oc)PQT^N5Cy@frlqT7i!@e8 zUPfSuaN+0s{FHV_&JX*-Sx(Mv8;8 zPqanGsrR%2!`*f~0DS@esINLq>6XU}1O{k=nUZq)5PG9ohC&{I@A%FZGkN+u?v0N_XvjHRYW*Qw_qQBRYX z+$gj066V5stHRO)+0M5yn@k{&HNWz+#+J03lk9Ej+(W#7S4}zh zDs`w&F4ibO$_V3fw)`XpZs#bT1L_ClM|D8e(UZ3X?$uO%NANnLeNg))cWWgxMnL`O z+m_zoZaqhTXw@HN8pkKxY^wqjPd~;7jpr*GWHBH`xgaoURPsvxI+N#fiY)_nMlP6o zD2-`iy0FMba*fPtl|%LE!GN!Xs0kGXq8$)1TsOgnygv4EaTGQw{12+a5B>CrS1|pB zgpukM8LS)eyXYH12-V0034R~_f=}JTk~cXC|3mpbo?X{bJ{C073M^t z0f8{_H^Jb~wugRjs;v*w!hiPsA5e#Zl4V6M;LxpJY@7asf%1QVJn?^HnSKmNtpfu( zyVKi^Ij+)e;gWmn4}EG?DJ#i2EGb28{l-njv7?^E9LEZW;YsEjyUQ0lSB&S=ihRRn zEGUwDE}W~_g-qt3*EzI~)mz0mb$gGoD|O$N9f%+Y!cFb}JA~)|gkb0$i=)=4E#eX_ zq{PZ9OVR&`h z;KJiU3zt3pFT&c~W4izUKtLf*QU0JY-MSfCyrO6pO;ia)4Ra1@#&y?kd=&XYtf|z7WblR`Y_^7<8Xk~%&!*!#osI-R*VOHAN6cu7u%{CTtRf?xB;g=qIB0co4 zywaHCN)b74*_XL|b)_%W+Fx6w?xp}ifMe4xpK7Co@P+n^(Er(B&A*`gL_mV(Vy! z0^&+?uwuRge&bS~N4Sg4kW1j)JmV$JcWH>1;>#WJ)y3**R0XvZqFKfnHHw2+C@_<$ zESH-~)DJz%%mX>KIUIG+2*+}?Mst)KHsI(8q zt&?z^oN!#~LrsLk3C9|r@(j zPfQ*w`pmjx*bG0uLOJkREF@Gvht*Xi!RpPkUin;3J3o)p)5v3S`b?^m&FR&wDb+_1 zpUr7IKyZ2z6N$-b$*g_`7IW6nuWx2vwII{Y5KA33K3Y|vDw%A{n~GPCA$qB?E1)7E zwKR%ijr<+|G03&PArlumZ29~m z<8_3_Db(0lE!QEH4wOedE3q$maLju?S{zQ^Z{Avk&X(gh9 zH5k{)eAMGGE*D8dmzgVrbFKpyE5H4-0K3wY;EdmRUY*Nw6Q67efR^nds3{6ifmhMl zz&lwB+X6f|!BZuJyc9QO+LGm8DtV!f2g=)C`T@|Vn-Y$4hv22qhbc@*-=&^n#cFhm z*Hf-f<}hB2r#=1~FaDavi(SHtIl_y_Oe$u;3mGoiypZ=SUL=YFi=e9?YJ?e=@%!JH zaXsl&Zwky1L_?J;9o&=B?3j_mjBEa(Qhm{;6lK%!o;$z|0j=$fB2=x-FxlO^vR$L9t zXv!K3T47{3q^HvZ=-ERwolR|zp-Io~d371bZmnd?cDyS#mjDWcdTt>H=B{?lIl+HOTofCP1Mna=W)>w}# zFeINAo7w*jXga$oS*7QEq*lY)owL= z3qrX?(&{YXd7EDnuG{X#bXH6)@upF-gP^&NA5NlXgZe9&L(@-nR3^L|d@3K_WvL)y z*-lDO1IYa$BSJT{EBZmY&*%_uM1V{t0`zPKC_HQP z$tO_fkM8CO5GNr@Se`{Ep0|(4F9{kfO8a(fSJwi+t;AM7`%dgxQO9F>$+yDncumtS z=2W}c!pCijkZNSH(_9YJ`5C)zB#FIi9SKTjgVbk3-`n zrwinAzW{=VabLG~x|fJrlRE=Tx36>eXtFQi8ODf|dIKzFK ze^#B$vRZEKQtz1fPPF8IOJk)=B-UP9k^gVyKsUO??V6}|4* zE|xaN_B|>M^!!Rk**M3DFl~bq{xOxKP8M~;29aTr-*Io;5h{yxkDpO<&Jd(g2E^_J(cFLgwhOT~T578$6tmaWFpYiUe7IkU^ zsKn{gemKCLXc{k$(=t$Yt1IBKTJ$4^N%lO5s`jZW!li?42nVM)#){@R-(gmiz-@@F zm(0^b&%x;H4wl$gJCHofxq>UxmrMaI`rh;ZD~-XinP2fh>r~Jpi0PGM$C1(dJ zwzn@kvR=bkN5=v`#7tjvBvsD2MQ^OX#CRcoZNGGq_vqB>G5B%O_UJS|2tW4l%@`xu zg=6?Ev;ECoQBYN9GHlWSnGQfsn#7Jd)maL6NcJ&6n$O5@{LRI`oJ++ZUBWn!xZcP zq_w!Dl0is^pBa@nM=AQfv`mf{19$ei%%#KfBI6^5^81(5*XOgA<#d+V8$3`@%1X@Z zSzVxRBT?Hx7qd9Cdp$&5kRj<*tyoymYA+t9E?3D(8MIu#sQi9Zeh)G>F>85%<5daA zWyCcwdk8~!98b%kZCG77XT;1&_bgvsw1U839-|Uk#4s{j2)(k%=ql|_n?}s!Qg4y5 zthi!3OUGUgI0^mRE4rY57w7rS91O8NrLUGQcG|mA8u>*Q1m3c`$B|>Piv!c-x zX)@+p^j|6TU+JJS=)Tm)dXLu>V+mXYxP4b?cfxg<++d3pAmNytaLmDmBSv*HzKGIyxNQfE}4t$pOC%pF=Tvsv}kqYb5O)28Q>A&{Q_AT$zRM>dr$+-^(icnC6!Y( zfTQmOQ3o(PXiMeq=JQfjWb7z?iLDW2M~w?grHx}dQ>D*iC@fHy3(Ufz(wAU9t{mLp zymFo~OiI9VhUAdcfKe{pTb=foIFGAGnb_L29gb1f3&m~wR*w<|*nLY(G!Jd=4BMEM zMLZR$_ZWy&DqOzIwX(u2FR@U>^KpphJ<`Vc#zOvWQ z3msg-=V1;`IBw>$BqiL(l%?kLgu!%qL$0bUqx18O)E-MkTgePRG@Y_sds$|}1V|&i1NmHA5=bty~G_x#^}}9=2^hECje9K*~ONFocTB9*z_HrDiYXTr6H zzEtI-!K!?9=Idf#s z??c)1!}T&)ktes^9<9vT+pF=k?OcVH<_a3S#WL6Rj)y0r3U9Nb3NHs`b`ISM=n78t zH2nzrvJ-)2mJPi-RTfWZO}{j97EdIj@J@>jy09w^PKXr622YJ}KGhc~4i!||nziFg zC}11WoIDU3D?k66JN$E2d8^ulKWu^g973|Gi1il_IpWKqOr~a6z!zGwfL`cT;gJO0 zTtIIflwiQh7ar$VXK7qheCjH2;kJuV5X zzKOYrZ@%yZzuMg@RD$_4QK>VS>yN=)TU(|bhDMpJz>g(WE-H2rrO2V>cn$N-pu2Sh zQ!ZV>%l*Ahmd@@?dyH*m`?yJ0of=t(FIS|tIPd$YZoBpZbC+z6E6wwI+?!=_E98D7l z*7kF%%0`=Cg`klZ;OdQVftIlcy~TMEZtIGaBKKpT6*QfOkL($n?<7N{U~{vuh#eEh zIPy+Q=XHe(`~C)%!In>Ly(?z$liIiXOB_hXq2&Znjf3oUbES{_K)I<0wQE$G$|h8QN{QW2I`Tg3C=Jz_d&egiJ8 zm&Yurk%n=bFjz~gr*>CP85UysbD*y1uB`qKP!p|5VsI7%Y>X5bZ+V5Xvow9nMA>$5 z)ws~_=n^7JoCu1A9B;?YG_)iD(8LycT!VSk+Z}qy4_nKD09)~R7qKXOsqqrXLP93+ z(U}@wDQ`KO9AMRfEQpkyo$c6276^DFPwN|H2isDsCb>6xg0as=$tn5I#zYF_Am50p z%F2pEE8dIe;Y_^=*Brda$BA2bM2?U~(#Z(sU~GzQxeg9(t!J5qEP;a1_HgWlWgx4^ zc(D#YG>cK^56=?Td>tF4F;MXdhmNt|$~Ei~EodmV#`DpGTv)$#KP=kAK83i^)xoBU z?Q%-_fX>iQ1B7}3s8cgZGO@W^pW`#jD!L82tULC!ymn_0OK?oto=(iG%12kKaqjuF zqGqu1R8HpZ29;0UQJbEh#u6p^t+>sm&*vmvq4Sv*u?xSzCowuj#v%8*-nP@3IdC}$_;0PLHgB8x`WZ~8Lps_GNSW%rHbrVoF*6EPQ0&fy=pnzGc7s*+SbLm~3 z?RmN)VE-1_&CnR`wsMi$-XjukBG2$1&{J`?LTOGs+zsP0M#eEKWmcVZhIIcP3$s%* z?x)8p*~`eCcw~YlO8WxYs;cN(@g1Wpxr!wXD@1=cHyWPj1*mYW%3pMZO9$tbC=lWc3OH5 zp5Sp>vt<*w$6Qw;wJUmAU~aecjaBG_u-69(2}ctS&g`^UI!47ZR;w&RlM*#$SrK6m z^@2XfLfYuci%yE+=7FYSxq(oxAS_FMtf!7MeC(jQMqFmb~3|BfEAbF zi64hs2`!)ekZd%QC93k!8Mr;_j*Bp>WJxcXeA^B-aw#Cu_fIjp37{Dor1daqw*y&k zaL-C~jM2@_CVK{@qpaH}Xm51Hox_BT(N(rH9kPUYB{J?85V!>Yo{T!DW!6VVm4`qj z6~rMqp3o}-M{nX|tkU5~PLlp}qeB^V9_yP4FQG|>OCVWoP=OLuE|)CfPpeo~9GRTD z5FhEqQ&<6vFzm7I4nmxaU}rO4NRuUdWkZIuij1`{VEjo<=Q0iSdZ#Mpjhdlk=mwjT zrQjl2OdSF(OX2hs>vLd(h#wdID2K!19Ys%~r9#fj&}jd4Js8=sXeh!3op1^6+wVd) zi2B+1MVV}8PFZo1ynS2VT4ttRTTQ5&UFyqb;a^H46gI-8}mptlHNUpEf z49Fhb!WXO>hEE)qDy8#xIye@3QxO7095Zs880gPk`8drC9b};EWOoW&pJ@W|4`xX! z_Fv}ocp*Erq1Z zpQtI)MoRjIY{h-ZO;^%pETb-tH#x*&+~gvdScLUrky>;i>=Cn7j^A?jHV)%7YX@bE zNkHt+#p%r)Jz3FhJ*C{ubU43lU(*H5joankpaDklo}-Cb8;~}1%L`MBi|N8{WC@+O zv^!3;o?h0kZ?^4Qw~H-j@dI(iofy!py~6)Ds8bi3$OSbs#Q!JMIqc4@r*?3Vv6EZR zSicxS#H5FAA_=Dm+{xeQTE;O z#e<2(gUNBmt6lHp8v~^u+v!+~55%JfjBypOad!uk*W!WLhYnF76(Q#&qbQSh`{=vb+d^y&VEln*+gtJ+(>;NEW5H~*cwCJg_ z%+ej&8J{Ue@Qg`b7P)#81Nr>n`E)S}IUfr;`RB?xB7m$EkrznJ`hRG97r>~hYvF&A zOu`T*Ouzs^gG7u9Mg<8`#vvLW39%9kMiQbV_`o!cwin?XKuaJviDo#CrLErDUR$MT zYg=1ss}fsF6M_jSML?=3K4LG{oldSsp%5f8-*4?RlT5(2xBu_^qm%R6&$ZWHd%gDB z=lJT<*Imr4$p|{XFBEOsqh%!}3$(cSJ`>DxOsY%w)}^D-wf58p_j=jE6+I=F#BT6mM(vHnzbWvhnOz|&{8)m z15=s!Qh{Y|h`$O@lz+!WG>rBX@<{(cUeqNqaHCflph-I5OZC>djY*O|hfxY&>HpXn zz5;UY4>>hOA0kvd(Ml4Eo)Fq!3JjQWF13t`LMfa>V>xS z0x>a^#d14mCi}scCzFH>v)0EuneqMh(AxCo^Up@7(tNMPrNnyAGR5!#L0POO$zqjd zFIH0;T7tzH60G-4;bvH~-Yr+V<+j5a+HVzK5&^T&mcSHQeWL(opE*mJ=rgR7JL)H#5nK_;M(ff8Q)HPN$htaJWoaBBONM00P%9)0a8O5RaKBf#F2aK z)vRt}z*K>{!&X6N&LLkL%(kaN#AAP578D61La>-nbET+W@EXBTtt4!wub_KvO>m7P zKIpuL6D;qeDB;D;vE_D@yjl0+AYW0#DUbPT{{#jSlPL!dnMf`@DoYAzD`SjH?xuku zU)WUDfsDeM3|3hp0jm*fVe?fEA9WBT-4Zcp=-^8_Rk`|~IxX{PGml$MdjmyQiu5uo zW}OEMUF8r(>qPe4G+!GE%nd-K@zBcbGF*yKFdjjpr5<=oYZpf|;?`@W;ZVAhjZ&73Lu;Vm6w&W{&^_{O#c#>p@aKQLQMCl z%l`_5Drl&-)VOKqUoMvcz*BT)IVXZA)Dg%_mi%`P>Y}py6`B2(88>R#(x_QxJT*%4 zy4U-SGO_K4NV5gY(EO!Gqq=Rz`hw{YL&fL=nrSeO{$?_fGkhKE?zHBo`ewS<-EOs7 zLMjMoC-%AYGPR2>4wMz-5JzE1zOU_;xaM{{1Q)y2N0S+9K4}UnXkVgMqDW-2TPt<6 zlPhG>f0HQ!!h-jqdtnoOtKI8vKCPl#bVVqVsE9(QoL%O1QudYJfOb4p}RLM)k+ zl&C3YDifM2A(}Etp_?tVvwvc~eOY8;-n0soy(9)@Svu73flJiYW{XaFI-e{J{W4v& zORa}qoyLsGQtg8VSCj=;!4tWS>r2_O$`1M~g$}2Jnw*>DEGa7wO$@H>8+be3dS4Ul zNGh|(_nt9Krz};^QH|!X+~)H)S1maWYl@KvL7Xh6fIFBL=l?vO^T`_i3{l|>ZHz;R zHap?+*SW2-RNq(Jo`>GzlibhZUc`7`YuL=JyG)-YY4y_EeFXV#E@7Y$Ac=lUXxn%c z=xk5u$v%P-5Pl&vQS)3dT+ZK?Xv%2s7*P&8VQ+SwNT0177|CAVg0wOe|6(#INFy;= z*;}H9(kbfYyQnv?_}fdsMBYv^IpQb{X`A@VWJzfC_r?>&&C_@(AK@>7ku9Ql8h$B# z8D=E~h6fV5o{)#_r(y7q(2Pq9b>x_3AR_4QuX{&Nly}s&OY}s^6l|3=piye6gaf*w zME&_FSbO~$1r}2vsVJ|M{R5{L`1RNVN#xRnNdrpM^(58|Q)E4@O>6!yLH9RS(C&gP zCO*2+oN&&;mPrK@y#*7cg4gSQ#ofAzkx4XB=FFFr_7yFVXNI!- zs~0B4PEGx1)Go)HP`h34T~aRx=E_s5s*)%50Ug{vF=pcF&5HikOJIv!s-EQptUFCS z5wnQD^+uhd>K~?9-@1`O*NMFUB+)a`L}{lbs$JH6NQR(vIYWTt0*g_YWnG`;YxOk# zicE5rA!}34c=5*vKMv*`5;GYd7MZ+aRIQ!b?dB}OGI4@9NHTTSYoHlk75dFf%E=>| zHM7hroM&A>&(~@a*s(#%{Y2ds*M@91&he5Ho} zS);Ik*xISaKr9)D5_O!F%r;gXP$iVkpr{KeEr!+P6?7)me=@VIe9hU`$<|L2p~S&0 z^|Tzt@Cl~>^;WydDJ{Y&mng-H+RQ57dut1=I+h4*)u|St4+d7V)N*wa(_3WvcY#WF zs!{?F0AI8j;VEhcQ!(L~@5q`zXnr)7(Ue5ir`Q+O_0-i~7$=9{#frz#1ed5>y4_wl zF(v^E&Pf^m2id=9eM(6JlHhzpCFru2#iJ@Kevf3*@vAB!zKgB>Unkm2nHAKMbAy#VYPbgJaC|uT67+Oh$5TrZ{yycTAj- zcA}^2wp{An|HcDPdql;nuYDjxQyMJZsb1I(a>?W<=yry-*bUqG9};|6-9u{z^*yRr zblYn1%C21?*I@9Rkwm<7|3#9Q|6!7mc18BItn6xoC+aV&Hlul|!0e-M$VNunG;kT? z&a49R2yf>CORcV#?v*h4)g$|(7pc0{mvH=^LDOEhbYDbXBV^AkessNa6$RG6?nnjN1#Mn-fuZQG)rg{*EU zoJjC{ulP?f-aTMhP1YsS(k+^dJV+8wK$6dr<9@2uvwbgqTj~$5NLO~!mFLQ(FV98% zwVo+aS2A;JW{BF%!m_QiY*9hdt9A5aKvss!T;H9_nlJO1J)tP-;ZGY|WWR4X&U1e) z6o|-&C9?ZduhOfq76%K$C32MO(UM?e4#&|3>+yZ+hYebh4htFht5~_~IzVNRWsg9wQ)xA2|xDsqMg# zgP9te`P8+SKQHe6x2qdIJu#rG+erS<-7jwWcS|s)z1Z;Y=8-d@g4F6T#sR%(ufosi z&Z>0!R;Eukoa?JQ>bXxgEY#P99nGt$$4qQq#)WJps=l1%x*|0H#YMdNcVLY6Py_(= z$d-? z)hr0?Kg3Q(6pISkM|{2IepwYc^7ApVGNiKDxWm(4KFq6N;~J9JqJLj}v7VOI{yRQ* z*l%URdG^Ut*JrhhVf`kOh+#dFH}t-C%BWr3?8txsJXb4J>LFknhiutiu+?G8-#9!z z&l9(3wy$vfb2#Ui*W7L36umW$J$2#-J-S1tj81SP)7iT$&Hmtdq~Ha0qFo^Wg2U7B zGx`}UcvQ-{lw>uj*J00+prFV(YK~?r-8$o=+GC}KjHl7DBIp=iA!bp1UXvdBuhi!~ zC^yhLV}vBODPGMFph_W6%!~gLGR2m}eyu^nNLbxr?fwsFRGjohxEEdf0aZxN*6$DU z#dpdWW36)Hntz4*GbrRL*eYVlDwp~3hJvk4{!Y@U;lM3QOtn%K{l6s+E;!~Cq^e(} zG6$m`(giZF_o#Kedy#RwCgLIeJNPAD*YMi*kd~RGJ)|RvVm+j1MN(-G>0BP79?}<% zge5@;0XxtS>J{cDUZG&o&e7^e_&?)5Ez$U0DxWV@`F9UhMtq`CCq9v>d1!ag{b*o5 zf13mIwGT9&KX_(|k24;XZLPiW1mG!lm$4hV1HCI8AkI_^N>ykC$;81qbpgi9SJB>P zpC}hJJfEtez_w?zeAZsgPg6OwB{UV?kE`{g_(@vnK>&P;p%dC;nZrN6#-r$Fw8yfc z^Q3F8s9z%rl^0c@Kb*M^sYVzv>0%|kWT+N#P?Ub@!MSlF!YxP@&ADseDc^GUg0f)7 zmeP`SW7P=w5Yl9yVpfY_R;uKfmCzXN0AKErO0(N=;QaBd5mlX{fVB z0a{j55AbReK&~2Y>Pa6SwNwn`;**4w$Eky(ZsED>5|9IX(5S^c$g$=}&EY&P;tBJ! zhmRZ-NFWeNa--xw=zEV-aB#A*6LmdD@sa|^vr#3Ipx1W_p~_4s4P9W3%i@h3I(W3a ztfuP=0Q|bt(SuGcJZc`_SmUf*sVw}4H1Um4jShUQhIcY_lw_VO8&AG8X{~Ef=x&P@ z6wn>54osU%%4j8xEj*Z6U!JjC{pEe2sk^InQEw0}MO~*BtUJ{m<3#XNWR7A1JA0p$0yCvRc4Ku5&)&q! z#1S*|FA+;P->6pTtD)|c>q9d6)h+r~#5lE(+uBr!Vv@R*O03=r_F?-@@?waA z2jy$(2cvk~Vf(vFvcUa9yrPGt+_4mo_lI`#hRa^L1gho*s2tb^7O^S9`n><-taHup+bDsQJ1pIREO)*`2UL$RI)Ibi?- z_bDhM2VDM5nwwxX3tSsH3xd)4PO|jH)A$;%^j`Jlcs>h6YE#v>&mp-U&&Dt#7iX}T zkY(3dNZ)nc92Rs(H>_s2gKz!g`N(Yqf2mPrWX0D+HMa0E-nc@7FNR-`@eSTDXcK-x z5BUo_xsR|%oKcu4Yg@5WzejA~_>6cg%~CP7DdP!AhTh|_P;B>SBzR3}^+8>?cLu;7c*9M5Yy1;;%?knL)K=Q1==*=Rd*S8BCtl@Z?B(wkf9=w}jH`c`o@;H{}@ z4%3$CrjL)t%F4JiP<*&?7d1JF6P6*QM4zbGc#KyG$ifEXy;G_T7VIc#Pl{9NEG%LR zrFtn!=GZ-`CS*h10i!9jM_eB+W`m1GBOMX2mM#!~~C3B~Z|5?q&SNPf`_w zWyDzM>SXAwoz_g3wZK_otJkWK#O`5ONbMuz1Z%T z&U?o_OcCh0bLAR}i1wTdg&Jp*lrAuYFAU^L9*>{>SPmFV$ju{6Jv8|x>H}`j_;_8q zSYw5CdAoyH(^@7ia`R0~;U()^W#&YOd}y0JJhnipCci{u_o%Njj&}0EdYN0iS{(CA zCLOPChCOrJjtAh)`bA(N&SK}bdk^L$Ww~msU zG>R=%f3TD5t&0bgleU*?hcq>w3M;V8;IgH@EnHw>iLb-(l+-wMzD7G=eV#~=4)dJS z2o2gI)g5NbLd{-8EAnL~zjD^Z>jWb2EaUA1?F)Y%XD}E;;%vOhS z>7dpHrFG3xvP)*m{W9{UB{h%9o9Ex)n+TbuYBO`Ce%l9p6rk4y3pPsEvL*9?1XS0j zW(jfJL3kNts*TK#c(n}?AyxvyTsm_BD)=A4n&NJ7e(blBnjeaYGpTYw#Cb8%M&C#; zmQfm#3BL5|V~BrgO_MaVzDSxygVw@ZMb@{~P7Zt0DZ^K)`ys;idu+?T)hwj-d7@l! zcp861mx3bq?NRSZYUE4bTxo-b ztqfqzVtHA{OsFZ5yPu;81bb(4yWdVJm8zHCMw%&A6LdK3JiAtN4P0< zGoSt_UFZBj`4)@!i_zB%B+h-9h-oTYib|8B*2NZ8vqdKSaQXOz+}$Q0HBzb#g#vM+ z@~QtuUs+bOM!uW&OZeSA`lTM5TlCBR8tt+9T?>4;8mY?@g^IeWzr642tT#$|7w~eE zz!m&z((BVb&d?}O%7P5&5B6)pt9xALU#)tb2<%IzWu%j6rFJ^~C4ztdT~?DX#kUs# zVfEf6noNmxJYs{co!ER($YkbCf^RN3c_hQ=(qybe&A3;c_#-X?M?|%mTJ1g87=~Nd zUgg?`#Fqmb713Yr<%sCZKykGU1Y&v7)0Kp9H_5GrvaVSko*x6vkfyXt>p%OC6>OM3A|jJeJY?nTfucX)9L~HO{vkMbL_xY@*(!uDUhnSYbBG%2sE> z8`j-v1Xv3!bQ5cmjc&5VEI4B()#9&wL+BzX7rif2-$h-|ssOpa%--}XyXAJq6^oK5 zxHg`BQR|aBUm;{4TM~l5w7n?fB=}{D*7>nYUUxq}q zN8#{8u<_}W&G9 zy@lx;oxSAJRBrw}HG*E+_ZccNa?iMZz6GE~lM4k|fb)jSw|!M|Eyt9s`3*#L7=w|` z_MoR(&<78Pc&mJmRXpmg67L36g?bE{zPb_7AVyukVm8vw7+{lil6Kd|*@>J-b*NI}zTiXLP)AENZ~tt^6a)&e82=_L?`VNl;A zPI*JirbjPEEK1xY)IN|D3uPgKYlniHm0hpB6${mw)1V}Hdlg}9%v9*Z!x40KHph$E z+=SLzpNewAzjhIOFF+a9Q{ZsyQx%N7(46^mWM#A`EI zeO6DIsHR-Xp`pvMt?JsB`HX@$k0Z3M5b6?1TBdrQ(?~;_3rNHMVBBxkjFyPSV6Zs& zKzSCMiR|9f^re4qV$|7S$O53odVmI01z;PkDf-DJ>LvAkUWBJ$nJrVra0S3nI#;4{ zxVKq^1E@6j|B`I&>SvS`MbX-<<{M;8GNg2I)j{4X(GWwatG>He3jxs}H*U3&5(sir zFC}EL@d)CiJs-dy3;jq{+RDW`at&QNOqbA+VvN^&N+R1+YLm4U)>&1eylHUuMM5Ih zpP_3xfbb)sA-;HHjDNe+x6k~0M9N5}6THMfLLaX#}Q+8C(Y&53d98-LKykw%ER;4KP@CI!=pOZa)~>2>%TLLNR(Ddp-`BoI3V zE@>nZkMVwbM{K7Sf!?0^qHRGpHcpn1z__RNUzrl^i8GLqN%sCBBn_V>+O z1v`&=i0nO-aZ=`x09>-6OE2p3G|s$qAoH@r;igh*1XQEyJIG*G(h4V zcOyr0m{-UlxhclvY6;jf$*YT6>k6kxk)dH$inK&!At`uuXICbLQ>4@Q)JFXqoXwpA zvmX=>XsC?5NR_$$Rc?Y=~x7ZmYnf zkmiPxHwjAX_F1`tWXu;iwi3c~t}Ys;$V!nJ<9pQ@Tcgpi4_X;Y@g31z#2$5os!-Jb z5;YuM)l=xZln^t8JPinZL>;;=Ix~dk%i#YHTC<#E5uYJut$qAQeV)t{G%vjX(VMHM zYohvyA+667bVVE9XHE#`%G|KK9L|*~s6ILl#_8AUhqTd~D^n{%Dm;xpr?hH_F;U}F zJPnV@lkb#$7+^S2CX-iZHOEK6xVJ>*QX+=_j)HDcoata{@ly{S;}L0Euxqah{{(0q zBBZ`OM=v0UrKfFkTq+RRX`XF=;k-ZH$XO&{OQ24&N#0ZkW)y`Jr8BfF*-Q%LN@G+b zuwioBY)8|z(aDG0zeYg!n`;4`*bVCX)YSNXvUi-}jx$okZ~ab&9GGG^sO$FDb@QR$ zw&JBYrmI#SFOoT|M_5$j%;9$I5_FawCbEVs^-ec0lODSGkS z?RmIOeg2dNLNb{`iN3p?W~*L|WF=alOR=UmiV@hD#ya9-NM*uIgLHTY zV}(Jd{XK?T=k#YfB5N5g{j6@Gr|_avU#0u~9E7X+CjyekQN8tRKyI{`aNn!uOxw7U z!U&$ZHWUga*#oZb^1aHW2-C zbGU!43x|?T`QRz*TfY#|5htI!E@V(+R!hbJD*7Zv*xAou`YXFuToaqa-|Z%h;86tx z!!_>9BoYQ*-2X+ZbgA~PZutde3 zo+twC4&Job(SaBoXuf^L z*E{8iAO;u1^^YZ2MP=LIBO2CsKgvWOaLPiW^!E~#z|;61?}LrP;Ffgg%fq|~kGc!L z2{>wr6HqSGsnH;X6g{Pj-;#vs*E>rAqSd zn<~Q(+l-kCFysGKy2oE^W?qf zp==r$PLX?W-fsTFoc*qp#iuUS{Dx{JgSv=X)GC@7szhuu=c$iw1Y^>myqFEorY&sU zI*w0cgP0l7Wk0%54j6xjveX<>R)qH=k|vjzsZ0v02yrCU_kG-Sanv1J*93D&xq4Qd z^f-|THI@z#^Bq>y{^+YVlF1(VMD;bAQQ74srylWIcTGLWsSfd)ou!lzC^$_2UNb#* z|MY;R(p2A0^hhV-J&pGRh)queP;>!PSwi3dMR^(COU~L;RV=U}g0kSOYz;*<`ExL> zqN2^Z18I&uZlQNc;;lPu{0tK!Xdu=%uuKR?nGAZtVUDHl&n#g|VlvyMliPH4Rg;=$ zN}+8rr8w!xX{E?h6o4m-zx0@KrS{PK((QNT?mYhpAjpc`BhUPPzWBwIKoKv#mNvEFWK5|;tsiRSIJ zZcphiL_@wGc*d+~BfKg#UL24#g=>It5rG zaHb-5&D79a)+^QC%Zz{hHcx zwe3Hob*aAgx)1!loIrJ@`G)#|E@1*CgkBoxsy?2%AF1mB7WpE|c3;Xe)^;=bcq?NU zHsg=9bpOy#5aQu$}MQXK#z0T2!B+C-fYT()q+bQ$O2o-#W5v$k84Hq9? zos54(Q+l|dGlXk?C&tOUX*Wh|KA}P9Q}lg>es9Olivd3c$8PHNXt1Qk+91$i;d5?% z+Fs~(n76C{fHRP--9>i=hFe870gkF4?n^1DbmkMaCFQQg&iuxrWsv#%A0S;4&YZr) zWjFJ2w1i6S|L#(W^-_+Lx5x6A#hYpVqGj<^5r>h+Mak^H(41DkEF4*o(`DN;-fc=P zp{e4oTIZI{xkh|oy6>c!t$qlW$BxbwJTp4eE02QV1wH;-mVLoW_nSEAOJy3zxYnh` zuX%;PS?hLi#^;sDrv8rjP$IW;=Zfo4EtZV7CMiP#t0@kZyVOkb7pKRElDN+{?Ua;d z=9DQp;8&JA1~DyJ@UKv&Mc!(TZI=_b^m~`Qzl;Q_+)#0 z%$=(n0&eB(Kh6fqg}v56PU<5yI{OOqBAPIBxisXal|zGtk5}i7b*#EFa>KcFs}lSw z)8Dd70*hwSXqUe(!(m?Lt?XMq2}4go@5%|h#qdP1nk@DoUVlADdtD%p2KykjwlDNm zmM+h;#c2sR5cTQSblnT+pLTBJ?>h6Gr{l~y{?2$~==!=odQ`t^C~%tUHTzaxs%yJQ zCEp?(YkFLVL*}Fb^!mb~)C~pcS@CjiC6pO&cP+W^x7MndqMuilU1` z2Tc%vo-_fL;fzMa!>%-(nSmK)?d6~?InsxiN!6_HMMb{tM2Pab%)g5#fA+rW<8Pm{ z|M>p%w?~?<>Dcbw^(XRIjH*A8xgyE))b`gq+pN7gE%hIafBi3TfjRqQ=C!{YuN4{; zEbdXcEI7D7LuB7GC#yBEQkt?x$k!;I=}|qSC$R378PY66+ttEoL7m;u{K=}|v~2Ie zKz(^OCJRKc2NB!6%Cj}0I&Y?9`OxaTn;c+cOD3l^Y8)T*a`tSN4fdyOZ84@-;}f|v zbU8U`J1&zGF2Es3XOidHC9_p3Z=l`%SrR47YaGxE#%H%iI#S&0zjfIcVo{8N3QL_g zS4OMc{128LIyPS2MMq-ck!W{JgCMj>$LTQMKC{WXy7<#NH+Sx=S=GKh(hnN7)1XCr zJzHC|w}(7Y&)X`NX=n*rvzT^K8C~j5tA@MxG<**L>aDlM-AWE=ku|?44J!94o3h#1 zSoAm%!^R3UJE=_zUh^{;6?FK0p}oK+D3{Qpo&N#HiBY4 z;iwOkj@Y&9aJaYj5%>1gN|cD6`<{g65^s;c%Q@J0(F@EOV|00$|09q8uO8p2swJk2 z{nB0Eq6x=45@@YCs!HGa+GTIID5d zjQIR;R`5po&h;RV8*BLUFu!Jg=kME))HDQ-u%@|j8w%qow`p#?znx=Xbm_bMOAlV_ z=ufLt#c_NgD}uD)C;h25+G+glaniz$IQiPt|CKU)G-M*bOn&M7Qu(>~Ir#O`9&64+ zhXZrIb(pK-skMF>!8M(0I@dI=XsdBDI?EEf=D{)G zqVE6Px%~3uZ}~q+Fx=Vunurw^=kJO$kKymqNicr7q;h$MNe3W}q$9te;AA`9-y|Is zENSDfGlqE43khdX?e|eduQA6%Tti%Mq5b=^+t@(J@@5bVafECy%=T=}z)fU-_S>dw z=FDnu22Od^elJI;3a2whR>b}0s|X1^y;o63-^dD{2DSh%N!dGT?Cs$)E}qC zYkM6lmw&1Vahp{Mekn9(+Y|8gD0J0YTvmx~Sl5RePosl9N7y4}zXzOM`B&jW3l8Iq zS0+5wj*N&LrG_)hM3{PlI@|h7`Y&BlOyBK;eA#48yid`fXeH}OXZdn7_{~0IKz@VH z1D_44;@;EhY}jwyaMgl7vv@jiRPOq?>kCb^YYTZcq*6-SRU^#Q z{Fww%6n?K;fV!*A!*;e8hGw_M`dw)DkAR?ne4zxhBM7i@mS=069B@0V+81vo&73)F zR!H&6vo$%pHFo8qb42rVhlW)9UNJ`G=i7sCep>BKH89S_CS`q-kZ~~Y-Rj3jZ06k* zN8k>azA1QzT%tPBqv(N*@Fw^0teFggwL;5|M!5IC2=`tW<=%H`?!Apgu5`n>jB;>o zod3mV7{9o+V`NeDywFyQuJ@O$iKJm!45eD%-pO}9upZ9xcS?}q#0}%;hC1p`M!EaM z`jgpa0xyYf!E*TELh3}3=4qIxZ?Zh!n#~QY?#1;drwlOs(>4s5vD!$Pv1owTKQF@T zhmz$G>$6C14%exiGZvZ7xl+Zir8!Y1-}Az&o~`cr$6B3+%d_oOf7g`I+11Be6XJ|3 zH@sTkb!+{JvAkya@5=PI?(!9GZv_^1Ob|{(Rx=VeB&pGxoO; zvBUFhWm>{p2tCsK`~MA|{tD*B|B|OajirwnN?7_3(L><-1q13OB=5i|OPKMPnf9-^ zec7Y>FS&g=itn^U|D1b&?o968-z`xT-6Dd%)1w*d^(TeguDB6XUKH_&v4iLsU#hOW zPq0o2)}>h5=^m6@guFzbJ=S_*%6O69^$TtWi#u&yPx6k93;t#snJ?$)#@0F)79KXV z6u2&cWyBXFcc_*eiJ6L@WNkdB0XJ2C(Oz&0edH*$5nXAA<6;u#?7|Y#UhstjKRt!0 z0tdLTw>IGhEDwDPGy@o3rW>tJYC@O=&NtjCz3+`PlRPgJ^oE9UJn;z@nLB!i!DMU6 zjKk7S=L#e6)R8>lRE1F;0i#;kX0wYg!v6NNi(00KBG}vfnM>Tsc0w^T0v~kTVX;Fn zF=DjbtOlu*Sq)mzuuG`1!#OPoH@^2|NoY4ms>jG;lMm?eBhvL2EyLK~&sJ;tziX~v zjp7*^6WW*4QtiD`r!wAFe?p33Zzv_EsITZ8=@b=u1|?jzHwP_HZhtYgr^I`vMl?uj zM?ea5hZ;m8<&c^atT%`%EHTlAh2hc*%Uqh@M&DJ+5V{zH=(YI~z3W*T_XdSax4(o( zEwgp@XMk&O$r<3%FqXiCF8sy(ud?le@Mo(@7fWYH@C*!wwS{IKD|GvfE6db3@K`A$ zru`JTsw0-*+B+L`Z_v;uQc`GyRmjc-BNXC)~0)T_1y&tT6 zaD@I$@nz~INfZN6L}6i3MA4Xv!BR(2K;PhLm?D&%VA!693%T<=EAcSXtB)7D-Eo1s z9_xLBP_2X&JSwM`A9bWM&%&OD4l1(K7&GlqhF5tW97BG#-<`x2w%1qJ=Xu~Kq$(%$ z5ej4CFMM$!=Y_9z#$6p(*PH!5_%Nxi&#LPQt@KqMU4E^^W3bwcp*d)HjBKTs#bAkI$kPBG(lf%X5yQy$*|sP$H(g)X)E}n3~UPXSQ`vyNxLJq`f8D8WkotTH$m8t7|3M5nu1h$%DJ} zCf0BuCk3Y4^ZVIoT8>%GH#VUZQsa>+aWZ1O(#wUu3oQPimkXlk4?;8WG1MekN+nAS zqV+45YQ+$*GR|B(WExt9?x+3uCLWy^?GlX%Rr@Ttd>d|v#U{S!OVi;6^ zff$jkp{3#;7yCd-6B_k&oH62QmyuHaGl$b0f)A+(@wNu4OwAz!D09zugz(dKK^DUH zTdh&812c1(z<$lOLLVhALIl*~)Z+ej*`WSA9v+c7d9^kGVDAXW8HxUIyt!Zc`60+J zkb}3=P#bB}tr)09Xil$zw!fqRmV1JgZSSGFx?IO4|;ZODbYfNu^6U{XE*6IKXH&M^LW@KTV2#p{7 z&UKxUNc?=WO9~>G{&e5_o<>o0N)fV}xob4X_r_-HCAtW z0t*}p^V+m3b4arcN+=2I#1N}}vwV^L7cE!YOZMi+wqlh$x7Jw}$dzyEr-MEu)}Fnn zih1*5Ju6Enag(GDxa0k;nfNWDNWmDn=5JV!NU@O=<<{r^kH+5_&a&9~kZ3s@>(Q`S z&LNDw!8&GebetI)}QDh!hpGD+H@Ekv-@puDOV~~9p?@n zDoCkr5JAn;^Ez*I=C2x&-AaZ27DAGo4~;?>gqn}gJqC+ZEdNhVe{ULEWl4Dg)Fh=? zr~gsne_YK$n%7^=>VHGJE5MQtHh z)0$CRp%}}O+O$tt#K9a*O#(AQW=7iGv@@z3(+e^CoO$23?DY3F)T6U}aKiPZ9|Gd=-n*eAN8_m%X=MUQNQ;nPUJa;=~K?z`yN@FP2%p~0!qSGRI~cN%36 z_z>Q%cpn&v$we|BmuN~6n67rs)wH6k$!;3vIpFUra8*<+ zXFgsTdX4?%MQOf0=EbmDR)>)x;-de=t;^9KoVa&YlE1Z6Pt$7e6yfXiSt78izn5u5 zbck?y>4Na{(g5|J7{aWbs49JX0>N%+%oz1!YPY#v^*wGaM^`-U@D{sPc&J?Yc~?83 z>w3m3=p34-dG_JKMzNa)8hiO0TJ77jc3y2~&i+NmKgA(nd46!tP*2Rz%OV0^w z2NNly1KTRodPIr(?Im=tUFt-9gTm7PteqF5Xt6n`W zhTBf5k}0TyQ~I6~{{_}{Z z$L8u+rJJ(h2tGMOO`stf6C%?4?+Y|G5V7D22GrVVOcpJW|8qUupUZG>XShd*9_VuO zaA*VrEU5lf8X>e|hda7jY0T7r76egtW$(mjwDseYC&3#9ExS2p1o?u=W29IGIjrLagM5+{ihtpl;G^l5_R83hhta^X3g1|c~hp&E(2_{vv@JGG`ts4 zZ*~Sp);yp`2`7JRcAC1F4A$$`O-}1xm$e-2Vb)?~EB{`HbsN!)o#ETktPf+!zl^e)eIs9b1qG2 zuS$}faG#tN5z46!_|)HL%Ul>CrT&du%Mr?u*Y9!90FpK*DN>2Ms&W5w~k73a%A>oH6mXYLV5RZPkf zne{{3SM5#rG`zzNZroOGJ|W zAVJ@dFf`xwhOcA!ITE*$NS=LaQfP7r#iLC3LuKQM38V*rkYO4wWBLE)Y%ol0mL(P%dGaUzX$+|*|q9> ztv0^OfXf;xEY}#EJFNFSI=lxYKB2w3!*LadB1**D*Nhp}UaxWGY!1%z_>p#S>BVz| z!xu^B^_m}LV^JH*3Ne}Rbp8{IjTA|_Vkt!|)B#(14Fi~N_7Ka!F2WOSv`jFM*MNcs*hsOHi?){bPr#bbmq9au0q%u~Cu z9P$z2AIWmF27()d-7s%usy*RCL*-Wcy^FWN5aQIEYeR`#j8)#s40(}heqCN<8tfRz zG8cO*Cz^|^{nso;D)q06UyM7Af1UFhGnq@$ViV&Pvnk&?F8hFo6crW{$NMN#_bM|- z{JN1Q57M)V zr)1Hxi@jZqwyU;Ia`Xx=D`~z~sZDnJaaRoPUh5?&{8&44=E`Epm?;d#yC{kgmB$IL`T$0qiHO{hjc(oi(3S#PL*qoj zt=oNp-68_{!frX`FsF#*Jb*O*ym}aHlq|W;u-)2x@F2}@JXTtci$?AiUK;nRuP`Gw zr*W?)L-A3)3{^h}%8glNXXLQ28-XL$6rXVv6a2wct2MYN9;X7^wsI`HZC|giV)kF>n&w)HX9B-xFzhQy*EP{t)$?b)$ySty4{G48%1m^z|C=x*qEU% z03@*z`nEg`BFO!PwL?_$1JD&MUAt6RxRNiC4s$8AjkKRPlGdikwW&2*q`p621r`rc zJHV+5eJ+F6_+h+%mRe$b)vmQG#hcUfL2c-lz6$Qy*sG_wa`4Oq2e@4yQB;|7usxyz+Adm2`;bHeIIILsM7+MNOzpSt zPZ<-+R6F-b#K9R_1TRxB$hQiA=lDBYvJ!@b5}O}GbU&8wN-zuX7>+3<7*ojl(+au! z9~9y;GStsNso2)f;#pdc%GFzW*c=<4@5E7XxaWnqnStS0ls%S?;tL|xYWbo|6bW!fj4czFmb zcds?yz5W9UH)c$+);b9;Hp%ng@5$(UpQFZ33JoImSLsnmkkbxONV4c_C#E3fJ z%6^M;?Y&wZiN;jxBi*5C^vbhMqG5ZH&By{H+X>Su%2Gl>7xb-@j>sY@O4F&JBjzew z1BzZV)EuRXJ%U`5uMj9k;3HEcbfak2(#+9nh!?z`V$+Bx!9n5T-bd+Xd?>5qW@2jF z)G@|0tr0@S)QcIVs2a^pJ*d&r)PBhq!@CZ4Bl=HT9d#p``UWk>3uuA35xpL9Bl;uE zly)P^6gQ&EW|4@+11aK3gg={0?OdXP8F2{mN*RIO6l{AEb%gJBVnC{mTOj+UTni)w zS2xO?+ayzFB-8)Ki%4kKU`>h0mmFW1r4ECWEV(api6wtkJOjnr(ThS0j~BSv@)I^+ z7epFW1cxpJWOS4@{~bvyR0DsJGA2HqYED3TdhW3Tcf66V8hPE}NTf^ZHhr7Itr&v_ zNd*u@frgO7isJ_>&WRefS)fvbCXKe+CWDSd18Xs#W)Q+sMKE#H*Jjdc5H5R-w^s2^_0Q3#Wuu148qVzqnJJ-$9+Q zveBhey_=)a#jOuuk3|=)bp;=ez}8oa>-DX)FP4scjyNfFWM^1RI&e=huGeMip2?!d{brW0wxFq|1iMl4EDShp=e-9(WwUh{6Fv?yZ+XH>_66UJHAL!U!_?8 zu}5!<7hk1^Kv=LvV)BMMD8~&mHSfq?^QdAAU zTlg*FSHiD|Up~L-{O~zCjL*^krT>^zW`(8GkMVn&-%Il5|9Ahf%sZrB?LW46=|A)z z%iHLcLEtWUYu_^q&^&itbrmTVpj=WR2}eMdu_F) z{gDDAuB{FvTswQV?=A6X3XN6IO40#)(6u~5uq<>sr^PDAijz$E3V7GLB;i{_iNd)? zEIUHlMTZ>A=CY7SQ^@B(o%WeMmYk_AQ6LZvGu1^@9IL5mnG&U(UAMEUmaE^~1$37< zVY>S25&}z{oEui6-dZWC5KZBw*1T?&yQ`0Hcg2~m?72=IQP~<|T~CCap6pMLZ6`$M zQ7q18pS7^h|JU(%9?NR|Jkd&fM65i==1g_g8)K|}zP&3(SUvSuC7X%if}=TyX8GP& z{;8Kh%k14c+I5hzYuLZ~6Lk-*v*~=7Na@GsvgNAbH!`y2PPhY(6+YUvSstm4{Sdmg z?AC(XSmGmf z@+d4?foqc3@{gjNPH3%K67@|Mrvq7%H(hd?j5evD${YP!h*5U$jSdQi&pbEak@XD!;i**8|3~`5K?)%t5>b#%eZ2 zw8vdK^Y}sb*~pA>F=JLH*2{FM-#(>j#LUK)RUdI;!?hbmZ-{Feacxslq3_e>pT))m z5>0nqD!LVynG85%kX%ltRNrCM1*HdLxK`_N5`1=>F{a2!E;7&FwiHc6C~;dpm)em_ zLhfx@ayLA56se$Q=|}?mu_J3$WYCNhTUxs4Qr*8`VZ3K+(J5O+r`2^sw2Cf2pLrK& z%7ftuC30E8fdE8V-?Q(8^=55m_P!fR)MJpH61BchGY4=vk)n44Zic94%5+`z++Ffr z6cv&0&)DCY@3CFO)o{RiRaRbmSt;SQ>k&w;p4!a9!de8nnLJT&KGvz_`V`~qYcp%b zH<2v|C)rvDi$X1)h#!NRW7i|>Ey2vtp=5J(wz|_s`PhW#*a?v@BRf8ypve(!D%@g; zpk~s=pr-7)RG*MqGzy)y@#QULw_F`lp(*D z;i?^3Rqge$9~SM#`GU2fv!HBjF#ePWRP&z3|70%XjPxW*xC&}8Iz{$9ZeF3zJBRAo zT6Q;^}QIo8;0e&^2S=aQN zawbp?3yE>QSmVzX38YNTvgbJ^rD&zGItmB?f0S1}n>_mbGeUw{oXhiOHj>|Q!xNYi zN+lvfy!vnjjlsvWlke>+c@mRwfWg#Wxa?>ssgVuKL?+U9q=)D}D-E?o!H?5}fd7Gs zLfTv?&P;#aVyIbyIh(j1)dp3_{_-;Q^``{d1;T9)MK=7dJXS>8I*hjZ>kd22E1?r1 zA}XpP-8hNblza3U0)321MFe3aM=KBguzLCh5jq`6s!-R_fQViqvu2|->F7l^Msx=1 z_JS8^&dbzrDOKEk3gX$7JdJ(qg!3V4$VUhS%mHHPzi*88pB!yQK)MN_&{^O6W`=C! z9fMGOSZ(>t9&>ai1&5)ap((7nhDQWu^>E~ykx~A8ncAi5zQ`Lq4Gjcem&`h-2E&$S z4>t<=s38TUh1i_&njs1W1Ila>ItACKJIC#5dkxBHFXnFcg@SX8v`iu z0Z^g+D510(EKq#V-XoPuFW)~b3k#^n6QOeCX_R^}gUoa9PBfi6tpUD!^om0k(4`lCLKztY}NHq{e1hPZe zidG|Kf&5c{0xy7x>X5c(g4$@EL^C6^c%%BYyq%t6+^>GhU0`|?LxDOA>|r&GD#PYp zl^|6UfkExR0K~J*cj(>2%jjLq96~1^vGL3WL(Fs3jT9NfT77J{1eNzBAppc7aIYAy zCQBmQ1t#<+#waw4E_EeX1cHjfJC-PmmPo8f$F*wY4!ag9Hl~)Q{#pv8meEMa%SWK- z*X2I`sxCLg5r`ZdK}DxD4R=e*7f4Ba9+%=G?fE6Tfx#`nq$>U%}@Jof! zf%ZsHYU}HL*6n@aPI$*iti44Q4>+^JoiU_FSmvcxu4F==-BHkca9Mo5@G~d~U}?}l ztYPv~4_jFMonMF##!Tl@3(YaL5RAmPG@xtN9BQN%ZKamQ81Foe9L8@B-pJ-ob-6C} z_h!L^O!!3di9&6Vskp39wp`73uZ@P2ETFla>l-P23i zJ9a(@ZH{ctS{|P-&5gsT)U}1?`tLZ1<@cS1yw|HKF*tHs^|Xf<<5XPWsH}nvIVi1w zruF#mI7*&gegx&e<7nXPy%B|O0Xr@Z+JNpT*eTNocn1o0BS-`a_Nt6gyr{3|b)evY z1f}6C$AT|BfYS7iowgg}nEnB?Dh~z{B0%IQglNH5!OkcL7!hrlxNf3J=D_`AY?q}# zPGazPRvRp^?vDH{X$M^m-4&`Oaw2EXEW*a^Sa)WIQ4Zyw)<$hMlw6nI0i3 zTbvZ43t;Q);Ej-ULwpefN$T;l1o)2%@C%*l+dKuf$dg24i6IYaRew6!q3tV{aCG@j z7P-%G@*2F+qfC8862oKYlFSk6DtVso3^Yl}l&dBUls42Va{4~S8NSuO+UYPqt*Y!Q z0@jkeh!dd)rXG&>8V%+AKD_U9fC@;|Ls#%=1pxWjK4#t>pU<&XGQl@d6$qtpm$y+5 zQzYAJQk5=!CvNbOsoxr54@#DX^|TJo$#Q2e&0@_c4@|UFgprgf34Mj25@Y$Ooz;fV zzsMKhROtV&SquIzvUdNoirLS(G$5KzN5vAMC?8fXhzxdd4=zI8+X#htkgnR$FYe~u zL3y{M|D8CKVX|UY!C$*7w#|?@J9V8$o)Wu&98MjK+mM>yu-`n9 z-HPR|TxAW>1_BV-7#q&PKDXipnY8YXLa{wKIFp3a=9hrk10nV_t%y{Rv&$}?gQL9H zxvbgFa$^QdaSml~aOF4bqMi<2&r6t>V63H{bHgi~RFpipA{Sv1h|yK(99)_I9(oWb zJ>bCAyPfJz+@_;z@JyLYiOov~cO7|9aqLNdD5c-C|NP8QN)l*EhhADOMPuK2_)C*9 zR{qwZ{+6K|QrQ}oE*s4@l*C=NAkK8>=g*u8ApeSpns`o&{~*!K;5;90wOUUPz`(Zh zoMWQ8PQ^XuPe9c+#ZFLJnS+JiKa3aHi?W-o=rljWZ!pN=nC0>K@psZ`d109++#oE*!U68FjTU;Jd!V2^6CBJuXz5w z{o?C%pFIttFo|v*znm_{%K5M0D;w={=$3zf>v(@7eS7Tv<8A%>$4A;skhVfBN3fw= z{k#ntk1ZlZJc~3Zn_YA`6>V6+Y#gLbwyww4d0c3>QOw5I#aJNT#67HBoqYiG5?5~Z z>^!>3vYo1rj4D@`p~7I%M~b|(SUTCiQF5rj1JmIuD%W}uIT}8S)IubLVNzab4dfba z*{hHR6E9F)Kk>+U-Ixrq5T@SO27VYL8NO=YXGXFPd{IpR6?PJiHn!m&$c#1-KmJE zuw7z*uTFvBcQd?VK9oc)i+c>uMownc7)ycUKztlD@Zlx`q4Lo<1Sp z2KDq$$#;~;XDwo$e$D+N|6`|WO@#k7a<9) zO;ygHZdP4e2h=w1nu(W#7}uxU^UE#aitPDyuDTSwkDXubs4}1d0=&>=fjW1&dUlwN>=ls7T_lz7A49nWdJ?uOw+N-hstITw zesepGwsjW2evI3gQlk^|Juf^gJMp61wa>m)K47M1kR8bIT+6 z$=05$cA*xo36nxiaSD7kiM~Yk1P+Ig5(+Vt08?8M%8+npnCRyNZXL&li2iYf{&qq; z=xElqUgS;dAp4{*^CljC4z-oLiu0ZT$uGfc^1uNSKJ1$mpx(l&iOF}rzAUlYZVsj4 zfJ?FpwT*YSH_mAm+69}M@TS5qLEJWfN`w7*4dPy92fjpy!k5{5X`KXH;KD za7|xhoytBLoa^L#wdKo7)m+wcNZ(wi?_kA>qGpE+Rn$TJ6xtHnd~M4;a4>!9dC-zJ z6R;;Z8w==iuYUV@pfjkS&N&>Zj<61Rn&jhgm1S z3?p`vuuWN{j6ny<0I}14u~@i^Vwry?%jPCDjj`{-x$;KMpox0$$S>jWDhy73JwqZ` zzzG`9Yk-3nL}qt~M>TZ#w#YmmSD5>EKutjoG{m)lyq*uT`vIR$z8^EmlDE8%_G<$Hb2 zUy$W3M;s`gy%P&(HgI^tnNvug?2!^tn-x6G2f&Kn!is*{mT8&cFmxUm z%T#@kU3_>S7>LjK^6tUH-P6!ML4ZS;^uxIu>8QFrAu{p9dqKh2k*|3WE;Br8BLj#Q zYE;b{9@*~mp#97d^B_WOdMOyKM3|Gb(2hJzGA&i?u63y+RsA%Hr?`P9&6Z>NB20D? zmBiBsX}D{7&!C3GQi#oE4}8v3AayJ+b~Vq?Vet=1*(4DwangHRbQ^;Uh#GCisimhC z@I_jG0VBP+Qi5^FvIATK)j_5B^QPV6$afG+S+43fn+zDqy2J9SLj6GK=#~+V{F+Dk zqZTtYHT}4v=3$ls`zN*h9oO$_Kp(6S2` zQ@S9+-&p@>oqRT2d`OWGZOTgrVu%r))!s+q062hs*lp3X*kIb>jwUZtKc_w+mnE2O z%G9@5xUf;_zt;kF&Mx>&{!V65s2SN1pRYX9z8x8x1)I1$K8PaPW9W)ta>z2fB6k}x+W9Y#{G8>}p zheiJPDi(LNGb?WXmlcOcJx0H_M`FuIx-&}p3V|3K&OHczC}FZHqJ16p1Rw2o_5)%x zA3G)GEJ?|{OwmzMHwkbAP#k?U>PfQsQ#81`_EtpVD1xg`3$6|Y{4r1yO`_@QC|vBK zfSmB$z*@p>7+E$Tt#LwC!mkJJ7iiZ=A4Pe(NWhXiB-sbc;#K{u3SDx(U$eep|%VcZpp1on%zG{a%}M} z6i86~mqGMsAXwc&4Z!eTIbqE#h{lf1VAk4at{ImPjvMQiiK0=+Bg*`bc=XSAVza}4 zaWNLu}Yks<}uaq6M%&*SczU>h)h_EHP_wd?L``h(rL1 z6r4!06;|Oy`{_7)ym-3Ae(JKHrr1x1>?b*Bg?xXqpJv!kf3%;3Rv~lx<~UJ-H(5WcY$D03uR*dCcsvdK;0%)LIIHQ6#Kru1ts;#Y89%zftp! zTsI$JI`XhrKgcZRVW)nOP{rXl{CSeXVdctn-Yk1S!qW_hVr^NgscD^ar-3SVg^D?db?<#tJ1&723~^CLyKlN7*ij#B5hq7!fP zvtWom?9h05@WlJBorN-omZ{G^Ab)7H%)mRu)-N+Kr==o4^gTTWkg6V;QB_E0qO~CG z^2*CeiSmPBle_Mbp47!Edg{TYNKVy0UT&K5g+0t=pYI!D}E z^|h$U`8r!V3ShZm7fhlS>8?ahd!L?**-^0OUHHq27@2N~On}P67=B0a8D&i0Z}kF+ z&G*(a7{iG9StL0z51aG6c_L~VgeILU#(xo`mkT8+NcDAi2vWi(RC_;a0k=6}R2Q`1 zo*QLeke%h9bVib$#%fdFL8y$P*kVD3q_zEzUpf`tCa z+(Rh>$b!96;3slBJ-CSYZ9YJ4%X__R*uKZGh2~2G)NoxreYiI0eqL7|=TDUCGlLs- z{S#v97q&dM0VCFL*OhNy{&t~PH+s#_aRkzL{yRE}Dzf$)!e_BO9Nrv^Zid(e}qmm}YPA7X~emv>~CX&{^{YOKY$Yx8N7q`6)JH zPs6M9&OhJfBtr0Pe}Qmyool|shNvSrkR{|wSF9viwucct*+{CN@2n54XfJfGM@~4A;naT z`SmCAjD)!fdlPy#498~hZtF+!!Np_5;ZJoy#%=0k7lWwi2;O+5)5?>=gU)jUxz7nX z+(^9vy#Xw+u#d3Y9lDa<{z`hOgIC6+^3oduqgC*SLV3g~s^4Adks+EG#UZ5PF4*o& zIJvx;& z;H>Zv?fAx-obC-t;R1J4Tw%i@%BMnOs_gJEe^!4o(;yDpQ1fw0a<y2WtiO7(aY9;q;jz{@ zbG(j_;|>K z+BB|PdnD~-9&D1+7H~GrZQ+wKWI9%SRPm_$!4cU@Tv{5eJE{_eh7$&OhdYm|uUYXG ziT!#aykeHsE2!-BKt-=8QOzO2W%OtGg4x*;j55KS@o2+^6}=Tuxx> z#45X3K{oZ!I_U(Qje{nZ1OG5PvMvk1K_sPHv$W^vG(>E=au5aCOfT7QZK%Nism-3>qXVXcTDCh(+TEaRkCg z5aD%Ez2#OTSdAt^6Hu$5wxUu? zTdqChaBZwK1W7ah-`eNQBmsNhKJW8B&ztATnSJ)&XMe1{_S$=`z4lu9(UbD%E$k|Z zP?NKkYNVsJVtr}cYkU!xm6-ZCH2E3MoEQc#;WX3j2-R46i+UrBAf8yAk3Lp1h169< z@if7HL-#9$dB0Jie{@`GLo$`mj44XAjF%3P52}4uYAaNu zaJYmL5JQXZTvHMFFrRm$D^%}mh6zCO)t?-9khJ7gvddO_cJCNndGo>(<-<(}S0&XK zgNdte{G94j3kSGoc*iy=m6e*8N}dOUx}z1qmGK_uP#b%gBJ_I39U)xQlN=}eboo83 ze&vWFIqs0;L*2Txr>JX+SaJ?`uZsHZ@{H|b6Ylu_?K(fHEf2jov( zsLPCZOb*%n7am5AtqzqgV~BqlF>iIi2~MxPbr9U4ZchsVlQo}zn9sdS_n1Ck4765T z>w-mBN|S12%^&D0O`_g&Oy-t-Z%7}F#)bclqTCtI$KMAjm*ira-+li;-b=C5AE?t} zXOSPeWOKo^s^7XX*El(Vl7(4uRA0@#3p;S5wfO$L*gkvy{pj}eh;C~i4xrv~9t{gl zP-n)blFb;^?4t$N!RYJFjY*$ASv6=#6K?mKP_3G9jdP=F!ZBA>VYirL;}26$6~UHb z@ro0@$e4LYL}YLU_44a{@B_hq&eS1=Op|~nnYh6abEB00Ae@Kc? zAjV_wz`T~D`!k2y*D+&k_%d>62JlkL6S-0)sKJ{ZCRX>mIRX;JI zwsqT{>`*^HeSx1xABgqvW0eNXm_xuW4Rpt*6Ugvo_{`WbNh|5EKL&?r#*Xlo9CtJX z1}oz*e|a>0?4@vLWqi@Frh^CQCkB4CS9rfO=NKoZt^LGa@IS_hu^YxTj9$Tg@xZTM zBW>mGtoeM{Fs3$)wU$Ypn8xuYz4H@Ar=r=rro-}MD=O&DN#~(d{1t9|TEYj!s-53b z8pBi~{guQhV_yNo`kYMA zx)$yWMzx4DmxDGTi~(aza(6O&2z3zQ^O^8JU=O-h4)~WeW+f>e3F_uQr7M;B#r=sA z7O)=cUHvL!Gq2o3b-$SHa|BGX zVcC3OxDI>E(OY0y1`n1gQ_W(zV<4ss&DdU8SF`^ zojAVG7Z{FTzoM{HpIq3b=kcP&f~1bHC3}2?RHcG}_}^ea-Ecrg!cU4ep9{2Ey?_( zbjue9XWVk9oKmhNYc~8OjgxRPe!VJD!b3}x_c%vYs^fhN^-80!UPl~zht5^{4O;9x zlH4x&2*ouXnCreHI@bSz7tQh>?-Qm$bvzV5nhqDl4--}@I#>CkXV)3`W?q4bpWOlP zOMn!AksNh1i@fB^-Q*_)X35R8><23O7S3XYFR7b(8zD=D?jqEpLQz5+RA?iiudC1s zLSH3hJSoTlBn9Jbg_YfEux0IX{BTwAYsn^~-gk@kz#@n%UKDs5eO1~6Dks}QW7ZDtBNRa@ygoVZ?;R# zObbW>GL=zJ%n%8;YL4-ww1j)L~VrW7^X6 z_#}`QMzBSqd-vB|hR!o5LdaJhWDi!}V?OU(2d>VbX z>C=q9JGIu=1gL#?u}LD`1zEFc3$fHEdb0&+C&qd>)*X{1h^WtcOy)`*HU`YQsKbB4 zD(|yu`s4q?OY{s#&ex)KF18WjOWaVbFs~__)tv91-%ez)LZPN&t4*R>x>l02+BxF` zK>$k;>{>G>)LS3p;*SgO#27645sN@dW%63Bk8H7p);3Gya*}NlcJU1RdxSAPWX2wq z$nt(O_Ba9U#g`*VHH5ZGsE)X3;vD@dK-rVuJZoAsNyDV_!f}QRHUvu zwu@4k)xN}J!&#@bzQQyYMD3F0N=W&CQH-1Gi{$be?!pvm#&G=`IW1L;(NPKf_EX?= zE}+ETBw)75$`QYhJaxx+`!LdUzZA?A++CpO_wFuno3CeUFO~NvuwhW%|48CY;_0#O ze*{Uvn{E!G^mAixZXUmh1!3LT;|Gm5eaGJ$>}d*9AGF@H`l1LJJkrvbJ7h%9F%-2t z?%sbKHo8{#sNK=*3u4k-yX~ax-c)*0fhpFpIa_kzYgl2^Bg-OHHBQ@Iz`S$1aiZ9K z>?yvp`mFbwvi-Jzbjz3}iFP|C1r>IcrCOKi5;k|X=yJUz$9lcFc)GqMY0Ct%)UzvN zdP(9cMTo9V6C!sI2MKaw#C15G=Sri$3n}8Kg=&ls^tlxn?axq}Pm9U5SW8j6r%Lpz zv0|Hnc`0{{reO;X`Dg02(3cqfR3@gs+|&XFU0}iY%$v8RZ3^uQKPY@m;$1|@jgC*Y zspUfLOsWv#PU&TQ_h1`Qa#`(ziMB16;Y=sp{W!?+yBi8b�+tm~N{=oIko|j*WIj zKcZiY^)`LgQWV;3ld0^I!lat9?dM7@-LYsHT?ga{{j9-eh+H~{8x}R$PuAQF4w7Z5iP5`h_WmurhES7 zFLd@|O{?hrp%<)IEBji?K+gjpf*qKR>>eFiOn7tX9>UBKVi9qu=Xuw2o}w$vJ@>YC zZk>5k(?H`HSjXA46#ExT!Y9`+sx!|^ln(c)H&)82au)xy&~*+V^b3bL*7Fj-lupco zrA+u6238DSMpisj%h9Q<2iyC8iY#pOF?o*bk>|vt^1RZK=gcEK>$Z&x{ipnl4yd1r zhgD?OA@wump!%8iHb0L(kQF40RqET`&nvv%b|3F}bK0IO@v*~D%kHcNqzTvegd}bc z@YbExhwNrVz}L~8)lW!fk>WAT*g-ydLPQm2><~c&DdYO!3+qdkB6LyuTJ`c>a@;Xu z5qtFTGgMk6im%nqzG#~K_Rx<97E(5i11vDr8DP8JAc8Zl4~tI z@kb;;O!+gO3Yn_{dX&3N#^C{T43@4bNK9kz&8+(|X4%VfNsmr$84%wtdaz}ngJ0zj z*U5dv6*{5*{!^x0tr#Qla7lh)-$HEkEeSMDsF6b}XV;Btc3KA$ z6~^8I%BO{i4Gg3likvNnB6*mZRcfl8C$jtjTaFvjCY%BV`dN5+kUOrwQ+(s!h=Ublta|viL$pgI46_={A}?(tzRIv?wkkS zVy&7f2Vv0=#zi~bynBnnUs>5wo_kpQG;YvbCbzy?F}b3lsJ+!PY+g^f0#eyHa0F^~_^yWre|tuzE^g;}iMNV`~=)TYD8I zob@R%Gvm}|XdunZ2IGH8hXe5s)8UNxdxYJ6Ni)+i{wl8?W7|PcF}9b$*SW)B-Pn(M zrCMJ#`|)%sDbDs=#QYu3cAaE?@)(Ww#lMy+_zR~NEa{qEt_qfLG9Fe%O87L^wtytX z-7VyR6xOzEkhRSs$=hrRYul?>+u3(S$NLAoXf}iHn8n{E(cOE8;=f9V3*w!Gm4`nV z-1EiM<`vO=c7opb0L%OS5h+~QT$Sl^H!EI~H4M+jwsF)GCFu>O@ub@9#CqMmmiDbG z@@&l!PIn<8mxRFYV!7dq|Eh>094}XX)TX3Zi3>LEkDo_Y#qnNB>xGech^7{HYOP{! zTNvKIDTdci+aTGg=C#Y@^9YmTbM(0>R`(fFB9;ryTxnH%Ri{C>VENKFJF+~ke=YGSCWNO!b8uxo1i7D>)48nuluOcFO!k|7W!4&tK zDdc$&)Pt;8;mh$40hHo?0}92Cf;Ni#eOtxD{l4gNzjwp^>QfcxyNfgzcFo;N;s8eb z^e=l;iE~2LJ1##oYr4vd_RpM3w zWlTe)S!-=0m*uyr0>BiJ=-a#Y36VS`oQZh11)O-474l^ zI-*y>RkQ6io|sr2=@u-X%hq7%?Y9Fpt1 zlIz>4T+OqmMaOz00(i<@Aro2#Y0*b~fRS~3CF5t>vLt(axVSHu>C-Iivhd-*q>S#E zOG8{f{AO}mDuc_1?IYc>n?Fp}&*9Bw+=lSx@;Zb!msjD<1r}0OiZ_>%g*TUYcT5y-E*m~u&2!<+ z%Y>~I-du87_F$s@u$1epAl>~K-aN(h3X4CO6E@vR!sJnmp{O<;*-AUmhyB)l(jIrx zs*!M~Zc-gacyq}mFV1HGL`BCduvs?XJ(xbyRGrey3~QMh>tI2Uu8 zWjv|kYAttPiobDbsoQv&+<< z^B0e!sTjMj4(=v)-ry(<9i z-o5J#^$b8-cJCT1VUOv-8bVLKs23F_?J^iNXQBmxXbPB3LHvLfb=Xaz|M-vpcurJ> z8D+8*zW$PA-e$knB?opTm?%HCHTE%CTRXax&yWKBQv0z#6QMo3S9{hU z-n-$f!p@S2{m^LnprK%yvwEw-#(7))^YF@gP;?k_k$Ce7wMD2|GU9`o8vz?(UJ-B* zPb{>zCY@ZvM^#SUc)`K>UIr-eUJa+?>Ap_T*9FBc><F? zkC{=noqjpX(u2fA(_nbdQ0WzGqOI# z(0jTS4jAG~d z`}I=KaZ2J^W8iPmGlpilge-~oje-6sJ_dR)r7@V8*dyQK3A0bQRjVs?LD^I0C>Vmi zO07d2!mMV9L}N8Pz(wxp7<6@i%HX1md@C)YiyYDJ+9D94-IM_ddnD?_<2dVn!Ok=5wJ>dD~%1+0x*-L$KFp0e-Y+z+v9$TsKY zaw*d`H&MdfhLN=g<*Keaw}ddU+1Z{}U|V*kVdMhVyVQg)L_q^|&k_Pq0+ z8;}kLgCz^2C$ItGT*em^X;$I%z(j+l17#VgP~zvsSIU5Eu?Hy)kwThK{_NgC+|H|y z2yTx%M3#!fN#`=QlUASEc*x0OI$Epi5m!3f337WNJTIWN*2oAHuupbs_6VwTVODD` zBl0;`As-XLI{E37#w0Q99CQ+VD0j9Fi(YrXq(=`W*Vm^J9|w)~GhNh=I0HW?v$?9i z%9<(2o_wdbY)z&X`-snavt+`dLibxC~5$hos>USRuVI%&-dZl9`tbGKi@Z;@PI zHu|y}Lv_~Td7(Npw=|#Vl7ypDW(rYm9KCgM{)8=C>T3fe#N7lTt&LEle4!p&wye29 z(mqV8iI{HonQDTj8(yj!K2auZRq~zGBn3pi#B>__>J%EgJ23^ZTeP6%q}$ypN0YCd z2Y#Dc>@fau>tP=V=KShCXop&H45i@0p#xEc!A9lDO&Zp!O>;65wO%ptY<0XT2|7(O_YUWYc9dYth)PCH-wP??plstZqC9dML~SyGDr6gYU4w?!X$Q)#EO(Woy`>HL<`>a2}E9 zHFtQc?4P)kXv*Z&h(YLp9_gLR=86$tT57X092z_Q%hC zn2I~3;(A7|efYULgu?3Ey>7lyYg?YHHqZbVelCqPm$EYubI{ zD&@J7ko)CTbu$-*wEGegcbKi7F2$bu-V&PXu@-wfkO@c=4V* zc&dPD)H-awan6=4`=-QKKTG4)Z(r}UKMmD?ah)SbL?69KOU4H@+-xYOzU`61N=_Sx=jq+EgL zp4_2lR4JX`qF>T8ndkv-FN*^G^(0$!ff{VbkOhj*1m0 zuY3Mu?|fS@BrkD+Xu3~`1|pF}wmUr4pn-sJ++y3@z4#dz@Ws!NTZdf>PY@p?B(`)l8bt^DwG-jUe{`QSBG&ju^+N z2zADD6500mfFce!?#kwWNr*>v0gqMF>$J@|{4XVHa}80OR}*ztT?vmnBRtmM%%f=y z311^_^IgPk-ay>u&1>vun<>*)TZo0x?G|-n_%vl?Qnh7**?5e$s2dM>`F_O0gkG@d zmBLqy-)r*o2<*pah4`S=YeB!jvlSojo)uJD;!Mxomuz^1L0igPD{SFDjY7@ zY{2g`_h0;P6&^5`AN3zBeAisrV?~eRA)5@J{*a7`DvZEhdHh|YGh|k9U)%-95z;U+ zP6S^s#~@{>5c{~xDxJmY8WQKEGKZ`K*!KVQNsIRSRiR?RL;86v-A`7^2W6$K+t08- z9P6~HoftG$^L`Sf&%##oOt`}iedNrE@*^@0?}D1x=JEEXT;_A?DPkDa%`Xy{IT-jn z#w@CObcMC|N}sR57kTW_8wwBT=T|-k+y1YTx)RS#N6m_!T~aMk%lW47#^a^^yax0! zP7R#{-Q~iD95kkwL+2slx3A!II<@YrQ45FxTfv=NaHmfDb4Ma*|8O!z`5t881zpNR z@+gqUba@DBlnZK<3u=_FNg>7l(=Z~WjN=A}4?N02*Mh0m0pkyw&E?0!ujpqKzQW1O zooYo|pSB(Sj=Hz_aQ=$;^qKX_w_SWSV6d&0JyP7rrcjo6p%Inwn*<%114s zWl3%(W-Pd;U2>z0%rG5sbtUZ!q9P&H`9k{H)y^nd*;1FAMDN|G%a@yYV&brN_;*M1 zA$6?3j&mm<nocs1I~`ijld!p;TZ()`8@ z=yd)QlAnbX6=J>$@77vx<(H*Ki-|%oW~t4Uhs>3)nJW)sTyB)0qYwR3GdfwcIPzJ} zSPE87#k!Xrkb?~$_V3ghAYA+Y@JTLBQw$Sb(wb(um%>?2GuK{j&!6qBWn-OV`P6l* zW9_L|u7Y#x#XWGuF`i)!i8wX)^Mi3W;fW99!J7+Qi3uJZaqi{Lx3H>iytVRet8qW# z4qtQvN=^}{M2c`({#JGJQu>-Sg|+yw+kRQMCcABx1zD`oirEx51FI6YmjvKq1?z1Q zE{KQ7=X^+EV_dwv)MzX~vhy(|hF2D75BxU)cilSm`}iv)0SBPLd2LhJg~X=5Sfgutb1j8YL!Ne2{HprRjt%uSC)dRvI1%z`WPFM;sOApCi z2z`Ec=|KSj@a$y_51ralQ0s!~YCJ(k1J%{CzRNN!8BvY_P;wE_Iw;$hOo+G9=iD7Pp_1#bWtRQ*~J^$L~G6B4L0Pm*Au%WM^#jped{yMgWCpAAzUf1w|zTN zFMXP7m-eWZNju$X=5{6GoOx2ZI{EXqaH*Z(6ZvgfazO~I<-m|V02`@Bz|3{yvN9aD z7U+FAQZ@R%%)R)&wR#~}HuUqIw_icZFMsY~jq`Qh*{gyoUu4cbpTPl3Vl*0!75y2B z5zmhRYY1i*?VBS8FmcO@eFtGGe&H)&F2A9*p2v%@-Et-3Uzjegu!CzdTI*kVHJnj; z^#Z-zaPsxb3}+;#%}zjz!Sf}H8~e1_tK`AjIfeL)S3~ia`E7Z%nP+?_50s#_*i!_I zS4))mx4TqM-hFWx6%vs%f$`i(yh7>E0fS2IU96Cv#7y%Zl^lP(z!c zMxVO?f<(Kxx|5Bh5@uFZwL7A7N4=MrU)*>sTHJDLfAS?neC{>I#Fr#;@`&YJlT`N_ z6X&@fjBR<-9$w6TPEReSRg>+U!cM}5}B6k+CZMQLC&M-Fy z&5aYx1+J??#r)%Y#E}Jg>n}wQR(T(3$Z*!OVUbJB%6DD(%E!4NuGyW8%oC3y2(<${ z;AJD0uNSX1(K&Y6-;BP{hBNH4P{dgSAeDs)WQK0;nZlv1z zii$2vuvbicrSrqgh8fO=pUQ+BE%lgzG3pC{7uA(1dl8n;=qNyWx}I97MkV8H`-*Jm zsz>=wy_*xV6ZuvkTXH7H>Ckbv-fOdQp~2o2vhSa09-bjTXTKpFR9>ijizMuKeJ z8FL0}u*?^EDc~isHHpq=eLgnp zlWRik;+$DbS`c=n%0oBIOi|16?OraPRIQ7WcTY&(ou9mWsx!{Zh)Ja7)iqVtM>zF; zzvxX2Jac6ROAuV={K)#m>I6QwtF0}m`$$hFKZHsGB-vTizX4n-om>Ct^C_w7a_f%C z!DW?6eR7`jjNmsdN%>Pq@6mCdvsSoqw5s(AV<6)R(W{MS_m(WqU^We8Mkn-^OwADO zTIB&51O0u@96ktlv!9<(?OaJ1J7wcmFzW10N2UyPu?fHi+&1=5xQ%z+Wc6jml2$-j zOR4R`WtC6IDC@s54Qi3i$R=#ikaDO#SS0+P>n^}}J&8M~bDTxwbyb+18iGavWyeM0 zj(RW`I_J4@&ZKm<#P37^u?ed_H`A-N7dQnZA-T;+=WtC1{R`+P;)fm9UX+XN2}-$` zMN75Y8l^qE__BcU`wX05{*Ig!(7}(}61RX_w*ct}Tf<%SS~)CHp1C;sgd%w%gq`KVWESXqaGP8x5DhmwzN|s5yujX2Nn}6>w zdcXNZW^{JlkAoR{F&fo1)~rGdVl`b-14)rPwd`DuPm@W4i<+p$XRRIgXn5T~k2{g0 z^s8S@uI59r`)+2h!jkMzQK(df#2b51#lWC8fx+U96e<_ylt(BQ4_LJl9pkf~0>y~) zra(ry{}i-IwYwp&eyU*2^bWcuUY$7JW5SF_KrEv%jIXFDdFDQF@44 zogg)pC0fO%(_vMdBG2!sO1MBTss~92N+ZTnG8lhctd$;e{_7=?_-8olk&b&fz}q=e z_z;W`z`34WCOXrYD+(FCZAuqt1WLp|p=h}TU}&u$5`2pN!3Xl2iK!u_Xdiz=D&L#o z>GjJn{8gxZB8vetvy~~#P%v(zWlkdCszGw~{ysv9ybmn zTt2eEHJG&kRfU(2?|%w&x}VC}{b9gdjy&#|1si?LzIIG+d0>IQe(Tb#<`X0JJC%vg z`l2^6&^>By38wAEXO_9Vr)&P0tdaUsYt+`oW3naZe3f&Saky}o8FHc%h!Lu{~?5JJg&kVrKbkBr{kjG?N#+-^rNaB7$zjK&OpTzq%w z@PQZAXyB^+<%U4*0f+nS6`{3&4kj(+*gr&&-VG5xrp5L%@0=54cWtUU*{UR&tl&;u zjP5oUoD`WPed`XxB#0Fa&Dc){q-t9;u02O<{ZC%5MW<>@PWc?_i9aZbr9BI zgDsq3u~2C!@%3bB2nZn=k~15$mWRS9wRp0OmKu$YPoFKW9kUtBJdAUU z)Sv6h8EyHuRwTD9&dy3q3A4q{Rtb-zx|D2yJqkMC`KnCMkctkF9|Ipf#ig89l|wob z<1D`mX{>2A2Qw2{TQg|8)m>P644`L74`b3pkyq^Hcc~bw+L&Fgyi>x0qEmuaQD0#5 znN+@Z%u?-Ht)%(6n>q9G>CV>i+Ow}{FPid-eWuaQ_u2)z7gJ8+8*{>YqXB{bv+7n#r`aqEFC60w)M$TmG*3*`VJ=f-X63UPIvv-iw0HSHG;F>c-<3 zk}}HEI3vpq8~ahVJ|@tcEjTkKGZCz_xVoEDUd}K;wc?M<0;a68He{`0n>OCr&RLPS zP1`}xoF3mu9;5H;TC83Icy5R{5EyFXOgu8m+O6*rUW(JS0f_TjzBVAva`-ezoF4;L zr)=vMN;NZ_i_`gBYOwnkE;ZQqzi;dGm$1zmb2kaDGgbDxu2?}p^a3VISn*`*c9zpk zkzU{4CTPz1ydB)Jo!$;^xs-a!dR^^gwgPkZ+fby9>EdMTRsljo9>8oi)VU%z5fgtL zt10lxR!4*;9P#p%+B2U!WV!Kn*0%V9E%=)lsq(g1fOd_5_H0^}2JLu?5YQe+arJ)% z?Z;#Qv~Q&IxuC7*U3Sd>0BHXmk9s*irbvFgtJJMA+_ozxg544YP44^j0pGm1M zXzAdC(!m*|Df6D}lrCiT5PrJBzuIg(9G)o*bz_Zn9F|vY!W4%)-`n-EZF>*#lG@SX z(e{Xu%-b~8+xmG-t(Y(Lc5m6vwOn^gbH3$?@27TgsU7^WHh1&(9GIFOek>XGzEm$l z@oWEj%PO?IIExJY^=3kBwtUD66uX_AZgl56i*JxwiJ(KzEi(otZ+Z>di~6iFS>@+s zBk_r+NKj=>l%`d`C5glLSJZtf-b5;5)bLEl5C_J5FcKCaebn2+AqOrRvb`ta| zJt}a|!dBUCCsE-MeX)t;fcaprIM%u4adIcGa>W{{DW$fQoQ1)7Ly6wt&}C(A_;(x5 zb)EtRhj>w(%PX@4?;KZi0*lc~oZl2D-n9;hV9?B*I~O?ZBk0p)AD1h!%!2-+z0SO4O7;=5 zB2$-Hk;%)PJO&RVU#E#aM4&T&a%g#^VW568m3TJSJULDTpKk%zni{#LiX2BII7$5) zW7FhIu=*6%CttFD8WJ2U_i1zStXD7SvU%!p@@!YegsInPQRS)c12Sr_e7ht|rSm)KH0<*2%yZz*zc z_O%?%hl~ws8M}P4T+i2Ut9G7lk&Rky^b5`+FuU8Q(QfC9Dkz=f+}3k^{G*8IMAR9# ze&$2T9>yzTbd}gKF<%y`Lp$R|(a^%w-myqscWLi6KAwG-vZHEd!Y9u3GP;@YsH?W~ z`V+Wu*zhRwoMY9>rqyEyuts_DBP=qA25OO&eDCShgpS|Ej3QUa`KF4ykoLuI zB+e@w8;d{gm#LC#bt}7z3I=Ea^axCE-occ}ah8%pDZ|Rq8FSO;C~YgXe4IMh*Ye43 zzPbA3@VSoKk(fAK8B#|*qGgSWPxL~k2PM^^Rt-$vnYe65@R=qDa{_dz)P+vhDLGdU z&G`=fs(w*E!Y$kSiOwUZWWLXpwTPJIA+n1o~;d z4Sr;*%0XIA-OOQ;SX9j%;!Q35s_Uri#k8ZcImtB~L33IXl3fJ=tIr7ed?*0yzfWdn z0Vh@GI(?v=%Rdd*bZ3{}G2lj3^vQAZDV7wfpnJtLr?Z+x8#xMxc%AS3gtFA;z!N}} z%2e=Rn79qq5S)U&*U}gg@N9qr`cLVR>SpFCk@M!wojd4_?TypCvAKOyHm}c>y(Qk* zhKZIc@p@({3%;^5=(n;(YdB)f6m23j%#zqzO}^tA8=cdT8F79pEaGm_+fBi;5_$w-BSZeI;B4$AtRrLy;>vc3a-urJD%@ujXU9V06^0H{r0u1wVhfW zefm-IN~zd6ua#_5BzT%lV-}L(N`Sdf?81FBo($jT1bH_`N0IE5FizN=Rhnv|@h3T$ zfxg7~?mjqecUBUxJ1ak;&vzq-yPEr%n%!dF0?%_+*QqvVvH2=SU;CZLhlE&((bo{d zYR`6TcU;6{3?M}5*<}g{i9f=sDr>S&4O){$1xtSfW3rbD8dYOe+GRmG88$NTAlv0S ztGwn_<*ZWA&X{pt^w+34B}@AoG6g;6aYI^F&ffUgpw-!VOb;%cpjmMp^jop!__*I& zSu?Z}Mr95)D7Tx}yhRP2HZ?G?@R(MJQN`ziiIfiJLk9lC`^d6$mD?ou5&NwzIFU1sK-qV;VT5KIhlo$>4A6 z26egB_O0b;iGS$gs+2}Wz^+LB07gJrZ*04SRnm-2mZv>|CpVpmUq$b^(oM*0lgnFN zo>k8)$bn_YCw?+qJbw-EkU}PXyq9GfU5P``WZT}uN6z_+xVpw|!EjesY!cs7@C>Q0 z&Bs$~{RtmbH3TC?y-vm3ZfEpa$u?N!ZsFyTJVs(JgPY-Jc8HpCb3? zVtz7;dZps?<-|7`y+o{yJIh+!;XTiaNx{jORDyL0dwxE47$qt$awp^D672z0PJCKx zr+U3u|Auk0Oly5wy)D#3#>vIerh%B$6Bl}??Ocjj<-}Fd^YIhMjoK@sXC-6OYSbs% zj;UVt@k~U?R1_WUX1W{`;~akyb&Gxz&)f8Bo_FaHo*VT=JXb`|PRt#MNmmos7$@uX zi;RUv_5T~5t2?$94_n==p-7$kBBY-!wpEpN^33Q9DRd@-hn>i2IOO}jijvD}Z&Np7= z_TQc6V|gU#ON^6W#opw}d*ynn;E9JD2LupfJ=BQ_>Nt(f0>Tb4W@E+#d28{|#(9aQ zs<%{AEn5Z)!Psb{T}Fz*d5SE?$-A@%dG3kKyn6#wMI5|y=73LsUR+yI& zpF+6keXiC^@-*(&#biR(b^E6I<|RgY@rBU~lD0H+SU(@$ton)J0QuHvmmcAu#&C0T zzgwbxNmn~Udse+hoJX5nti8v>T9q5xdt06MqRL_^l8}ta#Hlj_wRTKM0%jM5YDDH$ z+3nIoyG=-j^MlV6g%sK9z4Uch`~FHzG7dlXaYm?$)>@-7!DB)qFm53~-O8BMrC_~# zJKAb~LBe7bO)@!uh3;xQ)rlv5 z|3OOrf9%;W)n0*%*;?xpoL3D2=T>S-gR`R11?R@$ZQ=HoJCK%Ya|)WdEB;q#R;KnR zTI)3G9M+W|QPHW;Tn{vjb{QxT)&w9PzTB#h@j|6qOzy=DZ=BY;QpLHL7FcmBEY$xp z#?SYq$M~O_0K-}})@#+wX-G8`e5049P&lw++GzzlcMcY|h{A@Tc+v1iMuQh98k#tF zScQ*oQef~Z`+K9Z^WOgtN9FnBgZ<|$Wmt2@y3HAe<1#8qk%8+~VSz}$CX)HBELY?s#Od6SMgE|k0`sc7K>@x{iS9OtcXLnV{@(SN%~ z<&ICHL2Q3RNi_!DYH0&!XtAQ?O^|6>Br{I$r#0YA0$_N^bqNwC&fMkEBQ&^7Ws5Ql zh_8J^#&myO3&f<>d|05RwcboFq4~>=lk1{q!8D9m3pxC3w03_PDTE55EMoU+v8#E- zT#>aGb+zB;%zNvPmMy!NPOOK#7zjc%&ZNAe&e%aqtt47&HXo!R{}+T2&FyNzcg@w- znP-)i#rG3!?KYe>s7y*jD6G}TurA=Va!M*Emq6oFks7;Ctbxm zEDl(+qD}5<81GW6#c)8Dm$QLc6&-1GXS#b6a7DV|i%zQd6(9t8a*Nt0VcM2ht#vf@ zU=D+@42#NwkX`NDocV0N5Ia!dN{*S;2MsIBSCw~_j4Dv4URImzjS@}J6Y6E|Mr*`% z`7&X8j1w#Mh1$-2B!oX%mxTq~M7FlGOWXMg4$(Ih!e?kZe}f}!7s}Slz}ep^_a1Vd z&Uo{W!Th;PqDNdv7xgA4SP!e_iZ}Egt5fp6OwONYy!nS92Tkz*D}AmSAdQ8FT`ize zsOjz~;*Sbkjgy7Z>Fxp;9nG3O!rek-oI)C6Xyj`<57wHgrFJ^Dl7Y@JT)UY}wd88p zxT-Gvftyvofhtz$*B7_tQC+uM`2?!^7g9Jp#;ZNs-6wUcCH*e4#KqF+&`D6`OgSdl z-!T2g_?*EscRBjw22jbJ7K07NUD{7&ZO?RfA{mWdC8lbP64V$^%8u5ztRV|o7a?xX zUx`+Ud)w$jnejM8x=@Rmqf;?g6v9U7t1)P%8OQlLJf&M5H3KVimn0g$--Dk76HxaWy7WU|xFNM!$` zqq%dvJ5cTrVZ?;?f*}!Ln%aTJa(OY@WzaV2x4D5e`ps&OuEpMGc+@`q-=k_V;MA8G zH`iTaWbNb(&A=No2q$}Lt6lcg+7FNWJ3sU%st_2DOtwiB7L|B9KZDX^P3N=343`Jk ztja#*maX4?N+E%&&JP35;ZG z3>FmUg5|KWt8#WwQ*CW?yJBaoc0m#d7U030FJa4;o?t!rfbaOb*mdT`R8jFm0KkK% z_gU=4G?+H(;S^La_n@j68R34e*WD#{a|)uP1fuKKbpFYon09+|WMZldr_~Bh&v>~j zt2+M_aQ60`4wv-2*llmh+5dOo@UIjz1P;}w!Qm-NPQyXZh2&T#SDr92+0>1Vp2GqW*PB=F)&PN=zER!{sHawOxgGiSNX#DHRP%Q1B&Tu`EL z*wFoX9e7-4VZ>2rZFsM{OY#_|tLs|S#vk5koG`G_Vk;(P)EOHy?~Gnzp}H*=cTixU zUx^8B!I1=}jD!VBw#l;NJcBJtS#A%~%8VNkT)3;i?ROJxw9CdWLn39j;8aWGV5MKQ z)JB7|r{E0Li6}7H&lf&@3f>e5h@3QWb}AA(mnu>$ho~=8;`sdH;a3z}jy?n_AC&TA z^Asrr0%Xh_v1*!a52|M?PbJsd#B#kO6wqOXA;4E5t5B3w@8$z zBUx<3WK2*lsmhFR z6GGRQA=~B5=oht}V~XBn`vc@&E-N!s*D_7jAGZVM!%}zpgUV!^^woKTg{m&BfLg1? zrmIS%$zD_Si|||%!C0T<-99XDAf4B379z-ERjqd4WMnJx9)(=~-5?>@wO!uS05Or; zWWY_;04*juIcjRjXlVDJkc_q(nchNMMiis@Jkd^DcbWCDB)9{&^^7^qpN));a%=DM zjV>v()Re)tRawh`k3m}d3TI&I>%txZcQYR|U@FE%>Oo*%sTwFb2FGlgijyh}Rnxr-;O#=ScRX;|n4*0t=+N2)$NhkbWE$tGqjFQ)O!1Gnt{|8XAmG$;Y+m>Pr zJ0B^0`2b2*osnu!flS>$>ytg*KLg_Q2qJ>-irB4Jim^BZF+wIS-;kN3=la{E>*0aT zud>=GRUH?FiMh$0nCSt2k1@U8s;|wR_Qil~Z|ndKp6jCv*j@@y`DPY*NZwZG34I z_?(ATVN$=WNS~v;wN0v+;e0)v&($!>mhb;D4Wk7d^#2_VqknN_D6aC>$aEFXcvb1= zX&7BiCzOWKccoPKbia2_t~j*12MgenlM4eIM_FUHWI`t~m6glN!J+EUXOLMGh|v4a z{yYa(=!}*s2Ua^6`hUQI)#b{8)g^!v2Udk!#qhWFhVrLftlx6Flka@-R_J2sAr?S;P0A_D){4Bst}TnR4w3n{KFG1H=OnwbeH?OD z9Qz*gKq&LP_z(EOZ-5`SVcyX)$L<$?N3?Ki)qy^~pM%aX z7*pDS9*!=@?ks@L+(JI&pto_dTu_o?M>7k#GI{wmk~i1+E#EX;Tx$lc&crOL$TT?@ z3pJj9N_M}O{XZr9g^8^skKxMpF?zo7DpiuJh_Onn?M?jB@Se6Dt%ooTc9zjT#kJTo z>_pA>L-K5UK|RH#9A-1sQ4xkEX&Cq??bKh0~kQsOh(o%6PwslnN zK8~%_SBKSek9v0S++zQkC(7nb+j+%qrpF$asBLc&wYBq-f@@b`Z2iT~L62gho@hNR zWw>6&LgG~npJGNIc6cS48{i;mL(UE1m$h%srx?tyUlj6}7`AkSe(d7M^!nlUZ@-Fh zdn`SRpUY>|Dn7-A7++toz%#!7G4ejcmi!nTPKN{WBk6EP{2<{Lm8TipiSJ7%WyaeH zH=js(6$^KHfR9OIH2VkXoY-EMsJKlGyL^ITDE&ozEs9q$m9&;54%Z~t*Su0)pJIch zN}^^jRHZ5i#AmAVBs{b{Rmg>^kcIlv<`eb$tmYFq6l*?#L$Q&>yS?!dil0Ol*^EE2 z&^#{^m5=y`M7mH3#otSZ3*xU6-s->hs_6LUdo!+xj-8kK2*AYui^OY-RMO=t=}7@= zax)$JCrP?RYyFn|-lnzQFTZzbtxfV9)mqof??$clPWi>NRUN-(n?iwSJ0oV>UJ7#N zafe0@e5YEr;P}>BQnL#0$dhRC3^&)i|#InN{ZE}*~&em>z2{;H}(^9YxboS zj&CEv@K(O~HeQje3v9&S*gp|BWH`RbYdSTGD<{b(17#_k$D407>p6icM((|Qp`eR( z%IDY-sj~GZHkaW6%n7@$ek2l;uspkC0!ryY{9^Jbqv~5|5FOoE__Ee|F-1#<7fRx3 zHR#jDmr_KTEp@xg!Ie;gh!X{{uEgy8?${2mj>MT;%lo$|xNs8XMGl2iT(}P9GAxDU z`d2aOfQIC8{RUB$S5Cw31NvTHPj?z79>r2-(`yOi4T6fqX_)jh{tYTH+a>5G#BU?Q z^BE=?2MuRqHNAo~Wi?&Y{2@L(mDTjHipOgDDE5KkGwd?uGienWDv}ft%@F-F`>=kHca|zwh2Ot+c5bck?rR38ZK_b1iPE1 zZMY4Su%%#`ROKtTVc(TVaT_L*W2O+Cs1#|(BthJU$+F|LsUw|~+b{(KI>8}3i7pxr zLOmV>r0(nxpqUTLlI58zA3;!#1iA(4Vy^sYis_C?jxUmT7{sAkjM$IJxm9HdRCdMQ zCgb!iv0w9p7Y3e;gfEV6Xp$49kQNhO5C;&_ZfD^Q^Q<_N$1>3aT^x? zjkpa9cMWkHmg;E=SBJO_6M*}~ZI}eqh~hR(@~7N}NqlN_Q*Ohg$#(QpOMQfEDqe^B z43i1v`V4Ck{PgUS%Xp-Gh6$uxpJAn+x(>rs6U8VwDei>Ozs&Kp=P;}~X{#|(PvtOd z7ADcA>)Dt@dp&xrP>tY$zQj~TTU>vJgM*sLS=fy4F#MFi9{sDE*R9BC-$8X8MaYD5 z@g65amoW$#a@runG%b;j4fIHMStz5*HY@RL>=vWSgo-jfI=t8A)CdMM~yPsaEUa=B&WW(atG@NS)d{B#&rw zNWf{oiRdR)9InG2C(2S&wWxQizqP|%Gxcd(_r~Y+l6xG7VXj7I%5~Vs^urmz9+6_S z;_vcWtd?gHvF)Ka&gOnWq@@Nx#FlFFdh=x2yw(N%CHH3gOa6oZ5jp;n>-k^J{}1_p zk+eZQGF*wtzFlsxj6f4wmbt{mqMDW5y#9QriTZ~%%Na)un{?qd8@N$Wg;kip>qP8D zV27=k4xkf0xMlvVWaHT4(j%Lug?scVSSr3?OLk(S>mjV-@Rp3kSi9mdOxkGn{BrT8 z7B#cou7j`}S9=PHs@;Q+YEf+;#Ym(0E!GEei{3o`iFJ@rkl!9__wieZ-)nWrum3=z zobXM=Tt7Ki@*IdCc>lmh2M&(f7d>|TQ>%wuxUV85bo@jAfwg18n`iv`xn!GLV+|DElWTPKcm5gv^tOEg zh_$^fV?IsAqM9{kA#!E2qF;->MFJOPFSE|XMwwOJZ!Yh{ELrc%877u{^v=%$i;T}^ zulG01zQMXK5WX%Loy%$V^E9}5-PzVFZzb%-nStYPU2xN``2!=OlW4#NXD24$@;IIH z=&n8FCNWzQYXjWWu&RRAjREl5UvbR5A%JGG#dBE@%hI$7^K?UNUD;>+k;ZUi^a08# z#7^DHzRr_@hS_E`_qtW#57uW|ANVW!+^=w7Rnbq(Z^G|!rMx27x;qfQI~WZcCky1H zsCnIZ>(#eDKK`2vblSVvABbKcjk+vxj(y!>75|LeT1isvy_;rIO3+#uz*m}EqO~w+ zF2R{tE?50mVu1UYFB%NLr?oay1J@1h+yhoExr10jGx>fA&mhn6l3?`at$=Gwg*MO$ z6t@swH>J5z^Px)hih}7|3EDH_Y!z0}oxf}Ti2TGwDpLrs4#`y;;QbfUtG7O~TUEP9 zgwPGfn!x<&{T7<%?1$xg@)Lr7q8oHj8aVoTu*$mfAZS|eEAja{xuLQk_jzA4cuVL_<*o_W6L2;=6!fQrEbc`|w{=aXWQ z<2Nb_!yJQiB}5}UT$eV2>()3y`og{T;;~07?FD%djlV30)F9Mi{ZZ2*oF#eJBRUD@ zsVSmn6gjp_yg5_)hs6$$tUMtT3=MRdP;ys@+o@bqzr7<5brPux&oOdsDmm_2+Jfx_ zk&bLM+-d24rKa-jy?K6>zkbggW_vL8mCSZ5Y?g)e?uLNUY^awhiY561P6s31Y+INFl5;RK!n7LZSmE3@JvYuA>I{&2k@5!x~vGrOcr)McKp#9Ij zH83`xp_IO1p7l!M8=di7yF4_TR{PHPS9RNAZX4B7`J?XK37J|%@@8en6tHP-qyVXovj@V z+Lk5rkl1YuC}d-DesuiJ3nD>l_vxDI3K}61M}=frv)(DJguspO{7AE2IfcL-vzGQ7 zANDK^e`0Sc?zhh8hA%qp+P9X|y58Mbz!MR;|6Rmb4}=Lpi8@aN78)mJn-zWQvm0jD z@@uUQgjWZn^NbT7xjRQDXP><|L(#hjh2DKZsK?of^NmjE-C*LQ4@xhGki4ZqN;9E- zO9R&Cpm~p2FfDvNqoUtv>_dNLSU{7@(kAoqcvL>=Rj1>gs3DTDmj65*ik)Gh{_v7$i>jV3xZ?Zp%+kg?}q-fsrY#TosOyXE*A$uQ^koAWR4i(d=qFv2y1AI%nH zZIJeh(5haNVP4m7-&BNA(NO0=V2Lp>o5h4U>C&oRECy;ZFp`7OelJ-i0G#krSziXy z>&xq`B6@ZT-eU&WmnCX_Q7NYZoAm{FZ&0*%Ly%I1{6<6mC&viV5-a-dhvprfp09dmXSQV{){Uuu8{MMg^Ru?O_3zUT?Ri}{~#!@!GCV)CnV@)5GNaHex? zQ)^upGBd1sA!9~T|8H}mYUI3-6*4|cLVZxX+orJ3+VtT3NfpxOH=-A*TYN53E|_l> zr}{F63mn$BTNwePGm!X`(4Et#|KbPd7bPdXj+qX(U z$U^o)pQLcKqOVC1G<;lZ6}Ju6qCj|2FnSY{N=>82FIaELEbq5B%>X6Ml}9Jtv}L}@ z|9}=PvMP?U8Mt6n;u5Bin{As~Cf(c@oIRlN1-1}ZGWm~Qa2WA^N6rD zh^hS}Hf@mfS_sTxZe!*?(lEZ43^w!5Cu7;YSy*A1mX)YcsGarH&?eQOw z$xYPd%^W#&j{~S_fq^7_mNaHmqO~%w7{= z*V46WW$LPEcZS5or`CEmdDR&TUS!>zPKfwkPLXt65@cx7X_QSddz)pTmlEe`>_nz5!^cVnou;q^-VprwKC(H2ud__=9HAQz8U?H z{Y=)m9mYX~9T@xTNKEd{&eXGdbAtL`I5e_+2nu-1(2pP_AdsoQujtZH&VprH8GNo- zI`6QaKl7{WzJ54b=-kDPedF;50i7?ti2Df6Dv8*oBARlY2ya>Pk_@K#6o!6<4867< zO3@f%0<>%nG?Qm@w)WyW+{#$%f;h8r^3va8{IuT}j^^pNB4}#L3U3H(%5pBJHZ*At z`yurHz1C&QxwS$E1Gka-ICEXF-Vb(Ek)G5u0?ukakb)8z$UN#yg#)g2umAS5?n*N- z4JBT9{wZ~h^=#TCwPrb8quB7Q3p!6kK@FAjh!g$V(2jnMH?N}}H|A@Zpx@z^)I^ z2RyB)H8_Vk+%k4O#K0jmb2M5fKyf~1ZetEK8UGOh=Xo*#NYRiow@6-R=Jl!j_o<`L zN|7Up;%WUcV6V<9^V6BI<~;pMs;pQ?LGQ{oG#bS2fpP0=K9S^>;&mwBF5MGxet;5_ z++scGluMn>Tc`}XwN9~m6Kx)|biY%`o4G^MoC4Lfkhw+Dr0GmU%+zpA(zUdT)yupZ zr=Mbx(EwV7&v$XL-Ps1Q#81;Owu(cI(Gk7lh^_Oj5pDCoB_VC$FVvMnike_j<< z&*ngSlN<1vP$e1$!bkswZ}4BaB^~j5fkSyd>X#LHMrRPF^?RyGW_J8lNovf4geKSI zx1O&ra4OTE{kvOENjl;YB9a@t%+*fcOo4x{u{kfG#qN`Wvgz|C&JJo4j~3VDM`t(z z?_2%LH0by;w}txk6e79YTAeYfF)W=watllpJFlg(Uc`4VrCugTKmSYKs7LF~2{iat zKs&(0BZ(~Mc@Eq>1Ypn;V?aTou%0SVlB8LZzZV=$E%))*JYdKTvB~of1(}6o~ghr2UW%Iaid}A>RDMSG`3|H zrwSn2dkkZZQ}kuN*wsuJBV*1K-fZ>eIIEBa=jeqkv(#ccDP?OJo6*u3D#fo6ty2zW zJX^wz`Nrm4Uo^`(M-K1Ae6-lC@5f$yw4la$RKzEc-hRkNxU_HGjaA{RH>B3yuh`^n^Y9lG*Q_`TQp(`fii#-;!7}q2}BKQD`^^a*TP&tmq6kqZYGy$ z+1qAE{4IZ?JM$yl`m3`c$fCP*sg}q>6jYII^q@vjg^ijlPp2_a zbsubr0FmrK)J^_Q@2Vhege_Vd_^KBy2#rja2vDF~7?j06H3CY#if z!eNEce}`l;cX@9*rx^tW+oglAsNFJCAC0Gv3ALv$2jdWx&Yg8A|G>)RK2Ii$7nw=i z|5f<1{A=wj5I@g;TBlXxizC{Ll3tl2H~z=hf>%@lwWno2Ub##TtiHv0dD=Dp2i>-n zSLT(at-eBElmYi1+Js1zTDG7a(4<+IV5~)v{kS^`PchROfVfx2ezWT)FC>aKs~nY& z$^KywU(9gOUEQ-5E zm9|N#enX(oY(Bhz0S`(!>Yb>Bn ztn>-d(mgUTxXhE!%&bF^jK#kfe!5T|e4}(Jl5z3kgP$(Ty)2t?%LCJtj-c^R%%0$$ z*6=h~b@&mnH;fOzt?z40YDkz@Ftf#HyG1*R`yY41c;mO^jXCHFeZfJOY_{x?H~*aF z>xDpeZh5#&8*gmlqo|v`h0e@vNOLV+(-?jv=c&dj_3~1tA^aXKg(4oa#f|jFw_aa} zAB@4kDA@QE~j*#rwb}S(vW1fI?430!h2WUG}2>vvbhfyITtNiir1N7 zQQD#Xc~>sca&tEuKI7wCq)h%L%kNThF^;L&UwgHU&tF#p=Aw32p96mceqNI zX22a{?z5r5r54XCX&jW6yxtD_SZe%1A$xJF7&Z9r zhv=mxxaf&X3)cLK8meqB9e*LwQ|Y8o-1-z7!AyE4S|z^GVyeJD<1VvEaARMk zgM4Tu|ML{d71#7x(P|m-Yk#|gfg{s{=V!V&+CO)u)l%76LMT3Wm-5MsDb zBbxf2JW1M0l7IFcU>Q!Ca^6(DTmN9E>u(x)soJs!6T!Ud<60r^9FubU3eW@ax4IDbal;lHr-s4llrl5VFY|6GQ(_kVmSTav z*f~NRd#LzQSJQ86!Em7>z>bp=*OnTZS&?rFv$6VjrN#<*HhxN3F?XKE`*(3XG8#$hS_gLF`*FrPo`xH9 z1y6w_;^l_-50lI6I1=$-&+4gWsLD^ViCUFm%ppjoN zcnN?VIx2SpV7?T6)mi_Ek;1;U5pFj&nU~2_Fx*%a#O5xW)r00xtMU6gg+Cxr&j*zI zcmGCdQQoaMsfYx(t`!`5opE9z9c#1uBU72Dl}1cH&j2aZ40^Aq%`3W180)C|%$;Qm z)y^pPa;p0zcUML2+Vm8w@--Pn*74^>^LrTUg|lop9GIK7q|~+b`$@U`>-(0X#-6@< zlCaVWo%yF$j>HQm!s;_Co&IL4ziDdzp_Op;!2`p`<@D0}n5PTwBAuA$x7-sb zYHwR`kKz-P@^wA6hB1cp)>G@a(Z|Z8ZFgSL(dzMf(NV@(UwTL2`q7Sv_h|TtQBReD zq}VzcOJk(mDUmhzEQyqKmW9X5x~L|~7|d32^6C3mnFsam+=h+Ty|GqtVrma8xCbbC z5OVE2C^^euoCg+9SqKCcp9aQ=jJ=Wt3T-zOBd02@a+yqfCj_0E_Q-Vk&e$jTjX1jf z+L9n~PL0zXsLDVEsV4gPnNZQ_G2&3)cS+@a?B9{G)08%jZ%pO&JVL2#l#N$PNZfvU zhK&eTb}3Ue3k1VPC=EKqtcAZ3T^R88SsNEyEKNi1V{5CA$}_G|X}pILg|!|XSUBv) z{j@u7EX-1k%hfWB@4WcMQO7sIn}K41TRCb(v@7xw?R0qc6nrCIOAmsN7@Vf^%|sjc zkwd-SqqW328;>2#DN4@L^Un-MTrWZh74O4+k!n=h@<$5uR&?gruW&AQG*-xB4aup->}5m}XH3 zxW#=y7aW0z@oj+Eq$%PXBYIOac`b14WL}Z1P3n~*SwA?3WL>V8Dw1{FmyxVa z4FlsRAXSG*)|5rYVGh@Fbew8@mxALR@mhG6#YE-L$#|=XHQ^q_`cb0R_kc;z7Fz@3 z^il}g8=+@Q?d#o3ix(N+`K^2nHR}w|`Ljva{nR%^x@J*JW09l55l)k^sUnbHWY~v_ z&%-72NEPRZLxaTDRc8>uvg5 z;TsjOB6GtJtr-vijXv)H;n$RvFi?!$M*HOpDP89GX+Fx9W$KZ$?f`@sYF+kprvUtwR}2)x*kwEdugYwp96023+d34VEW@be zZS-V|yco73&kQFg+X?zkli@;uGTo^Hl(}BK-fH)EdSY^NWk*UNC;Vw7I>6iJMxpS) ze{R6s45|44tO4^nfx!RNfVsANErU92B8xo7q0oF2d;{T21eN_@;HP4U5w(Ri?Pcq? zNQyEB2`EE3)7r{3&)p{!W>N>bN2Qgj7C z@m9I&)fop(*=&%@()9`VQtsvFmn*Mb!FI`NS~_>_;NG+Yi!V{~b^St>a)Yl#?0l~u zw)6d4(xVoL+;u%H*}iq3Hm)F=h(d%pS<2ivX6<`B+06UQu3NZoOv2iCQq6j-eJ{q* zhiTEs2t_}=k}TN#N``Ax24&P1*}%*wAni(#3|Ri!Y}b?@760`5TrimcJj! z70cfvTybC_<;PlbvNTQYE8-(;Hpmie+w>tFp1W8oRjpvuOt5ko^+ z9(4%ImY;?1sSJe4l0%lRbrc^n{T&0AFde@r)88JZ-86}ang5o>%zv8^Q`dyBL=#Zt zKy$A7um3eQo$+?9QTtypv~mUil6vCoe|PXWWa0Z~*#AB%wV-~gCBDp>{A&B(4-iaq z8c%uh`lZlWafX*|%C26z(Dm=+QTD&1IHAYvfB%A_#s0TlUj8}uzqXHQoZ?CTS@yq` zB0(QPO$c5U4!)56?`I5u%%+lH2O;0rb9d?O{rl(E?Q_-ro|iHE-(B1f+y4smbXln& zpiI=F_P;&!_DRpsu*9=lyAJYB+5g%UXoMLjW&hi((y{+dmcs+~zu(9H*Edz!{{EbI zru|?|obB)3(Un3u;S&9uLkrw!9FVhttFGl#%m6Xd=frES;MNK_YYy`ka(Bpzy6YL4 zj4#*^s|390y8W!mu5&_I$h2^OWU=vs~ZMivU|%rqU2;>_2MlZeHz6oPXq{vtq{z6rjS z@$a)(*O7MpH-gg*hR7F@&LI12KW6*f zZ;mHPzKQkw#R|E;>A%qmS(^MOSs|ZkWq?A{{HO8)ritl*{`UGLTTsUGKea;sHl#_^ z3VG=ltdQs6U>(ciB##Ge&XdDt$O^>`uVq~!y6}h_O*3TjUf2xzc3Cg#l=o+uA=0OR5P2$_)8w9!*EV=a8hF?a_kWcg8{P@evkbh~GU|QMI zYB_!R@EWlG+c67dwaJJDvfK<=AV0=~SRmi4gcrz)!~$6o#R6HbW+O#&RFf)Rldmme zft(SuK)y&G`o6^cRZy{zHMt3l^098j| zx?~JT14j-87*UCdsu0}Xx$5=;FZnIFFyM;V%T;f1lUJTjFcnxaBT$A8pb;}&xIV(9 z$s}%!=7v)P?AVKnqdSaS8!&->OXx_24d?~9?*epWv)H3Rk z)pjE=iL(%quWQxSX*{T|ZsYsvnr3`YUDJ)b<$9fQn|jPN7OQKvaih9UHRh@7mBvhU zon~C4uGbo0Q`ZdRQgxkSOit9iGT)k1;|eU2jA(q$Pz$zq;ORe4?(!#z*RU ztMRV7E;HUz*E@{8>Ux*armpuGud8dNu~l8~GoDk|2aJDJSD*1O>blnWM|E9i{E(|O z;l&!@&8U^s7whD9wYqJP+k4gRM!CI9-ENZG5_Kyo5XOz__A$Agqi!FU+iTVB6LR|( z>h@{5ovd!R$n8bk`gdFzV^ApOusJin=|oOSTzfZsKx7Yirv@&tCP`cuO*yPmRug`? zMx~S*ZIW`KlGekr%ulR~e)xo0lsiAMA)4|7GbJrQabq-PotcuJpSUTSQe~!O>p+_8Aj=_IbBxpa$QG#!(H)=pDT=tap@d6iG4Bz<|Grm%pjCgG8(}>ffQbxL8!2 zZ?H5bB*P&@XyRRTo50(|Ba+*FepohotLADXOp;vT$uSk2wOVpj!m_7SVxlU67-AO*z8=Dzhq``5>1NcaHtp~7 zsxu`>6yd$a63PRn&djUM7Mt{j|kzKZ~Iy;ZetJKWrpnTcCO%uX?~$Ct-(B ze$WPtlOLP=&{Fg;QS6n?z^qj0r2haZV8NT;w*LCrYTKI~y#Bgmv)&0tq11a6xqO{Y zzBZd|ef}0lctWvpVCwnR>m3}PkL17W`!<6!G!im0um#!fdTeYS1Ho%i`*c>+j-sPl zW<~8n+G%b{6}9WRN0Hb!uA=r^ymiUenQqup1%RDlyMIM5+iEd#A_6| z<3oGb!gs%H@4Bgz!nI69M>61XGh1x@>*rFzm+xHuZs#z(nJ#E5?T{kuiml$$=p}j7 zp+$v|3nwf4pfQ)hz&5wjSB{0z_S(ZM18n7eL+=~T{&6s(7hqMx?xJzC3@q< zM(gG0ABDs~#D+RgUioofhs2@e`{PEXp+FHpJbq4bGh@^&cnUU#cp?znpzg9IxbU}PMWD%nWvnYZJibhkX;Tp>( z!MKJ~{MASCt*sZe2RNJ^H~!cUXd$N!t`KDkbNbF6J%9S{7@j^557V6+DFzo9^E?TwQvbKCyKs>xHkv||2oqDR#tU)&Hxn>g}7=oV_+ynlN|A7 z0mv5*d5xedB<&0?wt8c)SKaX?igXtKb8y9DL*w`Ak)iQ>^Ucb;9vzA=E3S6}_hq|- z{Bk-ONj0ojd(Y*DS4a>pfUl2g;3x@j6iui&)e;@*Azu+SlU&# z+p?N-T3(`x8sE1Heb*HFE;qgbY73;}9o0zXE>7>&w8cv6`Y9wwo41FL@MUY>cvwqF z=e=n;ZN6N7m-8FX&+Run+As5pdR#w3O{6zG0hc}Dv2EU7;ep7>BHi4&9-3d<+}$DqV<=UA4rubv~QDg>vz6h!z0QCV>hA`+P^=m1e@fwHYB#f zU%9xph<;ivwL-_)L0So#-Cxv;=S4U-zJ!#4zEGxbw0et}m#V4K68>3V$n8r~scz$W zlN<^pAs#;nESN+4Ywp@C>5{uxPJprzn##LD??IMeFWZqqFZVEQW=!{M_3OS&Vmlbq z&(kTk%qZcnZs}@g9Dw~-DFMuq{S}{+YZ&xtC?DD*Ygxayu` zDp?r`zLix82)L!?X9y}kI!Bmex#bOZliZN6sE_;toV#Y*@6y3ZS-1y|96mt>vP7r9@z zc-WLUMRsR}w8W9s?yzknyP?;e6{3LaXA4~T{sI#QE|>C@U_Nn?Cp#+Lyd%u?q*m{s zHGHu^oRtB~+L^yo8%bJ1*v7h-bqUzJ>V6G0(g=@o9JQGTaHA~DrmPUfSv;<~A99h~ z8sAM4qD|=3yz&9pBWt}%GEDm@+C`mT(HJEhs@17(o#a}r`23a+}B zIC50kqxI4E~Y@7Ag}oo~GZuO2B@3oCnH*Q6LiD+I39#?LK>o{?xg#^)$q@RfkBL@>2EU#_8-#_b zPRA|dL}Td;8HPIpGn7_<@##0E;b~~e-t2cp@-&COa_7X&Rn2Lap z!a~y9jD^T2_>5CZyxyHyVYlKs+Z8e9QEy9bAGPLb$9+@tv`(5nLg{cs%{)w%16I4e zCUcN@uMaWd@k$fsQ7!JItNa|m7dlT1qQ0qg>AJG~#JkYQUbP6$(T7v+?aMZ`MP@0r z2HoYK#mQ-URE=C5Vxu%>U^grNd$o&}RP}}(ORD}Dwk@gZi;OLnL(GUkMpACm?cs68 z<&02N10+`lD^uLgV__7>Vj4CGT6cSXs%pp*{nKbeLI~D}1EjQK%VPCS7r!ynVruP^ za^CQ{Z}2&8_>!jhok{3ug~u8{fxL<~Wed0L71ENJ+H6b%m*t?jjlUYoOQ!M`(Z)$O zR+2~u!ta@CA`7CUHs^~VXbVY0wM&dSQqeRclS{lF$xF;H01zIhTWHt>Gt(Io&Gu1e zY=kgi-zJb4zJ|4l@mCw;q4%4EV>8tkqMD_B1rEEGSCwqM$dXfm*;UHK$|qbxKOU<@2?C9-Z^5^vVwD(RfM{hyS9=d9*6U_@)#`Y#lhuHqDjjLNU6SwJV<~1t=ZvP zRAccLLJfDUqnH+G3XAq(E7>^X>8&|t%YIyyUDkg}-y3=_(Z=!nIAa~rsuy&DX(LtH zh%#EQkT!r1Aa+&+ovJ$lt6!~3>^EzhRo9wVO>AY;!+NUKlbGzk%VAN!rffb89}az# zi1!>5K=%6In{w~2*c7&2@30e}{NF#P68gy@>-dlY7RnSLZI^cP2F5EVR2YN!sg;>BkY_%lnV-VNo0I_qN@JuJEZruekK&~g z_kQeMW)+UWYA*yj4Z^|LEeBx{Mo8sd*OAHOaiWDMAF}fVc zQOpOpT$wUKhfdIlJa6U@mkT+|5;=3bq2V)Qp_2kyJ9eDHr`yjO7W=Z3>t|PWF3a8D z-$#p9UOmL{8g1<5kO>8-@2FJL7H6eMSc;A1;{+0nYhWXwo&}`|*jEkS33>=mWagC5 zlTz3j{uP}TGd=f+uC?ctcWUEHjZFEPFGOIpnlXw}e~ORLY3|X|UVXZ77=(`k7meYT zzLQrjukdhG)GIO)N~)yegBR0i%FvW12 z@~RK|9B8xIk-{g#u^X|(IEB;)^q5zE)R!zwl8@omg;NV{=I&xFe;NwjJkkpLV8u4$I}Co@q8b(*y(#g}zf5#=j0OHx3^=@XZi9LZUxq>h z;N}FALuRmCN9#oQw6Cq0J=@}&jMUaQ-rovM#GBuPc@yQM&_F_e2U}^}bGSz#H??pV zE!78do9ZL_US9!jHb&w?&g0LsX#J(0Dtoap?NZh&LBGJv+F32VYNYYu#f;0SV#AdN z3@1??x+i7&2&xQUg3-g-uoy1Jm-<1ZfxX>gDJwX^ijnz%;X+t@wZN z{d-O|N2`H-Z1+9JrPQr=yvwqodj^R~MXjlxUq zrVZLy_*emK0UUv8m=Z6r&ku~?tGsV&Cu`3z0&`YXRoRzBRAY>rcPTKT`z7Ipssks$ zJNd_|6Z($?=O+NU8z=G2Z28XRr`1UJ?a^=Dv2R^xJ_%#xZ%U|2z=UTCAFBz({gtb3=>>8#Akhy9P%~YNf_BUv z_9K{zLSA@#f*A`c0=e_&`)5Cou*-^-kGHqKV`5W(dsd6E7>zKJD>MkA12#u}(OAoW*^{*@$oQa2J%@5g4QQ zn7vSW;L#Z0i7@=QXuF-OUTvTcEyg%0#y-ZyG{{(L%;8-btr1K$U|cOvEX1z)pEIQ- zWXh*rM_FJRThG@?9A5njKRHFTedSJNed6EtEWNj`zer3>fCjM5rZP1pVYgnhlXrlC z>qUE^ztjGul5YR(Y0oEm6vG{JH&40U!xwY;qP#^}%NVdlK>P6o&~QVZYCESPBZu}9l7=A5=%Ca?d~)&N6stx?~^+VkKS+JhlD!pXh@r)TLak7GRMsuyoDrAE>U z21C@Tzg}vb#(q`lKVMpEoZud^q%=yW8OP+EssB7eHaMLyfDRi>rG@sj$@(bQi`Kb; zQDO8C+A0_dA-G0XAm-`Hq89RS{5m(=6VYtG!wue%nEyMvPSIy+pR4{5ccsRCsx@ZI z?uu*Kt>?8&Jdd5TYM08oXx-F;;9`{4VJQ-_LI!LwmExdT&(qL|mq}o9B^LY@;$VSTH4Lek5Lq=hI=g`)9=8y*P#hln z*W=uYG9TMRo6W%#u2ZQo(9hE_q@555f#y5sc}%= zMj>XWx;IOCmHYTop1nXRK#cgg=cv(8(%Yc@G2rb9PhlOvQL9Q+u8NHCc8XUKAl85* z#j)T*JV54+T9xWw4|DL_`3314$^)Z)er1H#FXn`bRyfA^pLVIKo;za>Xee=+;S}?qY7T=vJ|`A)>bN|UIYI0` z$v6tND5udS=H_f@JhM4;jUz)e*4mo4Imi-Q!MMF;P`Q-&Yu-Vg<}FXt=1`#CvO24x zb`E}!{$>~R)9BJmj^bpJ5WmFt6^CCQ47yjoGo!rQRo6@g1VH|~v4VS%d;fNY9JO0v zt>wRgJ#t$`Ub-*QL6oPnsjAZQlS#Ot;`I4xbPghz;FHa#s(#!&sbG-lG*^ zi8|vB+?Xwhh&g;j9$c|)?jh4-kOI)-b@M<#aA_iL%)m(aAo@DC)ec{=EvLCDKB*}41k zTh@Mrv)w5>`Rmk1@@(&akC+=v`rnI&{kSJP&1MDw zdCzv>c3uq+(K$LIoWJv?H;IbSLjUaUZ`(bCI7RvamO@X;gLGD{;_w5dG9BW=1&@ue zd(5-Qcm1>F+XU@M4CdBq?EzID$EZXTiUgmdzW4y2@TCxtda5cM_dHLP21|MtgRgpv z7e&V2r%LtxKz1=DVqR`Mwp}2zEm5jrDOkcE#CIeUod7`vtbZhIYI0-ipJ%3*Lpq1y zA}0=&*tC6@KxI!doaKyi1>8Ngk(;(e(N+)XlI2I-RjMqaY~EBWX`-86$Xy(TX<%rj!ffIm z&4cOsk@w?|RqzBP1g8e4AU?Uadnyu$VFcWl_@<0}Dc0@D#%GL9nGtwh(L#=@amFTY z%giijobHyvG2=T0kFr{#W?Mf!DEG=HC-B;v+*fRTbUw*M5hOn4zK_^X z*i`qxE@ImS$3T=S+1W1{fXY|DD>n2~0cF9@YL_aLjb^%-(N{jtTRe#&UH+)pc$MjyGz%RJ=H3M$=`ijQ(WR%;5zVV>b#&#Byi7V&MnlNEk&3l;%A^Y4%I?s8Wxx=?-LQ@7t zDowYa#}bhRsobMfS*wywf@u0K(F;1yc>o?+335_p7494EsDQy9r(F%L0PO|`OuI*f{(VJMS(b>81}EUkQZPd_ zF#{+OtjUlwxRY$gecb96HTEiGijZIv0CS;<2kIm1k~i4%Pp*{6RpOqA$&?H)ZxEo6 z!1TWBek`@GP1!e=)j6}%Xk0(lF zIPzPRWq5D+wfr+1zK?sXLfp|6*S0-CCBZ;uLfg{+P9_ z}0Xn$eoL&Y19aU1jfgWF=QCrj%^dCXPU$I*kTx}p4~&>c}l!h=`Ksiy2M~phDjbkMH z*LjVUonE3B_0!7Vj*kY8iyjM>^UQZjgFq-hKap7pRcqIRJZjB2S}pAHaM5O~lT z?EMLBXxB!x6)1~;eUwniLlp8@nOA?On~+W;3!KDLVmBA3sqqu6oRSD3x71ZHCLg87 zH=@lQqIW09wRy~WZB971%~9TlHm}qW-$AinA655euiLqg?{$;B8}7APg2Q*IaR%nH zF!T8roy)%?MYfozoLc!fiuihDB&?dFuIa)5wIxA&FE^66o)9ag#-8m=6?*&yh->oJ z+qE_i(>N+hw2qvS?i)cu_}?4SDIii{A0ki1og*U={wKAHkvJEMwCce$S=}6-;dJ7e zs})!)qdjKR)V5-LhD^n5UpR*|y>SvgzwpYV=lhKy2Emp?Ubtey#_v!xayX~)7r)~J zbMp~x`6?U#SJD(uP}4Zl*=jwLdmGJaxN#*M(DRPOb1cYfgD%Z$8o63u|Uf^PSdzU^Zh(WBSbTw`F;*-?U?(JDdRl%M7#)%VF%QiD2MyTtMgYg^pOO4 z@j3~(PRy1iqQB5j7wAKnr=5L3_% z$id*k1fQ)n$&1(R0s)M#BMm8hFtNX*HR-AXLT|52{&CekxSX~m>CHSR%X4z{*-~Kb zOPs~-W%Z@i;(olgsX7px2%2-tcmA;Q-eN@(XBox!UI<;y3$^bpz^vTYd0Lj-LCpgR9=6CV9SD>yoz&UPiYF<{7r+hXwrhq z6N+&}3fdOH0g}eoR2vp*aMk?-n<_dJioe&$eNFyVnq9!BHE9|;=joQJ6^!%X&g@S6 z+J>ZpQezh=K}a%J-OXf|98A(66hLQ9=z#`DtH);Px`sCxKUivVcctv~sp4>YE+x{+ z;nIl0R?vTB;t~G`owe@~IB)~=+Hyti{*;h*37I7>-iX@w;9pw`NJ`|OA5LY=2N^5k zza(84114q!Jxh?c*!QTmuW_KB{K#);6~|t*h|!#+^=X#% zMMO{{jF>*c^?K3SEN^e^`%dZZInZQfdfgEr5lCp{W);b|tT2>~tCgl`_lV!I1J1#oV|91WXeUO1) zm;I7>lp{}Q<@hCw7DJx0wCvNEe=L+rdi0QfKuf9Lzi#q|M6k@ti;0|b54j|&j^rXs zf#d=HCD#YT*>6xc}^~9I{Bm(l`etFp*4Zp;E;2y=(;npd>VYeRd)Rp$bO;m z(6fkOBHC3(>nOF#M7)QgT`^iBBzytaw{|_n{L3!4`gb+r?=C%Gb7~g>cKL!$Y^}C7 zW}+4T8wom&WLrmE6pAK+bm#Mt%H~$B*?PE;xFt+_Q)J2R9d<*vs2iW$uVQi}j zl1Pcew4h(Xv3gO5ZBHDQwY3!+KSS$&7`cuGsS0uxw5snlZf8&C6S*qN7_yG46+x9Gr(z-<3Xlx#nP{baU(hVeu0rTuM6nc0**9K+LOA*wvG8??*( zLGcG?O`})4!U+V6^|pii(-ti?J`~OR=*BQPyi7jJBb3GCA^*Txf>V3bs;6S}nA|vG zf%sN#xN}f#9ql3(NYnSo&he1iIo#ol*c-L0wDMlwuI`t{4eu+z+j4IA1*Z?J@ZISj z@cM4^4^*H}Ex{1rg2&ED$K7vBN=!WUoQ zMKNGT%g#SVnO{rWqvte;JMv{j^KtaHS@>hM7~gdWm*Sj5vEE%Y>E#|Cpc2Q~M0o7n*@*Ek5Y|;AqD;W}W zTsU-zFHzh<<*DKjQxe>wi_ zDpXdKzgFZ<+2t#OAOSgSo%!j~r>Zye#f0-jqI95>;&eY7%Z<_BvM53&ffDTi#Ix|B!G~LL{5MqB9#7#h>K5w^8%aNfOJ)_(hLfBQdW#Mm#ZA->E zsrInJ2UhK4{w8R9;@{!%Id&5J$>wucjQ^_|TmSP5H#RsiuCcaJ|80#ufqTOkcDosQ zREWLO;>&JCK5wlS&1lZ~fg@Ny1~#n$*1k7`5c5^FCur`7K$yZ43(>+S3kP(YqMuXD{P<39N=YR|m` z@pSMZYiq(Zy=^@~($6-I6vRoqC)f5}xx}KbnpTDd`NI5@8{Vf8`6nCF*Nr8hZ_T%+ zuS*TvoVaJzOGI-dnK#~;RDCGwjSP2hiZ_DyEqfWh45VjQ_)cyvdrSx zIQ8|&1}@p6t*ni~{(TfHwF0?WV40ox7dO|2tYkyd;o5pi-yP~28|q9+*_lH8d9Ne% zeoFlwiDB)=Ijw{Ec=}=6{!n;I$^qN1+BRV^)gK}XcEI6#j{;Nn-nqPjK-cH=z~6n& zMwkX))Xn^~E6=4Ol{TP|V3vr18poy4SRDto9{ud*%@v!Cl<}ZLq>l69TX+uzY_8Yw zv^*byQHShCrN-ueiXt!HP!xn;+Ra&Jods4om+LLLzq{S|`p<^oSMU#{1v}`j$Y;L- ze)|vmKe0A?ouBj6W}PuY1qVeqeD==hL?|#D`m?mOBsY@#2gI^zDNWU57kKqsv)%n2 z{crm_ECCV&Jn}MwmuU-lmp=S1gLmmEP1;o8H(d(I-QWMIlIgm+_UJAB_mI9*Z`dZvRtEaEUffdhAdtZxPu8zJIh;{!?H=)Mm zn%UoCu{bPpo1nk(vY1`dhYOE@vr!huGA zLue+O#pfh5JFu3N!m>?imSXL&fXIb_W2i~ZZeQXymJ3#ZLae`{>Pbjx>1(!2RtoHE zPLMll=xZkWtNOgZS=#uzZ17lOw&}aKt9I`3P08O&>)xPsd!%)DnXU7ft;-YxKiYO@ z*1p=)+*p_2?i;7>5`4+|`!rXoEZi3VPESj!NAA=RM^E{VEZ9lqa5CkPAS{I7T7zpMSt5Ne_ou?#Mdt8TsY{-Y^22i%Kp z*RRA{xEJ2Ct;)R|X1l=d9*1z<<;Kp9Ou!!E9x))?AV08J85ztE9Tt7(>jDy4dx=bY z%96==W^nbWk>AV6?}?85p6JN$k&%BzKp_iX`yOA$RZU=NocdzfEV-Ei=1HzLW|J_)toF{vmAyT$G>l#&9wA#mMH2EgW9T=m?IMQSYwXFI`zy0Z6NL=#V?L zGO;vnR=pvL6L->`omO?Itv@8|KsvOWzGO%HG9lWRl>EJ#J5_aMWUA^(LP~4a0sqJN zjH~@v^}xx4tPkk`t5@1D1=9STxkWuG-k$yt15Q{sNvt_ed=-=HrFSxG0vua9iQ(4Y#&w);uAN3=mA2-$$?#w5tv{}sQkJz(m0bIwl>1=fLjRu50KU|#}9i?Zw zQb7ax9j+g`xaOdNtsT^NGJu=S!P!ipt${>ybT&r^MqHH0pkiLF?>_Jm&B~-%e^GL_ z|1GGc;2l5h)N}PcS$oBrfA@hCv@}KQ4dfyaIPhTv1FLFQpw_z%e=t=Ep$`+Fv~J7U zli$9MkqG!6l>xoy(N4>a{w@N4SAX=?6E-wk40+COb7%nxs;iU z`*ZdTO;vE#xctGD_WaW_4-T1!KpxV8@D!$O^3Zf4to+QJEwTO&T&?ddeDD}@6?2Mg z7oH+L^(>PzHwKS!BmRG7z^ia@v#jejx|lzyN1#SE&$aQF^f?AKwMCsg)%;Is@{?ve z?cX7Cbq4YJJY7Gbc~8o7?TSuLoEuP~i!S%C7~VYs&mYFY^C4zfUl;6T7u;h)^CzUF zRQCoXv0CB*9QY^(($&4|+W$0=Mw%|*s>b!e2UvadAD*~NPCJ&Gl*4+eg=VLeclu8e zSC50XUUEE8W=91e*?%gNm}Z>i$KQG0sr&y5B6ZWw|NkLUC%qO#D!u=I86y3v3H$#B zB28mb{zoEGhd@oLH1B^lA~oBYK|A9SsXYHrMx-*X7eJ)xB>$O+G<}$dh#Wy8MIsDe z+U7MDdf4%&1s<>m9&orGDPVWh-TE@S-V?0ukz*yilqtbkV}fZDQ}#);_miO$Q*66Z z_CRak$6!UbMSmMsifvculPM{0=;b}OKHL73w}P`K=MPdWT$Mrxr;9Uky6BeEg{VV! z2WI#ts6$}vOmSpBET0GLKKoqq>%^We=?!KOz%lJB>R=x>ESrhyYvPV2>H>w+0$I7y})3pfI6?SW-5UB(2j9i9IvL=%O5Hq;V-bvHft zWdv`rVjQrSrkt`;)Bbt&`(YOOFi%|Oh!i>1Ht59U;y6s;+`jPT(!714kKF<4bL*!= z@3}*txKs9q-gnn}jh+a@DXgZv2OPfNzanS<`ehDnnm$cmYv;XioAf=lK1MY#EqLvm zluu<)r4J11?)o=mA_^V8c34{mT&QGrV$(R~>Pv!?6nnp2K7Nu0uO48Jqen~fQ9Vp;eA zN}_%v$2SQt`OtlM!zmFM+7o`6Fm7$$jWPn^U-?&T#FI@~cyp|rfVO4zZ=?`=l|B5@ ztQ_CeSy%b82@U+)S@T^#7()@WyzAYwzT^5qlH9Lw{SbdOma3$1@W!f?a6_yZ*CY3H z3Zfj7@6Y%3ddah0pOcpw!V_lYZJ6M%eqsD7c%3hNt)*ea0^)popQnQ}TdLpZJ6{cT zKTF+P!jF(qz6xkhYnO+UB1L94Utc(#Vu+wdF)6WPVsERDhqr&NWflPopI%d6W$zM4 zg~1yK14Ylqnz&{})yOVXWJQ}+1}c+*!u1yewV0+?Il8v-&R_Icq-sQ2mxP0@8qoz; zolrtggl(#!zEf9TJrM_lL|Fw=|&@D({ zHU-?Sx~E}_RHZM=^S-d!T~pnkxXw1{?Z1UV2zXzR9=jg-g|Jh~s*=lY^q)$0)el04 zhqqIG?ym57dY*aju4LEtp5V<_x7VI3#&UYYNOSx?2q(U@NGz#~9uKF?%5(kjb~qMd|uHLn$6}- z&ntRbvtgz_Tk3NC@DI>$v!4$$ej875yFC-+=Ra{*K8`q^b=AET&jpnIPURX=O zrs*ex)!V>&k)oG%+FHJiRM*xetinCwu7DvshylL%cx+bu=-g1&-mJG2JG-LxRAfVN zRR{TSSPV7d@tzY_aVEp_M$oz9e{a>JA)$3K}SXLN9t+FL}bX6~_BW|B42S z>$%-}>DgdLa{k+3$-{yr8z>K-4%Pb5T&9`{#2ZrSjPUcRZI zAmV*2QnW=NZo?01+Y*|jL%2ch_a5c*8tp1w>(Gl1?ptvXoTneM^?~w=jz$rl$$lq) zK&Vt6;vzv69Xs`?n}*CQ+1yvHmx3&Nu+BHm+RLM^^6c;k>*Wo`g6R%L*n4+)GR zat{=>(x#MwK+*1sK=q#RgbJm`x?-oPN|R`*iEQw%*kK8H-}F~MYjM@z&jQ15q-!gm zYpr_8?vUXQ;oggYd0KheV>8A!E+UEIig@moiC|%e!^8KAI(q5tf=2FUOKCLw67Bw<7=p)TwZZW zentLH)MU|@O0{P;%ui^YZ?m?}w@+)Gp9pin)76HChPk3uY^rTCIr%*mZMgW8bfW+B6=otX#)qaK622T(PmaM#jgP z+b61mre^LhmD}GmT9Fw3TBUC|?}J~=TRW5&&BU(BG}N_qw|@A0yWB-^7YUlu8Zy#@ z_WAcV6$R@Y&Of}`9U5@Ew(fMjewcGXZqrMGQTvbhyY9;Gs0fsN9MC=tRKH(=f<~a| zF<0HM6o!3C@T6hacxbh;LuxX=k z!p6D|Xdf#NHWY@}$CAfA{qtf7b)_KGYe1-CJ$D=fx~^YPSP-U&_H>~7)i!UF!l@-s z>sphIz`gIQ3%q|o5b7sVU{C17Df>Q7ITR^+Rh8AF?e$l0gY^w|?GfzS zqp)j9kLcflT~Eib>t_nPenwaO6n5@Iq&*A)vSEc=J6Ym}=uzGaW)tqbb4!{Bpc()7zpW4BNBVB=xs{f?inESV3-U4zC z0Io|;#})bQ+9bB_7@&Ct(7X!JydQV%Q#pFHG;(w(P)yGA9uzmT?Y`IiE1nf2<{_|p zHV&*7vxh6l0`f|j7C>&B2~++Rud-Di(jQ=}9+!ViQAcdmuTm2O{i-FfOaT;2a~lBl z^bkP3;_*bh&qe`i!{3_wG#+X42iDJu0o2z8pb#Go0o0L{w}$~Lx+&+2A)!DN2a2i_-FN7{oyUDzS z)_LqC^Ad?G##UH0wu~d{dW?6`H8w&g+*OX+6N7UACSd$_Y|aTkk7n<_6`d%jv#8PH z2cDeH;UP{$L~qykRbSJ8toB3JxMlrRGDN?*-w1Wey5*ZrIUE@&p@m>7`Koh6 z2l{Nd;||_t50ry4UvT|Ev}%dni8`~ABY~$kQ>|XzDV0N3J1r@M8!+^qC{n>s)U_jN zRnQ5Ey+cU;om7<4ADoqtKL9MAUL{KNP}8kY(*rST8ruOY+FLt=Y18r#fpN&#zREh+ zR`h1{6bKzGZUD7c8RSq`x~;D!grW-dr1UhT%!i6FDYN6P-Y^8gO{}Dw8f`btnqECh zFKP;3Uz4AQ(^%WIoAS$>R(-}F-TTBU`}~TCWzhDuj+(H|wf&8TWwutFZCZ5i#vzjW zSdE;KYVxOPi8pcLh1nn<{;tBG8Jk9rOk?xl?wa>gYnn3~iW6F`XqhsPU1$!fqf(Wl zvQn&VQr^ROp(!s>M6$lpKCi>$E6hvmU4hxU2R$CwuaJV_^hX6{pUpnf@@>U5xK z;plIMrnC6QHYO9V0#%>A7^W;T6SZ(k$5Oo|^ntrHr9)4CUG$nz`t8qs!`5Rv<^MDy zDo%TITm8*;;2$j~E#oq!>~ugb*e%t5NYORgj^%gWPTTc)XQ8^ULksGYnIHJBKojaC zj)$FcI{U(RatIA{Lxmd$M*_lCuz7PWcOHdZG7q|KB5%whkOHc!U* z-*w&|D9j8LW|ueHV-}mf9Pw|bx#I*cX(vN zJbaXXKK^rMx5SSO6u1LDXu+dpn+|thr}w{dfjVyVv5; zPuqO;8*N&*Z4aS~;M zI&32{imJP*X_Nl0O+!791CKNG#yGt{v?n$9 zm|POLXa{ZO&a8e)ww(-U1MCts_5z(!{gDcK^ut-l=%nUU9g=$Z!t7Cp4MYGDHvs=^ z?>On)XHwaq{u%7Vq0Sh&$Fj=1vkv9HZF^T7b)JM#wtKw(u8iRUxg>EZ@69UjpuSV| z=Pg@Wz3R`P?biBDwvrxei4iDqQiXmfv^zETv|JLnlps%b>TeH~50bOJi(T1eJRPIDjkbN(l5S+8R0w}?_c$5t)ZDkS4$DnK?prp} z2Xjv`%X~^n-TK}ysq1uBiD6EWR5;wLQ)aJvttA7|UQv(qii_%1kJ&56J!_viXtG;N zr`}??c8@=I;JUNQ2c#O~yxtsEy(#GsDSn6arlePBav>leI2Xvf$t@7BCQ2ZDlTE`&AIFSpqGEuczyK(dE*;B#JL_=PXSv6K1AtE& z?1zTgxEc2d{sE86e=Lb*{J<%+27?a_vX`KmC|;knt5T0>so2@MWGYPp*Ke7o&f^s6svPgXwL`%dS~c_O|EBcXZYH-?l+r=%VGVNew`}u zOBS_Sn^}C-F2no9Ma_!%6W6r4pcw*Lc4|4(rB>Cq>R5ODs868tM}r8nLBDk0Yn#5% zMfyiCzq*Uk!87M|vApL32t+_y!KYLmKbxQthEK2vGxVP$5)K+sToUaR-H1(?>WU2V zg?jT}p0M5v0H~TR>5f8JOj=xzq=R&c-q^GuoF%Oiv^9jYqM(X*#&dDXaY0+1?7%WT zCC33>p5Axqw?4W_=1IZdL0MoO{tsN}mu$jctDv=uLVHK&^6A0QC&^r?YfNbO2tixU z(8o5po|Te2D9d)oqnq#oWu2gpk%In2{HVG`_CZjj%+#NZCC}?ov@=n-lm4J+R013x z{4aIsi~Zs3N$<}?$KYa_v(w4< zv3LJRyViYyu9^LcVt>^un$;e^1DG8v`4jeleeAxB(0Nn#MGzEn?!P=`I_T{jDAeDL z!C`c>Q9Dd@tCk(-{JA_qLlHjve?zuSL+gNlAyb_$M1(ajCS@#pMpuL})ttv+t8 z?zC2)wY9Oasm;#y@U>8la`2o%uOG16K10%poKW^g^wv>mciIrmB9COJ?y*6zbp#6C zdSRN}4g?C*^ulzx?G6;C>xCJC8F$)tFAo%E+^+wx@@7Ze`Pko$hB3wjqFJurlC6hq zd;Fbq^7lZ$1a8S*W%n=0#QJA-anMN|TTh^9V5JxJ*q1ysJ7?#j;H@*JE?I2se+b(m zboX{RgG;AwQ}4WI7yCm^OKot<-NwpZ`l7iZZuksx>}=RZA$=`2-wgktXXPEC6G;qq zaKTi4K#YZ6LKoVipDaGP*_gqX{`=h=RvrEpkN7hLi=P z*^!c+d?(22wrYQ%s`@^kt2B5s?ObGhjds#VR5xW9oaQi?#0P()BGzTYJZfaB%J@cK zp1o9fo^xLJP*2V&e*|XG^J{GWHcxQrz~Z3y1##~*tC~?*m}%Q3|LF%pA5TibwT%-Y zY!!NeTNtd_&j#)9NK+TLdS9qPa%D8|fIYzr#ihpm5Po{m^Hq-0MaK6@&TXplv?VD* zsK6wI3QR(%z$AnUOhTx@B!mh~La4wbgbFeP1=;_by>Ee!syO>T$u1#4U>ArIAZoY? z3L*juF(M1Oa!E)CB%s^^2_zwqnCym&fWb|WWr>$ot?g?qT2WiI>RT^py#!H$H$^ZwhfVJQIzQ6DHehZVCGc(U+W}bQGnK?6aa@~7J6!;$4 zz_w`>#pZ#6kFUeCAq2tF>*dEQ<%V}_`&06=<3{c)@Q#nN?e~mvH(A|ZM!CLT6s$H; zTcUQvMTkyY=|N0!aR~l$5Ck=B3&$~XJ8sHbREiC=O}?sJywO;StIlE&R}}ctJ8MMB z8_sUt_kHQXYM2+~ULETwhv( z$c1xYgc+M7o?@__Eh>k1=Y@+nPQiIy2@r7{DZs+<`42z*@VM7-LppBAde~Oq8&t4A z!W)ZQnQ%qqNh`h%Bn$zg=VMS%9vkGGBzS`m{O+D@p>78hR-tg^pmW^B zd0DQ}6X#8HU4(6r+DpHOALys24@OE1Q@r1nzC~|iB3LeU@6eid`u3qValT?VH#onX zU{V#EzuJMkJov(b-*F|6mUEe7`)I5?pn~IYy-g-R1Q+Y8Ml0f6o_Kj%w<#X)zy871 z*bJO@FU8sL>yvQBaZ8!4;Vr~ArzYXACIORmz$QdVz^4&%Z?dm&#xa*ywb5_#KJC+7Wdu+92g(!dIJ?NO1q)AyA3+NIdv#Cx4#j8 z+(WdLZ3&IeNe_WTUfSjFLY`Yz+Zu9^Nm72wiDjJ-;yE1=uWC;`%OGys{xRvb#n>7S zBG7pKyvC>20xud541uV&v+??@MpqLhP}B|^vgjL5AL=0YFoqjAdk3J z+FU!23b?S^DQ?eToSDJ*1cUglGfrKA!BQ-0hcwhYof*C-Rt;7E1Rsw1-yp24%qJ%; zLAe^QPhv?>t^JVX-_7(Er~Gc2-k=9VSpH53Wf;r5+OwQsu*?RHhPA(JDA=9oe+gPR z*q}|IjGn3mCIq7nBML{ma4HSlqXO4BMVMJ)6|&Ht@`0`XCI-{vQ+7N1xYx$ctclCZE9FZG zzY7UMDe}|RO|?SlQpMn&=PM|6nc`$d};_{Kjm-qx@hIVB6YIGj47aU!bCUx){H%S_uXOM2nmP5mnT zb+?SO)o%kU?v}~6o39WVrflltZb`G0t9qYrzQr=*$uIhNE=KE5MJ&i zTQi(j<8P*|K7bPA059q&@UlFS7u#&{4MrM`gVNP>JL@g#6DSx!FRc$#1Li z6kn{*YmmG%m>U-=lH?5MA^e@`>Q2dWFB_!=R^vI_*6}dAld*mA7G?XvG@vda-L2MkdATPEV=>vfFIo3sF3z1xARR6OeNxjJN9*HK_KD zzKd-2^(42^XLX)$uzigpvvCi43fR>Gb_CE|TA(WekV1tmqP)WaKHN3PDASf;2H62(1eN|F#X!;UieB^AL4HJ?s>;G84&`?D z-Xy5<`Nwy*&9Hh>VF9;#Qs*>V(A~5^A3<~waKbFX-(k+t2I(G(^u`ZJP8TYnFtIkK z`Fn$$8`oYqvHblC4v8NG?s%`m>d4LKRWotEkG{d@6gccd;(5CEV5935PwGT}0y+aL zwF%u%fiVBCrv+-VS+iw+yt^cNGC#2Y3oJ$+E5C1VXrvZXe;G$Ew~ilvdRR zu&PpSIkpNWRj)Q&cGQgTgeSP$#$XbiZRf!zN*?44w;^trM)f-PVK6Mo+(_q1au+m}r=nujE&J^hWdXbWTVy`1h^WO{RY0k*X z3}t^rJN6$s6Z->$>|YvWzYrus*w4cVp;zV={~r4=YxX*(Mfv{(5iv>;DiTW}jiDmp zqfvG`k@z)5Pl&`m5rP&Q-k4sWi~D_W0W5VT8_@@;p zaXWd1h>Ai{c+F)Fs~dcoI{SoY3T*)qNNY=-=U*%~_qIS?3p*F%7wp_)E1MD;pX@RR zW$=FuwL#q$n!&qodH%hJ3hJJ_SY5p3h-uBr|=tJt@D|8SJ#ghO9eE}pF z5D5={qZR|dJuRk?k|&bUCxPI6AdpJRKLKc{{l%xuv2o-8C-M#NQ2k?^v2AbWn84#A zc&m-m5?G+(ykGP^TrG@6i8$Ymzw>5ij4*a#LC}0S28JO;{trMXWv^}fM*^R3pz9J~ z+MBunm(Q+7RIm%rfiO$?Y%E}Wy50X9_>|#;(E6B?#CGuk7jCqI`NYo^VXU}GN^hr==-wb-6eL8(oh0HiQnnJ4cVJ5!qQ9rS6iDR(oHAg ze2%*ovE4DQapPV11R%pOAo^mu3>%wOUY zTyOEfq&{kHz%}N_qFue3aVA}eh=1P+8W6`&=%7$Jd)5bgz(FZd;6KQ+|5FZY_*a?& zP2zt=J!SCeY4w!Dr-$%FLtHNuusF{(S1&3k9(?Q!+!r)qh3VDIZJb&`piqjN&xM<{ zth`xkysf^7I9sBeGu^%k&f!_k3$mR3va(!5a5X2k*Cq~1j~C|n&Yb}}%*;S+W2yrS zaH&bM?sQ8hMm5*QU;0-HguvXDfw0E!3qJg(IKOY1&2qkvza_37%@z!vnqQ1inAnL4-bP=Zs~Asz*rr`SSm5j zcJ>mLzZsAIO#G2-aB4Zm0AtfgMlO?JxjI-Q!R+{>Y*Ya*rjyMUs+^rZ|3$&_oY1?x zt>H_AXc#s<>Tbb_pI7nNHngGj2zHAvbC`H|!~lLK2>hrH>|5NNItR6kk(N3M#^P$} zQE%gk*RG4g(UkO;=3fKVjWBed=3gnp zqFXIS*r=o)27~;fj;y3OgwRe4T!(;w9lr7Uw05oX&WK>WaP37v)<*-m|1CTk6nT6%N2cN+ z5YE1(#^WY%Y{%8RdOqF|Oz}>!<0W{?f$9k(4|t~x^-hZmbW7QTHwO;u$ahlSsW}dZ&pP3&Lovzc z1Gb;IDgMJB+9r1yhSl&uFT8IUCz<{V>ks1nfceWaIEjEul~N8D6gtzr8|^7A&a1I{ zmvYQGp?nlRnNqTh_F=rICf4gp^jwdXj)a{%VIeg%?R54=ePXR0w;^GqOtoVb4g0@( z;Zp1hNpFLqXI@8_3w=!~$FR`%D5N7fBLTA=1iU#I@#0eU)$)_8B4SY-Zq$AE+vE5~ zmbWDn#|s9Qe>?8odEb7WvZux_n&)l6mEM5{30!A;><#zsSnmgcscp4Mywjo)_lmtS ztF0gbruPJlrT7p$Zmd{>4UrimaO{BZOK@z_n-hoVs2r<%(@@QmF~ViRyCWP|c+SsH zt_mU_lSn@jiG#5Go=-vseu?#mcCTBEcS5#$Fopw3`1TZ5@)*R|vihfNvR3z&@ zb}3DuJc(9XhqnVMEj4}7vNl|1Z+ooSk`eF0{Re?!e(i>DdI}40si0?Jyl)R?$|-v` z4x2m~iOdo}qIU_V<5J$&?^lvVxeu|)F6f@0GkIEqx7v!cvEBr* z@9l2++VW}2{+eo>7|yUg(=}5to!N$64=u1TvF)wZc_nYmb@l}Ywp(*>Tp9VIp&&T7d+kxTuMBGFn#V>=j>?%W8=u?gWbOt`hiIZwl z(0UgXl-|QkLb#i-j3E?Uyy+cSp7-Sf?>pXOBmW6~)Dt(MJl7lD!hbE4E)GG~H|4Lz z$0nQn)A_uQ*DRlGa*c7HiniT&DWYsoci;9w-RDhH>%OnEHJpbSd{kif(HOj0?y-AP z9Z36QbjV|MCy%;v+@~zI8~=rd*fwC>^r)%0EHeoGDPxID;NqzR+tUkwa38f1-{+Hi z>fjXa&I zJBgVOd!74KjP1s)MA)9E)@|2V4bHlNn5!trm8&3FPp%o;7PiVdayf#Gxh}^YsvufE zdC`#lqO!=A9wb+K@Q2+;;~1O-Cag8F&lN>!O^`8u&sPkXBj0gTv8gDo==eD(t{hpUqW_9S8-WP2vh zjQlJyd)sjJ+)3}Ocx)dow5PmYeSv#9?*7WO<6|e@%tZHcI|j43<`^27{t=M0w!#GH z6I?y^vVR~R0SWayvM}CLfQ>JSo}4&*8Qk46+LL3q-E<>>oEzLN!`9?FGx_r5#+ML- zmnXGj-7P(xm$+M!oFm*VgPe)(mccmL-7*Agg~(Cf-~R}`?*5(h?0%|~@}B;m(Hr2u z6`tF7q4RvsbDZ`pe7)Ldb*=F34y-Sa54g(v2Cggb7FboD5GX5;4wT@<*P8Lp(Qdp? z8|L=)a3*Fs&&hK3%5rwia*f5Y_%s}&ca(PxTvdK9RNOg%@#S3tW6EO#qujo0ox^Y_ zoagh;ar+XTaR^w;;{tuk`viKGBTOhi;*F1bXC^O!ZIkCKpyLl*HLhvR} z*?7V}%j35TzxL+Ddl%u*UCJAU-tVZBvs15+M7A=(y&=4 zr3J4IQOnqA@$kd`yIJ43mh(N>BB;%3d~UUSZFklrPK+eEuEvXY+-Ckdkz#rsi*>yE z830Ln&(@F%-@OD4TY$Yz7;zKbOVF^nam~ESP4n|DylT~nq_Qx!;X{zJ)py6!$ag$= zqmmCU6FoCj`_A}Z*1o6>kHrgHD$_a=t%$ap6^o|wW+ZwtUMO`zGw zHKB(c@qW)H^nU#?QQ$2xz*6I2t9du!vky2J#<94ydVpsJKEg@^SZ46du*-KSff{V8 z@V+e?{wfULkVhCN+**->`0uJe3k<;koeR_U>XC;$d9fZCHy|-3u6c?bEvPj|ao&gI z3sN?MjJpV;06H+fG7{ZI5C!Cnq9}~qB+7PuEbQ=(%EP|1Xalnx028VrBFftgQ{S@_vMj$Jou2* zBCDrYbB3sYs8Xm=bV~Q$__l0xP45wBH#D8?#<#eV!VjTXIoE)lJ{S!-40(XTJIfB` zD%Gkd!!ETjFyJdKu8%ut9bBCYEpvpeQ)u_D!6|dx6`0DVB#ybQ=)KkFA%b{k2)r{m z-;yHczZmWB-Oum5TV(TjUx%8u=lA zPqce%!@IWnFJO6%-0zu=^G9MFsJ42hgO@~4b(~oW{uc}g(f-4%7FTS;H_hps|Kq4_ zi*slS)br^ES#Bvp9}-P)iTCyDzUV)-7$q0uN_2j1tXwR;74ekd`dYhef!f%{+yn0K zx~;)V=Lrzt2Gc+Ic@<2IVN~sdQS}OpD%?E~xSmGU70xk)qFLpKSvAdh z&NOGQY0j?GT;pL@{Tyc19WbkIgIU!Gv&sXrssU!zX2M+Sylmv#&I{oNy8Vex8v-<} z&M)udU&Q5--u^;*{rtJ~Z2oEVu-J_6+@GI<;qSbZ>^Nrvg&pVMUd9+ylj?ole;8c@ z+A{~$-hjoXR%iE-2RwxsrmY@Z3fdc!*;b6UC;3e)F@6_XJ+tiI{6tS-oX3Xi9yZzo zpCZr5)Oc!Nw0VXa1od6cW?OC%^efCbnpCvl;>{KuIKudvjIn-hOLZ?WAWb^|O{h-q z8-6b6P?L&2yixDNF4>1`SGij*U2~bcWkgLG3_NEsTNJDP7u2SpMQi7xMQf2dtagUG zWw>iNmYcfcJ0O8%cgvO47&=pG$GKZ3!Q5@Rnzo^%b|_WH1t?W>SFX2@Tm%!w?pchr zI$A4x9*@HIkI%RP7B%^SFfefCrLAEhY8)2zhsF{kzd1(nhHSfF1>#mP0HxXsaXA={ zal)E)_QzeIo2(RRbf4t(R;~~H;BK;bVlW;6(1Y9RA>C8sI3%RnlT+hSH&d<6(X>4L z6%cgnB_ki%twPqJ?P3urgnl!!I3ae!)+htwMZ}!OfOs0o!hpDw`T9pTm3aGq(te-8tQuP3~j1wP2Xo0r(NIee$ zXAX!p&sa_ol08L9w)q%?xQ9H}d!$^$64=+i2XRyz>t8S%E$(jE(6?cLdvcuXoN_HM z-`#A*R^vPOp>7e6IdZ!NOo&Tk>H=I!!cE~=LFXD1whnI zocV4k1vma>uyoxmakhpu>-`ITbJlWZ#jVcxv10d2GDfE^Iwb z;dpnLFbcy;V(=jb+lPKntfINz(>H#ia*rYnWn76G!Yj^=$FSk}Sww-ji=dCna0SEn zA}qjH|0Bq@i0hgn$cYAWNq|)ZxB+js1i&N%po&Pkx?5t98#~L>Th=gV24Y2vOhQ1` zae}Pl9$47co8xk3LURZ@J@J61(<^fFv0yG65>Ow&Tusbh;iZ`1;aR-F*Aa=hHL>2w z?lx9h8!GKZWCKVgKmr>?{#`hdr00L0I0VWnqWrl+xm=*MZNHll=1QoN*sf#l^?27O z5Kh!{ua?-%)cNKP)Y({`Kd_bjmm@|m+rHyLM#dpl^@KPHQ^VX{5mq8H-l%IUqNRvX zKqg|l&7oN2zKP>6d+h^%BWCPeKx_#Ak0S#7)Dri@2rJx&jXHdYFl%5m*Rm03Fz05O z6Rje!+YP?2XXZ?F0x*wT0rA9DkLirfK7mhsB%i}?WHrr%`theoECR(_MsJ>oXjSyy zL;xkw4L*p^BylUk0_L5sg4M-1_vCZ7vv{9;e5e-Ih1`Hp? z1nODL`x{0=jp4{ljLQa{hJ+F(+=>MENtCD#fm}g-puzDLf~9EZ=gsNl_8>)g(f|YXuTwT z!I#S>74o$N*@HAunCB1>O7R4gVpFA1iVa3*c#Qe*IV=E+>dYtb7DRHpVBvFPWVfAT z0Bi~am_vZML4b)8V2A;b9R@I$07HWS4hitjmS9CBh5-~1;5d|zWXUc8b{hZzq?yZ5 zNPw4v09g{?Rs-O_`2<)J1ehlQMjHV0!T_!zz@<%yuL@nERPL_=`CLIObj2jD9y`QghT=C=fr6Yhz9 zZ4D1Fye2lo|3~OyyjYT5`={9NqqDI?W&i^V$iPNEQckD)gIO5oo*Zv$m>&7x@L+4D(fO<%8bQOYB?syi&9xb9~yQ;7vvGcw=Stm zNc1BZu@Yd31o*81aF9zV9Pf32#RPab2v8*f))@f5)&Xn{n-G%yp@=}WcvMCEwNVo_ zh(>LqTr3?86Mf8{j08DmWB5m1E+vx75E(LTCt}N!UhNl2Ovt*7S-J2p>IawFt1Kc; zAC;W^#HCi+3j>1O`EZ~gptuMGc7UXqNOt29*j=hgvm!i=;Y|n&@EHaljB`)scyDXq&Rn3HCh)AokueFop0HD8csj#ZAgt*?g!w((UPGJJ#KMqiR&>U?5F$u(>QMYiV$33~Ht>JA1V5z%K6bNoLBliL3 z79&7k{2}UB$-caMBLrx{oD#q)hkFbaR*D~gq zKN}t^yS$g+V5u=`=SWl_n@S8L`N$sC^5m1YZ;&Z zwsZ4GOL7$U$6%YYID!_Z-FjE6#qkPU+7A}TD!51Bmg4!)_ZG(h_<#GC#j)obi{o~< zg>d(MYjM=TT?Lo1I8* zUqV9v0Rt1yJO6^DL4yYj8Ei#+jo;wAUM3NI9=#DvdFWgd&1JIbO zdNR^5vBi7i5YB@;b6n?Q|I2$p#@|QC|2VkAvL6p^Gxd<-+_#IVd|y#|lm#g8&AA#I zqOdZB_lBIwGnf&Numyod30QgZW+q^N6gKk2dbaEXOrU$S@Q;6DabQ(aCN${@^l`@z z5)wUIUcm!j;cj7n!wqSkEuxfLSXIp#X;A6fw#>M#TUeE0Gxyz%S-;{ZJT2~~qw4h~ zUR+ZBG`#EVSy(=CzW2N1I~U`7C3{5QOpHg7#7>X*dt*}2* z8#1*e$oKi+TdZD~*Z8n{;m*d2>$ndorYXmHmI7d@kaUcfW7iQR-9Nmy;d0cS?MepSz5` zHk`WmE{=5##k-_Ttln;n9q;UtoE?idI5Hb-_Kkykuu^fi(?xLs>-9m)yJPp z6uXevm{aBLjhnn({gd9e^L7W(2JG0fN`#rP--3I@TSp+$w@jx&0QU{}@Kzaz@nW6a zK9b9{8ss)yFX*J9W`SWGfC3X`cre4G8Z#E;`tHSL+-M7AK-1$sg2wb#?Cd*{o9F$+ zS0_w|4dZ!xC_fZ*%mcCNjTcJ%U{D_3`PifKu<6o^74N**4L!vt!Mo-a_*P)2s(5`J zCoP@*zBEyx8@>c3ToAjZH>Q`u#EC@!q_G803*1e9gjAj@b3ZR@K}7BNnAN-CH}1(+ z;DBv}Dc z0DdnfzhqAJ{!c~g+qOT)IQ0JciRc{eWHkB_-ZQr@9%Vg%5MVDNY!UOR=KoNyn2m@O z1ZnE_q%qh!ikZhF-o0r7kTn8Dz&q|ksA58w zP{;@ae!-zTStQd%R)3HsBiNp0hX0- z0luZ5NPLqR$I2gL(d!=ZIc>MtPzi$(ymHT)UM1O$eYKrP~R87|b( z-%eO5S$~i@hcM?%Lft5=fv;Kib1c9=~I!231{FpK~L%>du&wJ^azz6g2EyxZNo zWBilbbjG7}#$y1W7#}6EV-BnNUqD!A{2m?mhltV{kCr*HK&1J9ig1weo=0STJf`w; z9kX>1^Q~kQMFOjRmPN&g7B^nZLA3iM?tl0lma0^bYWzr|DMg~uqeMr#3EAAq$iE2z zAQ?#9Hs(`3%A*%;Bnd8#RT{{4SmKOFw9r6STf>zS$9cr@2Esuc={k)*zJLhVBNG-H3`P5U-Aee0L<;85XTI5dq%f`0u~!T1CI$Xe z;70Bw<{qkYPu6p%Awsoaxy;y~8NWwZZ^4iB>g-QgDS8f>Gm$ypLAY_zf_%ZmjKi{s ze?z2H?bPZMPT{Es+b$ML-9H(RXf*GB*CnFKd>%wjk4CsN3&Xbk932~QxrP9nt^Qx4Fgf<|ZTyDtx>k4_8POd##&(seIoju6JWh$gKTqsa5(F_y)NqP#X+!%Qr6x^IX_XsQTtH00%Y zz&w_9@R|&h%C0|i!RdTN;9ypw#p<}UyVdaw-0q%MN3zZ87}3k>IF7Ij{@ZZt;;fEn z#1|t^Biw~}o&}fE!|J#Jt_AJ@TunEt;}qP(a0lVmceOhFaF4**5H6$?FB(dMr>g%T&gFyVKKy&k-t z5QYLCyI`+J09yn`;)*qVRN#bI@F~VJk6bsn2cUkQizvYA0uR*1;Use73%tSo_)b@E z9F;0ldBqy%b0=uMVn0Fmy zK%tae=!%gnSdokd_zkFaFlkN2uyIr z08vz6IX3FJit0A@(45zLHsT7UAh~4V5KooW)|xt;(E3VDZTiBQ} zKG!$uHJ&Q7Z6AfEz@q8I1XuUug)OcjXv4tyjoHU=N1qjUQN*{^7Pl2FVNM>JN?v%( z*#jj7-qz|Txa*-cWsl26$UJYxn8vKA@+eQv7!H}ag3PP?B$-!HhVlxWuW#`kyO@U# zd84L#@63Yo5sg`CdFAot@$ROCTwg}B%+JkO$b>tD@G4-h#&uoKym;@%R_t-%^%Qu< zji4!SVAoUa75R;GPt2YMj)7o~Ah=U)z`bZ4tV#Cwks3;)tTxZ9{5x9|%gvE5+d_*j`@>uA+9!pNnTJO~< z-$Pzpz00F=^BXg)xxOY*sK994q}iB>OD`5#^L>vX4#G2EtOvvn*a_e$2H3Ny#y_ zJ#mRcfiDJq3RP@#ZyKZ3b`wz(5QTd_&A9Tg6-sZzLQjI|G_})3nM6lH5pgop_rt5A zT;tH;CMMuxpV_T>Kq&f%-a$6>OJ3OOjAiGjZo;-j-ZEat+fb9QvGQOjt__I7(sCIDJ$80hu6wsN&$m)?R47(L zojHMYHpA>Z&qBM8S7hMC=vCk$Wlz4VPk!kiSw}ok>U$N2RbX&qwmlE>ulJcGi3*=v zfIP)hp0JWEMCz_!-8KSlF>W7KqK}VqG)|54PXA)uK3_@VskU7YC1J!of|U?iP;+`Z z)5i}&`g1BB_W-oHj`^-x)YdkC{vLkfLty&~*!nT|R_5lqN+>oT(!U*u^rK9#2&QKr z^JgxCS~25!oB84fBVU@z*O-0S|HnW4VB~uQ_#R}wEapp8`GR;z?=mR;t2$3X3R=4)cUV+FywNc3NJ*o5ye^5rvM(lF%PXXK0Xmzwb%MZS^D zHEz>jraLY~`mwo6HgVg;QQZC#hfeD*@twk_j{J4N zi{{$rUt=cl3J_dL1P>9xV+sKon`O>-5c&Er-$CZP$;fxmKir(}0P=mApoHxxLc6r# zfS7AQJnsM3E*AZO|8MYvMR^F2j|U+iAmn&L4m2R|^8Z0V9`yg-40$^sYlDy#gsdXu zXIRV?U9~a$sDJSLCR%KkH0HaT`JPqzyxCttjrj|RoWW8487er(?@&Rf|8g1Jy!%$v zuYb6DdW28?@zmz>`LgZo9>LO4CB54Z6u%(F%pgUx!2c)H>qj7cxJoA`i@?OtNm~d` z3hO4qd_|b!`Fd&FTt|Ixi=1t)FMO|xP$NEFdc!lO8ekWnO4uRPvk%7KS%hx{5{QZ+W~jrTqPNM5!#h@F)*YU z7!LS9eA>h#RmnX9f@4f zeaxAzat1Lm{c)yimmz&vyL7hktxP{K9_d|Fdg+o8n&a6wf7`|38-Q`B^g;~zzU7Nq zY|-~IMTwHh%b$P(6miX6e9WH>Kn4sw-`u5DB{1N>sQ@+OK(|)EC*O^7IMf6Dr1zp6 zFl^cwrF>Yt;-~zCt0|A-9sL)FnygjvR8 zI&TPypDOnYf0X5(2s4g#s>(s$ZT)3A`oUND(vVML2>nZZ=7g_44VA%VcqWc6$oGX# z>-jKT#GxE{VR$R@u#V~2R~WYzapZ5B&L5&q`#YxB>+sKHS&2j8kArzgTnfSUz^R_; zH|S+2?J>wp*hKg$KYhkA@1r_DPr+y03-C#2p9zOE3>L}ar*ItC^YVGuY4Yk|!aJe! z)vD)Dm>nvA6yku_= zeDePWeAelEIu4d?-)V3VR<-|JYjjB4GEMzhX1X|7u}anx5oX*d`0#>1#_^}{{vCK3 zN4_Yh3>O1N)b~IGmht0F&!j{Cx9W799nc|;1%P2*!oL}o2T|h3H0G^0+=0%6!6h5wii(*mFL=#w{=d)^sfFHSVdarwgwJ^MyGkUdD3&&0v{-2l6t^yk2b7yKz+=`)>v67sPANSpP>I6LALUwG6K z&NH4>JYfch#gD=>^Q*deBR*O@o9R6X+~kwAS`lX2EAZh3e~eRf7&#}5&LaJJx$fVr z)4fxFR{lMBR`og*^9JGy|B)7disy$1Mhl+IJeLBN{2b8fNC^3t_*oa*k%usA!{~(L zzhUs1M#*u z;ur;=c+@W(@5>{i9ZWOpsA3%tb<`s|9%l!5R9OhGT_EYj!sny%?fP?q?kDN~#qiDW zs+`|keCBeV(D`FMTQToqnd0HY3;x2(nLaYw!9>QZ_L&J7GY{1!o>co(>G&6%0e{7) zXa`V-;D00x|J@znKcM4(z7zZ}=y(%HOZ_$izOvO-ovAX==6*}h|J)_f4m@geke_|E z7{0QP8J`tqXVK381~7PGBjojY<1Z@;O%KQaOlfF(IQ-Cx(DZQlJz?ohVdZmH zo*w?~bR0d$EV6&`xwCrfyD{2vy7baBq_4l>^zi?3 zpFaK0Eura$!|H9#Rzv39rf_)uH+nwpLO2b-&g$Vmo(@fa(*#dA$8(|S z;q>>v(0Tg9uS7eV;WYfPzgy^wCr$WwybEZR~JKA~rqR*op)o>bq ziobC9gI|QEhx2E%SVG{#)3==`(@A47!ir9KzMU7yd@JBz2dDCx<#t|@#Zd$&2ofQF zC4+GIN^f)J%M{s1*>~^8nx?Wx9zmFK&%;;w=rfMLKj{2gFPGz-9ljdp?p`cm6djIp z-|G1lzh?O(zUINQTod3s;8Z?yJ^y~F#qkUr^Q&}ox$}lu9CP71OCL4T;ur(hS^5^F zZ3{~eum8u!g~ErYUw3(Ex|zStS6Cc(z?tcX>uG%YH6-2KUw)BnaXbNMhBv1(zUAuB z^l<*HOG4Al^-K7BmWHNd%ZJbxs=jNBWjgczW|`4W;dHJok@=Lq*=52rW`)Hu9*#I$ z;J4~w;tc2K^SV%e%=LNhlel*rE-jfeL-|{PaD8vg+b0-tLpkfVs~n+z_eoZ*6fo=I zw!qy5cR$=NxczWP;rBB>JplJS-0N_M;e2r4 zz{RFmwFJ1Ka96?2fm;ISgxdmlAKa60`{3S(`vUG5+$p%&tE^fQ+(ft>xFv8^aGT(6 zg?k9@MYzLo$KZydTw~#8!YzQShT9HzAKcS$ufzG^PQY2OwrcTkNpNG~ro$D$Er(kR zw-xSoxclLn;10rl1owA1Z8GWwZYbP%xHPyqaHVi-;kLou4fizM0l1@Z-@wJ7P0nSz z;5QTX%iq%I{F2qh*(EhKMJq~h7s1^8^x5OajxMgKfc+blQCYpJ$Z4ehGCHfIsA@_@ zMddPWNOWe2Gq<{O8DJT!Y4?iMjOvmS*x1q2YSN~r=FcoCDxSK|S(3gMo9wKGWyK|_ zrA5_qDzjY`&N3!whmf%v3b`*G-lA5b&*D{ovJ8kvyO6_Fy%*tg&6@sCE$*^QyyI(-hE|HIawd9vLXBO2s z)2pj1tFacTrIl2aI7>3hDo`c+iIKr6PG@!5QkS!&2K986b?)j_MO6i5C2M9aXQ~!s z$qsqmpve+25h+z=t5*OnRZFd?tSQMVT3rm7g9>+k+4>UgFMKlbaf1m%p;jqMR=H{w zKxdY%E}5da*a8J5)iq_6tJBv`(fU}jD{FPGKhV-wJ4>oltIM2asDu2HWlrS6e!Xb4 zNNq{G_(scYXT{vrYsyv^Yo7|PToo0$Mb6TkqE$jJEVGNsYS4_!N~$ELWYj>ZC`NHG z7G(udO-oX;F{QY;8uEd86LDr&7P~6+vQNRhG%9^lx$Hbr|;mzVHLJzrF1Mt5IeYZ#WhJ7hXsYEb&787jEA_JfmKalI9qFALl{8C~d0maOWYwH9l%j^^ zVMx2&GRx(xayipVmbzBRlAw$utaD1LSCy?s2iB2b+wjt}tB;!+}GAdj(rL487uI0<2R5a~5(n+f>s}+JjMVqaqR<5clsxAq(!ragp z@b(7rnq;`3sJg6ZDU_%7W+y3y+D6$5sj}{;Xg@dAyp%4s$4w!*3blO_U$L%!wY4T~ zIYpb1K07CUrW(n_P#5y&pYO(|Ghz$I!zlO`-Ie0m30DVqLANMv>UmMx4RE*O`7XHs zfTKkot<6qNn>kYqlu}PrBL@Fb2mk-~Ut0sEeKZFtSo-NdzM+Ux5Ao`H2Q3V;16{h{)(q4awFJbBPm@4s-F5|FNq4m)n;|IYpp7&Mod5Zp=sz2w# zC(LX;K414a)D!=FIMT+HS>Ra(KMAf1j%SCf;m9k?!Tfb_Q`NB;K1G5ru6(-TlBtRFho%fwllV+5S?5%pjAvv>NF zM3XxG{TDLz--x9XRIGy7iKYDN|F^(lau%rcIwQ zGdpKiZr<$tIdcmN=gq(7zmduRVp5%ofUW{M6@jGxV#fY^(f>a#3R#7CFA;5xy&npC z$&Kr79HiIY1E0#ky*s79`Bz6<8FFl@6F$FWyZhHiew`$f+x^{qN=7+!|EaUgKSj^a z@8-UJ-xv1{(Efa%@4jn0$G_=b0g;CRCGW_hBT3rgBjrcNw$K0G;ZKg9)U?YsNzT5S zuZi{YR6S=@JBa@~5mgI>jUGhy?>>{ya9-CI88m!_nxkrg<~X)cbL?7Tb*u$_=BLlL z4l?rpXdvngzv!@^MgN(LtLjhrDos5rzq9zx(j(2U@F-uw|4;f!*n?)KPu}Qgmzw8P zoU0l0IDHa`e6&$^&D9*VNw&kM?Xv_vZK8d1GzSNVyW!KOsen&gEen2M_=)go8-9_m zImpEG@CU%Jhd&VhO!&09hQdD|z7_rj@ORAC97*s?;SYjem8Urd!#|LVc`N)T`0L<5 z4xa<`4)|1Jcf;q)xb5&)tjEQhXW>{Eqv7bYuYCzUf}obLM03Q$+2P{gV&SZC8eGd_ z^hY=!+(&Q+;P$~i54Q{MNw~-19)WuZ?tZu(aCgJq1$R5#t#I4n>fzSHRl$|QG5->{ zd2qRKX>eD;je#2qmjssxXNPND1U}%nE8 z&)}YdI|z3it~UzAPn+>ZU0%eiV6H^ke7H4mcfvgh_a59o;rJb}OW}AwZv`CR)rxn( zYzv$w=lq0ry#uZd6;}s;Gx8+BXJ1N!y8$lv+Y#*uhWB+b!r#RP!;ZV-g5lgfwqSVZ zi9RY^cjsN_s&LZtFZP#V>r1Zss_x|n8{R3ZqFUOH|?4GBpMn3fDtG_IB99a0n zus;vDc~<{`+i~5Uhwe!2)ur*G$L?{Qd}&A8-!}KTW%G^CI$pZ!j}N@vHtmA7FTdxg z+zs`M3P+2micq(yI$oy!ZU%nzn@x9J@EEY0l2=6N=vX!F!GO z@UVrRlOL}5?Hw)0hre{+zJ(vxt)BVXfBYOSs&P2Tg~sFMDFn%D1{cfOu{z&4~lb71BpuRi$q$&Lq} zE~|K~%L@~>1SXH0^!(KIfBxg`FTMZQ$uIx#!~UZB-fP}`_>0Mx&b;=s>{njA{f@u9 zHu)#7)4;*;}7J zwd>PAcTMIXN_xyG1HHEib^-`{Ta6-k!$&AtNrXtgSBjNk-Ocx7f_a*$l!DYey1CD(+ z7c~08^@kgS0Wc9hT`R&P;nO)$8`<#l;l4t6F8l&GPWl(Xr<;fH68OvDo<#Tw_4mWr{yT83Dt+WrT8y899S0Y2Sfgl%YCx;b+-?Hu@Yw<5d}eifV#;cED`a84-L zNiZJhhF*)a9`NshyC31+!?E@QcW@E%!l!$4v8Jtqe?8n+2oK7U?(h;#Ye1Op_A=bs zTmXF!w-4dVT+-nt9PJK-e+Fl*1TFXvz~PesSZt2c=4v_G47gcXE6;(3&cN!@9JrYX zr(;EFHd1DzLA&Gm^#3xjj#R0wLN2FPs+GXc!ruz4G9@9lL|d)75L$+`O8l!4IaJO$ zcw)+Gtqgtxf)0 z6OgL~Yzana<}5+EYLGTeyG$Ddyn`@;Cn3g(ysQawvqFbmC7vtVag_!-F61Ll*2^+L z6K@j!vfdP@p`|8-tW%b23~(6ft3jP5WIf1ySK?`yHZE8XGj*D*GnQ)wu$5`+b-LtT z)m)M`T$FA&Ft9Z8c`Ra8olXQUQk3acdhHtAuwF@}OmN7ONl4Z&X{&l+T_>Sk%Mep0 z_$SwF#bu%mSkJ6iQYr?<65y@S*5QeD$2ym_rubF-T@~a{w*1+1h(32#JSvKz{7Noa z53F0GK2;f(B6fvd7Yjg#rLGa>b)v+ScD6lblC4C!V_c2Mm83~pgkX%6GRemvKo2st zPX%yOK1bm1SY1jl0%l?`%QxP|Bi9(XaeC_6azw6VZO;QORX*A8**@fN8QRJv+KqB4 z`!8FRT(C7Mais`Pf|I?e7`&=B%o6QDJ)&gW&>@{+Hzap-5D(>km^K9TmuuGo*Fr&? zdZ2ypBQ^3)?pXUueyeqCxxhu*wP+zqEnADvl*1KpN@uJ_?KqLg&>U5wMPp^1Eb%aIX^Y_+2^M|F;ie&g_loq&cBstQMP*xLaL;Ot~cslw%{n>YG1>$ zT;X)74>_WA)Yhct0zJ|;8eFm)*YpIHGc7twznNQIq|9g&r?uMClV*cWXs`oJmhgnI@-f4f#aLrED*S z?6AF7qP4=crK%;fMva7SNBx6b)QVCr7nIi^Z0;S^s8eY%EJeAO;~#58^>ykHIi67O zg|;|#CSj|E-dB2rF|1XNyy0Vw(f60=?ZN(OaKNw{;i-#MeHhv+ynWO-lmsg)Rm;Uc z$vOLDcz-d=4JC~dXfEg3Qlx4N>xRHBEe^I5`ypjiTB_@W-l5&Xo*{b&xso;{ zd+a(vRbiuzH4Qa13s?+VNqQ|%Z_8RxJwnM?XK-r(DQ%LD;ix}5qQ~|sfgVxx=o@-i zQY{87X0%|y3%H(1rlD8WkKD;J`&zW?cpUaRmj^uts`AaIj1}@x7ik;@o%3e5c;q}>`9|=p_fw1ju{8F?GHTP)r_jJrurNzgdP5aC|OXPSPPXA2u z+tElxda}$M^OqvbkvUYhmLg7auA%Ls@YH_9>ln`}p*<wvn8wFv2~ zccVP>fRkfAYnqyva>pDjx3pWN#n)a=RoOTev6Ye_X_w=lrB?>QP8AB zNLz&*awRx?O-+@yJ?{pGqX9Ps`XyiJZKX5h7;k7J*8FnVy%Uj}J(o2(7rxYY(lR^~ z>}BY0gl7E^2eoN<36!i*&(G7c#e0Wb-! z%=Rv|GkZC0Nuw^3^pyp3|D^tAZ*&UnZN?#`bTCRa8Y`Ql(a*++f1`zl9|wIuIH-3y zzoi7P5j;zKRmzpr3*?1$qBQk*(Z1np_QO%{Ty-I&)Y;T6Y88&-ct`7Cp)ex=T@1aa zpzz)ca9p=EEa~=Gicm{Nx?E|JRwqX!j5dWOSB2)ny9%S%5gOGeFQ0}8K%)| zPLG{;SxWroGP1v{6Lm=)DkX|#3|+yNtHb2FeQ9OOu+`<;0X64hyp%mko03%ra8s|T z6$dpRH=qsMiSxJ68j`koq`ZY{9jMOE=vCe78 zNKyyz!?mk}Io2Y*^A!xrxOvWI%rB(e%Qt#bGf)QD+ocW8dcFi)m5O?&Ze>}imyL3< z7js6!_F9dW=U7W!L@Y`JcHGPO{+<1j&>SWB9#WNGh2*=y>(IKKT`IbSxY-_&b-ZThw z4GMVI-$B{93dGqoTScxV5k^W5`CW=~%NeQh9!T{M+DPqrmN9H!))4VZ-O3sxpK3NA z+A|bR)}u<{yBxkjG_PgK_g@Bos*V->?SN-F&gQ++NXn(^ACzzAQ1ot%nBF*@UdLLK z?Z^>8>OWOFRU4<{QF6p_I3@04^y%7lL;Ft2hZ)Looz#%U~VUl_w&Y15u!3C@N#wF~to>CuL!RIomc0rl|4<4j8enMH{8_HKUUrp ztuvKV_B(0@hB%{D^FK;}+0Ns*8A*AmiDY@tj)zc*qva>d&bfJHbUV|3a%81kSBgyK?`rMt{^LHz71=J|y&hV%W2 zs)NYu{_J%W_n46rSx<6ZK+%m{o;%kWwBaQct^&!mhVZtIbd0`COGf=sA9hr)h84>Z zFqqL$u|ZuH zZt*L;Yy-Z92-TU9>gKV*JymDYVT$gL>$79AqM>Aq`|8Lw$6b!DockI!JN1X0O`6v= z>mrsNrMJwoEXQ^EF4eFe3@xGfq1{P+w<@SJBCpqubd;oTP%-x+S+9}mXTC?1^%}l9 zTqt(irir@c>`Kk^SuXZqzR5S+RBVIrx{^G}HJ-Dd?~D~Iebggq*a^%%za5Q@68H9q z+g0hPv$0zX#J*#$PR_yzP5U}S>{Q^K%e=BLd69F7Gp}WtTTR(!w9KfPly*{U+r~^r zY3GjT(Q36MQaK+N)Jf*HQ(T-*N6J+oHLH;|fU{o_wg=zjs(u|l;una$-*eFhEb~;X z$Iiljni=9rS`A9)gwD4VFOklt#szg*$8$_`k7o^;R}DCNab8oT_xMQ1YOdIx{n)@c ze44&HUY3??Gm+TT6s<$^t-DguTQ1J!dL%>V>c{UO=K;mW3@dWJN@UQh0~F8 z71m;Dfv!LwyIQZ$t581bQ>FRUnu>Yds0Zd@@VEa!%5J!m-I zdtMA4l`KW7zsCh_p->%S9;ZTWO-U(I+j4x+#!1D#Ox`;-1+pOZ;{w0^FeVY zLOEEanF~J??W6W&oxWWn?Q`RU{rYU_8!L2NwdVV8CG%S&E_-MFUG*-?p6v7OYlEXA zHK?%*K=BcI+bf$UAGOVKT(z9SkGN9Qs%?!x#M+jRqh=Tx2Mvt?fZMETubXXT)HW(9k0VPr?E1w_={Bk zUml!Gw&%~FphkescxkVL?uxjc)Ew{Z+Jn}I+?Pd}m;!4l6&i^<31vMNAUqq|X$CaY z{GgQZE(7YPA^69>VeaKTlOp%vvCb)dYCcD6gVIlpz`tB^l<%yH5IVcJ{&L+ZGPQN5Q>1NpMQ|?Gxtypr3$-SxUC+K1Bh{%_1a;5Z&Jo+s)gsk* zR|NG-XfIde8(VKuoZ(&7h<6a^5Qqi^!w=&E#RXnYtxxR|deS#^)@7{RaJI|$kj3JpLFn5{Lu*Q1*x7nk zq;u^nf_55tHLn{{FUb8PobQ^g??~5Ct_aRI+tV;+_^f-%2uE%uJyK%EihX2EHTtvK zzZ2;=Fd=9IawmjSXf^InJ{vy92|j2;w&x?#zB(aj4^mFdrykRw(Win2Z4z2!a^FjP zinwQ6Q+=v_6nQ(12Nw3@ z$lK|3@)D`+P6+C^A1Aw~lbJ|$El-umI^i2-YE&gFvY)UA@r)8z!{r-NO1N6TpdMZU zsp5?hX|NY^VNFo?%n9ncQIIFul2RMXcW_Dz$elx~J=MCEnv+RwL3@EKB-Ha#m&{3YKf6ir2{275Ju0+4-uyj9q_Hd&@J>YHp;?IdJWZvvNf@ zGCfARN+#JqjCC_gr+O>Hl}kzkch!Whwo0mzmsO3iKX#0lbSol~KbBRkp@iBxr?Vzh zy_QByOU)Bb|1QX|TO_5(#(%!KRBIyYeZ`qe6KTB}>#>pVMT*S+V|mm&8|p;!C>Aa& zvYb+@8~fVB>oaotv{N{4h12gyX3j)C(tQOizZy5?tS|iZ6vy_^H>T3EG|pBq2emd& zbJ8+WZ*--6MXDc+HQ)C2!8iO0JI4z(X9{nF$i@lQfznClw=#;7*}m-feSD;Sb$rm~ z&&M1*8`j$_%xq}I%Cl*5Y~)_*(4D6DN2n8wHPui$#=0KIdwHr>?pUD~R<^X%!0dtK zi%;e=WW>R-fax-)Z12eBU+Jy0;W2bHND||Rc{e$}>=R)foo1E^mn9kZ>;y8UVpPSlzb>I6wOHG-dI!ZT$i7YUgTv|x-NVU6JD!Qrg)-A^>S6l z$Z0D5X71ae^v=}7>m!yaWm~Bp&3@JK+X2$1B(Zm?p4X9q$+yb;+M;0zm8SqAl3e;G8yOXUVXV9VRn4u?*mH@YEGtOa*857s}{(b!9 zJzV3N-}6hperK6OVPARwI{v6*aFKh?yJz@(gY7&a??Ir)lxh!cZgwm8X)4ojY zM@hA|O94zh;?IGCmKm=GA?rjg9iD^+Rb_bH>S?gT-Q3 z7SCTXoolhQc@0Us6?i+_pVZO10OuHEFdLNpEFXJYxau_r&(fAo6+80y?pWG^^8GGr zSXtTXy@ z>iWK2S!5|&LDo<}_A)b>NhXuYgwmF^K<&b!D3rE9wY0S@o1&tkq9ULuqJZEd3IYm< zEDFdXD2fXzC@L!MsHmu@fT-W^+{q+q8`{*@=l$M4ta6hx%enWSd-i)~!XT>=h@fZ} zzb>+75Isw8L-j{C?hm|WfT}+%%oY7j%0-0M zdt_g$_F-WOd`DG2 z*P5a1--f?6b}JV;2&+Ur1)j4F><5{9dY08Qy@UW?*&u~g=S^}???kq&DcKy-wSjkb z{k`#8d5H|*uDs7_@+A3c#Eo{e0ZP&lnIEAyYLdO7)u${4trGbo^u8eSCM@eocPO~S z;!*M!Ys(vf=NSj02YOPM=s>bX{RH+p0^>DpJ@IknvC!zPu~4p^bf4wxQhf*Myl(JT zNQaE%Txjw<(Zf1km1?9pEDzbV(j(9_y<5P_Kn3q-P#%fyD1rP3>)LKOO8tf!6J1}5 zJE#r#;EA}JGy!?kRIO|2Z5l1D4rMnjzb{aqX5;Q^}{Jw15Z(1c&!<%ozxty<(74ejz zrpSDMUot)kbLF@E(Fihqo-OepjY{MAZMcKpFiLqf^S@M3le~uDHv(FFf<)8cx8f0H zOln$qruy-ioJLYeYeaXFl{fV#c?qQP=A$>DvYps%nmn6#kF9p}pcucEB zF(JJ%h2A4bI*4X!-803157}Xo%kb_a$u)5hcLaRQz#9@RdIa}IoE|*F9IR>eZ_}hX zSaprTmM(+ti3lCb{fu073x_gCik2 zYtGypRmHP(r?s9H`!(O(MLnm1!j$zP4S22pYDgvM*`vINiV zDqy$fW^y@s5aIP@d8pkm+lp&+brr0ph6x^N#k(!~nYx~$XnIDdGTlPGColM&Zsz;C ztQiG912iz#fvSZln`G&3t9R?TX%)=XGIQ~yi>%eFIv3(Ylj>Bnmlni5fickA&H|B| zg{u#v6{!4nHuJ7N*yXYAH{bV?%q5LxLvIBRw)Mf0gQc0QK58@GKEQ1CnaO#byzL3l z?Sc858Z}VoM17llPkTf39(RgFNs6n!yV#^ZX-4zCTGmV_!ecPMSMJr6=Zg9$n9qlT zu7hxIV2z1;NoGx63Vy$*nK2FYNqH{%uX3Lj~`DXCM z$*)Srb-^(vSufLnGPS;G1+0jH@`mI$S^CJ53z~%~EtU={;M zE`XQ(45DRiaP3Hsvesd{!gu#+Swy)xBh}Vg7L|Jnt zfrzv+=3pyA)uEwgl!6`t*_Oa+Pv-M9BX5eZEDLGo4J_#kXU@5`>bL5QO&$o=?&0(r z@PUG7odT-S+vQ02krZ1#iA76OlU39ym31>wf?`VIngHd9pG`Tj_`%Y46<2|Hrs{uL zSWz>YBVWk$Pb!X$`Xc>7{A_t$6@3xnh^m-Lb6O*-m?^NvcOkt%vT15D8X4)$s@_b+ zxsmr>^}ov8Z9Tsoz;DgCDy1vp4|sXOy<~tQmfvK_V=BgB&5v-fQ{PgINEVS~ ziG0BTP0inuup^%p{609-URl{h^1o<5%GCJQuTYRSBRUZWlZLjcx*5J%dOqBKCE%iK zEA|_xM>V5Dii6FVkfhSwA2VnAcjjsj*(YgU(uRQ^F2pZp&y>Rq(D*`hwQ`oGZl z`mx>tRIwlO(M%0Qnz(9T!8AP()_g2k{d=5C+Jbb2`BoA$A}9S$l1YUTksBp*^=0Zo44zAT@& z;%sZfgVw$+Q8qY-U-KGTJV_z&p^*7=m~> z@P@8&VfAh4HOlE#?8A&M0&}IF&4|F99qpyoJU2^U4FdjPAKmm2gR?6pS69wh5&xS0 z#UOq^`KN=x?WSe6VgifaOQU31@DcE4#-gQPDYf1fG?wS)=zT%-w=?>OKN-f)SSkj?G}Tvp$dBcwe&8dKo6v@V3R@?HmdMHT%$YmDa1 z$XhWpAq=r>$Dn>k;LgC#2lW?t_qh|=MdnYAQEreT5A$s=^hxhWcW~;^`xbk{e=~GCD86_Kqo}xwbYwVYOrtX6bu;421dow?k!Gep4Zk*Bxv$Er7-|ja-W2?cfJ9MD zY0ZpQ$>e(cRx#uSzi`Y)Kzf8CCo6M6_t%TwKo|V`hu?VK9f3L>ajCdMTq&*=*NNN2 z9pY~BRdJRyTbd)yl@>_%NsFbWQi_}=XUSvaJh@OVmuJee<+<{G@=|%FyiR^b-XZUk zUzHEb$K=oDlk#c#yd14GP?{@kmCi~pMOJhrMM+b#lrc)4QmB+GGnLuOT;)Dxsj^a8 zr#z$VQ1&UWDu%~m>(pn|9qK;yRrRoXO#NIvsh(EPtI@6o zuI8?`uFkGrF4?8KQe0`SEY}!Uo~zJR?waYE?V9Vl&$ZOG(zVX@jBAH$pX*iEVb?L& z=dP2k)2{QbXsvel8#Epr4!OA=?osgs%ww4x3b&p-Ry#0wfD6Tw5Qug*~i%@ z*-Pxx?X&E2>=fip|Mo72Iav%sHoz@ZDkql>|%E5N6#!KoX-tJ^rY9ss`{ z3WH-ec%JcW^X%~K_U!W<@Vx3d;W_C!CgbP zpabSW3oL*hSPV_D0=i%|w7~}GgKf|VyP*>fKr0-AUN{QPa2&ef1hm5`=!Y}V5X>3v ztP3p>2R+dWn!*NM(GA){fWAhaV0d(?eaRapR0r8M{Ts$G35@ks3DEoEx z<@U|?*X$qIKZ9ibZf`Glk$cHHwDSw{%W|C3MoCb5EAgPpQ;zpB=U*HVn3?EwVpg|1 z?{+S6J_4=xobxy54 z-Q<14%VyCt?~FwXvxSl3l^ExIak;o&+$Fv(ekMjqO{MOVOS(+DO1ewBU)n0|k<#p< zJW{?#{y^TMysacUCOhtOJm6U7_#R_w)k=MQTk+khJLGlAIA2CzD0jQe@lN?{|Y+l4?WTo?`h+4dUQ{gXS`>k=ddT)7-)<% zCK`ptjmD$KYGa4d+MD2AUNeiXNr4J>=eucf*eyx3@ z{W<$C`|I|T_PTO&=;BGR=K0EFu)jwkq34uFj*A^V9S%pbW4L32W3Qv7^9H9^&4zv{ zf?l~zU8p{&KCW(752&xHN7OIWZ`7aE&Mw83iu9jvX`ZmeFKJJWq7^vBiisqUHXTio;9_qmt2A9p|F-U(Sf=KjR}mHT`5S*&KP-URE} z9+KkJ`|88>v3j0Jntg!f4u9xJG?JL4<7NJ^Rh#XEryITX#7-Rh;XG)1gm!| z`0qjCF=4InrtrRSR)`jxh^?XDRnZVL#A0zeH0A^Fw!asD7SD+hkk=0I#4@DIA*-{b zP0~*3CFyJFwDgBm$KKH1)ZWhC8Gcr(eT@AE`(5^>_DAgNAiq28FW8Sj`+si##{Pr- zto<)YawEucYe;iX*)DtJ{_;>cQywi}DNm4#<%RMJ`El^;hw!o*DlL^ulzGZ(rMaVz z<4VVMu%pj9Iyybz#1iK%&aLo6&N%;a4uNM;0B>S8xNeKO9e!;)S0~qK*Hx}-TsOGx zbe(`?r)wkOi(U_3^geBc_PDlAds^G3J+JN44r*^|?`j`HL!Q?D(Bj+|yL*FQQrtt` z1@7tYo4_M$-J9L}-S0!zzjpuTW_mrnIXI)AK2@LP)1j;MC-u+tZ^02WJhyumVCCQO zNJg?T$hh3N+1Ow_Z@grDX8dTJGun8Ec+3;Tz$!a1QHIUu-U3EGCFOMNxE$9thwVgZ@{@1@cYM5{u-= z5wc6u+)A_Emw|a$oHP&e!yu8QY-#xFsq<*6Q zs7kIJtkff}^{#C$P0NOi7iwkNEUeX1$o5XG&^uV4@3r$<45T;%*0soey?X_;@Bw$U z-b!z$cheoZSHBecHxK%EIy{1x^+Wm*tjX8^iv-qbNBQ=3Nv`eFs_aKRADNwo)%q6V)VjIQ;ce z^=9>9_!XOBK|fUE5v$$gngh?`KhV{`xms(2mWo(!n)U$n@Q2!Wn#Vm3n)NXB>38mq zSeLPSzFr6)=tliEctNl0pTNub2`kdn)7I0)BYHH?0BFuJo;6sN-JX}AE#LQi;`!0j z3M{^M&+{^n>&( zv|6N{^jb6f#r8X(%eFy>ePVaWWsr`BN;gPEfig#V8GeWhQQwu0C!v?dICGqnou$r= zoZn9%Li*i#k=lkw<

-UQ)kOe^Aeq^%I_-c>A?wxY=)#hpS z-2L3c-Lu^vxZ`xUUZOA2SLjimBF`+(d`}&topA-IF$bC?&TDwHz>{0y-=8Ay9zjh6 zE5!V5!T_N_xEEabqVNW0od;ff4|?J+(JrmW%wp}05gB*1_keD=(w=X>8xin!`@4vJ zPuu^rH5f25Tkg2mu^h3=2adYVcxQWOZ=SCh49{ST z^ABfZwYAy@oRg;JsAcL6@BbV-ZTDuZliSVG4Tw{@E zxYJcvYpr!f?qG^`ueK2uopkei+NY5F(^{mvt6OwC+)3`s+_~;4?(5vk+>g4qy0^P` z!4rGQeGoCh+wONkvya`M!H$3H{=xk-boKAB=23bb{UW`w-V8Rqjov};gt(!L!DCu$GZ7CI*g+flluVCYv%k7|9b-5ob+j#jZxm3PZzE!?UPUNyVQ(2?zM3ng@ z^k!d2F7gD|I&N~@ig;rg_-MQ1Q$&4#z^m^7>W*|?>3q=nu=6SB>+rTdb4IE4)h3{_ zR~@Ea1}c-?o1@NGm#9y}({j1)cdc~|ga_2jeTBOa_UlIX?e2TwTUW*nDN)JQ%S}EBip#ixWia#JOM5El5xoR5ccYOBiehBx3gD8)I7y|H~fl~ z-u>RUz3+K{^fDoWm4F1Xuv|lg3}GxH$LkSm-6h;3JR^K4derGOgsU@?g10{tVWsE}}-VOkporU#Vwl#dY^e64)1L^+xwHqabn z9R-dlj*X7z;m`i*NQ8vWa?WusbiU(EQirJHk%^e9u2uJ{?Om6^TiA}wR-|Uv`ocqa zU5kY;FbZD(UiX{s4`FMX>bL8U>!2=w0D` z-204omv^7{E$@fk&%ED4wtw;d?qz)=h~)6$h6);Dgh}E%uo&M-t?WJR!|Wqq6=v9P zK}PF-`+w}~VI96e4y&EqTQ=n3@>uv)H^539l`m4RQ=U?GDRGWF9g7_QLCpP}<3-0? zu-M ziQMct0y}XMGRcfOMyByP^kIZ|45;^{_j&IJpcqS!U@GX<5`I;NPzHP4Q=BX=0@X65 zd!(0mM7$c)`3KO#RVza@Vy{~-S=|1S52ye29A!C|*5OOzGL zi_rI$ivB*&$WeDK(0NbntwyAeO#j|gg+;}OSWjwc|`8y%bBweEE6 zaqM@z3?6(FQPq2(cC_n;GB!ER3CQ%8I&X%gPX;&6QtyH%`v_vEchzszPA(A^ zqSSS(YZny&Jr*aBe%{W#b}v4z{)66z&u@!E(ML z{0=MG6#i!_xbA+)?tEkAzj+4sacitgACT)?nO9vsjKS_TgGHqv1u#0x5 zeW?91`&IT*1JD2c`>nrv*z@guPM;mkBf1&)B+zOFtf8`40YUJFPD*sWQQ}!$0 zD!(dC9Py3>WLgtJ=PRKVZO*PvFEU-F&S}m&oU6f|&%<-cgS}a+zJN&cPqneD3$obh zh%RHaWIflo#<<>i#%SlA;5}&CNhq%45G56n&?Mw4W(l_o^Myt5yAO+}#eT>zzYTxu zcDq;pQSP90fsUD^6e&|7JGU$MU|ghQ>LU|qbM$uD9sL}c$oS62$}hr-KZi`-JC3uk zjxC&hoW+Py_QUf%;q0j1jaKb(;@(>px-#r1+avSvZX5=1@xW0rh)lbWT*LzxP z;qC@M_Z9aMcu}9Z|8R?X4%Tre*70TiL;ZyQJ?vC3&v4I7&ti{^nD9B{xKSVR-xT<$ z2gwhZ6~VUQqZRTE)1ZmJ7Jd-op)*Rvh44Hd7GD=aO+p-aIdp%4 zx70h^y8u>|t%#s>8gzUML=;^G39-cO!e(I~Vu{a%fmpd!;#RSxl!PqMap|Pg08w{8 z`*={}dwT?SDf-FZU^lBVa`(AP88p^1Wffw8ca?_lFcu@Hvk^MzJ;#rZc*xKIcx)xe z;~aOo)B*6<#;8}R#fYHqh344=z4MD2>DuW!_C9n&bLa&PS%Ryu zj@KbBor_(V$L&wqx7zpE-?qPpxtvD!s=nM3K9rm12J*3scO$s)L3zF068Yjp?9mk? z61@evfrpR{d>OlO-#{xj!D@F$4t_jz@pNe3ZOEek;D~}%lc6zEp)G6s{@74gwre4BRNuNp>~4*Lf4U60 z!S&j9o^$#TTDP&=r4P`@>BahW`c1H155Z^O4BPb*@~WTdKOhE;L`HS6rx5vpg`S78 zJ8{JG12RCJk)_XoN14xc)CyxGa;vXFH-C-1PK=i}JR5+%t%Yuai1>1_kSR$6ix2M zPT6}>54#7vQ)-`W?bMSA2{Y?SpHv;zY~$O8;-0?j#k7oFSlw7vH&*FYWpS$4o-r~O7y~f=H`MDo(ujui5MtjzKE+<|+ z9)VqU?0+EB)e$=v6y;7+pTi2bMy99^e3OTfJN#Yy(oLDaxt{wx%aJSChCI$kp7WkK zL&PdwZ_GCCg(cZ;T!*L=+1*nSsM5fnP)Fz~z=GW9{MgwXUj8l6 zsr%HkYA=@^dDB}!<1e61Wmt=$+E(prp0(=Z-o(Aok32skN@^mv$G$O+pOc3#02ZHZ<7FuUaNeE{kll()-`gp zaI|p@LQZ=&c2xd@xatMRLF}%5hy9#CV4vfh9i53z2YlTj$S39_L-mpKTV%7FAS$>L zvstRH!tUcI>IpT@)e?CRJ3QQx*cBfSU+g+$t+%*dcYOeza0YXtOm#c08{!6+b_Mr! zA3^-E9Tx8m?XdO{_Jryo9$W8ji=48E$a4kqg}dO{Ht{5Sro&>~2Cc9PJC}z&b&WPg z7p&eW{h&~AH`1f zad_J&AbF<{8ycPz>{6w{Z`|V91D*ewZ%4I>;RbJ&BWpGj)@?Sj5p$6}dmmoN=f(+) zb{z3p-$*>Q!B{u!b*vIZ*rwU?1M*>b&P}mjbI{>*COJQG{^h#P{kHy{{-<6KJ7Zno z)wq!l8Uvcl_bfxNyU=SruFbl zw#0oksQRnk8F&sDY+NK;jcc6k{$$l(`amK)DTQ}@i3i74$b%+d}k+(rV?nb`{P(yM^Zmrl*HPQ`rBmJ-= zGD5w_wHQA7Q?BmX<=|+iyRW+hy9RG!Z|wwfI6aVmT<%FijJ=V^hHn^$jk+|al1Nnl zGxh>8MsY25Xn0yn_5{yhB1pHL`w_}IyaqQ5MKfhhv zhdks@;zVQ{H}X1)&!q1`ohZ~$Gy{Dkco}2tdB|@}M@;?{^2g63tN)3;M7|!C1dDjg zv=Pvs&#5Xw24b zgB`Q?VERC1Rxp@M8N&Ikeh+q`p7OhRURgfK()pMR4>hvm%*pqh^+j6#T5#-)ls0rA^{KJKa+q2&@hiu-8NZRse&mp_{k^NKqm&l}ik6g;H$flfx zrayxn!Dywv(nM*cbikVRM)i{$x#J;9rZN^W&t!O!*DJRn=2?!~r!~rE)IPajpPoiM z`<3%`nbP2kH;r1@`%(sN>C=GuYL^CE) zdLQh>0?#JwU-I>4QCt@*$nnYIVDT<-jo262fJdcc_673wiW^baG{;4lezZy%;r7_5vmdJO?^RctB3R-s;bj#<+ z$^3$x3{&cXS9>W=Ua2=&8LfLm_B*{HVl~y1?^)~F2~WHptQNCH@mkGRf>XQ?^B7`(Lq3hjpqtv*osXz> zIsD2?5%tZ1cmE*l_j-Msz8~1O!|zH$l(!$bIwnN19hl<~c<4Kz%RdHP8i>urwqm|m zC|-lu`+4m3{3_O!x=6!7r&ZF&(qL4jJz`%4Df!->09zx&&U^~Has^_z`HF!`!p+Dj z>_S%IJxGZS@k=2x9$TC{k&$~DIbjdqbN>MQ3eoUVx^gW@`|8&sx3I_63i-F*+6Z{p zMaXuahYflZUhNymob@n98;wvavjG|1L&QgYqfiM9l_3;}x1zH0uqa4g)W~IW# zr@U01qpd)md^J4u4bY6+pc`LiI}&4=cYAIjC2VrLTkR#_foBK9HND`tx3RN+0t$@-L+hyp)lS zQury?fx_8pBUdsi7CK^o!mcH2nXnmGYmXrU+zl&y7V)2sO#3o-YhBPaJr(cZYaPKm0*zU1EbFNhBQLR?$V*$}&|EuG_`I~O>!up4ljx=ekP?}5Jos(p@n zm*0@rraGlm*I;(L+OX?Ml#t+8N#&6iw{0qCy zb+9|o*xL*lqBhv$?1U^)Pj4S+eW%y$^?H-BD$&e_emjbqNS^Co_8a8yWC!+eBajWm ziMVL?3_k8hUB@!i5l9PSrhMn%?}!V%OKd?l}lfnue$XX@P2kc3AH&Vs}Vvf;2)pFLhFr5fj~`K8uJb!sT{NM!f$8;%^1<&aGIb z@3e-9b*Dl;KSh+2f|{~-kP+*TUCX_m)9{;g?3%4c#mY}c3ii|IdAGrKo*_Q7MYA~6 zN7X@1VmzW~UFgeqZ$~3HTaNvt4ah(rrU zv#zrnDl~OpCHHhh$}4&8_Hkaf9bB`W!t1qX@j7j)(WZTs@bgeNm4+9Uj99 z#M9ecyRlDo9GRB7h^K9cJOxN}U({Vw#q}IyTGk=Y@+xA_GpK}W0KOIA-Ht)s(`@$w z_Xbo>P{q?J_)c-CpU@Etrt6ci*F0Na0AFgGzFR*4jc^oR)d~F!^m}KI0DGD48HEhi zOw_k5h85X{3fp6-uRVk8NGoJJI~%=_%^GN=BX*@~+ewHH?=uz~D^RVp4mB{_klWg4 z9KhbZ|B2aZkc397in9JaHb`)7Kx5k3x*R7&)ja6~2s(i{^HwrW)Uw z*!7qV>dr-_?|rECU5Z$cWNioh<9(p`tEfP#u41AAR)gl(78PUG9A(sw=~$x_R0pT= z8IKajV8u#MOEwehHX9X7bA41;iY(|NZ-y0{>FrUkdz7fqyCRF9rUkz`qpu zmjeG%;9m;-OM!nWP=Nvq$Kjn31x01$rBf#77nSFf7Zeu_%_%CFkY85bu)Ym{(tHXio^NOdHS-65xO)o3(qnb8tTH-W&VsYt2>Rs$JYG_&}A75{pQBF~A zeu53xYv!QSigWq&{I`cY7aN}v#+^95EH8m*Vh+eKKlI7@ zP5~Mr!8SR+tSo0DzIX11g)bA@mrgCn%`Z!|*|H`Tl-Yb!w&818e(sb~Tv=Xh z%PA=-EHJsR%vL(3s0h@uO)1LDFRe&2TP3u%oZQ^vDG(vd#qRu{T?qLFVFGgrwOU2R<^C1RDax}Im*f}mr7N0I@z#ojwAq5jQ)ZhssUUX}R$`(p ze|mX-QCY#%eDDn9Win?9BmZ;t96$po>Y17uqb$xVL;#F-;fuW|M%J=BM%^P0rz~n4bd)DzoKK zhh?^c3AVB+B_+kB<&e_xGk7;#C<|whdYV!GELvvk-8)EE>gK_qBcz1QqdqeM3!{NAB1#H$ZgOnr0I=8q8TC?05Gf4(f)ixWA{-EtfD+(xONxNB-h|@9!eYz{3Z^t4 zP5^XV9`_#dp`vi4q!6y3ZBlU|yaPB9#ZXH*<=ps}+44Xi@(Bv^$X73fK#+!n21Ls> zGL#yu)};J`Qd{w~BGb-59*c`A>6Vb1BqN`^nf$yovX_nvk}o4QGc{vGYRXt#;xhw| zgg!Otg$l@>H6zC*KIG0?B8Q`Qfra;v9GCcztF=T9*Q6%oxWtFtRZHY#O>4qV*Z9!m zYwgG`LeO(W0fVF4hH!j!-|WbYJEcv z#lTrfnM1}78$JvQw`$-?$Px(!saSHp$T3FDM1AOe=p(3m^FS@;R9uoKb?d*o9Cl60a9cvoFs`E1uCK4KMM2dpL0a!flu41OIUW z+5r`pR31-07`>JRN=Y7Dkw&3ZhHpf4Z4G2fNe&Q-r#bTBqagkV#fppm9=-SogGd%i z=L8S1TB_0bd~~ZiyuU%dR5NNVMheC!(VnBMIfq_(zhNJv5}= z^O46yWzmMRYcwR%>_t2-q{!DVo;W-O$(@O|38lr8d9+$K1vvv`8NiF-s}Oz<@|ZqC zhH{sD!_UmlOivw_QVl6HO=MwCfRbY74f%P!Y#4bScY~37nMA2ApBn0lEL!p8lEQp0 zW8u#W==_rk<)&Gas$oVz6aI7%5EPY7Kq%SnG zZCY_DSvQjhD(U=62I>D^)L@P}$V6u3=jJ2N<)^(Qhw=ja5|NxbXhiiQ!O>lK4N7@` zCg=E>hO{4F2~#+7Dlf!^$gPK%ju{0F=e~m^S7T)T@dUrhCr|Xfid$Y|FVz^%pk4yL zGYWM7MlaPE!=PRQ9<(HfaG`6QOEnfPs25!2r&tI_y2f6rF-$?d1iWcU4&hGM*h{r$ z#uo=mav&0>@3mk3>P?6lZA)?>B&P4R@1+_|A4IW0Y%IwkqT?DVR*mWn>IGN%S3g9U zTvIPfwJOG17rM&o1>b8;F(oY7r>p$E{0-Sx!jgTu%HPZ1kbNaA*{7@gz5ET?SHhBg zy2{_n-;jMJEZL{4{JoIuR}S{VkEKm^tVQ5?b^Z((`Mk=Jr**iJ&DVX$gN$lY(TpJ` z4tQUPg0XKqy)w^djUAFYdgSnol(9*}Li)Qtw21*^u&Nau3<@)`ErC6$T-u=E^s0D; z-p7XqcUC&{f6qCoN=SIvJgMoUCRCcAo+92b>HiCnnX#zrS6iXynh6 zGAL_o|D-`_*%=|-cxz6<{e(BU2^bWZkk?I6I?CLp{oAa^2aq`>7u6YMfr(ZSt(qsA znVp=RnweQ07Y6qe-bBmHK~0!a_>WCCxfn61S@|-speRU{RFJpo=9@e`BO^79S8R+O zIA~b43Z+tSHP6}~otfM7sFTRYRu^SA_^7e!NmdeaPzn{#lw&C@p6IWwvh-2~Nv@7gyy%Ly)P40<)v<=JmzwG0BTH#c0d@nisYlUm zu37$N$~%T^OG+Pf;dxg&a{<##*pYxJL1CFyWfGi_{{OQN>C+fN-cKc?tsuU#)~TYR zs&1kDW*fIxas6xV6VaB{XGNV6UY{WXw3_=2a!xABZFqf#2-j-v6OouT&x$e-UY{X? zw;KC&0JYU;rS+_))6}v46$OIYuc!lYn$>Hi6|JV%piV=?b~R5GVVl)yr6moo(-5Iv z&7C5OvpTJ`rr~uOBJ!)r&$awOf4D%=l65ffEp$E9CAQ?W3~Y_^l1i#}tsFR+$9O5S zHa$>{e8B?X%3+R)pHpnux%q_An9S3G5WVL+b5>Sc9!cE7Z+MQVI; zabbQ=V4GE}URZ|@PfJZ27B0__hwNWYv06dpmxjrTlk%tcD=5k-oe{uYt&k2(9o28p zu%wL9VU3##{RZYw2cHKr&|SDE0>cfxg!y!>A~hg zs#ZADO>^Nl`S=p>N&H7EnQL0nLFrQi#FnZR(n0AX!lyIv2G~%lRz!i9IM6>z`V!vY zGmCSt&M!~O%R}WrnV)5(YK1m)c=C|ctg%TcDe$&4ef@^lUGkuzDOKE?Y9*NNfQ#ev zaKfJ$9y;RpSW+NWE63K=;quj}$*5lU$(K~E0ONtPu(_32UMHg*Er7dP+2vK~$nK_8 zwJCa^3%Ij*lJ7!ZuJ2S(keyvrK-F=X{0T7sph8I}_j8A3r=^X}O3fGwm7WF9&gb`r za;UM8I?C=)tY1Pk9H^JK(cQhv^Gi{`0v5@$We*!fQ$qH^T9WS;5WiqJf)nb zM`g`9QwqyH33zG||_jo*j1n(VB z%9SSmW4vevWB+5e%C0c)P^N;M?5PLw;(u%Q7BfPWLQ|m{R-}L^6yYv> z3y+~{cZ(Uk)b1Y3S+3>i0^V)yx-;dAR`q{FzJdbhP`R)pLl9Sg=K8D9yMYchy zsi`(F7Lx8Zp5nx&aPN|0=v*^6{l~PpFMk?}ytQJplrYkzoDL~wskhBl_?SJQOi# z{{Hktg2bxKg z%wRejTM&shKVxU1nOTsXu^ zCtaIg8c2;@FiJ`vj^H~rBV0k|N<6>R&AF8q~n&x)CEm%&59IW`~ie}t5QJq_5=Y8f#cdiEcbW~O?rN&mxjrN zBYm%uvAUo<*p%Gze@+ty_U-@2WH8@dRUv;Ja+`<~BIx2;k|J=YMT~!hC6HtNCutG1 zF(h8lCC|iFVa~oRzi>itvl0@oUb5H%2z*39(QB{}W%d?(cxNQ0 z;N?50@9tiOd#s^ZXs{7e9h!o&t82!AEr)7wq+=rs-a;5-fx}x3o=o2x1#2D;+_&oR zOv*1TtQiS>n(C17l005CT{9}AEUQ5^EWezddp6Moc!;k#6&EI(FUI77LPd6&SXewB z3JN9AVepH@i-oH^X<@zKGU#o6HBU%VLQlyYX`=NKx^NI7sTqPc79vjNifHsczUwXF zGD${<&9{yEfpu~;w-rJ^1nmIz+UN-rezV+g#Ju*OkTe2<_XgY}-iFz@HyhW}<0 zs)>?j&;A$u`RYk5IJ~Cn(x%9aCi89``>rtzdvv!%>Mc7Y5cdFP}sLt zcry)@CcUU8%$t4ha`E?U!QtK>{Qi|p0>Zqp^7}(9nBQK#g7CjR%s*)UHZr=i`Wtt7CyAMr;gEfuC!eqTj*;*}bS!-M{>+T>g)=!q;V_}cN|E_3j9M*x#81z1&9Ynp4 z-^28|op|#gy`nkbi#DuJ@gybWs{FzLCp;0q@_(#f=HPx2EQ0@5K?Af?6EsW1N z!0Xln?uWpFF2)~zE;DZAjaxg^>j29uY-Rw{;kEob~x4_pL9)2e7_i<_+X9jkFKTP)xHt`Ucx_g zi@*B5na8q*O=6qGvgW+?G)chsE1L{yQlDMh($WuG-Y)HIg0Y4#UdPc!N_ui1cRO<8HP zO*k@#A359X(`FcRb2?k6IeqWVzmMka&Ah#fxA*b(kLEPyi(3pqdshqkzLvLr;@iig zmw3XH&f6z>tF&y{GL}WQBFx@abj?WKKFeG2Vmk8V#W!9Y&&Ic=wv4wo@iw9j9choY zK6AIZ3iG`JZEN;Tn*(iPS-Z9g_};&5m$tENUt8*TR(opabf9*9hh-gNS$;?QUdr3^ z9ci@t6CO*5WuGPRE4vNAs2<|&m>#iB;@KZPe(Dj+uINc;i+H=RXF`+qtW~eNz1p+h zXcO4*UMaoenY}k%-@o@yJ?gW^d(+t7LmSJQCQ`pzVwc4FY;IzCVmy1H53NF+5G%yv zSFd{sm$0|-yYI2=xSe|W3hgCquuMl%9khbC+3TwD%&Gp=qY;~=I9OplbfQN0Y#Qwq*))=T{{3t=tyH@a)b<=f$0h!K+X%Wcdeot&m$0|SY#9^Fc8;YZ zfAQ8czWw-E_G{iZdEoFl-`^g~2Hj2f_FhQe`||d_Mf832L*9q5A`j8`+a4ke%Xzzv zw{P?IBya02p|gFK(0WZ=GGs|CyM?#+E;-cH9{KnZlC{nJ>=EAnj5eP2SxOX8(1Hh+ z(iq-YN*H36(UHt$^!-lWK8H3p@~vfr=jw;)>@5$|*^RtCigudsY`^7%XUuZCW(xm) zGulhoL(AtapU=Kq&e(hwy@K$xUqKXbt)T0N^LF$K;_#XL`_KR3GCZ26vd*9kvc7(Sl*AmW_>*)Hv z>khPO%|`Kd0&f?f?ZIN7B)L4G(g?ala z+V-sOw%@k4XU(>eM!I-g3fd989f!6(yOtl{vu*V@@c*`0p+1}SEa|BAXk*!L&k~RI zdX9M5cy7D>5;h1eq>LY#&yRe;kNo-EvJUZV@OF9oC2ZVwy7DgGF5&G4-oD7&qi7RY z%#M^^iLA{I(lC>D(3mIl_I2JKih*$G@d(WOO zi4Jyd&sCsmgS{jv9<=dn=w9k~(q4IcESt8M@GL|d&rb8>9bTaI+Vuiqd!4tRyg=8S z`q+^HeBON<`-^_in?74j;7jN_SCtL{&yPxv|Z~OE1(*1<( z8nlhr&HEiqH8$bJ^cNekIWLmtUyL@Mefi?+FUGPzUZipMcuC$K&yvx`ve_?=?-PdH3m z@xx)#v~`ZqsM;MN9(Ep~Bg2kd6&K5L`SGiGTf*C^yuF^c5Ab%~5t5y^_`R|35Qfh0 z5FL8*cFH@;Iy~T$?#=HIo!@##-rkg*cxMyFAN4M+U8i@c_eb6(34M!yZ+fnp6*X+HE;QJTO0DV$P=TM{)=NymJ08ZzTXrP$0l+piZ$fW zZ0PM6cyW#Rl{n$edvQaaOi6v)RRNMbEppM&7ryxgtI=AIL_8SNI@@g ztPh43gT7S`C3C0|Gx&X(5j4)GtUtdm*9Q$@Q5bb8zp@z{#?Re>b2@9z(pdz~E#y}= zXP0s;4|AwByPRLS&IgU-=XP+Y9h=0Vw|r0mzw&cHEm#Lu%AwQzTt_yILl;LTM%HHu z@MwviR|1LwG@C=y0kvaY*gSR<&ON}-b!7`V^aP+1)}1}buiVMc^<>M~BUqg`0Wqx2 zDt_)Oe$L6(U`C9c2hBL*snVUJhOF zgZ6QpO8|Apl`nFfI{@_t^a`io+kj%&0QMRm_0Lfe(F7ghSN4ofWvkg>_92H1Ku6Txh8>^hw5f|=$-%)*uT@GEa(xx9ymInJ9{9*1`MpaPEbud$O!w0SBSUv$37rTvZ=jZCx=~>6aZfDPP=!!b!bz%VR;m|Uii(z-M*ZBMn z)JX+Z?_qCn=tCcLm_z4%&=G!LzHr7^lm1fR0BDj#w2LjrrXPs5=`Pv4K-}5x;L}#4{Y{^9_zPpmSR|6xq;( zp5tR_4G6j?;(1DQus#iG)WaiQj*PIu;&JHGh(r9`r44f$#;`jh;-g5$?&jy_MzrV9 zQVz|J=+2?F99j?|0Ag&94^pFOrQc{sb66OW7DYXrz_~8${)mhy;?@R@NMk+_aT$kN z18T<}j<`IExZDn?BYQle5a*h+RDR`JK=m<}QAn3$Lu%(oVM=T~ppKB*`BAu(P36#D zK(|ITXSV^0VFv&aPuvTrJ3AP0e-y3sNN~~6LF4H;%Y!0p%(yQWYhV%h{$tDA;qyd9Eyqjozr@8W14NV$i~ri zX?{4D&00jpL2WR$8Rt5(wtxuB{>Dq|UcuV?p!acQJ7$Z#IGWb)EXUa;vNON3K^%>x zYvd)-w3?lfJcAXD%-~QT4y8tp=1@Nl4T!uVnq)eYLjxnn0cy@h#9b8^!+wh#A01eS z-y;j6ThKT;J%5j!98K$fE&A)o{`5h&awsOsJU5?1b$rkg4mI;Zt2xvf5OM34IO6Nh zK4>q8x<-{o2Q*68sHxG!1@B>;*{o~SG(Ov}<4EgEKIjJyIiqGrlQdqpl;*BQ-Nm5< zME^0&9d$Q{k^p5hJ!(FO9($Oeq^Ns16oDu|n+=It$e~3m=)MtA_jAa^k{`94LnBwx zxrtGaaOeo2Y*rBUD2FCLM(0YS9^=r&$LZXZsMQ==&Y_u6YdB<%^OmS}96FA3uzyic zawuvQ-FJJ`dJetHp+!*}IW!k>a|~M+wTVM3pQI}vj@rzjc~8-~)lpkH)EF7lZ1zOd zvq9%JMQ!KMog3-OEm1o;^c07-M(yIzUC+?DZBctTl(2=My-}}lD0eGCuSdPjq3^d* z4{t;r;m~`}67+u5yXJkI@}EY%$02jnpGAGZA+x_Pqdw%&=KX~8+o+E@^gf_$_CwSs z9J=NeI(IheGY*;Sa4zZ#4w+bfkNPU;-1(@lIdsQsgypZOZ#lGqLow0caVY9_!r3JH z2M!5)C@Z=Hhn8??RCGrU?dQ;C(VaLn>Rq~TOmr6xnX|nzx*LZ^ z9;I{RqI+=Yw~q+QiSEUr5yuG{AKiyTPjDzVTIA4wKB033(Mn7cHnUlGxVd*XON35) zr1`t}p3$OJL=(1a`Krt&ta<#y_})C8j-d5BBpN;6q9z+|#R>qTW^-6p^ zlw;GD)TXuUgLZYx)JVd!BD*6S+UkBBDQopiWJh*$tLM?)&D%w-2*VGpBA}7$T^tid z*FTRdzrOf1jzqUUgSLI^-*Nox>cq>NFvkvRS*>C)+F9ZetpXcfC|NPc^*Z*Cwweod7d+#$|=Q`JT-#4hlHdpFzk=X7^x)#DNR~iOq zy>}~pVzIW(F>tvhCMB3Ol5`;HG}6ta1*Er0ohxH}HPTk3{Xt#X`O0@e2UgL|UZ1Wq z$u1`4I_V=)yCAgqf#O!^6N%fjPo%XaU8-)hk4b47gt~}yE$J@OW2BczV@O+7!ANHd z>JYM|lRA;T5~)h+LHY}M-=|u}gVtwnR(o5n&w7A{u%v2_mHKQ)^#sQNwy37=6u|6i zjd7CLqgn?*?P`AmTDf)sXp`EHl>j!Z_V*Aoo^%H3Leh1l2W#Jg$S!qp{QHAOrp&DS zQV(HE>ozD8!XDOb395$m04)ah{;^ zmdvV$>GhZ4Wzl~||xW1JU%2EvXY( zoGm9I??cLq`x=}~G{kbcG(sIfI<67UrL~O?IEApijcT|A&|Vq9PJ@K!!s(vxd!EfTd$|*i%@1^S2>Ata*FTkH|iqbP?%hRI!E} zY~HzSOiDcIP12{NWm}-VI%zA?Xi#geAuSTYJC$@f>2}gnq}NHGkovU5$WYR@q;aGp zNT-v2M!J^t2&lD|>n$5YUZoZERJ68gs}*2rMcSKmENM3BcG3%^Pe^^=#`w2LV@W5H zE+suodK*+{_N{UB+(>;};|K?lhLYB6{aAtLU8L<2M z0OhYC-A=U}AT1!hNLtc52e#uA(pC=GDyKHss!F7d+Td31Kq_y>u>a%ifpMchA+tE#8VQssB)@-M10W7{K>W$Q+wQNUbe5{62hF{K@E5ZE$_V36Jol*)5pC&8w{5E zY%*yU={nM5q*qDrlUh1pq$g>0(l(?$NQaS5BV9uJCFv#7KS;}T#1i~T>yox3?MM0v zX)fs&(!!274tF69t57FYSJKL)<+{8LXA7ZSXjLH{K{}UoJ?UxE+oX0~F|rnEbk|zU zm5n)aWTq?olJq%ggDq_auqgGQz- z>5ePgUeb%CzmQsbpuHk!*OVqbu(UQkg1sdc-6IETPwG({(gP?xhV)a2l-Rr;wczY= z8Khm=`W~V1G+=lF&h}9WxQC8K6)VG}gi!C8lo_OpK+#^}8k3Tj@Eq(1NWUe0M(UIJ z+`DT^cp|nZhIB9}mXG`3s02(;fwQatR;L%9FE!|e>F{2);OS+{UTMCtw)dI=n$Szv z6lnipFNF>3b>0h}-t@|ZXCrfZWrKGycqO)p^qXFIR%|3;zxFnDZ^WwGX!Q1m(R&`VurIrExN9OVZAy-9W8lKDPTGzBmU^XOqqc zt;73n(N4gEvl|6oUFvM&9$N5L5 z`1Z#+`6NGeI_#%KU#)Uww~8)+246xQNVQ&%yj z|FsxMZ@e}bwAOX^EQt*o;89*;BL?_@ZiSs&VqcS99WchJYs$?5kCm<|f0BB>hv}xI z{YcYESCbZ#`o51bVWgc%2a--E%_BWY`iRtNAjVfDZ9p1BI*K%lbSr5Q>2IX2gD_Wp z(g@OI(y^p@qy?nkld{1WUzIePbSCL`(jQ1&hG0x6X%y)vq{~Tnlm1NVI20qRlSYw_ zC0$K=ob)lN#|IeMg0ws7IMQXLM@XNORv3nnZAb@`&L-VJT1@&UX~1xdY)0CH^b^vB zq}xa@kUk?VI|AeDkVcb^CEZGTj`S|6^GJ*gBaJ6bAzem#g7hw_(}xsE+Mjeb=@!!S zq|ZnLM^S4@dy}S-ZYDiN`iRtTG)0molYUG(n>3enC+S7f`=rK4n9HBE9%(FTf6_G4 zRiyh#FOdE~>M;iMwj%wIbQNh4sl&(UeT(!x(z&D?Nl%bIAaxvzk-?;GN&AtekbXwG zo%Af}FQo3DV6G;l14ut5-9UPtR2_#gRY}{CzE8T4^eE|5(n{kovK#3X($7hYNuQ8b zNWqw7xs{`=$O4;^ifkJh#HR_b9mA5g2H zI$KbkDD6R73DkPjc$j+JOcymc4UvDOqP`%NCt%u>v>It$(nh4sNZXQj1hv*4Jps>l z5=aM-4kOiF(LOd|07d4&J(Gv2=fN_10_sH44AOa|%Sbnp?j=11>dMYd!1e!0{-(8f z#diSSdI*?^XCU=RTak7pO+s}UJQ0sdA5X+{{u!i8NY_lnqtXsgiS?E;|NN1(t zv1UDK0qM9&yTChd62|NVg}2GFog?77Fa0Z7XX6*+v2Xd}kzm=h_>%~U-C8^W^pC}p zpjB3HOeDOymX49t(w~6xyiL-3fW3WsAJ8K?nD=4Mpvb@Gt=;9Xc^iVoHm~y%JerhW z(y9y33)c}#unpI9)8U!|+W=>DOR@Hy>35>wy{Dz9M=AXkr7x#H0!!gi)F0CEEa=8k z)F(?{fW>(kYL#VZX+_#H>vA--YVsO*XQySBeGI1EK&}0q4e3pbx5D^@O~(F)PhJR? zA6Ddm+ON!sky!Z3<)D0&QdTC%!n;~42Z8cj)^c#%HZ5Kc_K#NKJ+8D>)?7GNo5604 zY~9ToSwNBHmy|}D;2Sz|g;%Wd25mWM4# z%&P)1ALgaQyFAnLszVw}gR`l;usG}Zug$Y<8}@?N%WK4zNbI}3THUQ9kUS*<-uJZj zWnNG03*22~zop~sjh%`kzkfZZPpn_#iKDl;r?swIi?Oby8_;VlfsaNVU1vk5VmrrA zjZ3nY(_kY;HV4Hqw3Y+!8&3PV58Snwb|19bG>l0%73b2Os8{FG+-W$AlD46y&BWO? zXdCL-ZMkW1#=Z^foxAM?sc>z=qh6KA!pT9;@q=JTAFaO4E;*F~g1lEMtnlGxh3h4ZcLDNp;*8?xb%j zhsCJFNijXT3DTDf8-eA_)YfnmZd8I-MoFML+g^fw-?Z4L{OO7e{-t{5y5W0zApuC~ zmQ`-`f!Y&gS+=>o1r)=H9d~O6)W@VY@SfNEf-bmqf-CSTf*jqu0v$K04^!C*aDAW$%}bb zuc(OmLjwFT`2@?)(`UzAjyEf#dZqpwtvZ4z|K<2@;W9TZgTF+_TUT@>^aL{?(I z2zm&Sfy^9GCm zRqk^P>vZ{L2k$PaAL!ul=kejppVPh0m19B)an^P@2~(t zS>>9@9oR97%wS(F|17#Ady{-w>|D7Bxif2HQeQcO4Hfi#xuJ3-D>7-6+=W%8&zxm2 zZ?DO6SGI}>$LuaV>96q?uYG{mXL1ZHGAUo~##)Ax4&`wQ zO0_KUIxKf*lLW2vIu0~b&|a@Iau4{F4wji}IqG#0D31u+a#fCJMJD|uC&IHG-m-IE z&*da`zd7Y&*Stbm5?ex%8La%O8L>(1BrlWITji}Mu^KHfGK*F7_E37W2$SAa`m!M= zB`E_~#n#rysmdUh(grC5YS^L-V;6|hE$zIIDkIrdL9yN^fqoR!*Sk>pklhnB%)1Ea zv7r6l-zuXRYl~&3Th4ob4`j!QX3uEmYSK^2XjY3Ti+$?jtbWWI3R(m-jy*TYPfcan z?Xb)&w#LU#oxs9j0wEptsiaP1tp$A#G>Ih(D&za6I+@jY2O~3BRo^Ie8jB!b2D_Rc z&|@Zx6I5|^(;l-}Aw}X=`B0tB9uOU3oqRu0Ggzw*Sjr*xf$vmxF6+>dmznB2Po2kH z$(O;ltv=?G#Ws;Ii%s{@@_zD4YgAlYw?x|lVL;u1x>PmKl z=rH@#uTWXV8g-=_ESW^j1ugX}0$+PU8^D*xx(M0{zC6}L&^f;nHJ|knRO0s|&_GVq z>eXz7Nx!J8S*A%v$~yL#h__`ui-_WFiSd`U^{ktqKK?0eJxdZa6nq=l06~+%w}B1g zMD=ZCV};MTd|7QH+bSp+XcN0bl*uB>`)iw7m1wLlmGv%P38*7c8kMqzH7ClTb$$zr zCd#tRE+3|CVRK%I?Egw+5+_*MF*2Jd-GXh|!U_dpTedR07_1%3EY`L$7b1SfvW+o7@5wRRIt~-V4dPPMOSdwcd^k#sjOcGZ~aRa)&qU1Y9le096ZEJ;7ySf#(iNPQFYQ{>CEX zPu7ZPF6;OP9Bw4Pei)g-;@?O(59HS$DT_6z^es>* z5$}U6wI%wRVSTc6eE>#&&9E(s)Zsm(LsHL5vZhL#h%(r~O1~JYR4|bH##JhU_mvAd zF(h3o7KHf>=^7DVy$$KdSLog=^v5gor%3}XhU75_>q}?HD}^$PRGx^Rl~|;jMEq*P zBE8KcVGk%$?4*2?CRpqxHkg<4q|ywFlhoEEcfE`>h=?D#oTU#6*@C3NOpBZJ z$fQN^A^w^}uuQ&hdP|LnvMe(y->`T~%>-?(d<&?ppu3eHT70BfPVm|MCl+5R*(Ax% zUm9VOqg{aXhak0zw_T7V55@Yjm|EoxyI{%1q#AZLr741(sx+_*k?sic0IDZNe8BTn zs`A9rNLnqZdX?sOZ%O9_wW`v^uC??)P>(7j?fOWV3-|tzpitJ=r0P|2>`JL=&^o&z zrY|Pwu-zn+T2;AVmtm5#CC6^P4HYRnZ0L8pFKp2k7+A~R)uiCS`t}|sMFzI8_cv)^U}yU( zCQS?MW?$W;&4GRG!%QlGGMkumJ8-yt3zM8Hx3F(#QnkuK_FYVB1r%*k|H>BoZnEbv z?9xpM=R|keOAyY9WZ6d$&WSOypCFtQ>2i5N&Xyu&nOxDN-|d#mZQp z+?xC3`hsw49+Vpj!mW8&ep3)`&7*R-Al#Y-auY!~=TFMb1mR3Bl3NJEIryF2N)XPv zJ92A5IM05U+X}+{k16em(wR~fse|z0d|^r_K{#J@B|;F+7kj0PAe=8{l_)_tUwoAq zK{#J3D%}L(e5s~%7liYrt`aW@=Su@6Q4r3TCQ2_sIA7W*y#?WXX|E&;!uirs=|{wm z2%VL|L|M$a>Nxw($}p4C>?4&A1$lxmN|_)iuLk@oRL|q2~eDJ+N8zy-Iec6T4f)v%%OZ4O#OVmeWH>`z6|EMWxjn+f$h2ar}_i_XhZ;Dn2H4arjiJ zDyT|u4~H2_grMfZeI4L)RDwDI%~3K1^$Q;6Fi+VaXiV@}hxy7LL9>I?9TqC*1!V`% zaQIBQA?WkqE)LmB8MvUwz8?yn=a8dRAmT^+B}zBpJ0HBrVTtmwpgX}U9hNC+f}E{y1aD$X;=ve)V!)oRFSWbPb-*;H6IDW#Ze6WM#2IaJ% zan-9iZdTwX0p-i9-qdl6vVe%UY`e08=%#eIdXnRIWw)Ty)%!c{P<|%j``<3*SE4L- zvHDQQUCMJo#nneSeyMnm=QZ4@p5nM$2^93W`VjcES-v1vBi(VYQZa=`2Gp4DxK9Z) zX`bUjrKO+-HF6yfE3qc6cRZ@}C(2-bYV39_Q058Ws2T?yPbhgN6*!(%4hfoEkv#cMLv&hFKG+v#_um7vEpyE#2kl1%FB^i&zjiQ4&G$)AGx4ztHK`#QZ; zUJ|9U13UXVG1W4a%7n;qKxK&zGv8Y7x~vA9lNIPQ?m9WDvxxY$g{z7lT-i_5W@Sq0eC=BHZl>=> zZA+PQCjDOfHuE#dzm8{_QtDa9zl^`t=QN^Dp;F$YS+CHRSE#7YZB`n|LToAM6?*#> z>Jt)JrZnG#5LqjwWv|fZA+~KfOmy5Fmr$tvoJlpH%wJ8i*jH5TKE+W=w^XfLsJx-N z3JR%P1mq*=P4HDx-w@Oqe3jH1M10K(RJ~?nDH&{Z*pV`UYSlTMJ`Ee{7^t=tlofWq zOl5Vppk-ktWvZz~f;NZUFH=+Xn#=R~)_PhdL~SeRi!jx>p1NDm;V?JnMyg{bMrN@` z70Np|R;v^7Rk4X$*Q5^4P1H^%b#rd14k6-a06;Y~XaK$2^jlzes zyq&s3_;8lDQ}+=aX3xU@v~RE85rp?6JD79At{&2`dDu>DS&)4PbrvT}HSl#-=M$w` z-mF&ylq-DifG!Pi&86cV!P_kagJ82&Zm6rc>N{L-PA*ZitAhK=u2hy z>aTI`p?WRk^k@BT&hhF9L1h}$vhS&OTf}|k8+_&5N6i!z)WBljS8bNfec=s)?B7)b z7jtUUph$U7ogyfv!6E1O)!kHI2K#7th{s^nUF0j-<3D4FT20VHpbxAgul>;AobzyX z50!!=f7yA2`iSVJRJq~z&ZE?IxmaH&d#B+Y=a1AIM2Dn=hQB$FRl}B|@1``W;dAFt z)L)iy+S<@?8L!?Kbg`kUORD-((94FtE)!L@oJUT2qq55+RVGTexHl?P(p7sw-Ovh*DY4IuAU}>J5hB8xvW$luf}}5ovYNs zwVd$TM83LpJyI4M`Q}KMHEOY-%s0omtWzB~aNmkI(_Pl9H>i{hHg^BcnH$x8R7wUr z3baXWMUmLDESJq{E)m|}{nBNd$~Iyt8En*B$6R)+vjr`9>!RZx^$bxK`|_<*E?=qF z1%3BcvCBdAfgnrxU6*6(bE0%h_3*$lCsp@NSZ2DVVfYi5lWG%A@I*7P%qg|4ptr+c zx|~u!6ch>hPOB+`dVue=I!(~XaK-hEx{`>mt!LEj+y{LKvOlAqBRb5Mh1mvxXHrVQ+peXAcXV&4HMUsGjB@=!UBSsRyzy;z zOZ{BXl*V^~?h~c5#f`o7+iJtDn2#UPe^Of!@wq&l8owRu%V6D`&U3x5?i19%=_1z$ zs^1RoThnwY&;mjGo33+xq~;4c+4Q30A8MhX%T2etK32PZ!Sg+6y4UroI#!U{?2zj- zb-5sapy%ptLDicbb$y`@+{yFxYjy%?il7P2&bq!-f96DcBhwsqVIpv)itvw4>PzSNMVs;XBeyDeG*~m1cWg%bIknnSEJzlO8uKTh`Nt z%9r&uNo^KfwxUTc%|pvpGRd!bgR+&is%ASwS&&xe6>9YgVawp$jn1=zs1zhT&nhK6 z&kE8yP`<-F z6_aYa1yh;UJ+8VS+~exG)ien{hUr$vB;4cbX^(g*mKJSe-Rf&KzQnerTcUs(Xi0(w zw3W4n+5n<7%h7OX4#8$m|_3gYndh`yS<~0J-~g~zYba_DihyX zQ08u*|b= zJ50={+YZ4z$VcVEfZ-}EI0{NnbWNhtwO-3FV4`9^5FsrD>ORy$Ysk=lJh8-YI5 z0uN!!vMeR-{M|=s-2^=Y8m&zy;^#ykX+?tYT!G&_nQjs=Xt~(z#HXu5}gU-nj@UUQk8w&Crqs)dk-SZIGbW;G3z96ch)(nc8GQ z1Hm^-ne6zF#g0jIkTgw%+9elI3)tuPr&i&mpv?IcYZz#^uP7Au#d64@Yt(Yjw zQsh3|eXjQS2#!(~`=j$}W3HwiC9*h1d;~rRL4gtDfqaPgI+3Xbnw0LIskt1(eCYer zK1(Y+PNl$e``PXbv}y&M;v;TYKGR}|(%FEBTK1o5bxxo!oz0HOcF)n$PVvYU5vz?{ z&G9t%ZHfqGxmp?#oDW7^bj;QIpF!VE39tB;YTeEvWw2ur$6S_cD~Ph#cM+evuh90H zwA(#j>wk_%K8-lyzFvDQs9fYJ_YIm?A@|jbJnz0qYbK~!s@*5b zVtpf58{4$7^O!G-jfuSPzDYqiCgtv+_l<*?>*ky=LQ zJ>O{KijerK@r^cxh_4#oXx|9JRpT4&q##^1zR@lSlB1fsAJOgz@+OimVVQF+O^Cb% z^&zT7l*OJ$6+0f$!UY-8#g50cWI?{sZXN~Nc0pm$p+yj+7;+o7quus(}0S!hk|}9Xzy`J`{)WUWp#9S zkIUL*liu|x*5;Ws%HyiG+@u*E*R|=_c)pX-YdpTw3ct6~c8?#l;2TI8?0WQZk6YS0 zqAaGxob&ie3;%&fy2M=fxU1bV=@*atTCL1hG^Mw}mBQJA!%m<#j ze%hpIo_2b(TRdNSOpd3c-iwHz7dYv6Zgby-m@hn?^oBoM>9l7VJzCJ!m}{QSdT*1S zdAjHWP4X#MR-bKBwQ_EHp`d#)Z(ncEiM~WwFFqC$H*y zvq$Jd^7N{yPcbRbtF|8Yo7ETM6{4>r;>XRp`j?z6@5jnoUHu?Ys^#O@6joO+5WY`i zAF?pLQ24T9TY81*-xA%F@Lowh{UMK}qc40rrb$IgeO>t-YsdOB^#;0=N$tEE=^;dX z6@E*9i~B6j-6Fjj>n({=Ey3MlfjSWJt=U8$z$2-?Ci({^jrD4x&*Wrz*zGoJu4fUY zT3*5?Xs$02KKr;yUM=)I;d77s6ljz1m5-a_)l&aLP;lG=p#6gC$1U+{r5_d4G;Sr( zSwU^%)_J|HUl!Cg?sK5;1trGq^lGjDEa?5Xy+Dry;l0r|`g5XG3*H-TqicWAm{~^0 z$y!_8Nzl}|6xLSvBueX+>o&-}onC{8uVC%s(E22a2#!?D< zN54sQSlZPily%VWb06DBRPiy^p306Ag$pX|(ZIWd{v**L>1L0%-d*+EL}_qaZ<1HE z{y-3pXSDuQ(9<3}y<&9v36_~=DHFdJ$U)E>@jJa@bvHrv!56Fh5oNIU@iE@r^f01S z)-^uCySv`-DV74q;&@q0)Z3ag*gH|rB+6pL<41V+(zA&&*tGaDK&J)Gk00-yr1yHs zOIZ>Bsdut|z@$0e@9L)oeHTC9yT9HazW)O2`!0T|_j~$dlh$|-)B_dtO=5TBw|WoJ zI}xR_XYu>Ihv_2(*(DtF9-(Im@=iDjv`SE5!WHjP`Yu5Y5`OU>t7E(1TDw=ji>#)lc);px+g=BXPRVCcUD@^BqiF?6XDRO2p3~ zw!nw9(8tf~w&>f44oN2y^C0pIqIB3Q8+^9v@bVZ&vTqZ2`0UWb;S-EV-^K6u*`;qL zN@aHvWo@^vyY+)ad|%nE-{M4j#~$6w4oiVgN+cff*`xP@7t3&8aqfB2=PNza zk&|D~3qA+*LqzE;xaWSKgSsDlUlm3+>3PlPYkd^aT(%?eXP=|`6rzbhy6FruTOk`(nt9r;aWb!_*tJqbco?va7W+4eU|gRZnIzXy@Iaxx(jqf(2u=V_}u_)PvzW zD{xQU2lT5RM}({5Ro_SYIPRk(!ec$1`{;=9Sf3?)U3z=?J<;b2Ut;g_K)J&AUhk@Y zPxX93xRyWF3k2b+|5U#(2#*g>b$9rN322K2SN5lRT|szUd8)?>vUIKmWqvFO*UzW= z7ev_V8OBrn8{xw}?wNi{(4yW&Kt+Ob!1r9gE@%b#p6j;-t?yl^ywD#A`UZS2^rxJl zhEVoWmn&Ge=3O8!PBcn?>J^Fjaq~~Tn($#enGqrg*Lh~VDG0|!GFk}2W1M8XBM3)H zHo6MJW20=u3&Jr|jATK0OjV3Qf^f`KW27KF7OTcMK{$e%kuJ!+b4Q?Af^g(@W4<6f zrs_s6C+fRlKJcEZu}M%&ANWj~u~Sg*KJc8`*e_^kA9&7e91}DSe0IiJL6gB} zXIv398+`W0_kxyz&)&GhiE4K+9ueV|p6%ygxL34phg`ohMnjX<_?0z=2Jm@3IeDj_ zr!iho29TGrLeRqGy?#DM#W#55isY~T{ETEl89@XZ@o}C1Wg6Dm$MHPi&3sTIfqhOG>`abrnX+#O?-k15;HmZhjU;n-q{}5vxQ3k{7mAb~JP+sPUz84+C zjFEMb_?c=wP(x!YQ7VgR(9ge-5mwLImLlaXqa`PL4jXQ~L&TrMh8t1Bhx=w@ zBVG{hn~jaWf}GwhRGJur1XX;u2MT_?jA%1;v4{nK4VyyWnePEFj`% z#?6ge^|75<%&~u(e{-X-A+?&-?mxr7g;BAQl`{QX8Q0%LN@WfEFZOS36tv^iq5n$% zw#K3MoCf#b=-=K*?!YO%{~rI2#w|fh`XBP|WHjr@eY^V~_wQ`XhVN*=GSBos>mOmP z?9Ay-|Lgvd#tlL0faCsMj7<^T=QrS{5h`f-73aJ@#+zc~w_myEpKP=gzB5Oq*OJzJU`(N{nZcZ|>siB$J?2)~ z={MZ?mJ>@E5Xwdx_f4u$ex%_WP1}!68&IT-GMWimGN4NN(MCriehxO;h$rID>P8y_ zc_gfuciBhA1fq#>NANZqV@%_bmYoCc0&U`v@C3C=`HzjKX1+wXj}1Hc47v4b;8??p zh}SUIs7jOtZ!=wV{KTkkQnBMW12W-xIh={7bWAbHE@5WJG?Tm&=60N9LrXeNH7PJ* zZO0iV;d%L7lkmKJK9Tjje4!vbFW=K~kx3~5Cp#`P3D3*d8g)cFOC~gRUvCUGsYR#t zMgkGse<@kLc7xGZ(94o9*KRaiV{s(-s9z+F{({ z`Is{ChGjRk1;@pG;;>G;jqq-?Z7usJj_LH3(Mr&^#3G;}f{e66Wxp{>kat=UP>P`H;5%SU5mX<12aF7&EY>`2MyG>Dw(vzl zjVqF!&w`Lf;XCRmObWcf=Si2z^J5u|cK2qef8(r~F)tbj)ZP$_YQ!e#~eqsNZ5) zJ7x?FBcI*f+=uL#F@lp+X=y0XSV5hL)OtK}+|pZ7#|&2@?Co8MtWE^Kzp@N|yUb`K z=mVmthM13!%W)%~6Vq0F7k%8=W8*6@z81cLD|}-LjNOf>J{p%3hTmJ9a9mCp6Nq@3 zCyi;GSi#CrcG6fNsCeaf(I<@#jY~^8WmIiiTFNOSMG%hQY2$kHQr~G~d}p zD>RD}`)$>8`HZoZh;P3$hD+nny=7ENGQ#B-ssDTt=V8Coj2Mhmgc)))aX^3?}8CAs5IY2qZ=o9YWZ8A zi^llDrM@C#GAFipbKm45cG+kq2l zBkd#d*(uxRL*#T$G|w&@nSyYhT{a3uB+j$TMllheXP1rNiBeh4worD(XgG$~S9kl9 zv@6D3L0J10BU=#Ge#M9w%WMC5yT_y}MmJ7W`xT>?Aguk0kt-sx_A5p{5wHD76139r5C%yGYMuwm=r$X6pMjLvj!6Sb&dU0ayPsM)ro6(slgC(3w{OorlR?yH> z$)EjUym7O1Bpw^VoY>c=dKiz5eKx))#u4HB8GKKS-SoVpM5=SzKKrThry!j3PYnw_ z{lF2FwWr1oPIi+{H;;U3>=iy-*`FGR1>u~3Y8(-fIOm@lr-`sfcfsfQ6SlKN8g^zv z_A{fiAgu41(M=H6_so##IZ27#p)=3rXNEl|+Q*(5u7a?>XNH@I#QL5YzC^sfXU0b+ zg|g>HDkt{Y*`3+XjXgHL7sl7Zcl_*g`GvvgNetf(FANJO_WN1S#V?FP8{bQ#Soq#J z=ehW$(SV-I@O*z7O*yen;QP}kvGFm>9pT$?&Nqfx8verP*{O5iMN5{#`=wh`wiI(> zO$)z^mMyIwmiiP+2Tp7__!P^sUrT+eWgREB8GNcGgP!j2mT8u3PV5T!G|T7pB*@5p zx@9*fHuB>3mAWOZKKa73~N#m>^5t{BqU`$cP3 z*;z)>bpWry-ZF<1bGX)GjlE^Opx|q3RykPC&{Z9ebhKRJ#8R#sNsgAh$kN)KEc-aI z;_L6Mb+T+E%3#l~Ps}T0*&)cMWMZDPWv+QXAIe-Ti#V}eB}nkWX!s7UQhhQB)32+P zj&=vq@}M$&D6D&B>3Ni1@NYF6S|!78gEFom<$G2<<>h0WY?B^j6F-*hQ^>;8IX3C_ zl>WxX@_OVi>#*Ky6vOpLO20lzzkyw5_$eiYX|(N}NnelTmN&o)`}=D#)ydu*6u)mA zYsc9LbATfG%;a<9UzITQAC$>sY)e3k4Brol_42wfEwL$NpFwHf@(fC&%4`v(*SwZS zuOhs>{hw3hze?MBu@;4)MP*-_xor1MS?ov0z$?SI&tW@l`%;=#;I}`p9E^nTY$xTt z;3LTu$603A$Xl9L*bjeeQQ2>%-MY^IX=AaQhIM(7+S>Wn#IceX*UfP448NC4t5Y?K zZwe~IcW>eda7!%Ndy)SB%xjyAmu73hx~%2AYUg>e{J$&nbvuq2ZySCxjMuBOLP%>= zg3hi%+F`nwV;fcMoBs)5Bq<=9a<@ZokUp%JJfYYXZG zrMbA2VO>9UadBqvg2FF#g1WL#LCdnwK;2kAs5{I(7Z(q<3DTbIE6{SR0Mv_J1NCMP zL4DW@P+#US-NnU^`GNYgpy}A(hM+QQL22x@Orxz(ulcxX)NA-nY3e)n+Cr_hqh8yK zUjOsF*gNaEVILi+UyjrlC+bTX>Wee=#fAFfN_{CyeQ~3{xKm#|s4t$PFSc#KG5=5P z$I-_2V;gXs9br^)O#Xd2xb6OK4q#~xwCxZ1#7J6GCvWvRbz)L(b% zuLt$lllohZ`s+pg^``#%P=9@?zkZ^>IP+!LcW|!a3|DDOX|$zunpXyGDGS54+0mA@ zZZE!v;@*TMl(cux+@FRMrJ7 z@QZYy@O_&U^S{v^EdPJ6cmG?Z;XE8g`{qRGuOe3U|Hd-YX2iNcT7i+oIWv$(6~|c@ zTW2}di`zn>IjpjEl-Jgd$2%3gxU%88q_e$Hj=@fXTK*>fGn${cmuVEKQ>4K%V9Q$A zHOOTra@~2Y_TQ+5ybZSAf8Peo^>=0dla^p!d(j>R&d;r@BDUW;8n4=MG;kbV?HzBk zZR9_xo#({%=%Hf?B}?5bLDy81G~(|l9yX%P?}$l z<6Rd;Tm@sA-=R_%-i5GUv*URe{2DBIxjmOkSVtxE^iCTKPxE&2I~Z2QJ2rxaNS-McVJEigd8^1dTcf)4lIy{8zV@Ub^B|hf8$%0p))~iUo!)8sV2`{eRGpU@V zX1vTkhqS`Jw6Pqc^kq<)U8ndT$#S0*XP3+#Lt0_a$)ds2H;HkzgS5=bk_FT7%P*ug z$sRHbd(o6EEnc(yrx?6%$@5wxu??-E9F;{u$=Y8^{(CQPm96%nmhkzk*u#aeggq4^Lrb<_v1RAHwavWFJf=*w4nhsX?=G+cg5a#G)XLztW58IEv&e zhHcumg*=@|k$hhm0BKdU`Ts5Z2!cr<>1LgXXavdfuwZk(4vYZBmy&hCy_sN24 zwO|Qw|I@|}FCs!+7EqaaP&$y(csEjEHObP1v?bYb^-vh!*YK!ey+_I|{2nP!^ZTL? z8(_&}-EiH&Uj~p^M=GZ)m6=TGfuPpo4qEu0D8sLWVESWy|KYGFpgU7Ektr7`rrUgqnO*6r1qN=vjUa}cBz(S|Xv z*(Z^O&%N#kv3Fc~A9-FLgZ+}(9Ev|i+n3+f$Gi9PD|hb)kOl1u{FXPC$>&c#<>mL% zx#h3VtyHlU)==aws&UO6eD-vnEd0(tt{!-&8cV)T_CVTF{GR_GWZ|mK#Tai>Wmb{W z@aqv3@tHY#JAnnx_dpdk7*u5wKs7cGRA(ze4Ym!`!VZGku?ur$xZb}px3mQN)>y)m zS1fowrev1JxIv7>%4A|>c^i9WvIK*|F%DE^9sY-2sJ$X}1I&xxGFxX;GH(w)Nr!VG z@^0txls-X`MW8DC-o}2P>}($9dc78FYjK|7(|PzsW}ErRYnhvgUf#RET1tB-Ltc!L z#d9d$THDg>p$#(g2IcPnNbIkc($cUceBJ(cC8*4w`t^D_XxC`u;rG;_N7m9_A9-%! zXE=PFw>>WWH*5aCs_UQFD^tI0Bl#*FLU!BZxUC(ZkI1YM#8~fFH>G$U)1J~jUn^lK zS@`*(J)AYcuP4vL;|M=WTJ1Oo@V=8uUd_e}#~>&{7EdntSsBmE(^vw0Ej*pq@$*|- z#qZja>6r!m8nW3EevT?J{O-M1k1V!FnSYh$J>sK>=LxbnPq0m|fb8Y~#pLhokSvD%Qf*7!fo z)fDo|REq+?!iMF%ZsB{k?K>xJC=%6r4f48$_wEsmux*-;8@Kava-&y`FT zEJqb@yp)!vykfztGwT-TY2KdK)3$pt@AVp5kx*qejC#$}qbY5>ck{dx!OoxHTc5(% zmibT8*Wqj*j`*ZfIy{wUpJqu=W-cg{397O!pc?xM6wVt#4OU3)xk0t_GlbXcxW+~9q0!YKJ$(t%e%h9_56t34^vyUSC1WvSN@Ms{8$Z|GP1i>}Z%2xZ165fcDtQPg z_wrn$!6LI%Q1~51P?gQ27~ZONWXJZX6a()Sz(~UHKZ3$_2Ss9;IES$WEC-%wgIA*% zUBsM7!WgXAdbPNVavi1;_?7P|NGtR%2VB39_h+*FK{0>Q7PKtHm~x;JLyN?CkAlD= zlSQHTe^iE%l6V)0Uu|IvW$~`g>w6`)U<>&;OVlGC&yO`K!(LdgFL*pJ`SsFxIj`IQ z&n#ujVavm)@4UbKUIeaA3TqB_l|7}E>R;J$R#@MX`p;>FwWHDN4l0Y0EWOVRSJ`AA z25NoZ@2?hBT!rCGkmzoJ%&;`;`p?tjs2rZgwayyD&mVAolNi5>d|f9|UVdD_Ucb6s zUL9w=63?L8S5mI6l*T)9GW@D3=HAe(lnCv`V2x)lxi!A(%m*0Ws*QAfg{*shi zc>8$?wia$*R)jU){I?nkpFx0mNXjE^)7)ZPPVHihfBh`W_KeFm&GYiN4b!P5ynG&m zca3Cb_ZgOHdj{xD7QW7G9e`dw&Q~dIyZ-Pw)@lZ>hyVS`|No^U0>2OZs02rkE56ak z?+7WZJdH57@HcF6g;D>;j&I)bI~Z{1>a)_T@>*2FtMk8fOL2SMe-R_+V5F^%UyPRE z6{X6(cUJy2(l!@=JC|GdoaAZ#cI91q%aJQDpQ~*y9?$3J>sQ?W#KKG9*ENoC-669w zHdi0Et$Mwk+*08b_HiO9kLQYK=KTB|fAJa9TsNP^G;g!5{&)`Uw@Gcwu}v?zh%vSn zzE|@7ny0y!@B7w$8TL{*((3T%%3L5_k&R_l;QPO;!Cx?N9r&xy3RwgA#k>aae>nWL zVj=KXk97cFH}*FCwPSrCJ)DJ0BiU)`BlsH&f8)V79(<`Rj!lN&Ii3zNbKx%^{?@?X zZWbr+fxoZdZ!ffAFSKDVn+bnY;m?j80Q({M`x^d^z~52$I}U#*;O`8}k--YHBoMZ?KW!x|4)Vg?N|VFfY1JvDEQqXw@Dv>w(KmaXt4t=Qd~h(m^Y;ZNUM>C zkTxQ1PTGz%60}3-B+#y%KLCZ#euIXxR8l*J>8Wbl?B|^`RQ%@1{j6v9TcGb|*8&}s zEk|Ui_#KjgY<9MDL=B1$V~GI|Sq)*qPvMq;y^Ya|?5^;;)M&wPq+Y0go*f&ppB;p9 zmQszk*-zQ=5$)K+?4*d*WZA6Zr^Gg^_{q3S%r0kg#D3K)XJ*7vwNj3(bzpUK7D2jw z4t&cNi^{3()`2DEwDdYdc{?!51?hbe9av6Iwa5Nf zQRF~|WtON|=0Mgy=OHUmvCI-R3Cb^_Hk7D2IX+!VR4k`NtsnPX9znmCK7u(f@sdWs zowkNu#!^qysO0HXawe5Lf|Xy=s>=wrd~xkA+0^n(ss-%uyZ0mDGckQ4S3ur{5Yr^R zN8~z4xAYnT_vfBSmst3cJh0bXG9ls#^r%S5rv7GAf3vBlTdAC_6u*^PvX#o&N+s{6 z5!gz#Z>2WxrqS3Ji1e(r4+OGyENKJNV`ArcohUP;Lxpo!t1SMq2CK zQJ{5l$3@v`QMqYR?X(;2E212wzVK=45Xsx~Ht8RvTgZDPDn!B=9;r>q-6*+3x{cuo zdLhbB!dhIVw(uD_S4iKAiqwjhZIl9~0ZY9=$1g_3yn)i{rFWtNrJd=hUs3ufr3;rn z0?Xxe)Ei56El~O)9Th(Z9wJ6hB!z8RLjB0tn?3O=~9x8?6dHHI8(yCc)EmpaVF); zq%t$<^Zl6;t_GPB?!}qZhHUBSN?BW~;p%jW_SS64Zk0n+Hnl$qeq(lgY@9RzemOgv z;^QRGRktBBcvX&P7|q_*FxqX50T4eY_5tg>YGLdEsn@C{pu9}4oP)8OHEi2v4cDuk z8n!S}ySOT;+fEJpwNt}&W~YX$)=n)a=RDZ4g%8;Hs!ya9(vh4O-PTF5lkaz1A@!d8 zw!BUnG&v_`E6vY!)XuFGvsJ|4mf9*!&#NA{RSKWHkVffkNQX_vIWs7`CCq{GRo|AI zOS|$qgS`{jS4jBT`mK^%-ul?BQes{eus2BejN1)!bzzq@Sj~>d9HJ54DrM(|ffrY^ zLp07?r4RGc-L^_=^ESus*S^Y|9=BgRoEOSIpb;pbatf$z1yol7wWNUBRzT$xP+vZf z9^}bdA=Ma9H5OBi#Z*gk$tfRZvgDT!-@ZWm$QjZktz$l)^F_*17>xtnmrC#D7j#e3 zaE-bI$I81bNgI-Xu6v0#F2AVzC1qy*x83dNSE`pvoAPgTzpd@h|Ec=}4QJYI?R@@k zPy&8`W0H2ddf6T~q=eNE*$r4>-tTdTW}~;(clC!o9zk7gjOV1@+WV__ffq+!l~M0V z4j%sTjxw$=syuOZt@t}I+AX~tW&G@JHJCY}Y_*hIt9`tr@5-~-Z6VSgMa+x1a1Y6IScv`g}u?Cm`K7_g2(VY1O(y<*2j`)Q%lq zSCsI9f-PLAk_fe+Y{XxZZ&s0 zW_fE>)}Kzq`BMV+^ZBKQNN-j^)n z8ZuDE)gxKP^(~6#)j%27kbyF;oC9TCLk7yY$_;Oo+=EIR0p6Qkr-OH5uT1ieAa5qk+jcanCDQHng|JN*c+ByBzs}>NmklR-tsu)2eawd9UfEPvl6G>#$p446FORFL z%>RGRJ$K>WOQfi!rG=wSn^`I?78MAllnb(m3knyw>Mb_87nQPt5!^QvcTiL;Tq-S_ zv@juQF|D*Tt!#p{CZ@ft$w_B^@6YFaE?mUEGk^Sez0UjnJfCMh&-!^j=WyV{tEyt-f8E#5j%kgVDW-aGARUiJ`NsPwS z=dMX_(hi^wnyt?>*QJxB!raZ;=b1j~c1Q-KcLd&@-VGR)9)&S*tuq$=UT!5ksgLC` z(9`yp=f6>zl`|%X_;~CEX4Cnj}$N9!Y`}=1=XX|S6rxR@xXi3mZJRXvu9Fka^SuY_v_c-#uYjajziF4rQmo&}I2dTwseL+g zoI?IRyv{n!#dL7)itvit?@3_A8M1Sz&kT(9lJks9^|ob zpX(Ku8D)KJ*X-avl8WZtD9ii1?#G&$`rNY2GQ|8>Q8ns3#OC5%NeiMl)W836*n?az zJOTY`$_sa44_(l`c2<-&Z|Fpe2K}7;ed7I_bB= zbec!QxYvg1t{1;a9HuXyPni88$x9X!(syS1;ogHBi4t?>i&Z6v`Qin{ocrSJPKn&7 zi8_taVR~Z~z*>;pgrqn7xSodA^vl-U8d|kL5{MZqCK^+RBF_hLSpTzg$}QcRSpGtS`aMs?>@-8p_RpOk}fQig8BC*@$Aly4jr z%qQhwoRp(RY1X~iDKx8hZ=boe!XKHaVP{;{ZEMhiy^(XF1$BC0?$)5?vaxOKNS<4Jv9)mU*V_wF?){GwrTjzOb8RU+vn3vGxPCdlp97>DRtS*}trPYhjc2 zD{3BPH}5+U9BWUkDzHb{JM614N7=(z60xtq9&3-?x6t9TXY8Z(|H#enA&2P*ooAZ6 z@9)UJa^JVe`Qe(g3;S8$d+Fc6tj*R%g?9bbV|uZj*2ZFck5`LSvArMTLyVIc=e>H} zqGJ0RcJFxgq+W*j{Z*O$;H!NWt$}-pt<3(zs{V;JM` zIiXS90;B8`_77e(%07uPcHcvb%F!2nQ<_Y3_UA9!YF{z&{>~fi$7^ORsxTkl|C6dP zf42XT@fGIg{pFDSynhYw!v6I@Tis@0$GRG%qW!{UIZ#m)yqDcu?X&{8EZLAmK_4JX z!qs)pEZPO_0;d&I@46sI6HY4^7S-GDtXq6pz5TwrW4edeqPu*_7i09bg;$EJuH(7e>l&8m3R}Wh( z$FV#9{Myka9UU(}ePT&J`5I0u{0o9>&?c~ys`}TkwyXCUPrr7>(!)F> zj`56Gqe2h#T^fs8g)faleePYlRbO;v$fm9JSf!T$gb#8 zHq{Z-@SJudLcdjGb+UC7I@Yhht*qE_SHr-ve%2T8ON(Rmn1;BrvAVlq3?$PUFsdD! z8cqaHb!=-GgzLOWx3 zLz@(-t&R%~r#fzRyuNBs=q|3?Uf|BMgPb;2rM>QoJBvGA-swD}8998bf-NbrvpWUD zy}VOr%g)Mwm36lKwfvmc*+Mqh&TL7b(Ef;du4X=B(yxnkhXmF_i#K*YQqh;+dUM*| zoQmvtIt+(YJ#*;wO(@0KndRyqraD6y!A5PoH@&n@Z!K<@`6sM1c zz7W^lLcd(rY(MsT!Lo1*X=ve=UtTA)zHtuN>5XlWUo&UZvIq<9hB0he3b*ur<5|cz zSFTw$jO|M?ur*;N=Muv$;cx6p9>%t&VX!qtcOAyIrW6iM;oMRszt%( zjlSKR9W`%!y!=Pg%Wo{c>_-Rv>U1V*`|a{f3#~1g7Ft^}Ewr{YnO=LtWI2ak2y$pn zx+A-~>dpHT?Qo}*544YY^F(kr=h8Q`%6mFbcAg5{{^s=ZD1C32$AQOdFm9bMzWJB( zUFd845})(4H|HYGuWy!>4|G=bP3|zzX?klFVq(v7ox=)qOz-CG{?3%R{q9_u9gLp`+O`tok3MOPk0+T3Tl;Y35)2<=UyS2S6synS+97WcBp zlnoupWBTRo+!fs{rbD}(uz?&}i=Cx2kWRbb%qENUwNam$`w-6L{s?vOJ$D4Br>hQ|EcN=K!zU-yvo&KTxBpCT`I+4E#rmg*`>ibDv`tDDtkZwZy)IQ@Q2DicX_zEi*e!HP>3= z-hq|UGV)zm3o*Lr*#~Kc75wy}f}cJ#a1OO7tG{Zn?0na|x`ER+U`%!z-C!Y$WrO9> zceh)V;fARRibWU|GkKBPj70=WvX3IL3J%<2c8-L^{!& z)K6K+(tFB67T|e$@AvwxJ%#-5TlnzRyPmR; zq)EH%$cO8iv@4G^uA?02_h?AVN`xitCzWEQGhm99R+to&^(`bPk94g_v38w9NMAcl zv7SECyCM^I!qXTPAC4Xe$uCE`YMEBrTT`ss(N3c?t>ceU+Quq!({AhI+m8aN!hGU*#$r&qsgYX+pb(ZC4#ZBKIJa2vUgBv=Z zx6Wg%{@^4ez2-PZn{5}~J6HLU`t<`?By2QV&RdgLT7hdnc&{?pM!)eCY$Hpo*+#v2 z-um1JO-MUq>t6%RAes z4xMdOht4)Cy|az-=`Qi9#LhOVTW=eUfzCGiI%2W2@}&pX(_9{goT>EAHu_FtAI_~0 z=QdNLUh8AaTvmxYTFwSilhYk}7-Q6%wHOxj|WK6V`EP3>@L>oOPO5yk^EJ+aw zeVH+nCHSH{;$(50ES6-6guc)iY@^@S3bt)bwxTayO~zhtqhHh_iw!L8I#~|q@vcztU9tW zN|he}wZ})!?A;%2{K#2-{IiWs&R32hzmjB<~NToX_*jYSI!uOx=8*XWUlZ_2E~E9WB?uc0^B3U)=0t zn{csS^x@w&+k+Q>cu=S3%Xki@59RvbF}4}*YuHV{2~y7amvfu!a#D*`u%v<|)$Fcj zH(AKTs|oL^-of%6HnKnOK;8PLRNKhHyc_Zz6L;G-d7QmYHhSGRl`QQCSGH0 z(`Bjt@R(j}Ba2@-rz+>r9X5K7+<;UW)rXPlk@4NE+=EC}JL@pVui*H{xRhgD$}ukG z6qi!L`JCdI^weg@#BVgJ$r;26(!Sw1KDMJ)+eoV~XRKgs(q8?r=N7uV+qX1X-v039 zxSqkJm+s|}R*p6tV%w|!`QeByHwJe;k+`K_Fj;{2^6zBy3+6KsYxsK={W`{8MZbzs zXuIvi!&?e%F(>knYV@5a^|Rb==WW?1?(Y#5yzj)JE$3}-tSOyu4kEqF97K9oFxxAF zgGe46L^02D4d+3VQBTDNpE}_Hes`k7Q^7&>rP9ubPxhi{iqdl6USKgw?5{%cmXq5W3ahi* zYR6fSa3j#EwyJ*(4^cbReHOdgrQR9g#OQl}M36d*&>;1jdKh?Ka3YMd=zBS;nKfSPHyLs!F0;UOU^&(!x*e?iBO0z%=sHnO|gdI33aVRwzy)Gbuu zxjJI*ux6vDo?-V+>(?0JyHJ0Od@GHaJyz=RTC1%aW~(*0TZn3~c0}4Q5IdEfj_LOU|7ue?k``AAQ-e$l4TI>tEkjfQj}h;28V2z!dvke+p4)b`LPqz8E;g{t7V5{u?mQ zKClqQ+wTUhwl4uz*iQnh z?3O==sA~Itz#97^;12tjz@7Hw>qFFT`%}O@cKwFS)LuKy=vw=j8$#4Rd*6{Es?NUd zhEP?{_tIeh8{Dt6`z`yeH-@N#_TNT?sKfS0ZwylJ*dMlrs3Z36a3AG3$Lv8jg{tH1 zK537I`y+Orvd@P5Q+7AnPr%*8?lbm3-yEX8uy;hcU)i68`y2afz#r^a_X$yF?TNtO z?9Twt+fMg!3Hc zxC`##?2dDI`(LI;Ij9X29kq}rv3!ifJ^*VkyHgx9285^yj!)2TX^s~mcd|-K!nj@5K0V{0gjc47m$y zBg?BDPr$u}-8GJSxVN%


J&Bg!#hV5r)~lHHEgknC|ZL9&-6wT|2F#)xuE2R1lf zy&GeR*0q!PtpK;s} zfidGq27cpM8-e|Z413FYz@V|yTR9>(?!l8V@!N3{8 zU4VrwpBa1&G?T|UW>N6Sf zY;}phSa_pwy>J*77s@wMI0{VdKMzdpxm7sKYRDtO6hBS4NO&{&?XWGG2bjlAI|!a- zAGf%fIcu?QGt$|?v+Oe$*MX^=10rt}|7r2-IH*!Ny@aE{6hB)0RpQ?){yO1$kslC$ zqwr~AJapuI!-Q`HJ9}o7#|jsLw`lkwSg z@S-uqBo6~q`d;A2?DsE@6#rH*m0t&@c*NVaH^v?mc_aI$j3cISe2Sm*2@{SKP7^K? zE*7p5R+ky~?E+IhiiKx^zrF_JR``H0mNlas;W|HKHKX);hgSYQ%<%slc13wKn08@V!iF}s$tHi%q{B`0#ApS=2HwojP-#A}QI83;waFlQ~`0L=is_MkwD6B%I z-r$Uz&@bZeDGZf_^Y4ZKOZ__d=gl{QX&ywg|NQ1y@n?wNBmN>V-R~@xTdL=Yd@J~q zThn(CQ$F=ziq|CEEOHIsaUi)JO!0b(|3>jgg12jDQi*9CL`nE8@aaB7w`>M~9XxAG zy~vw{wJuUGFyHSLJT6^fV9Lh@rgAgDG!BZzUnRUzxK3Ed?m_ERFX1RKrH>ZQ5Z)|& zK=`z<-qncTOE^k6TG%C=Av{ZXv+x1o)53Z;$xk>^I9fPOI74`r@Mhry!l#Axt0X_+ zXknLdhH$a)EaA<<2ZT=x>sL#D!qLKM;Cni}k?s(@wn;b`Fu;aS3)g%1cf3ZE8M*Bbfg!eQXQT#NNk z{L#X7VM={`)ot!Z<}$bHN&fmtVa%^iiDd5fa2j)MRuP!;sS>UeZshRSveloA@G#*> z;WY5aR~^bJV(yb$#r$J#orE{C|6HExCF#K*UuDaW6n`4~FZUKPFY{J0ck$IRul6-E zUtOSjQ@Yg!Va$uBMKVWBPh%cFqlh`Nu!_0kqjk);J=Vw^HB((j>A#;D#{BK$k<33l zk;c60$s*?TqMkPz?OQBdcat%`8im7dHvDN|UWbLNgzJPG!8D)okGjl7;E%6z7FRJZ zE3RX{`!9{mb$?N}P=*QRU;6Ms+k&)g6x{wVfu*pMcE7yD~B6p6o>{aOGTcAumdjuLhW7YlC`t`n{o zZWL}3R`(nEg$dUQHwvpr2^WqOP7|&Yt`lw)R#8T}qCo~%3D*g0F_N!vPvJ=6DB(0= zmvE7Av2c}eov=38$hW6(l(0*O#&ld$%H=G^(-Y8rz+$5|Gk@Uim z!coF$!Y<)r;f=!e!cD^3P{~g?O1NG)>_HoSaWs8LvD%DN;RDV!!;BwQuD5lrn@CtNSwD6HI44>0XF zk-}-hMZ#5JTEB?5Yqr(I6u&Njw`e_Gj+l$$MB~K7YRq^iCnl! zxK6lHSWT7uz;qr=^TD16t^#v8!i|1;fyk#B@ze~duW+PrnsAYDm2jPKqi|ZGw5xEH zaGkJvO!60w6iyS)1XDj1iN8u%&6IS)k-}-hMZ#6Wb;6Cp>TyXg94VY8TqIm2TqoQp z9QK5fK2kVMxJbB4xK6lH7@r{GaTYnt;56YP;VR)e;YMLqBJ~xH6iySan{9+Q3adF1 zUpP`YO}I$7O1MtAQCQ8D^um$CX~IRqRl;?`jl%d?5#MK+aHMdWaFKA8aGh|Yu$nLF zg(DXj{xsq0MKXWEyss=axKUUwk@Uim!fC=q!d1d`!i~aesgb@&xJtNAxKUV@NjbuG z;O*L*am2iSF2lNnbuv=8NVrP4P8h~^ju$4JCS2s_atU8yaGJ1MDftW6`TeUT{%Q#q zE)uR1ZWPArWJW!O(}b&p>x9)>$yc~e7>l@(zCyT?_x)9oVAhwx)DCsRYQ3}%c)RxU z>PRq!7YVB>!yhJ`CR`+3C)_BE7vVU4m~fhKk#L=Gqj2xN#`wt;?){GVPZ(Ts(%^>g z3_kO{!DFlgcIb|;hj+tuEw1Yv501PAd?&6bTtjdbUjFs)AZ1nd=d9{BQ)-n-?Yit7 z>IqA!DF}Gp6b!sza>U&c_fTAX+;edcj@mQo&+)IsKbSBpVQ^x4VpGRQ63Y@_53NcJ zP3n_0Fll_!V@XGn%%jJRo;mub(aFh=CeKNJI{E$Nd&f)}(=_HEW6H<&7?(6|@3`~h zx{m*T{2eKur*xXod%~Cr>nD6U;Xe~5Ox!o|yNUmv=tv!qdVgwJ>RYLCX{*xyn)X9l ztZSO9WBSnalJr&So6?_4|33Zx3|B^0#_o)++WCwdGLtjYGN)yhWUkKKkon@Q1GBCy zxwRyr#8a}j)3g6ITg{m@=bE{9 z&W)QpdT#aHf%8Vqv(CSL!Kww%F4(u=;|0Gg2wr&e!f^{9UikdN{R>Yl3|VydqEU+` zEqZa$Z;QGt-n#hb#rH0GXi4Idyd_U8sa$es$={azbID~(W0sy?8eDdDSyb6WWfRNt z%bqAJDce%^QdvXU&t+Yf{b^a$vWJ#sE_-a*++`P*RV;sQdF}Fdm;ZCQxjebNvixBA zN99fBu`5Qbn6$#T;>i`ID>kqAO@Cp<-W3fi4z2iM#hjJ3D??W;UG?`><5yR%?z^UB zO~b`o z*8h8brwzAkSh8`;#xFKrzUj(M6F22ws+^Z2Mu`Ket`j7QFqM?R~aqY=3U1A-!y!i8EJGpG_a{qeE+wza;U4|yIOTnJs`P8 zbwbXa)t^)sb%VMB-{QMc4NzUxP{eu&u|^^^PW4gos;^3bNhMMBQ%NcuU)sAvO~4U1 zL*1=1@w^b<=gw8?eT;;}sKMCLD%fUi8RjokGRjNR(R@1RC6=TsU zQ56WSR!h|u#Mp|EJqX#WHsITQo77Q+ysw_ZH}h&#Grs1h@SWsR;E>MPK2%nht8t&+ zEOue9)v+SU0@nsrGig9C-g#Xg(Etl?51ol^qz-gWQ7|hxIrQ_o*Is zi&9@OR$em@?#gSfL1R~5GY+^aYzy$So|H=Udea8^pC7X;weQbQ0!@7jF2jCt%TZwR zttWu#w|)wI_*RO)vKQf({Rl5G_UKRU`}$MO(-}({H!$w)e?y2;$NE!!eqcP$@q-6Y zs$$03jH|*(Vw8CG?c{D|{FPC^gCyJTB&=mzJ&@e%88;22{EH%}tV8!wO|H0)@c&mm zhsRR>!J*Nem3sQYp}^-J90AZ%eGGT< zxJIC@^OwNXao+$Zjr$2`w0!P3N^8VSm_YIj#@Ev5UgmZx#W0yZfpWXsRdY4!lWys* zROfUj&?sej`rUBXhC~C6oQ+b95{*)fIxOxLi#SGE{`{$w@C?GhI=9a!Fb5;g9+_10 z>oU2X*Am{!?$eW~mA;!qlHVDPu{5_6Nsde={EYEC##ub$&XiP)z^G&Vu7uMv+DpmZ zf$@0h0mS*Flwy9z_~a&P^Ie;)NlNW_v8KfDzVfA>XgEV2eDt;ozq|kY72@uIFNWe< z&sZzyi}dt8dc5I^$=v~phnf9&vqn9QRk8!t3@aoZvGxUF?ZBJSYC90WJ*Vtg7drtv zs5K@BWUGNDtb;toA0Xn}my1 zPe_(9mZ@HlEM;7yu7i7nx*oVg-3WY9-He!j1>#qSV9LiY_5w}n6wK@_@NdJJfRH+ zp45f_Khk1>A8QW*KhcH*PiZ58pK7Ckf723xpJ_?JMlBh5MjMO#zX0NwFSPM+{~c&j zziJcU{wEN>A*iLoeGX{C8~iS~|D$EV{cj+?*=%ydt$_HZzG*VtCPs_N1BsO}$n*&0 zHXwdS%#;mxPsU!RTu6E|{@FAY^6MC*OD|g}}d< z9s|xYJq|1}Jqau|6$59RW&!7zN`Z4tbAa}c;CWU|01-@%q1ANc44tT^=iO{2rADA{k@;>7+(?-aTGoCPQhWtaulcp_@ ze*{Fon4X6F6CnD@gMFF^7o zW3%Z+$o~N}sjp2h0lzivh2%S+NnNSG0_>{qgQOeKq^{EU1FzQWf!*~3z#jVRz~TCv zh%*9cQX}<)aK|x@(GNkA%$TCT1Nj8TRQ)~3Cjv3o^rLX6F{bMuK#~E(T+@%k?FQnv zO7#M;NE;pF%Q?afbdG*s(U=)VJx=@)><_5T1r)HUdHCv_0McBsSsv2KC;6CnCjx551>5c5m7!`%c# zKk81nPXp19`ekr`0Yne#m&5&cpb7tH(h=@v#;^5Gko<%38@&tU-vUkQJN-(yzXzJs zk9s$_e_}kVUk%C6jKAnTApe!|H~m`3|H;_V+!O9lb1z^g^L4vNH$u{# z@f!2ZkY5Wl;r~@`fx9Qrr2b^S74BY)NX*3HM`+ zkDCWV@&wSNo;2SBcM%Zt*L*MBrRMwLE&*a4Hb=odn{lo=8j^WHlUi*a3|wa(0&FnH z0^c-01boLl9C*Y$5~y270j-t`A~dd$QW6{si|v)f?_t z)t}*h6>sDxL)*Q>ex0@-@8#=o_qAUD-e&I!Nq>7UV7PrSBsbZ=#`mfpK&sc&P^4;5 z@r-ehysk#W{W{*iPf~BGiHvEG98~FWAH@6j$=DUL7$1h@9hJ}MgXE}MjM9(doqPN) zg_@1hkK)byH_b=Ye3X6^@81uG60ud+9*P{eG; zTk;oxS2)%{(iJhA)m4bujCbX))2@2``q$4Lr*lzH)hX`kxL$EL#l^&x#}$m4HL85n zmQlmwlj76jC&%Z;Pmf<3Ulo5_!d(fTgsg<;6HX=Qi5(MfNeoYnNZgkAZenAiBdL2* zzoa=y+mgOY`abEp(YK7gee}JfeWM#jA0Pec==@~s*pRXJj!hmrX{>YH9peU#bB)g% zzj}Pl_)aO;rxd2FPI)Hfm6SUs#-u)!IzBZwb$aTS)E%iQX*p@Ww8zqxq`i`MJT1gE z(e)pfH~q2nqv@Zdf02GeM*oZ%8ATbJGj?Q{Gea`7GRKtUmpopwtK>k*+a;$;{!wyE zX-sKS>EzOfOMRskrB9XaEd98&x%Br^`|Pf>|1`VL?AzwtH79D$gL6D{^5&GxT{PD- zuWbIN`3L4-x8Ugo|5y;Z@T!G>S{S=<)WVcSk1x7&@y5kXi|<(S{gNI_uUoo#=?hEW zT6(1Hqq5J-zAn3L*;UI1EK6DT(z5zxZ!J5r?CWK-mp3k-xZ=o)Kd-!N<&>41SMFH# z+Ny)AX09$-egB#vYyPw5rnNS3ukW?~ z=Jf;C7q4Ht{-yQ%*PmJc>w4#g9viOPP`UA~jZbX)*QUO?ONOKDLS~P%|3y+m#rJ~b++Ej*W2!7zR~u? zL<)aB$cX=DkP-i2kP-io@H;_9y7z*NbVq|IU8MGHQ0H0rO`#(Cp1<)&JZ_{FdNvgI zmOo8h=s=!8Sx5D7$BSi}x+C;rSx5CkI~nw{c4<4RJvbq?Ed#$8+o!!O<`S~!2DFbi zq|?Q+jw&Lqz3dq>DO_}KpVeP1Lw~+OGWw%ds{CB3u24M5eH88^XdH51d0MHH>2`Jx zg}ZT>gWZL2f0cMSyPts@Urfij!ikf`<*=*V0v-Jp6{DhII~j^ILI&(5ZZ#R#6rcy! z!?+&7m4z!CR}QXRTzR;r;>yQW2>Z*UxE=$}!C7JvtSXCfEy1-ER~c{_u5z55R^VER zYon@Cn_*?C!Fg#ba2xO$oG6~f^;euJUIM-h&EplcP%UsD_*Go{VMVILi>39rUc)^c zz}0|L)$6$4zzOJ0TyNnzi0f^fd=A0RbXbL9#|cyK;uP{8t|PdPszKN*2B{Bl9aBTF zKg6mJajH6jdpL>fBU~Tj`UIAuQ)-s_6xZKyX8H`+2yVjlIq)?2j4D-M;QA8R-*J6~ zHfYB64_sg4`UcmxxW2>nJ+2>c{fO%)TtDMF3oFwvXop{M{S()3xX$7F7utmW94d^* z?d8I-o3Z~|;XBoaE;I)2RMoIPDA>j*yaViGM!b83?-h0nPZstFFA`oZyh3=B@Usg4 z?uEaX#J^Yg72$o%9dJKJ`M-)hM5A;a)Xkbvp9JAl;SAw?j;HY7-A25b!cPeQMR=j` zV&SF2YlSxnR|`L--Fq{&&r{m`o2mXgSl&TBE4)+qdEwn)ijS|K$5Q;)q+SieZwMdO z;zm=v!`kT4n3CX>(K>VbXj-!lOT2d_-n$a-U5WRumOdKM@PFpU{eGzZoBbz|j`BSz z{*Q%EiTsrK|0el23V$wqM)*r+GyX^2$o~@)aaYw*|MDg(_e%XUjx zsUFwrkKRo8cdb5?RFxhJK!(^+`50fRHN8))T zo=4(&5RdYEMB?R2xnAMvA}S z{o?LY|He<#_lrA+YYMJh&4X{*dy<)J7$Lrcs`MO@2%r zOrE3e9P_jG5Uw#}{-b>|rWWZdRnAzHH5O~>xW{1Yo1meShjB`h#i5 zO<$+=)4xtjN7&PPAJ@;?B-ej5Tl!~ORmxQDnv5%u#|x$*6Z_~|@e3wv@i}EJe#P7` z?l{WC*AP>BA>ZSsbqU8!{qPG8FP9Fm{5zr0k}#*xGJVbpOV_!Tma3E&Ei32NTL#Sg z#Iga`3%Fjxbre?6HC_xH(F=mT90cluJ;zWt$kciHnuS@6@baGjzpzoF)R7;mn)&7d>t>x!bdD)XeRVl@| zX5kuudTa%64~j&6BT?6fRt~U?U)ih*SMGu+!;t*%rHSN|N;dyU;bc1@*9$K_pfP}$bHttXJj^0miJS~1?HS=UP+yQY_ZV&x2s znfZK0#uZtA$M>%K#Vxc(#x3RxV*tDo*KyOhEgoARm)9BdRE%})Qv)o0Trt+YPsdpI zKRpOM%ei;KJQIa~^|agi`_ls~zdzlqoHeVQch|VB!)uP4$nOFVuW44(Y6c;XX0-uf z&)00RJzq1x@;t(xui5T=X6Yd7ez?c4bX)1Zn`>Th_Hi|t+W^ZmOOKnL zS-Q$uv+V`b{%vm}yq`XP!r+cFwEy#EG9q!6;O?GFyb9{ZHbF;H^bNXgxWvQqP zpJ$rKSD28Io9F)TNmbP3$@%WdE}whwj0|_4&y$-oc!tlN&UWQZ$<22g!7bi+cb41bMb6v^!*VkoFE+ma-c!8z2?ZQ{k{V-)543Zs0!d`~)htZnchG*Ej9cX&V@ zhvm95adWY4ayCZqMYnuOA?h&AgA4}e=jY}}=Vo41VoR`p{8ELyK39&a_;6pQKw5e2UU`%0-EBlW^+oXw};>wxq&Kx`q6Y-M$$RSbrlQAv0dmr#*x!dH> zQYy!!k?Y0?{vT#sV!kT_BSaCq+a^W<-rTHqLRuy$2yHXe=gS-Frk*j}qYB*lg$d|p zWEkV|=H+^+mcIPlEE<`uqcF+m$-?@gco9l)=TGxwAR=YVHHgjh{tq?hs0q0R`5A6% zmX_3pC~(dM&IlPEE#+WDU6fMA{z0{jjMd=mJYQiz;kYj^*3!T##AafiW8V87aG|3z zTb4zU$|StxU=GYUc5qH+VlE&$H$UH<#WPy9WY%(r3hRZNmXsFB|I~b~OZ4EJg6x2_ z)T_zv^msQqFvlC1D=JigmCKcmQPG-wL_t z&gr6z;ItNwEbvXv#Z;4>k zhYC`wa?|pBj&tQ>C}Tlp9~L2QgO*{aFes*Z@^f>jW%$+tN-(sHIBdVJEX6|`?d_R_ zt_Xt2FulKa8jbR#)B0?MY_KgAy$IcVgd2M0$drbfplrN&1k z4o;08IU+HB7 zGpl8mdzFz#URGheJHw4}=Ff!W?bZZiMfc(+FWxOki*e8J$^Px%JN}n#HZZO?qh(9; zDq68F@;>0ArK#{DY0I+4Nm_h?i(H%4Z@9}y@F+UVw@ zuaRPeHPDFa-&Ufta&z30nocRnIIS5PVykNHKR$};r~FI)VBd6wYj6(f5B`y*29F** zA~E%W*kPCysWF2SqT^%Z5=X`xWr)f(avGMHOrsosO^gUwH(Xd;T!v4o%s0o{GP|gb zP=_y)8d8BQ9ZhHGSA2A#jShSCm(=OK6D z^xS-?d82Whz=}tQ1U2UN+Xe=ldHc&2GBRN_mQd^jwC)ZbW2hzuV!~nEW68<(X5{8) zdD2xvAx=Zt%2@YRtZ^`*F^D(Kj4&8Ka6;jA*4vkx#*;yMjbGWN1&lKZj2IZfA3VbC z>&x1ctSz#wU^@C29y*#KyVg-erL-#binrhlm)F;_l8M z%*=xh>l@^r0)-62v89~@4*z{+-1`G#JT7cDUYxwWs=b!dI!P`XlzmC@F!})-LyLQy zJ3n`1{%}uDfp=t%JJuVUGmSJB1-+%f&@QD;@vsu%l+_n^<3Wr^S*L*w!0)9I)mk{l zevVJpuOS7GU|`AmzRe{PezWyG~E0sdh0D3*i3gc1Jg z-1kUo>L6%FX!8d=?kpKD7?1wCOI4-q(5$??xbh3rusTjHaA6Zp#FD2H`Nql2wlMeV8rNtE<|BQXnZcM*2CPBd=R#J5aNZN zr$&%6bMe?w#wdcB(v^ie7#39J1=sUpdp;jmR5G=U^ie(tKW)2T{SY_803ktpNydGVhV;g1<)Z^CIC5OCymI(Xv3Q7 zRYP3)>8{B*@^U+(u9&VvJrv;fwd9i%aO15l?!~&ElVQv`YI||E=`$Q~e8#||>4*J^ zhBjIglQmF)!nkpxGBZc!C*?smaT{i3s)o_kiTQ;H9pRo%5&7;S0<&m0vH}BD@)UPY zR8|(&{HWf!7;B1)R+g58YGh7}qDM}$%V3^jufojd)=WTjHjGnC zws?%A!?Hk5>V7}tAXShleT@|-r{$DS>*z%T z=VE``ffV-$)F2#hJ$Ym`pfg45!lr0tm6EY!1-6um6;<@2!rEp&Cfm@#W4&J3_6=2s z`tA?%G>#RM-GgED_qe?eHP|F$r4 z(j>&@HG?KIP9xcQ9Iw?E;m@kwNRBWvYcFp}+%CwU7wlqOrIwgn1v-(^k(6uD;-Nc; z^|tFyy30$5BmC*wl^xMOcDp$K#HxKkT1Jm(EcWdlA zL--MK>oZoUd|6p7nHgKYkypHXGChdPSG@e-5jlLYe{u0GdS|?Qk{ms0fytvMrEC{y zE#2Qx{$PJK_yq4pGto5j2V$v)x!zE$Q&VwPe51c+!fs%&^HAF~}}7LqTWd2%-|j^NNAd>&8hHw)4bX+E2)= z6dRa3%sF(LCesm*7OI>-qL&pv*?;_}YtmM6e51XF9t-0}yrXkT*Tj)78=D0VF5c9Z z98|K~^+-!45E4*DF`c!<< zV$?QT9V#S`VopmF*h`O|Fr_^?*qL2fm~LX%f?A!A-9yv}$fNQ+{-8{LXwJ4NG8dq& z{Ks)rHqaaGf?+XGq4KH>EFJO!iT_bM>9c;l15fV?uxqk%+44A%MCq?;f0>3b*}8CM!vJY9>lpenEd&284$js5 zQUD&G(DU||QOnD3|G^iFqjB`WTSZwoqvhvNAJX8YXY$YoA;ri`$7>p_&EhSpTx_uZ zC!kQV@_ig|(KApiW!O86N9pb;Z#2v;nJVJH)Vtm4^t?OfwqS?!7}|L zJG13}V!es^1=z5dM&`rZlRKSj#{fHkA&K=qfNdG)bZ^T#VVsLmFx~q_!-O}v7IUG0 zTwrwJ(Z&oz&BxueT1;8H!C}DdqOpcs;3sRONE+|VwCztO--l}q@o49FcP>B!8Dvuke3Hbmpjvc8c~DuaxZ~{RH7(4=+(j4ZPg&ELST3StZFdkMtM==$)u>zj^pCDqwr?#Xv|?!?D_pw z)X`98VRKg&gDP+23>5@6TpH^1io+e@VhOA~S{CpM2G(yn8qoWNWK*I+ zn(4Q-_$>-#948ZaVlLG&3hQG|W&)NAOdeKIu_5AZ!<@;6%qT1=Kg%c`y-GEL->9TY z%J*OwpxNwyvx^53)@5G-PWCwQ$9fYAGU#QI0NHRHo}*luhN(cF3{m~C61(!-ijA?S zreJg$56w7#xhels!pYDBBoqzIhYEBmv{bB-^yG%dHm{r*@_6DPG2#luL9a^~5hW9t zehk|yEwS0@7$V44xZ;#}Dw-G)P#sb!#jGA1eO-G=L?R1TZ)(W-{lTzCUNU`k# zS~FAr8vAR=E1dteJ>Ga*UgC?#jBE+P0l4=zgH-x#?8 z7Ry$vFZa8=J|!poVf3CoHD_)COrWs1=jPx|0)K(n={(s5*)R>aJbK0()Mz22fhbx_ z6aHVB#6oxT#^xAr5)2_beqa&uijjYT;-_1bwejv#>n`iX5t&}Jpf{i?Jl4x^mD7Xv zmh7ZO=n%>>as*c2J9q}3s%CQdAG9`!|F4$*udV#Qv@pf_FRlB>Eh~vH(W(-1sTTde zS~IXEDT}~X{J&a|dV$w=W3iEb@NYCE^t&S{TDt`yLW0``aHjsWIAiA*ay8tfCg3Qp zz+N{!r8l0I_}?+Xp+S~W+OGSeujvs2RBD(sTHG+K^7H-M6}@pyS|}umxqc6{A&Lu0 ztIJsNMN9*o9?gr_ui1*%h)T6(!7x{LdZvq)O67aI7D27b?p^|Y3I z!vcx;K9!hA%Z9%&atBnHyrji}TFWP&zplzy6Ax>{H*6!I82;_GB}N+o8T44Cqaxakm59LH z+J^?_)GjnI(Pd?eFQd0 zYh<1)(oC(=z_@Ml4vgL=K;BQo+9I!uvza3+%kTHXvh5*zU7%Iu4`JN1m0h}SpG`2GmQ7V<_kD`X-p986@0#&==bR&4#!>^>_L0U#uK_(fE_*~&{evJE;O_o&cufAU z0Z*(kwXmq*c?K79sZ^IJP04?-NWPbd;s3`8dB~QS@5%my7Z?3S8*5hrCP@}fVMd+W zC-ErA0ppBMCTRoKY`$ohu3P2vlEIk zPEjxs;_-MpY1^m)aVSqDhDJg*k|bqUr@^*Es&8Vh6o~Z(W*XkNG1>6g7Ro%SfOJ47QxbL}<4Bty_`r-} z1cW@?^501OR}Cl?{{%IZ&79U4PGc@jaf1cifjABmR>@n$s+1h$3EIgWyvFJ*4@h zBp*Ga$N{0n;H8?#a}{^Faymg*jTixLA&dA^ox{en0nAHYny|6~?r$q*Pl2ooR>xMm zGr7iDj^%hjTaLr!`H0pVL!&R(0kG?8+y zPu$i)zv-!~m85jy?v0yMw{8?=r)F1Lp#>Di*&9`)h@Y2NW z*sYl>pPjwRfupOb!1Tn8F*{^X(p+=ut?3(furL+7b$!xWp1A(j zbR%zaAs=wAbW8*WEEJcDqX<%Nn)vP?{#?8qoJMB4sb!^%WdZt;Y{J6~R zJD(P?Z(U_hvuzvk!=2YAu1(#nfHqI8UEZb1308de*7Yl6*DqaVRVUsapSWQsRcq7C z)G_sD9k|nzSGB_X7kYE@>Q(ipw#TndO}AKv>01|Byo@RL65qTRS?0q1m_h)`!hKKV zasCd>4^ASd`T~#ezjxVw<7sAj3*~O%{@eU}M}JN7@f`oYZCaoz!@cP(qEFaXwWMCSiUR zZE6cy(v+sEY*wu`*h($ctR`8-YLfQz<4IgO1LR}m$g=bXo#;)z9n0}%qZ`Oll5T}+ zW$)g?)Vv*m@Q_hUFH&NpXf<&OW%M$;lD4Dk?MUZsN{Z)=+@X|W?)`1dwzbC1VH1bP zF=1p(^zU1n@!WBxl-#^g-)mdOS~8WeTx1HL3BW2QHd-BRO>M4bhsD;%vm2#@&NoY* zkaUnfoO+jC3Af5CiYwZ+CJRxzyb8G#*a-CAB{b33Jt zU22sq5DH4`4x}arfo9he#;A7q{bz_6tCB^%e#uq^8Os{r!f}z zJhmcZWd~+Gj~&QO6N;X15R~$s-%X=|Vi}r~Js#qhU3!UAsOv=|iJhk*Os*-sOkrlJ zKa*X^Cx$R*YmBy^RvEzsXy#Umb*9jQMQ30_W;_xNXOM{E^PBP?LJ);Vur2NP(8jrTsbab7PUj$hixir%!imvKMO7}=3A;0h5% zuBE!I(&L^1djT=pMCe)C5U^t>Vsz8&1>9KQ;I6(cj}XX*GIdC6@2@+^g9tQDw-z;I&t}jhCZeF@Pp%{L7FCtGdHXo~#stAq59ep>#MHsM9 z2qON)6eM(aJGs%7W;{O3l&|L$+2E6GuT>Q0ob%-<-8r5Ow*1JMOS21$4(?|MKHG*Ijp{wn6Bcw>m=eb z+5+Y(I`%J9Xo@idlS8&&s$G5^+z?_eT5!2sst+lIk_3UZDHNqxEYo5D5AD2tf!Juh zK($jZX7^^~M`@J!e+e;g9^hU{^T%>&sC-$X`E07vlSE1l9GoVq??x7o-Q9EWiYn(u>y8}{2p#Kq0~>@xWMLUyBq zt;RA2Aosb&bM1c9g3V%$faq9t|CE{48(XL~6{28ok7k2uiwV0BUqq=yv*oO2bFdI*UuL{oTS?PWqky8ChX{nx4)3eeI zEtO~wN{ROtDJ?!K6$R(MU0S5{;zc<)pUl~ACYN$638QgfH7JhS*y_n~aPMA_mILR9~uvTYR7Inwf>g?RwPK1MQAyvZ4 zN;Ls}6REmD)B%sWKnr-$(}RBlky4K#k*yXn$4 zVW5YP6yq{_Xim%Jis6>ZoMt+m$hK_UbF-3BbX$cGEsxSIPa~Fr?C?{mrA@iqkGol6eC9v(g6XK3zuj8P zKvbBR)%7fUtk$)pxNE5^qI~m?-EB#Q3{-#5fV#28$!=Y7180`DPvrEv&-(hhOdUt> zcr!DY=1;|T8_`$ygK^^-uuZ*Ewkj*DhaW*UfkDu1~R#cYW&C8&_uIwn*C5yE!p?X>4Z9A)A%uh%P3DOdAsJ znQ;eBrN5RTo)LYzW`bE*9v9~Nx#E!=i5;IHINndKq#gdq3fV-@ zSj@ez3);f>E6UkGe-mocIVXIJ78>=C(`c-;j zYvzW6y~2&w=#oFn;!I1rwG7^8=Z>Lyo;T;<$B~)G96u$M$bS_cTqTfI9cYaqc@3IK z%#X+Us06Oy0VE1QolVT#P91;+TXyV#WE(>~k0rEm?wuZ#BBpd>eOZwr#=y$&qbgpL zX``hgwaii;%(sXEh|^^4S?~hRIhEn(b@THF30tB^1+LY?2wiWD5lt z15xO7%;{M( zvSG$W;?^N6R2xRBAaEE_>cOaAO~gZ9<~W9dM#5K-);XhUqSnW#+N-CwY@$}IWht9? z!f_2JJ!{aD+>&o2Hi+am<(cK73ie>7S9Ov!sZh$AtfY*_rfUPkR*3!7v($P$wbF1c zJ58ZzHdM;HB3{9c?N%^PC20}q`Ov)vkOgNxlzqVQ=GP&+$w5v;<5d?XeRw&qQ2Y6v3HB zN^!eg1w<2a5b0E+g|?Lwa?pLOFUJ9!+njHX+IXp@N-OClx1e?li_ACcjgr$L2v1Te zdlJ0-IvSN~N~)AHvM&mR(P}3(y2Hgf*Ju>Y?~`B4sq^+OCH0${9e1HG!@!YxkAcJ?ho^a+1WoE2798ZL{m(wXt{lhru1X4G)%w*PEgx26j+twP1Vy2xWiJ4brh*` zxRMxso$YgZV7!MTT#L?XZpA1%R2@s4Op(=-r8*564~BB_KFZO!J5s|2Xq>o24(V?$ zp-u3Wq#G+-VSD#3R>d?2`f;U@ab_;3(zN0nTe+h|)b?#n-{*mXOL2CIpNdvkxdL8tCcZEEYhU6D<02UuBNx<^3y z`*I!1dHRsSwXeeNljcdRD*N3vc(p=;Kr#@I=$7Soq{7SrbjoEiuj*?Tj?GeHxX8V+)M~EW zZ4+-0Z83o&Q*N0kao9G)<|3N_|vwO;ChzGB3EMdO#acxQPLSI!EG_Bbahx9_lF(yETj6N(gHL98`fFJi&} z?aR@R?o^9ffAd_5=8|ix+K|qYF?nryUSF?`cw!uLB1slw58g|J4To~ekW2C*eLk|q zxSNZZOl;N2`0@rk%Wh+6l|A{E7P)2j`+y_%PKma)Z_FVcaB;WlG(oUF=oBcnPQcz; zp%!DFmBAAWO}^DKxed-}`P?PWPXBEpBNtg~wi_xf!{xEa*ra1m{qp3E={CqkXu{eA zVC87goVG<=U})*rx3`K6lkJt}RWE`r?zmL4nXmk-EyhJO=hj`ujh_3)jqZ?d zSxh_bkRNTuaO_U%5F>A2`Pski?NyIDNnVE*qugGd+Ti*k4qoYQr}_X*ns{tw93jhC zYo}BSw<_wOrqZsUZNIf?p(%S_E)+9V#4rtPj^f8*#gCTCc6L%t1zP`Wu0xi_y5dVtzYb#u7ti4DuE#mch``cP@(dT9i(G#_70jms@YrVYGV`S6SEC zq{^iZnkvN7_>HkxxeT{$%Nd*~74|Wv>wH+l5UP_(kedxgx>ft~X}py7i}u?N=lZ%u zQs_v$-wK*aw$yZ6C7Os_5DmJgg0qY9kozp!)!I4-QS=#O|44y}_KNw%GTOEOF{&{7 z{LC^-xH9One!_|a(Dm{bF=*xwjWV20^Wc5d*a3;n>5^ym23w>rJKI0be15VscH1pPoP8M z1N42cSbpLG2bKAfq_?Or8MDn72yrQGgYsJ52wk{u8_ThOPEkig6Bk35g?LpS!Il$kj`JJCoF zR)&xQTG-HOI?K@w)I~xnQTTL=A~{86&^A)|Ong-6l%3ynw`JU{EvJlXRJE;*gJgrSe@Jj4a)?-LU19~Q}?1nfbWbDAAzwtWK4Aju0Fyy*eZ6h~T?OtU4-n@hF{`;}8N9nuaQ-0*jY zPVtK9h;F9HbrAV2KW@ef>nme{E1!hzvGiK{xR}dUTTrYkz7`hCO;9ZrZV+lJw1mP9 zO!UpCfeIx{?at|&l9g25Fx50fIso(Mtz1&-6rST8c?&;}KFQ>l23UZ1^jjJWCe)%x|T=fi|RyW@M4rw&sj;Q4@61cd&0LzVM!<$ZcSr7T>yLUb9NEhZd zmW|$gUDFXyQH`yd(;^p*tj<+blZGdi)f4n=eZ5B7lcQ47N8py?)jB%tXTyC2`q)jv z{V{0Q6_Ch20oc60?ZV%McRLvFD$Chy+t7kFUi77%U zurk|rM`#|3KHY(Q zweS@LEq1{jfXb%`b|j|ZdH&T6+sQ;ImETe}+{|-$*jbz-kPool)A#pui4I|XcB8s~ zpl>C9L4tech)3e<6pQfo?NuND9kC}$Vrx=fhl*nue6co6mr88b<@Gw#7)$hGj=j@yQr7=)yg7U31%@qh%0PdqXkk5oN`% zKe=a4Fw4uT9J7)-_C7MmeGfX-ke=sYTJSd^M~kG3^puh*ct-;)?n2Qp5)oIJk@b%* zv*0I7jYUqE2pYvxf{tqy=ZnB_Qx9z~Z9xPLn%Qg-49hxFn_@sOt13E>#d=m=%!>74 zT(&D%EXXxJrs|DyT%+;Cl!FauEu?og;p~0cZv+)G*&;b?ZA$9iUNs+k$U&=yVvve1 zS`^^)N$(vRk!5Ti2-gb5n*7Vu$Qt`XHH#I)c_Dy!)$tukjM7!ds9TlGj8j4RJ4Gs5 z@FGsguT5zrY38r70bQ1h(pkD6civINSJ0pB!qu2=AdAnAyau0i<&#>%Q7a9DGM(DO`g__b&&8xw2q zFB5tu(9*!T+cIv<%BbUZN^w%Zm65mDtE5i6@iJ_u>oUnMJ#r^nX&@^bHi>(rhM!-* z<8F7gVk@<>L3&Q(hPKLk6tDNZM7S3LD{o1@E;iX=W;+^61%#koO=f4y5g&Z@HQeO` z2%cfb1CyO~kyDq8i)*SZEg#XNy&GLC4t+}vKqpCNNi1PjA zIe6A(U4}3FQAdu=cAU4{f?zbd{wUhPk(|<5M>mKa6Jd)btx;OQk}Voqk+~jac%zW5 zpl5T>2u7ESgd~lk8VW*FP_@wq?6VLsfOv!Zs-28yBJc&m-c5uC(^xRB{DLJ1Vln4J zv-TC?-co&p)I*uYmEsdj@Qmc-S^b>T&-nm38y=>E|I3K|Ev`An<6z@THwvKC=NspX z{tRo(tkE#z8FXja2**N7+9&Wfm+x?+37}6WM$kNMBP`72qm=*-bJPrGm^5QB&LDW+ zq4{yiQzQ%qJVd$>?%28Eu)Kg*57&Z`NIFr$f*NKiqjZ`}uQ8g#Or@ks+KUgz9^)vY z{3$hHx#>icT5}vXf$dth`7`C*E%ffBmjDxNJ$B#dz~#t-r6EqW7`V+vY<;u3euFP2Fkm+=LIg7X0b z6P(;viJxwro2-%D@pF}7z489Ct8Y;wZgMESQjfPAk=mc`i2CJmEHsC6RqD;%R_YB8bR6Jd#{$E}tT|WzRjZ zr;<_<{d+1#mIqts#)_SsoOEq@esjICes^mmey3pUi)_7&K=`OOl2;?Ng?Yz;Vvvmf zi(MEm;%Bs4B(vXQC(mrN8}|(xba+}oD759#*XL*L}LY^b46JI=Avki(#d~^BE zmE-o>+1YdPYu`v0ZQS4;fsXX?Kl?5LJNuJ!Dz&(I-rJ;Kf;Ei?yp)@>mckoEFnD1Hm~PCM7o4qXOXt+d+}*_~ z5AC#MYTR_EBa_Tq2)x8(N8&|x*%t6wW&qp7%TUQ#ruKpk4sW3QavLy(@#&u&ef<-& zv+|R#G|uMfRH0+wEJ5OxQroX8Q#is|l*a29W@qOBQ>pBo>gzmcBh@tSUr#01WS)AO zu$zQrX_>kRBiP7&R;S8~t8o^>CMeSUo#H$XbWZ42&Q;*Vdqh+~z#HFNnB z!V8z`7xm=?`(PK?HM4#T&iL~Apgdr|A+UgGtj4=wjB2|DIO?DO^1+vl7!}bOsyNka zi%1Xc)`_HEVqqd=@+cc4M&rx#Ba<0Yqcg9QT!Ioyc6N3)>Jyzb0%X;Qh7+x-R<%-> zlpX=QF%A7Uj*`!pDAGyfI1+=D7|6=(Y_vX#yR=)(s@!yW6r-=7n`Pgzy6I(!?&8Wo zpeu^bi~0NZm%TUdfw9M!+Y&y3@Zf)?v6y@|R0=aI&Pz>dTU3?KHC1ZL7Oz>IW#brb zy|Qzm^7e8o*fuX~T#*h}BNZ!w&P9~IT#fe(&6M4+A}TKvt1fVnfVzrknL(GE+BBh3 zP9k1HW*7kjI^9J99a<~Se<&?Cr~WxJa-GAJZ&|P>el2cnR`k_MwjApPSnBdz5?^(<$rSMb}jA>wo8TR6do`b(n9Y z>yK~WgAWriF?yR1Ri^OnVh#=BxsBI*o9?>hnnFaB%!*`OCQ~q`*#&j1a+7R7FXsC2 zZq8Zr5(e9TH%5F!iV%UsZfoQw#UNXVb8fG^jhGvgJT>+aM&$-aYxX8e8@6sKMAS#) zg<0)Wh8yjedlZY!lH{C?#J7Q6Y~k^tJxlR^>QH&bc9^4RW%*;d+8AP#km-4qUF1qe zY1$}DkXi--nnd0B@}?M^8nvtcoV*>}&P9 zjlB-?b6U8lUi!p}H`>0ST>Fyv!n&O$HojQ!skCukpkH)*>!X`7syaDoWk-ZjV%qeP z-?dMx)K4_&Fal8tF0WQ!Id`@IGx6qwl-Bz#fi+*P=CYXkWJ{q7 zakmW0f)~9Z2hZZBI3TTy;ws-p$~w%Yxve>zuUyKQ(-LF6eGe^@bG4WXs6}h;wA7QU z7WM%M5MvWgdX*S}#ZA7~%&pU$GPO^0hvpEiEcLws+}iHc#TL@FV=&dEyl6+mc>?k& zNM$O0F|H9gnX)?4oREAiS~$~LW#T$t~jkd-#gT4nU zM>T|J`^TC97}_HBrSccQ)20AK4VuJ5R3$rJ(nc}hUB)}@1^iDb*IcX^)#}|Y3e|eP zd_D@^LS1sp$JrsHGCRoL>>f2cI_utJRLsQ{*^uMJaB-Yaez4d|GRa4Zt8&vv`qJkP zrR*ksqPY?V>oQIHpQ3``N)TiYMd6TZI&kQPIEtB!LKm-r?0!rJLv*j>A3*j1de8e$<-PMK%~ zt894ti|uGsW?Mq)O1c{Uc?^&y5acoz!(yPRl{Al);5yl8uy1H?GrhujbI1q_W#vSz z@z5yKt5g1FTAMI+*DB1c%XL`dA7X35bLnH5v0av~EQxtTUt^9pzP#v(J&I4p-ndNDLW5sLO{26bAKRIq@#sj_I;f-%ZV0sof` z#-QH{>N+=(D58t;vbh;9t`kIqM0F#1nq16*OY5A(c3}lUF$4v}nO~<8+mbo=(M<>B85EA!a_qL#{2QD z$n?DywIdtI{D#R(-!zky+^Cj4=gGix*>7fr)gj)^w!7Vhf$j*e{(g>T(s!ueRdBp~U+ts+UPnoMRRtgG4 zL@Pj0X-NohZQNzp-im8SsHQGEHTB8#6$Y2CNy(K2xMb(aZ>{N~zmkG0T~v0q&}wsA zv7A`|`2mLF^kdG5J~T*;lY*-`{UQym!eU+S0b7K$*gM_~Z%EPX)`&H$w~EDAq-OD< z;L5dmZmMTbQCcEj3`q*D2-jFI%>SZ-Te2VPL%RM7+uTqafg72#q1jhqcblEF06G)MeLxR(sau02*uLS9ll$&xIs%tGoGnL z6OJmlM8=jt4f9M;mvx=Jly^FrW1F$1amlE`&xeD*#P$Ig-&>gr} zHSU};OArpY%Ubctm=iY&woK|jOH?=@gqBbstn&#j`Loz!36H5e(roYzWYzCMVb&wi zSXzWWXUzeqebb;wONN8bG#d*3UNRm$LGHv-GkV1`TD`L{M~q9Mm5rL;&jhLb+`a(=<~BcGR-QmT%|Hv zJTE8pt(1`yWsnj=un00PuLfu+3VTGfbO7CnXSjB2%Wi6Ob>%aP+jUG95M7o-(@v|T zls5F<(w2qHo2zrI%{>}`$tdtb_CM6^t~#awp{wkg5Al&Y)G1IpKE48XwF08FniVaQw9SHa zE)3@)oR;;|>X@%1Ew`K^QLaSKf>M@%bm>)WzDWqhT$E`0sMIS)p3!w*ZO?50DLJk| z=;^Ez6HmV0N;_YqMd?MF`!JOIikx;%c*x~6nm72#&M`WLp+C+ zCE_gLL;kBKuSl-eMx%HtouyFiX^+))b;hHZb9vinaDy{UW*4$rjw)bIoUAyAizPL3aoEkC9 z%X)Jo%pMbMG;O=&xmqv&*}t++wRxY$F0qh@m~A7A1Y-pspA}^IZLCgnVjtq{bLgENYVL z2Cj$dOj#6*?m)O}AeacO_3~M1e>Xpjxf^pUz*U?gW4F{R>gEIq=k2w4O-4@6d+b;!#WwuQd`Fdy z-exx-ySzn_xiG!5xVTYlayx%E(?j;oqIS5^qT{)KnFDvjC<^SHIkeAU*vLjU38&06 z6favkXD}ry@8{Awnhp^ej-E&KQFS}W#HAihp)tNXk*}cbg-IEDsBqH1^o=)+)D4|c z1<7SiSV?W3V11NQ-r|skID#CQI;c^&6c!e7PujL4@>e(8`?r3OJ`0O^agsBcD^XB$ zxV*5OS=<|MhB-U@c)r&+xz6pr1$O0DnleyA&;vQ-THS7pDj?xvOafFNaaks$mwgkb zkCMw*6y{by8w019cFMAeBAFYh5a?@#jP|Km+=hZrpVLg*e=rKR*RsA4q3Lo!&H5*> z`HVN+WfauMsKiq3w7wmKwX*Tz1atHH3VO<|$>jC-QQOC=M}e*66HGk0k{4ajb;R;; z(X?rx!%cV`J8c^1km(Wx+NObXopEi#M%y%SzOx1(?luiv=&S*xP@4u`?yLbECv6&d zrLzX^7Lgux-gO4o%EUh3Vm4_C6MASFVwgLTqA)O_aiQGZbJjx+rxibGm%VE;CgSBVDF!eq z0Qnoe&JIUMTW3gSpHp}lf>D8V^->f7dM3fs);|$u3eQikaM5}EJ#tW3IK1TgtHGi_ z3HqsN6Q&~6`vFjJk`@C{hPhIkoT5@4>di3RGZutb8Sxo5H_Jmlg9o!V<};CB6>F3h9$ZlQ(YI=v*d$5kUH!SJgI97kDPaX(bD01~Z=m~aSQ8v*<)2 ze@)xOXU_f{@GVM>8BcvlMg%%U7Wf4T7luY0@7j*m_d~?tC+25Lg0vl>V#9uIhm4+n z^qrt~joO+x_X7lMwQZ?WqJQ;gjBjaRV@soD+eZOUdPbRDMy1kYp~q%^yYK#*+x{)) zmUe(V)@KZMV{7g(EJ8{5>qYyB`#|vTxRKTZd`(-HO#p+c3V?kg$+i8)U)~yP*;@jU zRt(Jow$_ZXa2hn`bRA>~x3>`0wbEyVnnX)z|2V}c2*<@Ann~fjcHinn&8}%KtL@HK zWufC*yK`;Y)z)HjyW+6(RXH7Bvn(${ggGM1O^bHC8b9Ux;y0~zXNnW7_HQt?8a1CEXf>$p<}WhHbD!~gp^YYMaEXmKUgxe?s}YAgXw%^aWjR?+BB0q zRAJJ_a&&K`Z23m&lbyaYcJ{){fkQv{a*(Q{keGPDkCaA0kc(u;b=;ZpN(|m^&fRA^ z4Q+$@R*~zFb{7`e)wjv3r2u5RqmlVv=>r2*^zGjAoeb+YHn`!qP^qg8~nkA|qe7a5M zg|OVASqJlL)5go8!*G8XWxF;yG<46vn%j&bp6_^=llM$}SiIU9B*b{zjA5?B7GR!j zTDZgY867sl&AMi*!qX%g+cZc}S%>Yl$DmF}gbv(h6zn2*;yXBtuHB}EyB)TGv})4= zuGh{6fj-u*iS`SJe$!d&=qv47$9C$l5xi#Y8tKrUKa1b2T@xL;tQ_=dU`fPiaaHdm=ZqF0WbV$l12dF%uTh7XaIS>!`#0DjUYu*?7AS$ZX|xh}=So!3D!YX5t+G3Xa0%O5 zHPa#Wo%66B#ra9mKt*fPEI z|M~NNrH(5+d2Z?u2LuPviqGm=R~X}njTJuDM_Jq2sW> zU}|+tvh61vV18x95_&R5gxdgYkj2w#w`A#Xo>Sps)h)P(UrQ7H*CXr^T6h$(H4nYY zhW&CcJ0ixlsq0DN`-f>I+886(#zzQ^>Y&?H;pT^~FwYW=@b5!(a(|h-0oj6mz>TFL zOiY9a;U31scHl~5uCiVT!}$8S<(%JTU2V<#eV(=`H5~W`J-^)Ci@2Y++(sA)VOb^C zsJl+tX`a7G-Y{>Q{Bm_DW#6?na~?ONQbX-+Ss9gAtxfB}Yp(Im<@1zS4)60!Pec-U zPs>exwQ7%R|ERsfe`(*-v18Mj>AVaRByw^`95ReA~ybo z)iG;#n_odwuu!jp<{}Ulthjxb^6OTPJ1hBbn^pvCmC~$+so9`ku7jr)K|=6R&l>SE zqtHAU-wCb8Ht%GyU29oA2o~IUM@^MqB1NOZ;mx~B34+3a z7p!i*{o(Lz_)>T&e1*SVt3STJgiYKbNze22f1Ocio|WDn;{tTjG|Op&2v?=@9zHt8 z-vry!VS*C#I*WI>f2Y{A2k&b#utfaXoA%&2KYw!V>YK*hOs*zT8gy%7O z5-_#)8B|U}X$AE+k0{k120$8-NXZFE#FoZ=mtMty#26FVsicToEJ>&?JY$oQC&w<~ zLD$}&{HOpIE^O1KhLM2cT+1g?#vDz3+(0Z2?Zeh2v|#!bClOxgS=b~1IHBw}!Pb05 zAa`UCAk=2!%^Iom%<>2%bDpJ~b6ZIO2k)@SlAWTpIm=mQtj)adOF^J~4T3$(-)TlK zx)C)t9E&EblphnjT=Tce~aj-WT z0kY-5Cqp>qtmIR)ZNz`{bCl59t%NUx@bn~aTC)eCpB_c;i#)x>$X6%@{~PrB{jq+3 z2xF6sT^vlUeRptK_4}>`-mb zfE&}~CBBhxB@=Jzh1q>Pu~DtF2v4ga_8`nqkI1>tWjG6R!rUrn%IlagT?EH{^UTi) zTDT>Oa7nA#tk4Q=KO;G)zLdwU8@4ujD$gM7{^m7`32oLXEY#nk@@>+Rx`SI4AtO;P z1?3tYO9+daMcW$o2qe~yJ@1!ym0EL#022B$^yvz~CE69TgG9T(-M;A?Ht3|Ih}k&x zB@7#e*C%~O7^4Y@8?+m0bvVLJt(;?0()bcpNtbZFOY7LR`_I}p`{N#Fc?ATw4>iyO zLX7Kxz*(Tc!_{9*r7VGj^yN}g+=LIRlTp37l#pAXmEzS@>e+IScdeYW-==cUm&-}n zmg3~fUQ@}_<&u|J43SjApj!X0?pJyWoWBe1JKNl^pVa;|j6+mV>*r}PK%v?O|B37p zYf0=R90;N7)g3Tf|DA@KuJOx_!HoS1|GfqUtnw=sH)7+`*!;gYL)Wvd)x>7R4@Yyk z*$_;#X%?7SZI(XKTA;O3sU;Sh74x#n1u>jH%h=DLW{reTAW~kkH>JG9zY)aE2&sA> zL2QMm6Ep;i3<<$OQ21;Jk4l$v#Xjk{;gx!tM%!$}h^ILbNAqg;zZUnCt|?^J@`#rT zxkbx|bPWgi_k}W{IVrh1e34c}V$!{D(Vk!}*_0)zn;7Lf>RAZkV}Bm2 z@E$ezoDw`-a@2)SI3&)#9Kw_o=_F2)W{}`jg;tt{K!!7g+i}W5&ND|%TNu`%5EqNcFkgju=GJ@e&S zS0;gahRbEzQ*DjmE!uKT=>|_y&sE>^!U@OpEn4L;2QyXg;n4}oxpH2l9hIcif3E|J zuBWfif}q^0zA^pB>TOv1k>M~JTk1M@360|-YyAcR7!!^Gd%xn2!^U@gdh{Pk4hbVEE4(GNg zoxR#xXY>0|IPj_Vz0@I5!=TlNK||_6bq;?Ah`c!tW{N`zrq12>qlPlZyVp#RkGOwL zygV$UUK4Zn!qSGZO!XM^(moQNfd* z7>P~~=el#W@c<~ovmbM3NG<*2r!lRD!^h&>KgRQEIFhGGE`Ka^9U1{v^TrJYGoV7s zy#BuTBI_(jar%^h!{J4vbx98Khu6qirZvd{wR*hFH9G<^v^VbXn z5ott8j*C01-v#5%e9^~NRvza}4UR1?QKUsZ2keD?8J}9?Wv1)rBj@*-x|c-|be~Dr ztIa(KzobV<@(99GmYs`BjwFni33ioS@x?2QNPndtNT1jQ0y4*a-N%3eaQI{=rDd|K zzf07W1P}zlnPaz*v2XHkirHTe;gp-B50HUnEo#hYKRhwTUyUO3rOznZI@+Bnzdx3(DcZe^&UU62^y*^K~U= z1Xdg2b* zhZP2sPeG=QxE{`rTJl%J7xc#wH7`Nmu95T1nSNj+8+$H<7PYB4+}cy_;_xjc@n2_wW8c z5imYk290Sut7RvvHai#LGy z+d$Q6P*m&;%%PAF&OL9i%f}=ZHh^-qT-f~s=>e}XB<&o0nSYYhZW(J4#%-_ykleTl z$Vzn%%C}*ulL_3X>Anle$+R?*g>s!q#z<$C-MY$?BU55fE|*707tow{Do;{OU~*kk zyBuNfu^-34>qXBt237 zkn1wx*?)-s`f2%CTX>j{<;UB_szrgeJ{B>^_%=fW0FOm8L|J>&jj$Mw> zQae~i$E4R~e?qv`OuIrTR|Ik^Vw9q^CyvpYD85X);i#DWC1d&MpdXlG|6$q1 z=V&-9YBw2tZb9J9CZ!O-6;3%_Hk+7JE-TDeS(%yAGTOB%W5~<7yK!4mwYvroVPKHt;z(Io*?x@^%H{^cXAh`*ObS<9polpRyT0P^o5I?)vFm zvsLSYnOf9J$uyNCL1v@I@kLu1hkF^)bEGc-aXIu`m+pEo_nPQOkPw9>syWS5!i%nF zbNPf-lKqP0(wb;HN9*48N%g4!28~ddv%)ysLX#<~K9)#nxsKzV)%9qivMb;;tvY>o zb=ZdU9(PZj20O(wl7pk`;q+6773S&U77{g%?Qoc8ewK z{<;hXpSb&R7w9C*-FjE@WeJ!nBeZh0QF~WHjs+J#~Dd%e+Ou&{q#L>ouco>@@ z-8KL0kH2aVb|$0tlNO}g}qOY(Uq20T9LLp zb0Cz+K~75P9X|YQ7|KFQz;GSV(ce8so2F-_$V*vqZbPM@9?6Au<4HnD@}spEPL0!oG`X@~?Ga6L1Pg^HGUTfaqnxAd{~aSQX(VBMjMmEG z1XG4bigdb3N%yI0u5+w{mrX<{iqgOE=7(vcj7wY>N2_A#MO!D*wqChhU;|U`9N7U* zEuu!%$*jeF(xM%SwsI_wY>gb;sg0^~Tj7b!`n7^d$UMi|zra6&Np`>1x`?}2(lFF@ zyK-YJnv;;T6fuEiP(w^W3_>kwX-_jL?PbW5HH^bk5g~E}IlB=nlf2s@itwMb>#7Wy z4?CnP4@yJIAuve`YB8W^o5iM2N&HW458r@;ey?5QSzKCnv5S#K)24;jTFo-Y(0d+} zfF-~QTOBN6a+ov)Ju6)pAd9K)4HI8*j;wNX^t=IBg$3e6;+Ns$v*vQ}FqGCoC}GgU zmG4t?({L{wNnBamXVMxI*W!Ip!Q{eMt%z-~jpsGfDC#I7h`2hEb}`(4u9=H>Ajm%{ zh{&fc9aC}p>$EO7X|)7xah}BawUPfm>4FvqRbDCgFDHxYjS`SGjPD48?uXT8Gg8p1tm7gHv7%+S`wIV5|F=@=@5`qoo2vSNKK)8^#3i)$1 zW1ovVyb^9|+}ga;Y?;Z?GQ`86W2;~ldzi1Trle2CQ|*~ZK@%jE?z~OVlwBm6YS5P$ zh4`@Vv-z0vTo?l(SUyK#N3zP8-QH{hxt2uY-15J6TFp zYPeERqzq}&(%U3he7G8ZLSE^i2~5qUec0vFVgy2ZF$=Yp$y{LgT#3^@2iH7<4e|x+ zvrbe#K35GyHX=MnE=RKcdQC)C?p;eStyt0CNv-rY<`_v5Uqp%R{x_o(@}Q`!C3Pz4a`BA~_?I%^V4)(6yUld7=R@S2o zj=!hXf5t~qwPqBOnD~Uoq21Xmb(Ml%{Jhefvx`XGFqfe%d64u3tNpA>3im}gZg{sW zcS7YP5o8R?Z)~*>DHS|DngdwjT~B5i;>S{xOePObUDkn|{Hxlb!iO|Vw^tN{9{OE} zmE3M#8KwAssa!2KssljfM6-|HawsbZh|1y&j%1n(kEH`!X}nHK;ZcnxYY*1aF|kXx z`RtwkL_Areu+)$HXkCW7{*c(4q`sBuHA?@eN($!^i)vbBgTKgPCQ4nadsJ&DjmcYj zQELJ8)s8~STwRscqG$4$VRNe0Bz?4L{0)^y8!yi(JSnF{@>Pyk^A35x0m!IUF+bib z_-c@I&B6Kxa^k#c6DmUG3D*LIX_+Hid2%$n>d0)gtnO&BDwcA}$COs8X(UEDO}GO_ z8x&b{hoP^rLqll}Z|^VHy=JQrjw)h;4^8-+t$wc4jHj}k!y#`k^rux5KC9){!t?JrEJd1@4#O95xqJp*!oT4QPE ztkVDF;gRJeZX5Z~M;)H-iBZ2x<|lIJByCx~+AEh3-bWgEI^je)Up7tALWE3xJZfFD z-Df5j9u5uRaajYRRk#&g`~ats(9^4OL)h?>=Frams1a&BFDcdULiaU7CU4PZvrb&4 zW_kceWtmD2WDZR_!KH%aYbd;F%RZ${8|}*k&!vQj#$|8{Mq1l&57*mRIs7A5XCso6@YkrZj8q<9Uq2^W+~8))XGq zqTXerCP||_woA-7oo&oxdxMBK*^uGm!gb+7yK{uBP`^S)uHoYh&rB5hf7#cid5HtK z&pA9H-YbkqM_^>}%5)0{2sS@39>SUHjLNxmnR>;gT(=T7Rs24?zcfK7n!eCW$S#)R zcA}f#&7S>a8f&@TK`#e|3x41GYDK|K=)n{G?v)?d7KgP7jnwFr{>h8C- z=7~pZl3EM5|H}YPmR{ATChji{OJJ>Aq?sosQ+>HuE_v+*q~yn!TVM-cu&#w!ZC%A^sPd=Y2IOLdFgDk32uR2+QL6TW~TfMu+ zp>?gdC-7Eldk?}yfk6}WCtdZRJQ2S04jr&)2Ab+9zde9(t?ZrN4}a8Yb=8{(xc|Dz z{PY#fgYaz!j~~?}TCLhJn?q}0kEU70U7wU=ZL7Khtw!t&Sh(q6Q7cNVf>_J*7B#Zz z;{32WOD8vvWgUN**F7U`f`9ftmbD{kj%6M%+LvD{IrKDa4R0o{qT`<886^AiRJ*AC3&Qw`vk=c^yGj@&iXP4CFR7CgcSmYE=?%+F1&Gva5BTaMaL)+ zo3@KR0z&n~Jj&AK>pB4AhkF0h{Ox*HBa{`Rh#E<|(*Qve(F%*4gmtfnu4ylq#I$hG zfgt=6$qRFxHPq`%usDAb_*~C~5nrgbd6N+cfF3%L_WYC9o{r9iUezL6r&@VDuCqGV zs=46S>iaMy!d=^u`K!T*K!jNuy4GG3@dzFflW%zmcYOVYOTr^3QQyY#GOl?zhRVAc zK3yG|TcsEYmP%&#i7@naTyl8;SlYa`r$*l1b*su9OT;)EdoUA)`x?a&SUwh@Kcm;UAjCLxek)O%MHG^&=csGw*{0h zRk?BwnsKBMxyf!xN5ce-Bn}j9AZFwuwY(4Deo5c0(!9qE!K!VsoV#DEcHWK&XAE)) zR0iY?y3e76>P#GSt7VrSz9%5Jnw;T1^42lmx96lu=-vCB=C9vJD=_$CGmXi#aLGok zB8{#D%{k7slJiP4NfAq;I_WS9N0bio96*zHvdK}3Y6}^ozmY-H42T>AS_W6bY&Ds7 zvP2b*tK$2bnln~KF(#90p41<;uZ)XKalBQpxx@&5HnCG5$8#_h=@3#oN^D^Ff0AC_ zZf#E66du-1buFuSDD;(1r@Jk*@{TvH`;&muFdb{2=Q(kl5xitlV3w?{Va|;yv`5$= z;GgA57}xbsfK*3X?#uB2pnmdUv%P6cECog^PS~Yoeo35u_v_*y%{w$w5{0A^0eRgs z0X>}SWUTT_48$k0Gac9mCnl5CsuV$47eV-Uqk ztwzHzPXZ|M2UhpQ=c3A*7ZG*%`KkonM`k{qU^mI=s-u^tfB-p?TMm1ZI?*BTs8q6~ zrX}VlP1*gd!YlV`3iR3MyRp7J0<*+-zWF%F)SZyyLRDtFRE zn&6}Z>gASe<=J}#9nX~m(#qQZb44snt)`75Yb#=BrE%>3&({F67Q_QT6DWMKGib}+ zb1{${V(1}=baqk2|}Dv;ZcD(t=U9~*=s3k|zH@O)~HeT8PC7GoB9)a#UUi+Z0{y*DYp0|5$W zTv#>Fzqv$Ff3Vpb5)S+{y59G+K*<)=B2@Q26XV)nLM3CQ9V&`nq%E1UJeJz&3^?_Z zcS+pqB&A;7Dfc8xR;H3khSga&?o{oL?=Q3y{})wh7;e^RIO%41VP;}K>bTW@rPxp2 zbaPj@n@aA3($-p6r$cc`?OWu&%~~FUVC({^dR{?@opc>{T??g>9@2_yYL#Z-&nhSF z%g@5L7Djm^CPjR%QOn8C$+j9G&}uch_P#l3G%luHman28_mQh9x2pwd`LF%#PIA9g zg+Zfom@pmLNI)nfm;>Tr3YJ#Ac?(|?kw|lN^Bsfoa`@i%gyD-o>3ap*yia}Bmt6*U za;E0J3N1rgS_w0k^7&kotCyOU5F~BTWQ?tjs+pkb3sM%~nV7^0)n;@5VDJZABDWup z@a@zjhZEq+!)hK>XWXQ-*okUC36QQqw3>XrvM4W5vOSv7teNODeI>wUepMZZ;H4BX z?J|wk#oohE&td0|*GxRkY^%Ke*^1^hv*r~_b7%#n>TIOpX>p;OKXFs3 zgHFF<_^z?EXBL@Kv-#Jl2r1KoXf7+I-fKdHRu~-)OfvlcBb%vO=Nxt48sg=MkhHqZ z_#qzY_bF5dBqpbrZ%xx(=g(pjJ zE%8)MNx_xcMO1t4g%T-h(Ar_uldBF+&I!wO*^2Pw24xhw=-gR)WDc!KAeFA%YRrzQ z8E_!<5ovI8O?`@IEtDJ#Jab`;mPw8%d6xY!nzU8&PNlp{)RZ3YK^c-?OR=l`<&H#j(X2gKey{v6@Yq0oJ*_f+o@e?8JmW`7^Q zM~?J$A3V%QBM$eo7Q4R+oPV9SJ{sy%eqUeT$>UuIv}}TD`FHm>Nji1BtEZamMJ%(M zrQA7iaOkB&!`)qjJA*qw2efM6 zWY$!8E)3Z6ee)68-u?FA?!TnmpJ=Uizdi7g;AlUdzms z(flRo_*Vl1M@uiKdJi*ahV++kt^U9h_;$}>@O_8D_xpgs08{(E=Kg(~^7nyOclW_= zV9>3x{f3Y2H^7T8_a5&GPX$rP$)VlfGTi@bu|fjKLr)(+yT9?{2s;>urz>Es{(U>& z%xs-kj(2YT0VT#c^niIh(7b*{Kfjjfm&G62{l8dkR`^#)=cV82ZD61q+!-(gI>{u5 z9vpnBOI*8`)^>MQZ}+fsfuY?WoILze*8wtzcK=7lq zK=&s@_m??JWwZpk4LGB5)E*e<8}1oeRdS!FgL9G;i$XMTe}J(nzgIZ&_)!Y){!q9w zwEMRw9g%)W(_M(p!4LlE5hmnMgCG3qqr*M<1sU6Ajls1(xM~$Y_&MO&r?((h_B+6= zi+?8%9sKBCFYj82-_dd+r1$y{^o5g;WIcD*Sm^KBlKq~o)-QJt&Ygmmx=szy=Ew3) zW7=htQk3rzJk9$;csv(zeJpJ~Je4z~ZsaSbyxvD#%{*=XF&Xy0VF4QU8-wnT$RoC) zIehytP=VpVZvdvz{lRd+37O9k z^UM1AFZABV*6$7+1~K_N^vuA(BjKPW>3N{fXydyB1O5I$ zVk`=3l4!LkcRU=iO2QHQ-^aqKYC<2$M?J4k&tMCE4-Bwo-9{vTqZ$4$J&PJIk$jnZycri$;4vq}>+26xFKQi1O3-QvY1_uTX7pasu49Vna93D74e8|f< zAiBZI17QEDlUgHbNQ{7AbUgsXF9N|IB;|nA|JnmygW&o(q@Tn3IijCO^m9}{gZlZ1 zejd}$Q~DX!&u8^>M?drY7;)|$9o!o{WU4952QeefCP?7{3%a`pj`P%K?>rn1(s=a$ zo&NOLcO*SoNt6TqS7d`&2fR)ne@N~d+&jVl?aA7rH)Vm7Y5?V~>oE1vLY@i(Pk|-k z1W$vJ14DaH3=FvPl=Z!jpgft}%WB|P;K`_BBp)?Fm~#65LDU%GIH#n@M#WK2r;Z;u z@RZe1D(XelbM2w~1nTc8>Ag{j^z2i|yAMzW?&XE^!!un^bwTuJplOK%P-ZOiV>jgkmLVD4l z)a(IAtAUfpR26Mg2in ze~m!W`slD=cY*&898XQ(qKBcqcLvaq4x=6&R#{pd=zbv_kp_S{w)f7X;W3`~z5r(I z&Go8y_eqd@5sa;+w@4azv{q_x=O^lEyI*h7jdZ<%-h-!x_LiaiJfb7eKT5HUWdLQ= zhhwiW?mo}pi5Y9SDq>CfD{Ovn#~;DVN5jBROqvBY;=% zVJV+67Rukg^f9aB>0yMjij|NY+*<_+--cOAaV=gV#^0bJS7}jX_ipfLDlLm8HCBt} zTpQaJ2}(0?P|)CQt=cMvyjZp*oDlo?(B69|O{DE@r{&!~JluU!8AE$J&Ii9Tw6|A0 z{bKR-OO9z@5f1&b#I?v|_q*M&D`D*g_!voF17zOA*EBFN@10|a2`@V!DmU|T@14Op zxGGf0&<;VtdVs0w@3(o>6n?ee;e?rqAR5y4~O!LihvhGdmEnH1I!QebJ$GTz2EdX%9P#v?Pw&m&Ep9&_D{kPdc9l_KzI${O#dLD%Qfk`ma9O^S_~l^!&`lW1(mFzx=h( z^EiS_Wq(&czt(;5z;{ky^{1jXJT4V)66 z>wjEw^KshO!$3c)G0-neIiM*%-hHsY=RfejN5f&3;PJ=1`yWT3?R|@Xewn=x*s3h`@NyP-$AaW=illhAA0{ab<+JfHTxg$7qI@j?t_o(?;q>u zJNo&(o_8GdXxPAjRfL?KA@K;Z0XMK7m+Y)+sQ%0YDx~!G|zUOC@ zwyPhK_!-vE&rtc`!R~`cdWWSj{M=03RZ78>9xEeXrQE{u`pX?BN1r?U~Bk zf_w+I$bWI*AoMDJ@PEQ@4nnWEwhluB{Lz2bpQ#kX2fFF)_~6d5)HBcO8Wild#~(U@ zUNBB>g(6#5sUx%*U%Ll~(Y}9}-qP@0J>Ekl9oqZ%CLQ zJR9hiA8o*m*1dN$e8!|noQL9KSKX*!Q25Z^A9ka#2>t)i6bIPAAWl2h>zlYs;KM_E z-|n*!?Eaun#HRn@sF0`2oR_P|(u;(qQfW?k?mqfTM2VB=Se90x2*th7Q(Z^o_8D5$ za(@@q&NL2Tm71_bW)0&X+>sAwb!hKjf-t+^I2vD0k+b`a$6$cU;?1Nbe@(xB?RYON zgO-5y-kEGGawT9C}agSO<;X43m92L+=e1St&(S{iu1#po2f_9fn^1%=zD+X{r9qv``)g zKlo19@vgzHp{_@}exmC{*GHVKeeg%p7I2TK4u92T2?qRHP%Eh3`(535PIPk$d79~th4x_QX3 ziSkJRBTG|bVOXI<*wm!_fT}2}Kfsj&Qp!{IAc7G+!iX=q#6IsBW79?g_c6fXIL^AE55A0p41w3(7rXlh;gFgql^$YR?C3EZ9j(&o4-xd`zHY6; zDY@NPF#Y|3yl4mt8r+2&4Pah&9X~br!P`S0+`}CCOXQ8e3qh%NBJ_0O95 zPfo@RPEG!UFAI0eKef;6en6@5$F=#ZhaF3v4~H*N%8xXH+giF)DAd1$ z@_=oF$BC64`qV&t0*Zgxg~GwQ4~U?;295|V2Jn?`$U2BLw{HxPZMwE5MTb|j? zkGl^Z>grO78I4O8+A%G#p#hBm&tAQoGela(1h{;Pp@M99Y4;{*m6|NM&m+54-bB(g$LGr^rbP*PN^4C6<(Sqt%D@2||p!6k$)v-<;$ z`IaX0Peom_D_Q;im&RDhCC)48uhw+O_P=EmPqBM(*9zuw0!r$=1IUZB}EbyT>wZCOM@`};Y*;MVhH^^0Bp6{6`bV8$WPqkv4 zHp0~p+u$TvnYZJsjlKS18`GiO>o!)MMZEN3t4~pN%fLDXsAZk-`(Yc|XJM~P2@nLv-Qzx z$_n{N)4RfZ!`^gujQbxxOcjUE-3Z6?53f2&4^=#BfjP}XR3(8#Cj^^ux&;#k1(UW$nk+VyW`6K^=GWV_o?Zr$1Tmy9%gD&^&UC zG6GZ!`S28Cy%t6v*5XYLjpz&XGkijFlE0V1^_zf6Utar}hgJ4D_$hQhVyTbx<^vEd zdcV%FijQ!J4{(*gJ2B>2zD2riqD$Z!Xn?$E~QZ1+29Rg;O^>YnbQG8O06Pi?M_w${NzkPF3#8cDF5~@Q) zu8t_Nr7|kt1U#;1G{VJBM_ksq67{cx(p#N2aSf=o`;bXZscend-h{ZqDm*?Bk*}>E zrVvXJL#av7{TeKbi~5IAY7(?vQ$h>{lXi#%Ns#!YE*skFBS0?1-asannO;h-$-~y8 zNsT)N=xqsV5Zr3=aQ_D0V%0=W3&!F*T&L7~uB;%aC1dvDpMsOikq+sv-e4IO66_kG zL&j8Z?#DzX`;l*lW1E3jxwMtE@iUXcti*{g!q)^t@icv7zJ-d=dPQ$hZJuhf02?&0 z)hV><6{Vsq)QlEapTvV}61w$>l61N}&Rle)Pe)yrZ2lY2(M~jBmmmdwiCo`q(xJ9Q z3e84F$IVCv=bPC?@#W@!wzJXbJV)z>l;b14`|zf!pGotPD9T+?hKo#D8mT^@E|eJO z-x9WbzAeYQx%9AZ$`*$=GDf5N2BqKAaE}hI|2P_Xg9g_bA6ET`Z_X!kk&)@ z6Gy^)_{N&AGf<>PAgA_w+iCzc+l;!;^j{J^(GSA=(ySq zaL@1971{kvr@b{}UV`zJ_6;~EYXDpI=l}Vh_8{JpYTH+P4a=~$$-VzS{NO=Ow%Qw<2Y2*lWyC#D^)Z6+NVaNwi$Z$BHYUj&%>y_@kbq#`$vl+ zO%C@C%^l`bhfsk@*IpoZ0!J%_BH1-yMQYOJYQBylJXxs3)230j_I3@$>7EGCgw#B)My+N2j(CX+o(Z?BCoja zJh2g3vJfG))_a1XxG0`bTK+dJQ-9@Xde6XlfHcQ|3?5u$FmlUN@_CyB?RUIZj$3XRS$#+Pt`CJ~L^mY-68X~kQEn3}>NuLj-I`uEk*8zQ=W@Q=ha#tIA}U%L z^8*SdTz~OyAZP$eqpGFC3;t~3qtQ05$032Hr7Hdadc5JkGJ3AF1>W$w``}7QD!M)- zU9O5Nx8pj|LP)pzNE_+NK0lqRc08-ji|efaTfkcpzr0g(Ez5{3K!=fT@Y=&;BOJKE}xaKKrbQa zMKf`FD9}(4tt4p`!`ZmxEGyyi#n4jAir3s`WV3qsO~tF{%V#1a@mh;e6FI%2_XciA zu9B5RI(jMi2eQs&oSVO9Yg%jE2!JvbC6lblr9gfjJV`fhw(cobUL}h}ah_R{u3U>W zVrde)j%=RTyN+z`@#bCIP(F+DqfH9X_@*z}CNlw$W+Be(FE25Sy56Fsx$p8t=3j4- zoJhS3Bt%OBBO!ax)eCj+J0a=U-FOM&%oT7`71xEkYQIZq-j>~hIxur6Rxc= z_hvNjhH<<#txj5uWc|6qrD6tNZ!t~bxrUx=uF@n{=a$~bH-&-M!MAJ>Go^PKMC+Vu za{0087;v*ft_mcn%q*Mq$BJ&+NbinutJ`jGsd#sPwxmX(-HxO_@g!mQblbGz-0QEv zyJ#9{#hA`aVDoee@{~VYAjdORLOmk+(xchNyW$oxe`VBo7r-mx)0i7AlFq3aW1}Qj zF5X>;H0Hg@@DCJ8(9zZi(vp$j(3H|snqvD}m9Ursu1#C(UJ^px11Ks11z}Fwmxq&Z z>5)snd|L~R9Fj0906guqn=nSq_%S36ueWfShM#l3;tfGS~gxr@~QN+e8m(NL|LNYu_?bPdB(j=&) zHM%4g4E&>oNd>u#Zq|!NH>v;_-AYC`F#5xN2(#!BG)>KK1aB*(jUhr);~NB#@r{pP zh_3*{M;Lu61YgBz82bnzWMj)d;*FeaaOuO0ap^`Sg@j5sI_YMhbYqio%S$7fC)&1? zZOlh<7&EhbGC!Axz$BX@;8kNQJu3kS45B_KBNJwr&x}mi9g5OAzEZ=&ggugliI@WR zD6sl~4Kp)HVYi~yMVO4)t*{`)&SepHRdkombw{2!^Uny*bZ3EQk?bwW3h7`ErLwlo zr{Iz3-#l3atvCx9BO%goD^qAIDm(#j4$4<@yeQaIz_{b0pkg!ODuBN9Cm(fMJ+03$hIt7JetctK{yenSCGlVt&fIksrx7n>XnqZy(qHk+&9^ zqwaZP`+)FP-)|VOQe$`}@Wc3>r*7|560@Z33B!x8Yz=Nu_K7|)ce7MCOmj@dKI4m=U3InB=fB zq6Z!upqImO0o>_D3910tYne5U)1gWwxr9+6F$R&K2yLMQ;) z0t4jyM&mf!R_RB0;3;`1|IHR;8GjfPywzwhPS^%@pb@N*XI0d;vv|ay<47O}AiNFC za-GAeMC5tE8{m#(R714H+eTMv5nTzFp<0%`=A{i>kjDH>{ska+s4Dj=yd)@$ygaGO`3JFzG@6a7C6LAR^ zWUAS>n#yX-)pOydfVCwY(2+5i)=>|K3O=w^48?$fD@Sr8iMD$<*O6nSArE;V0Y-rb znE28yh)2BRw#LZ9Oq9v2nJkE5YwZ`{O3A%d2GaO*JV>DezhBJmX)p^I=ge&-?06B# zI{;3HM8}q%5CI5!qzv`AqAnPc$|EAE={!ihFwU|R1%mCXlzu9I`U_OzNBsIR*O%nz z2#zn|w1XjpkfKs616A;R$-Xe5^-&7U9a3lj0mgh_!c-4obV+^m_Uw>h=mc~)FuSM?wUQJmtaXL56~tsRBffIo`YLW z(SS1=wF0&9l|{_MvE2tTXg|LR)A`WI2qPA}-G^?%1hP-XXbKa6FPP(!ZzXCijJ?5A z!6Auz(*rJGN#(FsChKpy)i`$g0#GM+uJRH!7m0|WaU{|mpmQo*S55$AMvieVxh~L1 zCGxx|l_3b(&`{#)yNI2UQ7L8v@fxfYofsgNQo)c{B{CQ-`4+LQg$<%@6ARh{N1)Ua zpc$pXA1Daawh1@*GI+KAoL}x?aB3Wsfe%uxKiCGwB!y_4s z1K11+r=?!a102YSZ-yZ2e~slswgy@)9b!EZ&R`4& zctA0#4x+x0Jf~8}INOSZ9U)%nIfSPoP}xu*TiCBzYDy&%B#jG=6VnuA1F)b?kw{Mc zNv`2wfs0yP`H2vTF!^*xcVbR9p&b+-lqCLst&KJ)HLi(`3Pp*WRN2f%xx+A^s4Mw5 zOqMCg23#ZJ#+a;yQ;IAlz4{qvnG0*IX2MybIJKcQ;*`ej*p$ZZ7$q~FLJg4zdLWS` z0tynx7$~BvR_QAWCy3zD*Ej{!;BrIQLhr(9AM4kytY5o=_Q*II&LiPMl17fkaS~SO zJ|uv`#j%czzkM)3w2pHDIv@PP7i|Q|7Fd#~S}EbGU_YgR74#`fdOauQU{Z%Dv^ zlP$z?j(QOUN1c38AcJ(GJ|RrW+rjV_&Ep8m_6Lb$AB54l*b;(^Th-g)a)%{Jr(dUU zAcu=3AeRu_=kTB+p5h{@Q7rk*r*2y8xw+)(OU-Vg8iimoP|4*_}Ob8yOLR z30*`tV1tihG{!(pvK?X#W1jk)Xx|Jl)7A73Fjz&A>PR1r(+CPxfhy%{l?u1` zm65|!jdKVmSTq=p5KpQ}u<|EQ04LRO;Th=@N&XIiiHHPu@qKCKo3HjCZYnodSDFgVJ*HT# zm3{m4sV;pUFf6cSIFjJ=gISQ>e)ZWQ!%|UP zT2fPGvX)vZV!fV*SxiMF2hi0k!X*+&f=_Q+1v`7AegYqj1tWp`3eW=vHDp>gG>J*p zvuG?y$eAq7hBa(KLNjU&!lINU?o(!b$e(gF&m%^YuA-KR@Ht3aXd7tn5#96xVfl_0*7xYAcCvxmA`*bCtE$)ny6NoSy&^X3JQB7A1q^%7BDZF~=c4 zFj0IU!(qJ0`2~*7=qZ3-g7_sEoGL=D3J3~jYoFt6H3Tnij6E(UL^+pIF#=qifh?HM zYNFMPVC4Q_LiFnxMxH}?P=FE|#24|EM+9O02roI9s`1cTN(vt___~q{GT%(&pwWY& zr$KMshYos?v@D=6en(VAcd<$mU3fg6S-H$B4n?|ZXH>>AVoKq_@?yz{Hi(N{isF;mb zR6FTs7bD#5YUt81$zx(-1kNUW+<`qI6fSFNk;!6c##gf?K4xUZX`LxbHfg4*_~eNY z=BE~MC>njelf);Q{&u4IY{G^te3aLN8+kA*jZHXOXFso}fh2!LM1UJZxKPl#$f2;! z7i8UC10%*$y%*zF@5N+T%F8VkG`pycv#jQdYA`aU&>QN?ds)?>aRwBGd6t^0LUT2k z9~I;gpT~kn9SXEj{Gk|VL zQQz6|2rMis1!`O+Qg8x-E2~N?3QH?ZWh`MLg+R^fl`I*7=mryVQ?Asx@*9Ake0k95 zYO||D1pB`QawsZO*k5TGU*?LU>&6yvY^|x*6e&YBumThCL*y*xq2A)cRgP(@rRr9x#|_kJ zVnk_$X9S~#LQ|PJ*HT(RHMx7zotxkUHJK}(1;pq381|pgTJ#kg{0wv5_8J+9bD!XluW_(p-H zs21cy^y@L!h;&_@K}6WBGl<^)cxMoyH)C5w*hI1BDlcwEqs3!fvY~jjPNEUYiYn3- z)S|Q!#%kHXYq{?TAopme7FU_Y(N19T2iIt)#y1)5e7v!xl=o=IhyyGejv$1#@QbhO7YoOq6Q#yOgg_T;~Y^(zD!o%kTPy=JVcvQ#yh4rztiWRfFz zn~@Mxf5Gg9P|?Cpr6#Ar-}zs&Ym!|7*q$ z!v^t`8!~nnRnS2>zP3%^`3070a89qa#eX$3y>WQ3*##MV+RGG)d3+WlH0VmJ`KpT+ zZMw{|GPg`Z99!XywB%|Mu95@9eG{pBD)-35J0GY}XSER~i2V_0A(Jb85l z#{yvZpTNQ#0k8H!3VKgcAP5SvWG?~xFSXJV(L-yhvs!49zadnxO@P-*$Trr|6{xO= zrW-by#k%Q@1}K+NJSGvMNRLT`CK}I4#7lsonTX^Umj;24@*6YJ#0jz(moDV8Ivch} zi|botGTSNv4wQg$Q{#2Y9cuL+=zDXKA* zjpBNeAw`Iaqo``DrHYmq5d17P&_#5^MBD8~^pQP8!1hs^Lf&i!FElrmWze&LN-hJl zZYFl3i4wg8YRjzvxb9Wakcynrva-@@Gbpd98W|HPmfoS{F{MQYbQTC@YkSVZJQ0%A zGD4DX5JIraluqZ9+cq{sNV6U*MrVjLeGScT)coA;Sw_-YHRI2WdtV3pYN@Zl!*0mf z76fdDC*ob-wDnEc^M9Ino6p%diZ?$e$k^$y<8m#SMj=X!%FHsNxm8{|ASOL9DlRft zmRV|P`#1}ufemp?#E&~tS6yZy(E<|3jp!-cER)km)t0&_6Vh zWNRv+LBYm>KmS6@_J|;(Q+VY=M^~_^&}z{YL(tKAAdiVco;o-Q{|wjegi;sW2)O7? zrN+63b_LYXPc-%oa(_6QK7KTEOBiq}CRSY@<1gXx!B1W7lf0!l%=Mwmf6(fi&& z60H+piUl}RGHU@{X<-uz;z*O$O2t){auIy=KN}}E1Y5HOIDP>TeY_ga1wfq{FHj-z zo2zKKNDFx*QwQp9&>C%)h=AUCSYegpL zxN#j1w7U`~sMcxdxMQ3nw;W#|oh(?T^r3@_`QgOao<|$ovGblC4`i>wCM)cQpjZC1 zOM>=+@hw|(v6DbWCPNg2P2>DbVwlWedqF*dX-gM7R^9c)w){~rZKi5R+3B<)7J!|3 znF!$9%jr%`fgKfy5I5$tyI@`uPPL&Ov$Q3bDia?=*`_3q0NU^-#xWBK>7E^P#EYOR zvR!r49qr_!{S#thKPAp*WIMr-P6CDQut}5eejxJ<*PUFe^rHY3{V?!=9)N-EMzrSw z>72u)JFhTGkDYgPfk^@F_NS&s!3GJ%AP+@QdmrTcBk2*a*G0nG!(WE9xC6!+dT9To zlpNTQ9{ILailElfUMN(gbYyH029pUoT9;>!qD_&6UnzigZq#+cFMt!bSZW(WVKhG|pVn^o?!a ztKnPuP@rVW1#oiHlxpls?9Dgtu`*eu$Sz%7_0g6dBV{4@CKek4ES%2BnBm~>oiGW>cZ(Jh_gZTx=rRxSY z*$#3PvM`M^KawmqaJDv#2LK8Sm97Y`6lBw`2LWTMOwb=z^>U+R3=}arrs`?=_|IUb z4(1}`EPCsY*R{Y8-gLWm&EZ5}hMIhantYBL+d&YB8Uqd(QPL2^l@MbeiEwRQDRyYl zW=K16E80(L->#`E$96@W8mFzBuB|g;+g2nl{A@*>rH!4ob!LQ=hS3JJCg*Cay~1!- znP(Dph}Wa0Hq`ssw!BG^wC`7ar!tzrl)eND)$aNItHQ9=t(542c2fc~rNm>$0#CH3 zlVJ`4*xXiE!?(q4!nQaS&PSs&<(au?9oq*A^GbUu+n{MLWo*G7L5QxaC*<0Gq7y9Z z=JQsWS;T#`C$!GYYIzVT=+Mo&#oD?Dsq;`<5TOk`7ke17eG`2!(c?Ks84lP)xKI$F zv4h&rX&uLL#(mvfs|NjV$eGYNWOf8}lPr zr?0|}Y6XlpXg6*kAmks~kI6=(5hRA4{>06-bsN;0x=lC_6WbG2DqQKjP8c6zC#n%? zuqnQ71A?((Ra>`}xR|Dn*_UYR_!h^yJ!B?Ow_RJeiyc0R9>B&$94H*1^g~~$Rru1( z$q#sE^RjqPn>y?E1Njl^)|iP8;*9b{oN%bEJ4Aw&3ELeNFcgu~j}QH@M;xsv3-eP# zUL#>_kg~P5uCe9J%}PUobbumugENxi(p)VGY0NOD?rRN1LlQT_%|ux$BM!S|fU!UEA~B{0e$;psp~@C@o>HQHPaQOw)Ko`Ieaq%w^7K4Y7WgiL48*Ef2YZ)RB zwU^}$3t`qKwnk6G86F-DyJ3`M0|IFVW2FH%2*dQ^Dvk981^I-l~HZ={-{l*t%tZS*VY5ZG8~MGrmAW0HSMa$ z5!qy+MW;=(N7}25Q3KlpcBcC>M)3CM#4%kdjp<5Ocqew;rdngCech-fx(%UWj@Dj@ zUva!wg3Zmrm<0c9lt#F{QBLfZk~NBEc*HjCl{6M2aMU)soCZ2=v$t1rcHangk72|Z zS0m@|jokQ*XNCO(zoA65bJ;!%#vL>{L`H~Ws-Pjca27R{Cm>54oC*qi3s@0Dq=C&T zO+EE73|lc;+XjqedE2((%0P@5`|Dc!Ds_N17bc@PmXlggp9T)W=%YR@!e8kVKq75@ z8kq-2z!;dNXP7cVzzx8ow%&+%Kavq5)z}5Dv2R1U;99K99);;ZTdlo8Yk!gdg0=e~ zu|GHxR#X_L0kG1+v9pmrkW`5k)tlG~5c|prRiBeViv4r`MOWF6A@H^OR6+|BO9SW0y}5&%oV!NLB(F6^+e>hVfQ z2`FI^u3ixofawN|3}#h0-yWw@+YjJ)Y^BoufW-zkvYZIhX3-oOD1iXTEn#SBq;XDR zOCz)bCdydekYvcOluIjGT);|NN{J2aYVsdI=9WBfG>lTIa>TfVOUl4Xf>AX$pD7Sz z6R$2{GS>;Q>=!D#(!$za`5q6q!>5F3Z%Nx_Efp?-(oAL;Qgg6^qZyxp2N{r=Vi2g9 z{YVC9J~p)V({Z#iy7(;X_p`XcmxY{XA?LMr`Z5Zv4MHd5C|Jh6z`uQfed6@A@~W>z zFhX$W=~%v{Y^hPm?`i)6NP_0LH*R3 z;IB9I7Nb8RLJ9Q<%>~39h$&+PfOTPbDIt~s+cc|3s$tv$J^;fFXBlGvY|&JA9LGs( z>sJvH)-oh)0{*o18)&VCaNH3-we}$_&k&L`FvU=-pmiXLgQoNdjCS%8pjP9EcP!dD zM`d9&sL1I6M4-wLI2&PfL4ust{&g@Jxw-;07*hb-9YC_9bf7Sk&g@@nSrTM*$H2(R z>zRqrQZ_pL+N(%f;<*Y{gGG3pQml1arAdQMKju~8j*Ja)VL~37NNaa>D?N#cQGy2rZ1ISZT?o+DI}CEXkl9e5J6&f??0Sdf{nKK^O( z=vrH2Ro#+P8M0N!ZtnDAs3bW9@Nh7L5v*~}L1*Jv^0b1rZaGP-aD4(ha1jvzJWz)I zgC3$hQuNECE$0kSTkf*L#{$zPHOkge=}#8fNY1#M>q7n?$cj8ikY!(g8=JQW$^&v8 zLrt-#5Fo=_gS5t&PsXmmboAV`n4wT#I&_qZF+niP3is{A983>S2}rnWz?JLa=?>*eseI5a=yl>ZJe{NqZvb$tWEMfXgK};iOm`&d zp}W}?dWLdEceq1gefcaVelS4E=@cbmOoeXHHxpQ+$Q>00NMn(Lc?c`xMS^6d2>D9D z;Ts^2kl>^4gQHbrL6ln+XR05}Nc7u{w zzq;xnzi6mnJt2{$BObs*qGTaN=hRy)1;E60qXY`>s3?*T8KHvZh(SbY4$(&mQ_V1B zg7#QHyv|#XVo@bzFNPhel4Zd}Lmo@;rFAU^F%eY_@9EcpAD#{b$be;N=K=_oT*qXL+4QXxclE>shSsKMI+PbedBBqQRYKOP}<&^C`;HQE}A ze2ZGaU;#I%;T$JA3~B=K23}00Hd-p_E#&8yux=~$>@%f?M5bAEv-PimO9QxqMpt0>1zJtYF99l8f6`n)peMB?1{ri<>TspM#?f1Rpa^Ix z>3ta~RH3?wfXWjtPO!Xc8=#UYgtn9fngbQy4eNvet)Yifs}5-!q6!HJ@ec_M@d@z_ z@e5IeC_{omf)T1Qg=p%JhmdSd3z!feqdH63#b2e?I1-T5$6uw2gg!Hb9(jjL3?)6ZA@ge!w1ef{x)+kpCuz=fY5>Vxv7t%_>3{lw~? z<4bjOKR>s_l>kYrj@LDg-Q;=zk1BF60A|7*6X4$M9Uy>SrBhuh+yxm!ec_%}%=#)6HSlNl?r8=OcBwSRA0l*%$9^VK^gD4*o zV>=-bl1n=*>Umw#uUIt0mMTCBr3%UMu$7j%j3a*_?w)?YShv z%!|aRMR}1>)ZmxC_OW24)FD@4rA$^M#}z+elmyX=3Z)XY7|~76eVCC-C@yOGAyJV-t$#BPL`Ok%m+C>8>@9ZXti z;%bs&nRiwyf_M>Lm)L$9s6_t_V>wwcB1us3ERR3posS3xW>Tt_{z14{mph&y{5c-> zhhl)5>HG-f27nsjkBgT~&M!oNT(}d%00Bw9(gMSN)V0>IA0^*{1O=A*NYzR^F9x?n z69^NZ=oJ+7As+eFNDB&SAuXc}$Gb@FQf433INl`)a1kNEogB&)lrJelnkiS{AelPS zogz#ENy>s)sX-Y3yoZi5^mJ#xW#p3z!-ACO=vM}-*nuv@kfNNZMRdY}8?H@vKdWfn z1uUTihNO;Sm$L$~GJ@#l@ft2lPy_&d!Cu&-RV1%ol*_ON;iam*62hCMgmI=1oQHV| z#Fxl^4U&GJu*vlMbi)fIbfU?)a4a;k_E$DlF3DXYDpa3fAjEIT1&^x}@GL?|3>BI( z5qqpP&^_CJQ>GEwiBtu$B!2Arr(m(66pV6dNP$}M-vD+DqG)6sjM01}T%jDG+#dBi zx_dmKa;dA`cOHQNq)B#yjLK%rk=}K9{%IjW;El9Dt^kGR0p!L-3P*rPHBFx+Vn&^| zpTw?U_aX(MN@9elRQ#8C5t=M=0MA!G5g4z$ujw7Rn!8MahHwJg|sp`%%uIj)sDqq@h9s zMunxEM^Y5eSng5epaLNeIFC?)kZXv7m>fkerF<~bp%af_FNvJT7-w>Hk{E%b6A6Hz zw@6nAUMMnY^Ny&evCMTtJS>D{udHB7HXzdvujq+?cNZ@wavr3tc> z3`=EgRcXl-s}3_sS{!i zhFHBmE;T7OE*UPs69icw?=W5Ws-np*ClHe>CKt!W#~Kp#$@-KSgTWBjLngD|Dah=z zT(w+whgJsjITV{SqtIhHlZM(8^z=zcVV6|?q}M0u<5++gpBR@IpJ0eLP)Zg~claNa zn3a*LHzw=jlCzSMQ<4qFjskeQ@UOpQ0D zCS@d~#w8^hj43Ip85xH7EJK1J(Ku*OVtiJ5h5_}Y8})-SgmQ<5`L0|Anim6@2DV$4j)Opi}ACM0CUr>0~iBqqe` zlZ`3H`1nC732{k=g!s&KV@7ILVro)Kd{S0waz;v4azb*V-k6x0oS2c6V2m@Qq-G@~ zW*V~+k_N@4#|<*XB_yY3X2d5Y#tq6!%!t>g=o1q&)8PviLavGk5c(3@eIRd5`@e?6 zyOXrRD}PEAe8mg4Cu0R$-IW%E((={4F#Ky)g{`nE49%NXT8WWSS}d;L*&sqIdf&Bd zG_{7_s2TB}eN(tBTNN%Fm6w@!-?L|H`sDqP{Q4J-?*vv@Tbaz} zT@qVd$nYwnSvaN3#{bxX;j*p@dg7n13V3Oj-73q&Q6{&7Qbys9A4^C_n+(U1JR?}b zt%@Iir_(5K(1=VUbf*JH*mZzd4i!nX=K0CQgMd=$yjAIFR66jc7zb$3rz^^kiKnm7 zX=9CkWlxsoV7C>c1CsFDuq^4gwIftJLi}8fk39h>7z!y3~$ou3EDpQC5fij5d zuC%wZqd=-%C1HM$#mWr$i)HY}$x>xWxQ~-1%P@K1Ge;JK{DdifIv*WFQ-;3a=fk!H zcPx%>Bcg@W)J^AD zmatk0AC+HybQ#M6U5`Wihx@>s>$6WvL^T^Y`FUX@(0?WZxcCY#SXp0XGMdLT!2{* z%~Te1%-C|JCaXKcg+(9i0*w5f>t`~Ed`2t$!sMg#3}JeWA0AX;0b@+nQ(#GAwNw~F z^=b-KhABsxi{MMO$PlHEppbyDmRDScPWp}%?-SP6C9>*h<3bGFT9jAnax>EPQEh^; zwu;9(B^f_)6Da z8{RiVpOp}UrAJZ>7A7f%XnhynqKFn-Bzl$6JA}@j7#4hGJ`N!S1R(^-9WdB_|J(9C z+k5VL<;6({7LSPW$rxOH^Tt6R>>Kmgp^k+`75j>h-@EhWkSEVLv;N+5 z*MX$B&o*4rSc*?i3UBx7+LH4>O?r6V%lAjGKA#wN(b4Cflu3EpW<>1#u=eIPh2M{O z=rP~ZPq&%=`P)H{d?@pc9acVe-CgT@cdeZLNNMk~zs>S5AF}lRzWs|AKQQ91SsiYl zJ!aR)v$vFw+>!9w`Mv=kYrfpk_qnKsl+V9k_44_Qx15jNwAA z#T^x=XMNY>r%jpLrmyewR_MJ!za|ybUQ~{md%}0lu&0LW2XxC#DfZhk@x}f-7k>6- zzZti#TC7XRt2$XauHtll$AOKha!|DJj6?7TMtt>=Kxw2}(OMCH=J_E#X3ZH>IjZ3O zlPh1FtxFjE`9(%UkzEvR^{s8;T@ub89F$vGM(30sXfAI{L%2ryEv}u6m-&l1+}D@3aos*)43`zEAbN?isXs zl+U-5c12I=*6qHc7s`Ko?XjsV`mY?cFRJTJyYpB7vd}&)YE{Nl9cG7)nTjR()0tC* zN5}WluAguCWmwQFt@^#zwd=$!m*(URt9vVWPu9#kd%XA5t62q(^$G8s)0R$HRlCP< z>iFRM&tJ&<`G|bs$Z323wd|YvH^$kW)*<1O`OHX|9 zbKXN~mD6RH{_*{s3zt-dA-9Yix1v?Mh1RG`TeiNO_;}irKZk}l-tkMvj}O=UyvQ27 zs`Wwb`^z6+^?~+;?B*`5g5K9VeA|JQ2_9@LaoEF`Zj1iMDDqArlO;C6n%-{zOSnZZ zeGfkBJG;n5Cn~P!MYd}}@4?X$iG?Mk#HVtO77t|$f7IXgmw?!Wp|#hy$F4d_R2o#Kfgnu zHTytD{qAr2oxS;F$uE)Tvd^#B@kHUNnF}}nbCmH!+pq;sKeXZJ&HWxZa!=%j_4_Sv z?6`a89j|}xs2ZW#|C8bY^|<$UAN=5^(CGPF2bO%LTT?gkKzsGMPjUjQ9BR9((uYPgCzdqbmE| zf93+;&CdorV^0rnvuV}ahZ21UE@{)oDKV${z*IfwKGDQ|T!YoeH9H6R_<3-zc^g-J z(`ESL$zj{aEgTSheyYCGa!Egu2D?T9{_$*opW^if>L=f@p7DmHgoIv2hUC)GZ||_kDt#zINJ1cP;mP3r`q`qH@`gZraAWr*@~`j z`DLtI`Rh|}zWMPNzCFHwpw+?YnuoGK8rEL%LXrSy#>^PgXQWcIEuITvT!-aGSN*JXN#pAs_OkDNIMm|9OE<&aDk z(F9rg$xNCH@LzP({D;o;E)v?c_JLa*Lpu^OJp%p9r88O#G5TJdd31F%k5Lx5Ldn3y z#+jX2mtF%?W7=FqA{>g6xMoTcyR{y7_X&pFd# z+kL(D@Hab`j_i`VYVV=8!@Gu@+W*4-VXLfqo#uOGWB%e+LmuuhXwfT=PSD@BR;+VJ$2zieZ}2BkJB&v*PS0P zS$C|{k~`0T5cad`wY>6C>x~Pa%9afsT&(HVqxi)oM?Unk4}JQ#x)(Hq!~Gpk)twwY z>v!R?$Xr#uEL5L$^0hCzWNmpXCjY6`QM1wwGj~7!<;~8AmYd`oB7@gn`1SEug}t3` z$-nfQ?~XThffA!z0Y>+NK7^P?m>^tI`09Od@nCE%N?jyCM}{aASYyo7hx+-8OPE#y zg~;^wM=8FG!oE;%zt0w~Ug@}f;H}-39E}dU(DUnnyv5^=JiEN`S<_!mo{rGkRjro~ zZFp|gug9hoDnjkQj{tvo1f#om9+ zeqdwlN7|99F9U8G>(UI@&o7!mG{_VqO{QA`U9DlH9*Upvy{^i1vSxaMse^nl?e7)`P zW%o}Ds9L;ndFm4-F*`@9PZUfT(E8DPbpsA7+sFO3+c0#7A+1+c;JYU((=OEqgnjvD zfa(6zpKNUN{qTG5+L_pE(lc*-|N7j(L9;)~tLk)0|K65a<_Wh6Z34p8AAB1A=(&EI zipQ>t>GR!h_49U*y!F_!%7@EVrVjh)m)bX8ZhJ>Tj~}0YyhnoH%=QJl(xS>cI!*_^ z(|gPN8S9Sz_QTu_-#q)GHF4wcozuH$Z<-OZdt1qthFYJGOVr|NGjhY4exQFs-jx9`^hjFAqMgwOssLT-mF?e>w8q1zmO(Z(SC7 zx3);07PETX0~?QYI=W%adxh&~<@iu- z+ZIH>(ePv4d!0W1K5E3S$4(9T>Q}*RnIAa!-O_iztvK<*lD&o=m()9Nn{Xhf!}0_F z>ht7)*wL-0?FxJ5BBp}nkdx<2Q-M}Wo*w@z zZ}s#qJ;p~)ns}k$!|fA#%>Q@%`PPe*4z10ymR998zI^O& zOWPm#wZ#9Rzpiu29UuF2`DFf65yERDzkIZ~r~F>OACC0+@wP#2S}hrQ-`wbc)zQbk z`26vb)&aLxFIyK`?+m;%zE?r~-UyxjmPsGJJ!IoAu^$d!Gd(k_sQ(uk#fnY4o!NbN zCf%XP4xBGfD|}j*(PK%?ap7Cp68}Z#4|hA=qa0^+?2ru{v}1CmkLw=(O4R)X*P3>*L>U{!>Zu4M2(mc4U$z$5GKIp6Ldshf^3-g{xr>KFIyOJDd^nb3l|69x=XX7@BK)3xeh()6ql2UK zv#*c-+p5PeRELMYwX0o}a_-~mZHsT3_;$yY>(AV|Il6M_>`(6BzpNo_$Q^6sqegW- zyZX?;n4|sU#;zMW^^j)V%Q3G%+fbeI+rXLA655T~lQN~7Fv*UwW~O3?Kz=$;K(7yyfv?` z>+;d^HIswe?FoP3n|_Zksd_m4%S+oAc6jc~b1(heq0OfoE@Xan>~O!Q@7S`%{B6$K z4Xu_REV+42(A=AkpBmY7@VQnY3sy~xP5kogv$4N~C6DiQZ1iJ8dN0|#On7oh)`WvG zuXi24c$_8Yy=5Pdxyj&Ayo^ced1$}&_ND&~GXYnOH`OS)_3{n&&H8pOHMzf!A;`7v zhn^m)Z@1Py(4f|P#s{#cjVZqMt>Hp=h$ydtEqP1xcGbNh^Foj<2d)x^ygFTCFKracL3Pb{5z z+uqGR*S}fu%&U*@em1oJv9vR5HSa(9@UWDD!~RnjW}Qtr{p{~=Ztd|-zqL2T2gSGbq!s9%iB?vG zw^6?3*zn}QR{pa(nZv*Cu(N+oZ=rQw#xUoYC!&%%*gBi{RJ^z4)TeK5d+^9N51n6h z#`IW^r6>1)^yIputsY(0Zq)1LFa2#nk?|qzQ|h?d(*e7FJiMyI`1VH>BX+*HW%|K= zZ+-UW6YEc@@)oRab@%V5N0ol?OxgVn)dOZNEL(X>=zO?ja`ACqh*!FVV@B8ogF<|G)?@xXA{I}0Mt2#EMEbU+W6AJq!PwRPU d>8VpMexQBw>rY<@8g0+8WkyXO0()nC{vYMoXQ2Q9 literal 0 HcmV?d00001 diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Security.Cryptography.dll b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Security.Cryptography.dll new file mode 100644 index 0000000000000000000000000000000000000000..a6e7ca728fe5c2ed212648fcf4fd2fc3638ea9fa GIT binary patch literal 47560 zcmeFa31C!3)<0VJ_THUz(w!ATuptDRY;+R#O+peNl8q#6jtZTmleBcYo9+aR2qu6i zqmC%J%($VV&bT5jqYTdAppH5&xXidA;`X`WxD1XuBD~)@_x6$y9R1$=-tvF{z&-bz zQ>UsGu+*`M6PTwLlLI^Fc@HQiy6vBW4%vSQyFe zkdQ}MB#RK+z%eS^+WT>L;M$8zh-AiPMQ>v03GkmJ1o)r5AyBU67mz6ZkKI*L5f(>w z39*>)y+XLC5+Z*$2=P=Fh(kgo;I`*JA%;c5e#+euRh^}cpy$QKE9&x`(*?R|D*(c{ ztk66D&mqL}qEI;00w(LW7YG&fDqL}Yv(Q{cA&)NrLDH3UraBPU;fnj4CB*DFl2I4c zEB;6~S?ENt9PQy3!o*zI!&D(2LL1aOgy>ayKXzL(X6r-ezuSD-Mb8Z_p8EL5mwr|I z%tOyS@_4}$CHhOnl$}pk&u>~k`LfPGhMzRgcyQ=t2QPo;+lR+qaN$$Qm)$F0_2HpYKb|uGA1_E7pZej!bwv;T`@q?UKe~8Y z`tG-W{lwq?v9!x}n^k+2Yud^S4rOGy3<8ZVUREskOcR2)B&I@N zqcfER4#;*%Z`5cCHR<^p&9A)a&U93BqNyOkoG z@{p%2W+5KT9q~BGtS^*P^Yp*+7V6g_GjpCkH?crx0hYTl2!QN;G6eq|+s0}%>RQ;+GPls-HHR5wbNWzH{*6GzG8#qAJBZu;=Z zsCc?XFKbfM?NWLm2TW9Vs?h;#Z&Ckh=Y~mytO?Z**uA`*rl%8U;=^|Z)^$X2_oubp&bVjIG1Ay0Bre;6%hw(_t9e4CK3Qd|=Coxi@O^qp1mervx9T8moO z${B0(aRW-WITP&w_hpmK`i!NOunX#G0?`EeK6l4_dk7;>FfY{2@JfPCFG>`85NLQb zs^nbsF_(t>3?d1cBMfzpK~RC5ktcK12t5=uB@&@CPe^UFtVwr51wHGig=b)Y3;VVU zS)+Brg!L9fL4qN!6YHrLYn`YWvlFGr&#Ohxg$FTf14u>XA)OSLUYv)!`6u)j*uFlD zx-xge^8RywL0`~^;RRH2^Z+e7bb6o=tbyvnFPOy==z&q3x;>k%Io%>t6tq?18?NvWO|zB)^Cl_`9tbmdoPZyq`H3yv9G@bOq6RrI0r?^zmM{mH z^m3pSARfW#>4cQ9isIYaZci(En?YC;d5*yg7iF=FHNW3IX?M4nQY! zR!QDKPHB1^2kDwKkI7Ui>3JErkX{zX-u1XAqCDZL5HQ=NV`&u_v)N_pGo91Gv^b|j zr@~PfZDs)p&j(15(+$Kn8=Z4Njy5{sP0jfuAyY;&bpVMG8IyA^$(UH?pv^8h;n2(l z1|X*bIiL?9T@2|$!W>r?DPr;2!UnZ??7^gjJe@5`thpR5qV$X;ao!amoXE>;Nl(bP z=#2*BlDXFzGnOP6(c4Ns*XJ!t5*jBOLSJZh&W4<`oHHSR3ZEe`D%mtnlof>*&Pv?7 zO{fuzL0$=$CCyop(JbstN)%?cO4zT6+7zKKBkIBkwS}mQ zm`Yu{S-t-fcdBrWOA=Q@2l@;B3By!x03o6G2n!Nsk$|lvtdy`2VZR_OOxOj4brE(S zVcmqiMHtGZ4Vh$Ms|lM#*g1rG2E$sfaRbWvpIdB5%>Wmivqa4CXj~2 zgP6`EY$1hVR;jEdJR*G!4e_u{afX<7wSvR%Erl5S+ERq2QlElSsLRvAFK~p?G$Ocv z9Aa^o2>b%v@EHJReJ{zeaNf{$R{@7Z@8$a<=Moekv;t8%AaEw-p>l5>l>7Ri+$8N_ zDa;s@+c_wA^Pt?@2j#vvC^r!++!ITYKPb0yQ0~$}xz`WMeQ!{1lD?k~WT#qQk^4zvs>L)!6YwDptu8dD zq=q|zqx+!$7z9)n=w}!c;7jyo_QcAf+aZR4Bh#Wv@y~E9n4iQCD+XRmCLTN`-h&$q zPB$O_aADuq~}Zd57wKTz9MD$LYPD%Hi*%_`N+6nu#`HgzgdXDo=Pk8!iGmY568 zFqgtyh{rn_11Wh0yCk1C9(Nv|HA|esfE)J9sOPvrjK~D`3$l}a21X%e3^IuE)0Fx+ zUCntFa*ms)MJII;&ESu@zEYqQe38h6PO=lRXl&1L!kL@b-cBWC-rC<18ir#xul*gN z8Efz0K=M1}K9`{l6!$4>!tna$wL1__lfzr-PLo4Mz@Su_!3ccUdQt@elrY_Iqq|>| zUZT}x7h6KBDQT!{J{O5_7-T4SPJ|H@in8O35fl1wBzETm^`Vk*Oh#bGdTtZgt1Tn4 zXOx~GJ0K>w0_~EWTIpJ7S!i)$^y2=5jUns^*$f4Vm@K6y8tfYO?!5D(w24XNl`3;G z8f&VwLJUP7H2&wp5!;1TyLKHiv5WICW?;H8mbpx%uf04L!b+^Yf*6uj7luLW`{3ne zyKL3RQP^`ijkp@CfyO5D+OH5p#V@TwNQ#y%ECf#?u?%lX zaE0_wHGP0ARoMU*ZaPznWsSW0&Rv=SEJ(rsq0eNy%Tr^=?Xc zUO++mjK7mhrkqN4*v-e%F#C}0W|`(K=Cv9L%@5*25P^$`gEj;weXUNt>(#q~?~2hF zRh|j=)D(-l_m+}iPgKn<5xFV0mS{^*w)nVW<-lg-kz%!3?TI=&JOXzDjS~|CeTv0q zq4C085Z@aPCfKY62AfrxupGqhVM@XQHJK!P^072@M%kXcpKh^wU5ou%tv%V6#FL`6 z5>shwW!%$KZ0RX>Hra!&^pq4$q288~u{VAzf_TAye!&TY*`F{F4F~ zL$d=mTcOcrr*Y1FE;LKxkcAv#Ng49iquj=8sFf5SiBZg4uq-_#HGhsRbwI10?oUax zrNuYul9Y6NhAmxb(u_FqOOT8$6_%B1OXY^#W!G>nyckYT$;_VtgUn})}D8T&<+!Ju8KjNPU;KThR+;zmnAMwX) zl>0>7UCdSJuMvn&FS@{wPlvjM5xmW~sOso11wL&)?pg38so3CgNN7qdUdUBosY!l- z3m3tu=Q(t}LiMRIC?^Kx0doQx2Ao)>U}U0ksRZd`AjG(Y*m|?ZF4i1FGPoVb&3O%& z7DHV1pMvVYl{ytFhvrt5h@Y+MCu{V`^4Ew`n8r4fV03(f@FIgzF%xC42~+*3T)cVn zSeb>n1!hyUZx=Uyv)`B5fcMWs=5YfykrunO<};|fAGH-9Mx;8JD+>T)USupUo2QKB zw2r3sLAhwZehXECe!%`Yn(V|W0`JdjL^0wzV)dt1U!k0yH&|81%#du0>Td+@xVU{| z^@3?!BG(|-ANEFQ$q#u6D-uEb1hnT`X#`HTMt3W&R9qPUNFVI*D)yT1S{FvmJE8k_&wcSA-AuFV(CrxrsXqhmvcuMJbk8ARjoD(za_IG(ZJ(1iSJzZ4jWL)%DUsgf?pKE?? z%f7!Hy!*@z7w%qtUFxG}4GX?`LEh7c)^C3O`{&oVbyuC{&6>ZXJhyY{qH&jHCQnnYnfO)OUt|+o zLLo}M=O;wigPe-0kkTqv!HaT~iw@va7P{K885jW9BWl5=l75OPL;FXm5{pD5#Lq== zChBci|6nR+EB-0z`5}OPviK|;pt@VF4J8vQZV22vAUw6dFlE$^=u{`&5c1$LES0^3 z>!BUmh9J=ex>I0pWuP)m5N?lZdjSM8=Oc|Cl(QSDbfNV;nADR(&mhoVgT%u4rzlS) z#m0%4tt3;0fI8^nL;Sgj=f_31LF%_cpEkxqgW5(h284>Ak_;IF6^R<75-?^zUN(aD zNGNY10>W%DL9PKsgK|U*q9#bINIM>bc){S}{TnJ0p#nWXYFZlTj=Y?J?(Pq_1wx$; zcWbM+3tqwPbF{j<+<0xF#oZnDIJ!DKjy5l`oAH2sg~JpP zFc9j3r26JVtEVN@6YO%h9YJ@f%Nt3eNSaKtW7fFVjzL;pcPvHEIo@zrnBJA3Y|ANj zpgiDj^R|~bI^Dq{sW6_WMD~Ou`Qc3qf49%)2!tG-&R|zhk(6IvJJ-?D;r9By{&s%% zA}ZYBUgc559Da8v{H4@HT7`q27H^x^)9R>NW=oJoM0I@y(KzDmb5%^(8XLp!i z>>w?}i0$xs{Ow&G4#*Qrsj0B{Tu+fSl~N5-?IMkUQm|-Edi|?V0j&sdeC?=CEX#E85(jjMGlg$JSQ0Nd;F+&Bw7<_?e=wt(Sjad zE9x2IA8oqg?rkhiO&QwgTj!reh?NmK$%!x8qj``t7?go_+yT__+- zfSi2+msM?YHA>h~Q!$~y(KxTHm|@9;iF_}eJidSxLdb;Tk|L>`RHYhn1ll;ASed%q z?PO)qVzCmOtG6@g^K_zYZnD%ODT^$b+d_%mgDkkdR(N`(d9{H^8@78_dHhQLU6gIK zjmy2k4o?V`6s;De0m<;87gDQQR3z1vbt4)ExE9XW0R_X5t~tt7sBZ>MAXsLL433uMj&6gvi0tdsv|mU*rRC zgr5F(%#jdhsSq3W;4N$vTb3zPjGVa(t11w-9rRt8WaZ5E(S9NS!NE(5*WQwC!sJo> zJGYcJ>L~X%T=lpTL0|$dYH|M+?tWY}*wZ`$arvS9NZe`NKuL_j1+UAx=ip9h5lwe0 z0+k6)R$Vuk)spJPZ2dGnc32qJGF+`+0?tOpcj>PJzTa@aK`$=0kmNOhX7P5?{RXR; zm~2coi@C{!*8Ugw^96=)jG`Q+T;jCnmgk~A8E#>CZ7!vJJHsa!zQxcnS~prR#*C&|E{4^kNm4V0 zIJpcbjUi6W7)t*aV@xBhA~c3d@ih2W@!6QajnQN2RZr!0Qc0_wwIi%zz0-#m8?FU3 zi=9rEcTzjP0^BUVVK{0m;WHVY&u|CBoq&4r?$~`}_2OS+sg?D41hW}dH%VLo>P$!zl`gPx!WOT? zVoRYmB20%TyXh=>D@)qcuw5LMu7=T^(}eYm67M+<%TmJ*ao8y;b(pCfl{(JUSWt=3 zB>@^FiaeDnVQP{}&1Gt;O1YVup;G5EHA|(oF;%8gcQI8CYJ-$2{shV-sz7Ogy^Jdj z)F`GtQ7I>?FIhaRB8`X9iXWF{sPK`>0u?;;NL(c zigjWRQ(rLEt5V0A+MrTaIIBc)u}Y0%>T*!ATG|SVYN-@qX<{pOH;AfMsXEbz+*fF* zL|ZZUCaQ<2D+M-|P-j~-ztNb)m3XU^!v4TvSHr@nCSFu2AD8_tq^ZNxSihn*>vA2a zm@Yd|LTZ)o5pRgtfvGQ1iCTr~MqMY1k=n^x3hQBN87LE|^SB-QK~-h2!l5MQ!vpT)0l`!;7Xw9cAiCl}g1>pc7B4l#{7vRjPui7gTC7Q!lHO z(sN!@DKCe;35t5aN>GX7El_EoE@0|yHS9*FK2oV&OnstKe`4x$m3p43uT<(FQ%6+l zBc_C;QyP&j!?p3ruFfOBnvf zbX3-en;E}@@dp{-%lMOwKg;;*jQtuRww)iI9BZ(_+`m?<4M<0}}hX4uE@mw=M^&~j9c)Z4iUL$!-~H!{3};cW~b zVfZY=zcc)l;ZcT~M2eLF7)j@VemXcK6Q@TxKO}AiN3w2><6IYq--J-Tm0%*nRKQqj z4{|8ML@U8mz({D8^=WWUVK|E6BMHPA$M{UZ6wzdT3hyqQ#qex~s~E0l_)CV{7~a58 z&oGf;D#PD0e3apf3_k?aBp)RxbV<)^HR3S0V{#I;NJbL19a}|mP7+Dx5fr6KLm@eX zLn|p(avg`B!J$7vJ}wuVIGj|evx%=5-jv)1{Q2awb&;Ampub(WsJA(l;7W$)0cymB zseb^xl;JjpH!|G8@D7H%814p?L}uDyz|m=60G6kH4Y(xj-+;{wH>Di|zBLU-6z%&> z`bE8?GYGmEPGeZku#VxG49{lhXLt@^EQK$i^930Me*+ldueW{;&Mz5mV|W9@CWdD* zJe%Pvz(}kE`lq4Es?4XO>0grhGC0=(Mr7{Jd<&dM0VA9P`gg&3D)Zea=he&)!8ye6 zW5Af?Ver4oB={Xe(~!f_&})oef}c6$%P42Wkni;xkw2sfaM}=^K_kkCkj>OGJd>e! z2w7BJ2ElITY+&eT&c%#hJA`cPR>pS@c^RqgWBf(tzs>l^1QjbyJ~Bjx%rQ<`JCx!k z4W)cF<`2Qo8cKORl3<2DPR5rHO#*&4!!UE!3{3%N%g{`~8yUu@qxiskInCWeQO4xQ zhmz(0ouGJ+bNnawk$*7$ohnJ*OzB6Yn=Hu|Z$}+asW%O);Y;ZCTGH%I!&>atcd68;h7Fhv^+u^*;_Zby zRO&m!R?LAPQ7NNd+k z&2OXBF3V?{d$A);j6URdM6;8_dd20-_gKCKW#X{M#p{;inq6WjQyW=wm&jr2N#hX? zt72+{QBKfkcZmfmWlJ!CI-RM&HbW-srNa}`#C=$9@iCd7?G6w;)GP~{o*bq zo}jP?#2%)od`CbmMnDwZZzfO<`( zRwmYH9};QwKnh{!CN9+eUKB8Ox!9C=mi7^GhDu$Z*slG9=v5_mCkC~TiYDy2P`sxT z&)5E0_?Ws}yqdU4yN~x{@Wd(ei_r^>kCPb6x7FcKdRZHz&QCh1eL5O;Rno`W=cCl^ zN&nQo7^U_k{h)n?sfdOAU8TrEbh_7~)NK~4?#(E*%aWygyI;I_qhT8@xw`kG)NPg` z-G@P9Gbiu1YouT_eJj)$&1Gm^$ z;uWU08V@G>bzg~;B1&_s@vG!8sG%x#EcqNzBUQ?5Tc`V{n5*Q@5$qeN639smGamNu}Om>LZmp&eSoLvfD|QR4i;s>l~)?RH~S%St_-d zsYNQajwzo?UBlEyrmhl&saufdEElIKCZ=Ae`&K-qQgx{}>;5fXV~T3y4qtq*@f7SgEr4FX<*BuiJ+4(7b8dDOEclq+esfTnr=`0RY`m{k>5hsbEMwO&A z4N@0}Z4lq4exNf-uf@ePNuS5X!)qdHydRK*N%}TU(jpm4D3p4mPH&Og6w3J9G>bk# z@~hNe(rlnstJHs`W$F{9^Hu7rv_I++rHd45-m$c7y;a)6)COZ>I#JiClB3c`g4(W9 z)6$)w_NY`t`f*K?^teiS)5qzPq~}zsH+{T5S$adIwxsJo{Y#~`r)TPI(lM2~C;g8) zn`A7d5^WVvW-P@+f1gUVCcE`1(kvcmFdAm8(q~CmtJJ3%=j(?_+f_{%$@pCl4Gip`^?OT^`oVFm0FnjXFVNO zR4imjR<>bml$w-vzP>n0EzX){pgki+(wjBcFd<4^oVCy}HA>x`)n+&~O1+SEj$sZc zNxX-bH)Qb{pd^kkR5;%;POo0z)D<9ve*#V^$ReHPm2|QgKZPN^(I^Q8DxrmOl7wr- zbmqkJ!dmbrb0{xaoW|+Ya4dyGxJEPrYQ>px{GTEj93~^pHJrk)IE8D6Ne-R(EpWX! z2x!3Smdf=Z__8<*jz$~-)QY3SG>|l9lcY6Ub{IqoaHANOEn^2M7r1%QxSIbHasThj zcg-*v<)sp7P$J4#sfQp+EsJr?pB%?8%NF2QWosN7j)n89*;r$8J?O;D3|Xha)oSSv!D{y9h)d*j&>>YrN2$gN|7wlZ?u!dgu;Q>^O-(N+SVVre;+ zPAy|Z&%s0QK{~Q{5Rgj*yb5@%)U=02t*?)z_8(*nVh`kvf>M?^t}LEl{A76zs&h1# zfuVX%-=L`1dE^N>8L%8ezlBQ(7@( zIGs7CxRRh)k|-W79OTOgFHNE}sbw`{GRx2WPoaoa14&sd2BbX+B{g~ma3=GSnnOul z;YeIwZmE8J89BycQSMlmK|?Lc50D(t3IjraZaPXWwID}HD0qNzrT*7*DYmgb*8^(B z?ZcCkb>d!@`8|jJiSfTM+|TfD3=c7+`jo{7z%}9@fLihI;nW8Wc)X_<$$$oteoCwr zMt~y;CGOZbzKi*ao{DZi4rj2uQlfg`8bNWjq6N54gaP$}N@PHZ$j&#j{5FO+Fr*Y@ zaa$ao$abittc1omgGt`cai2UzLOKV4)2<}mF%_SKqZ3B~Q3DPMI%EMF#VE9;BwP*w z>Zp}+pAL>j%mYX8A3|BHg$~)F5oh7j3eO;+vAoWT3++TI5epAH$X~4k)QR0gWrto| z87Fxka9R8j@*43RpjNyJsN=q=7w;epo(;Jh#dnUI1g)ul$M8PDOAL&YYuil{7tPp>ct9R?b<* zrQly{D3dnkv>3~zD*zWrH{^JYUY1`e9mv^Y?2$grc}kRlb2UQ0%(>p!CuNM<34H9R zM}S|E^OA8Gbl9OOU^q(9N_l}adDL<2c2|$mn{Gl}r>RHk8C7apDfNyjH{B=QFscf$ zcT}BeJjbeFI300c(mcYsKL&Wd=|#q02fWr$44HBIcYtp)jS$;%kILUkzt6qNB+2`8 zZwLG!_imF-{xbJ|!0!R8A%8?OLY^^tuW5u_KKdC`v0OL$Mc_+E9|zw%`UrL&{GK*+9;MJog^9cFQ(R#p#Mkku9#bcvw<^|Fdqw@jZ1e_wTvrIHE5Le{P z0VLh3z`5420I*|I7I)VB*+s%x9>a z;;{zH)ADI!Q!F>hp|L{%uN>>JypC9-Ev;N4xA=VQ6pI(~*BZXWyQLKt(y+$TCyMj# zH}#3B3~Tec!8wERR)(Dn&tbTM;r6`skhwGOLd#~PfN}xq^fnFGiL^iO2NPM^J%-KV zUC3`1|IV9|;FdM{vl2#VEctU1hG^3AkHcn0=AV{OCXLB&1YBoXoUlL|mw!frTg-%v zTh!#YBs?wGFn)TzH(`XJosSX1lYazp&&l^Ej75(37>WUpXpHDtHe3mKhH9iIqkyS! z0#=-u`77Ws@e-gzybd@@971S;_zchmo>5F@d^)E<&uguCd-7j^^YFaODyqeJzt`S!NUMH>w+%E0_+#&YK&{JYPB`V!`iApzF8m={p=@ON3mXrg$ zLUIDmlL`T=B`Q(9R06z7ngnMahb~UluTuLR;IG-m#HkT$W)dC9QP2%eV^kVX3iJPIl`Q8Iklsl zn$S>cS`DRU)KF^48qz9N^SmDOdkyK}(7XoRsUb}YSbjXqOy!WWH00U z7=K#)Q-0lih&dlKE+mq7Fq|b(3fmdq%kU6GA+rp_Su)8iXS|p3?F?^`Hz2QDn7@zV zdki%iikri*oM8*YTQsCwxsGDB=;q5a%o`YP*Ig@ZF>Po5J{^_)J>C8CO7nZVeQ3@1 zbbkPJ=t*W4!*V^Pvz+l>h8y&h<_10GyPY|=Fus@Zy&SraIft0@9^(!JrRgwG+*yp5 z8z|-N1}g7f1Esc)Ifob*M&f9UB;#Ow7Q=GpEN8seNO3i0N>gJd`R!&Z(Oxt0_cGp_ zNVu?4?#oq3@_QNIYh`_s6v!GTll-h?N^QA~U@yb%4EHiTWaBjL6zX6&i{WxR@p~Cx zA+9ilarNLjS6qoF23Ht*abJ(?Lg1I;x*XTFxNgFAE3SKSJ&5ZOT>EhS71zs<{~PXa zr8-|Igl+K>?DS9DZO+OXz z?eq%3PZ&OuPzC&lbkZ|9qYn76j8pY=zC|NsQH&X_g!4W+;L|aqmEo&QfKB+0jEwKe zBmyqQ@ghl_4v3XLERjyYrvRRb=Tovc3(uuwoJbx5xE!Ojj91vR0h{smqKx;=M*z0M z56XCvJQuJH{!_-==wksp;1gxMW?l$*HfmKCYoU>Z_lk;vpD#**_X5hIPfP$@FD3zQ zzTIp@^R4TrVB)ubE!M#FyPaMQuNFR#BeE*F3Li$?#kV^3jr6F0A?l@@@-;1Ti zxX+SGB`@D6NEh>cl5{uUr${g0uI)t>*f;&r{eA;&lfs0ef3OwJ*g+V`o5pg) zr<5MX(;Y2rPlpR{K*Hu|4W)tAX|OY=f!%2^=fk@yxU9JFWfaW*G_X4jo}6Mo2UjYt zG+cPQ4%VlErO`IUaM;>#F%nk}u2HyhagD|`2A31pSX_Cy@^Ka5DuJDq;u?=@2JC+( zu2XT%!c~TAHm-796}T#K&A~Mn*F0QRxajS>`M9ca)!?edRfnq{7yX&UdM>*~y(fwW zJR-XwdK)o07JyU$H-gBk(n3pUy8by!MDlRsT#3gahq*}6} zeiKo@Hq@^T^-J?28+5Uuer>4VMAUC0WiP~ZeqG-)Q#5*7@ai{CFet|z@Hxp~M^90! z&nL>F?`_AuS3S7AP~P;e#rxu`JfbY}ntv@$62z$bP+*l8=fmoP{8qV$do$hB8hhir z%HI~4m%1|f}DkqGN5+E(Sp5E2NIpFXZy@p-mZuhp-c6T;=LPBLV z^#nbluK8?FOIN=b5mh+)?DB@C^-asl7BblwS%<9V8xlQvLmo+vuEG%z|gw&N))-S_>w2G?Qx&6|q zpI_csJa|ZBa7Cw{>nP&>a*&8a(YdW1}1* zh%|b+JLnx~CgnbNI2^MRZnUUYjor;vI208zDZG7;l#w4xE%x|)^ZkLqvdX&ui4$QLU6|!Bw(@EU$O$p_}in}mkSgV#x&8lsIL=VgREYhq$QE*GJD5 zp+RAXerQfzklXSkaUzB@Aed@^PYOlrmNSi*Rtq0Iiqi>|9!V*VTj_5J&}k`FAdVmD zMPd*hx{&IgV%4u6a}^ahsnhCF9F8J{d>e5FNR(GLz{ONIEvqf7sayuTY*;!NZ`s1y zs=C?%A?$xRf%3ZArphHvN;r_p+Qz7Olx$RjW3k9>L}Nz1Sbam?BGvp!w>o&g2G&lA zUcYd5byfK?ipwcQ&h!f9K&~KzS6!=EI+>tHR^+w389ncw0h&aG^>8k1fpBZ#4lxHO^vHz)ovR*yYJlepbk6SSf{JjQ z(7LoFY64&=hl1ic(Go|QO==HmigFM!ic@wKIO`~?I_W4=W8_2>%tKW9aT*e5^Un3q zh)Cz@xJwTh64iPy8g#rCvEftHxP$!$&bpw-AL}Hr-u}e{V?go1iRv9y6qZf?4_c^a zxzKf(QHDBe@VASGuv;{Ryf`&i0nWTmcS|f&)`$FM7==aJ?Kt3vHfct;Xz3K?ZOx*x zrCH1c-q_s&JHcSk?-*Q@yS>I6hEHqh5Xykm6lm;3dOR1X<^z$WfO3|cv542QoOwlu5N1RlDTsyNA=6UD30+*V1Jl~iP_#RHEv6@(kwVEO4=!>M1fI#c#0!Pi8@h<>!`}qB4T(76|p*n zitEY>107oF%W7)qf>A4s+H^z|V_Iw?sYZzQQ$Vm2mFepRf}k68ytP_irc1;U>A3>BMdfG>52 z)d`&FT-Hj~ugu}vJzdLU-jXQp8cJZeKdC08##AX~a8>di`NikMI-d38)(lDx?vyC?U;B0j| z*%a!5*|)06i-rDBT!IUOSifNcqRddmNpvjp_i*Kl#tt`5P16mBrs;rofWfUwXo*CEfDqEd;mBU>7 zwU-DlbHirC%R(5T$#QALraNl+M<*3U1E$<3OzR`78Jc;!DzMbUOu8F$D^Dv|nBvL@ zU#>*viIGpppnoVIlc{n0(MLl9GX(y)4CsiGbFs#!X_C^R)DOvUbw-3$o>ID40-PX~ zI1*0IE`oE7C|{XqihQBM(~3rL`*_Ib#LD^iHPoR9W<&F}SZGCe5FQ1tgxgR3ibNTG zZGt0L(gz|24^pSD@$)sVI#Nmvt6Id9ggB168^dXhPi~Gp*xpP@q8F9E9 zb}nm)t?}8NVJMGmBS7@TJ&4X_9)BxW8iKpvC>SS48l9Vz2YfyZX*4N-bYvqa45G`u z!c(^zbsg^T2J6~rwnY6QUQKl)C87g6vXiSwu`zFC9Y{2SGe4Gdf3h}E;pxPJnDdUB zY-|Qb2@S%gM4C=407(zRCTVrZ=9=b2<7%G6qxHw3QR+wPBT~R=;gXj~l z3+z~Jw>o@_CB*tQw6#nw!TuV0Lxn%g_a)<9uCmrvj6Gpdfv?=qoLSjGrl+rA+n;j zk)_Uwvyxyx!yu`J4b?QyjI#QboL78ElTSJgrzp$5Y%6 zTvr{$ZiH!iL|ZwY^I)FhQ}*jbORPad?J*pib(r0#&ry`Ac4P+DF!;7!QF)+~R0@kZ zRn?We$qd6*R!*q*E*_{NQ~Ag}y0&9Am3$WZy(_yt=oxBvjM5$P&4K3UEmfXpW8}am zx71!r9I_Oy`PS8ha#ghu#uFseX$+6~w5T#XHuRskQUykK*$MC0pVWYeIZ}B4u0@>w z-Ak2)8vF!{b8PI_0Z)*ijkZW%k7*Ov=eZLo9begesyqjFs(x%sV6Y5%@M$|Y*5l2} za=*ES(o|$cFrrE;S^f(65I44*xLrEwfm{D?VTpkH{Eqiqg?E+k`h(qFqJ^H;ao?fX zv2R!@W*Dn$W$U%ByDPRt4>r^ERMn;>o(MK$*eB(y{4wzwH%3T2tq8|h3;h_fFwbvQ z+B*`f1Ga*Fswzc6^&V6wIjk507oqb21e>7~7bJoNTbi*fp>3I9vpS7wi69Ye(R-sU z*~U*TJ7Swg2&6T?(p^OLqJ{pEBgZdpS~eXsNw3kQXlZr9zC@>tLX~_R&)nZ+nAxO@uMB4DdZ|(0@1N1j-N=O2?ss^YCU1S7{pV+)qzl}h)tX# zlPPG&ixhl3kGF7q%JVDX?}98QouZ58slMPGua6%ni4OR4(2cx?q-{+lB3w)B>S{NZ zsjw9gzM$H!eoj7!!eKiGsUiW|sPu?HTN`E{_^m$lyGSo@iS@wOwIO8C1Qe;#1isf@l^JQ%ru4kvSNf^aLZ5 zs9x#U2m7kcmC5 zt{$Q)BRDTkqtWTPWK>gH2ArrZHY}meDs(fr@}>Yk;S;cPvSi-f5GV|unK1{mD#86m zEf?YHf&w!YqG*M#aw74R{cS;RvaU^i2q(%yAvYe4(33HqTu0nztc*&I+(0337>2@S z%Prf@J%i*imd-l#cLo`c?`?)qaF zP_aw$o*{R9k0%4dAPCQfZ!V+V@R)+$zp3=E@`eI_8ioX(H_-r&?RNg;HZRHR8r4oL z>hbu3`Zji{sm3B?WX;3Oh%5=zxX;FOO2)i?U}_0s8xr9n-s-{QyJ{$gmxtz-M+`$n z*lu{uq?j4?k-6n~%<2hZ!xQg*QR-FU$f~N9H(wyCSV~hMGToSqCt?lQPO8S^e{6o2 zmhkIcqNyVkSRJ(?IN`|QsRnZ7FbZL2Hu2)o!ZmNP@yMs$=-`v_>mjWdP_^V zjiUw}@|Z|P zX>eo93p4HtOi18oy2B_`gQqPf+52ma1wlnm2v+M+`*LJRk)Ji4sZz>{(*HkCWn6Dt~^Nl#M!@I6R_tv|1zEiQyt;VWHG-EM2M^syNTU*Rm9v z=9+$X``9a^>SK1S1j<_jWUstgONg>x8{4iW-U$>JhqrJ!in5DKD4a2ED}@P&}#~7M%osE7WqF-vKaC|T^1$!$?2k0 zg;a~hVj^IyE|vNu?Wm5ZJ{75-BMm)%M%vKCMtM;Cm2f>xI)Q_ayrlG(DaI*~6M2v` zl;JJ?M%)_!%Y?|KUpt^5-k@K}pr5=@elw&0uS5uZ*PHr-@;eFi%NIqkyU4F>1ke{k zNP&I`fkNs*;XyxQD8Icy{iH}VfDVICX|ymdru?^m_M`OY|K^97@Zb5t4^jAYe(ghy z>;F?4C+qc*pZXA4{pI6-=R;)o59|Ni5n^or(3AhdhnUu1^5^`#$3PwW|F(x1a<3H&kDt}5E|LONUME>Bv&N0}Jd5FTnW&5{A9Qtu*zenccTzCyac4XtIvTXOMDM-n-$vF0AwPgd^vaNcAEw@^63W;vERAaKF;Y1>c z)ueK=bvU8~1$^1MY+a(zMo=Uu>#cgl|L7ZV5NNKzjl2-PbydM`31v&=15`jVho7wb zD1+vY1efEa(T@bvkb2T!Wkfw`@LV{)8UghjT6w$JtIZK&uj4<>3n1>);#5j8ffDWf zirF>kgU=L3DHSpYpY5*3zk0Y$atdX53A_?oSL5i^Y%xp`8a!}lByb_iSMdZvi8r(i zwnsA=r5DB9YI^K9mEzf%Cu;&NX=PW+&@aNtCQp;eBhXlb?QUH3!#xfjDZKa@A^JHX zFMcA)qw)g4>8Fxt1d;Wbvfi8|3^s>-d9uAD(+EQ~rr@{i9Asj~OkDV%Y&51tc`&so z*DSPwl1mP5!)GZyEu&f|HBMTRRL3W(Ar0^!l*5i%C(PB!?$Nf!nbF}!ndPB_4cvwEdWLU6v19-FSbuW zMvU|xg1{79`0Zz5pF&^;>R7VRKBl<9*oX7j9 zTYHtg_du#J0@{l)9zdQ8X0Jqh+k0QL_2EZ8fE>s~O@RPrH46v=vGpD$qv$IDZo%*} zTqsNoC^E?*2HhcsB&?J(%5(%(t7S|078pKs1m01AKEnF61gIwa611NvR@9fQ#V<@B zCtfB%?>1CQ4N>^qxvlq_k&5nBu!tQ{KH1hc9_Th)&nj1+6K7~Mt;S3YMyfj5I{acw zltR{s<-%D|CHP2Yvb_oda*8m@w%%{8nMUXYX76js=;x^VGv&N`DNT~4RH|#MQtuZi zw@Zm-?A?yjwL%M<--c4)EIIx1hoCV4g-59+@!-)dAIj&qUpRdA)XNTTp8QnyEAnp7 zBaZClOJ`p7_!XYv7hU(*si|q7K6vU~w&Hs%FPA>?kL4rU3$M=nr1-b@Jes)OFfRAC zwYvjPC;hPWSFgM=;r;3-;|41~+Hl36O zK|a`OB|Wn-QIXL@d;g|4VB%tPpevKc=+(WiL+@;z6XNfN3(TbHDx-!?Upyb*CBk%^QMRgzLf zq5&Nezy7Mk#Q< zy!ViiYT=bkqZNtT`YzBLG;-!}>a(^oR1+LNnO9lwwMA0zMzxBfTTQX;ZPb(coG`|V z?ppm{`m>*QsYyIXchFq5M)!#85y zg3$#c9$16D3U(qL_wqs0RI9S=J}$AiPg=urjNDZ@bu3Zr2J zh6_(=#K;HpEXXvH9V0x!gsQalIlu#^xC22(+gE@}hKS4-e0Y+CFE!UzHbtK(7pPBW zX5eSZ@Dlpj{5wb4x%h>=Ki?z73`tCmJ}-74 zBzoA)fnxyJ%jE~A_$fX7QXxN64&x{JlxOhxHuF$PqzxJYdn}T$jxQ=ME^@g_rc5j< znS_0p@sb$VpXYFfT9>)IdDGbKTjpQZR#IA2Ji#@oxU{giw0P23^l^#i4EWEcM>-{}#(jgXJYRuJ8uYKFZr&c<{rGFuQ06{p=9;ZThJ3Yxm*W zO2c18Av~z9!9#Yz=Z`%eeso6?$8(VurlS8}{gYUEd`YOce+iUv4IeK*flqSta4p#@ z#49vXtADR(unR5dw{({QR$_78h~;%1wj!3{UW;#+)Uo8F+Ru;CBn|66d<)MhMee7n z>1c6R#x0eBTLmr&snRbF(@z!quzIDPH~I-<`Wr=K2v**-Q%XN2>xdF@U=b{p9zrZgS6X5kAhG1*1DW~X2CrM+bOQ=U1{jydT|JJ__N zUV{B;cuM>=;a55&t|{d=iT%*T7pM8p*?Cs>+Gxr>8EMkKL_4QOw4%HM--DuZ)~S-zx>U|c9TP=A{tRCT z_)~Y3OxntM*Ob08WdtNTN7Sr6sw^Zm9k8n%RBKNfx!{qiE^C~e_%`g zSUWoK<)9F9UWQV1;~S8XpGc+>E<;I|p%;|!6O&>w0eMXl^xUVAAw8+U@P`(|ssVc8 z0WxZ!6IM+>`s_fDqI!&3lwwI_O?3V5zyBp`V5jn1t@WkiAK>$83f)(%;ciY+daUYBpx$U}9)RjoJY>m{wUev&L{x6gD< zcV)zJl3XT@B(`gBmV1S3L|i;=>XAL>%cfub!$|*g_Z|8EoAJB8>HN+1?d#LGxz=m< zxz=m$+^&%&SxzA{TzP-dFITL;}b3=N*vPQ2MsJlr*mIOdeWmlwq&T&GaDCM7er{Gc;xg?QJe zGw7%i5SUYw0ZH zLNd$iB}sg8`J=lo`XMziVxm*iRywuK`28>D@3?cjbNp%LCC0s*K6rY@-*We?nb~~d z-`9Sg)YW*)mzTF()OG$xqn^{$Kk?-=B7M!RQ+DcyO|Mw@-KUT5>f4i%v-=0ngf1mHpeQ|W~rLMJayTfNZ-;_6Hfu_{-ZT;Qn z{AIK8p;s=*JN4DqPFe8D=SMrvdhoFi4IL$yjtea~rYWAg;E9($4H@orT>0%AXMel8 z{r%;?30B`(`PX&Edq3!VW$_DBpH1n$e)MzOZ}!&jnR?N-w|6#8KDc?xbDK(T-IBEK zPoF)zE%&yvP43Zud27b^)QHZNjVjHyYSXo; z-~Nzup>A96qUTC)E&H?YS>wc~cHPW2l%1o^bfx#E=8XUL^@ce?^JlZZU-kX{`8)Sb zxIf8-U&dRQeTufmHQ!aWeeU+kP30Y3UBRj2#9O~%PED=e2}&Oo{u-~yv%ZD z_~G=vSvgAzK5^f1?9uaIzV!6q(VpkpuJW`zsI#wnH*Z@0XY23!&EYX+w_k0|Nx!k| zsoKs)+br#~%YXgGHHY)>x%&GorUNwQqq zS4r3T|0606aA-qanTp1?6Eyyh&gqe|r$5eXy52wh_Uac7>8_Z2-_a4%+q!=B%7=T- zlt+}_{_%{0oN=dL{?UW=SBloV-n{pX8+J~;a@DR;`oCL$oshrv{j6d0zxv&0ZI3Pf z<=S`Vzj1cvLG7XyZw+}~ygGApmZfXnYvmU_``+{;(>`neSN7NQzP)qbbuIr`y=C`b z8!A7^Ou6Ldtq=Zl_w=jYzbN~`2VM;PY2Ssb&)suieW=d(;+NXXtV>^b_Vt%WC+BW{ zbXNNz$IgulUK?ut`qdh9#){J~{>Q2H55M)-kstOnuFZLM`aFM1*4LW#=dX1hKmEBo zAAR(2&36m0Xu0Q`pQdcpxlP)E%w0Pq9@%gRAlcr2;D`_sA+~O`S9Pe>A7rLhuw-rwIG?zBJ zrnD7LEN<)P5Vu@xyEXXPq3?dT_b%gK9z3%CzUfb#=2}B}o}%q?g*iF-aaey=HU}>+xzRS zA6)mF^G|J=nf#~xJ@Y)*wBE4q)5WJ=am~vYrmUIvz_1NJ$OY33SqXo6K73j8k<(W{ zF=5*KmXE)k_xeKjKNAwmKE82?zSeWcrqSnJB+b)~dR$+A|6SkQ_~$?W{h)5_r9#B1U-NWM%@1pOpZV&UQP;cH>kXLWeXcl1vpcP!aC?t|Z_c|S@4OX7L*9Ax-S?jO^@5!GyPtn6 zvvyR{KVH23#p=7eTn^i(hQBpknO3zeYxWiQTyutN^c!NuM{6EEyxEZSja7Ti7n`3w z<*%iqF1-G$BkjWqj;{IeqU=vTti9!?$8s8W0a za~gMU+W&!bPSKdVHq|X`NO)gU@cr3awz&Kk{&T78`hTzc`_=brHO?!R*BQj(&6PF6sG^^P7%;r`z{uhb7|Z z?u4Ve-IYX6BSn&qYjrLSZgGxn&{-EvptF;-TC6cPxsvrJbqSLu5l6WCuA%T8ZQmAG z-=+8o?z`46pS5Vr)gR=h9L;;j+<4{E_jlaXvcvs9Zl3Ftd+tuZ>9p;)-d!DDa>S5Q z^nbK>?$J=~Z5(gLt(kE*LvFbfW0*azC5=nu5*dV$PRd=m-y^1!Ta@E2nxSyep$5lY z5}_!$A9o>ljwpq^TOD%V(^==7_5N|rAMe_K{q}FIz4qGcd7jVn`+k3WZyT(^)}8TD zYh#aLHAw0t)ob{_ULJR{#2rkCt(PS~_lm~bH4dzKT3E2^ZI8j4r}%ej-d37zWf^$Y zzt|^&&zdUl_2w@)iH3I#v59ri$r+ zEzwGcQcc~G5EgV@d$&I3n=Hlfo^I5&a-V)$v=iJtzLb3MwjHLPz&LGfiDyrW3pB`aR2Q^r5c1{S}*o8u{0s$cIW#475IIBXc@X0EA@tfWv1_3Rq& zsBH%O2?VF3u(p$GtX5o&>4E|;)u+%?70X)BB|Ca>!N)} zR2frnDyDQyV7$1n`CO5&F-?c6ltF%6;XU6x3Ms*ht2g#Ko0p(8E@$sWl0}qA4Qb(O zvq0C({u50p^V-AjAvP}Ih`>gN#)*s5*@>-y_$Fh$g=LQ(H@WAdbUI$@B)d}+TjmCc z0y5Yqhi{{R4%+`21&DtH1>h%e0682WCnpPR_r7vC9CmB?ujtSJj0*Mn-|J84u%s)z zlzUZ3Yk38E?`-V)CrWtjL`x$da20k-Rx?(zbY8Na-{Z+7SI>=BfBRxv-^lUrP#N#U z&3Ua(uUog*T8f9S$*i)+%MU!z^mK4H>dc*tNapH!ZwKpz@e3;YcTov-hu`6W{6rW^ zvXy{F($0>FFIcE?pb`l;0!82jB9nvtsdnse6OS|sZ|D_7kPO;drj>_3MAxdlLA&&w zRJ(qm+fmK)M+Vhxsmq>U(K=Kw?@z6T2!|@4%Yb-`CwfgmCiW!4Vpm7S7RBwLL{pgp>$CHk&paAK{>%_yzBqiFYr^Hf1&nXSTxK zE^)0xq4iK$*~v$aV?6Cr{5D$M+)35~51Tw(6852&M%D0auH)1Hpv6DVP;oYe=*rs7-IFBRmpyi~n8+)3e)wy)@8 za&{b8Di~ZU9%LxVGGDv~FT0Seix0p+t~$qD@4pVYgk3Z$2*PPa6Dhd#(b3sUDf$BFlB>CS!f-l1Oe=AB~b$L=qIhJ!rCWlc0 z^gHW*P^Sl_@2{#o0${}Mo<)H&@wV^}qXs}_^O;k7>2*CgCqv_uSwl6Lt0E11D&`zN4(~_&2+u~g+9Pb3&PaFRgHdzsjx)-S7%f1AqQFxu zpMx^`A6uz@+oIVOiKjt1Z|AP50L0FK4g$vE&I}E}^w~}U_hsP#@cX)Q=D&+WO$ELp zgOL?gwy9@^*%YUlBd`sx-LV2{&s(uV5Km5%1agN@^gAW31DLL(k4z9QL=ml{PWf3w zOq2De>?z5o{gP!`o}f3EXbcb7Jigc0W`O2c)qF-aB#U3VdgI(>Jx*bVw{Pe~d_Lu| zY4CU}pb-Iq^>Kwgi#}t*}i#Wk(~5{iMOxVSdl`Ud$q%4inH>h7B|u#Dj_;Elt%6ij(z;zc1iQj zFQh^(#j}PAw{P367|E dDF3<4HU|bN>jWq6Aq;2E+D(LP?3dj!{{g2W)TICb literal 0 HcmV?d00001 diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/packages.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup/packages.config new file mode 100644 index 000000000000..7cf80c93199a --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/packages.config @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj b/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj index 45ccb460da23..b966dae3685f 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj +++ b/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj @@ -65,7 +65,7 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll - ..\..\..\packages\Microsoft.Azure.Management.Batch.1.3.0-preview\lib\net40\Microsoft.Azure.Management.Batch.dll + ..\..\..\packages\Microsoft.Azure.Management.Batch.1.4.0\lib\net40\Microsoft.Azure.Management.Batch.dll ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.ps1 b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.ps1 index 47188e0ac903..6b6f2d162ccb 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.ps1 +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.ps1 @@ -138,15 +138,17 @@ function Test-GetBatchAccountsUnderResourceGroups $account11 = Get-BatchAccountName $account12 = Get-BatchAccountName $account21 = Get-BatchAccountName - $location = Get-BatchAccountProviderLocation + $location1 = Get-BatchAccountProviderLocation + $location2 = Get-BatchAccountProviderLocation 1 + $location3 = Get-BatchAccountProviderLocation 2 try { - New-AzureResourceGroup -Name $resourceGroup1 -Location $location - New-AzureResourceGroup -Name $resourceGroup2 -Location $location - New-AzureBatchAccount -Name $account11 -ResourceGroupName $resourceGroup1 -Location $location - New-AzureBatchAccount -Name $account12 -ResourceGroupName $resourceGroup1 -Location $location - New-AzureBatchAccount -Name $account21 -ResourceGroupName $resourceGroup2 -Location $location + New-AzureResourceGroup -Name $resourceGroup1 -Location $location1 + New-AzureResourceGroup -Name $resourceGroup2 -Location $location1 + New-AzureBatchAccount -Name $account11 -ResourceGroupName $resourceGroup1 -Location $location1 + New-AzureBatchAccount -Name $account12 -ResourceGroupName $resourceGroup1 -Location $location2 + New-AzureBatchAccount -Name $account21 -ResourceGroupName $resourceGroup2 -Location $location3 # Test $allAccounts = Get-AzureBatchAccount | Where-Object {$_.ResourceGroupName -eq $resourceGroup1 -or $_.ResourceGroupName -eq $resourceGroup2} @@ -177,15 +179,16 @@ function Test-CreateAndRemoveBatchAccountViaPiping $account1 = Get-BatchAccountName $account2 = Get-BatchAccountName $resourceGroup = Get-ResourceGroupName - $location = Get-BatchAccountProviderLocation + $location1 = Get-BatchAccountProviderLocation + $location2 = Get-BatchAccountProviderLocation 1 try { - New-AzureResourceGroup -Name $resourceGroup -Location $location + New-AzureResourceGroup -Name $resourceGroup -Location $location1 # Test - New-AzureBatchAccount -Name $account1 -ResourceGroupName $resourceGroup -Location $location - New-AzureBatchAccount -Name $account2 -ResourceGroupName $resourceGroup -Location $location + New-AzureBatchAccount -Name $account1 -ResourceGroupName $resourceGroup -Location $location1 + New-AzureBatchAccount -Name $account2 -ResourceGroupName $resourceGroup -Location $location2 Get-AzureBatchAccount | where {$_.AccountName -eq $account1 -or $_.AccountName -eq $account2} | Remove-AzureBatchAccount -Force # Assert diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/Common.ps1 index 70f34b54ef07..a553bcf2e345 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/Common.ps1 @@ -34,7 +34,7 @@ function Get-ResourceGroupName .SYNOPSIS Gets the location for the Batch account provider. Default to West US if none found. #> -function Get-BatchAccountProviderLocation +function Get-BatchAccountProviderLocation($index) { $location = Get-AzureLocation | where {$_.Name -eq "Microsoft.Batch/batchAccounts"} if ($location -eq $null) @@ -43,7 +43,14 @@ function Get-BatchAccountProviderLocation } else { - $location.Locations[0] + if ($index -eq $null) + { + $location.Locations[0] + } + else + { + $location.Locations[$index] + } } } diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/FileTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/FileTests.cs index e11a670f6934..eb24df79ff99 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/FileTests.cs +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/FileTests.cs @@ -28,19 +28,11 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { public class FileTests { - // NOTE: To save time on VM allocation when recording, these tests assume the following: - // - A Batch account named 'filetests' exists under the subscription being used for recording. - // - The following commands were run to create a pool, and all 3 VMs are allocated: - // $context = Get-AzureBatchAccountKeys "filetests" - // $startTask = New-Object Microsoft.Azure.Commands.Batch.Models.PSStartTask - // $startTask.CommandLine = "cmd /c echo hello" - // New-AzureBatchPool -Name "testPool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -TargetDedicated 3 -StartTask $startTask -BatchContext $context - - private const string accountName = "filetests"; - private const string poolName = "testPool"; - private const string vmName = "tvm-1900272697_1-20150331t200107z"; // Use the following command to get a VM name: (Get-AzureBatchVM -PoolName "testPool" -BatchContext $context)[0].Name - private const string startTaskStdOutName = "startup\\stdout.txt"; - private const string startTaskStdOutContent = "hello"; + private const string accountName = ScenarioTestHelpers.SharedAccount; + private const string poolName = ScenarioTestHelpers.SharedPool; + private const string vmName = ScenarioTestHelpers.SharedPoolVM; + private const string startTaskStdOutName = ScenarioTestHelpers.SharedPoolStartTaskStdOut; + private const string startTaskStdOutContent = ScenarioTestHelpers.SharedPoolStartTaskStdOutContent; [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/JobTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/JobTests.cs index b13b2fa0e798..7c7a65d8c97b 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/JobTests.cs +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/JobTests.cs @@ -26,27 +26,15 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { public class JobTests { + private const string accountName = ScenarioTestHelpers.SharedAccount; + private const string poolName = ScenarioTestHelpers.SharedPool; + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetJobRequiredParameters() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-get-job-params"; - string accountName = "testgetjobparams"; - string location = "eastus"; - BatchAccountContext context = null; - controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-GetJobRequiredParameters '{0}'", accountName) }; }, - () => - { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - }, - () => - { - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); - }, - TestUtilities.GetCallingClass(), - TestUtilities.GetCurrentMethodName()); + controller.RunPsTest(string.Format("Test-GetJobRequiredParameters '{0}'", accountName)); } [Fact] @@ -54,9 +42,6 @@ public void TestGetJobRequiredParameters() public void TestGetJobByName() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-get-job"; - string accountName = "testgetjob"; - string location = "eastus"; string workItemName = "testName"; string jobName = null; BatchAccountContext context = null; @@ -64,14 +49,13 @@ public void TestGetJobByName() () => { return new string[] { string.Format("Test-GetJobByName '{0}' '{1}' '{2}'", accountName, workItemName, jobName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); }, () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -82,9 +66,6 @@ public void TestGetJobByName() public void TestListJobsByFilter() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-job-filter"; - string accountName = "testlistjobfilter"; - string location = "eastus"; string workItemName = "testWorkItem"; string state = "active"; int matches = 1; @@ -94,7 +75,7 @@ public void TestListJobsByFilter() () => { TimeSpan recurrence = TimeSpan.FromMinutes(1); - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName, recurrence); string jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.TerminateJob(context, workItemName, jobName); @@ -103,7 +84,6 @@ public void TestListJobsByFilter() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -114,9 +94,6 @@ public void TestListJobsByFilter() public void TestListJobsWithMaxCount() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-job-maxcount"; - string accountName = "testlistjobmaxcount"; - string location = "eastus"; string workItemName = "testWorkItem"; int maxCount = 1; BatchAccountContext context = null; @@ -125,7 +102,7 @@ public void TestListJobsWithMaxCount() () => { TimeSpan recurrence = TimeSpan.FromMinutes(1); - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName, recurrence); string jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.TerminateJob(context, workItemName, jobName); @@ -134,7 +111,6 @@ public void TestListJobsWithMaxCount() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -145,9 +121,6 @@ public void TestListJobsWithMaxCount() public void TestListAllJobs() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-job"; - string accountName = "testlistjob"; - string location = "eastus"; string workItemName = "testWorkItem"; int count = 2; BatchAccountContext context = null; @@ -156,7 +129,7 @@ public void TestListAllJobs() () => { TimeSpan recurrence = TimeSpan.FromMinutes(1); - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName, recurrence); string jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.TerminateJob(context, workItemName, jobName); @@ -165,7 +138,6 @@ public void TestListAllJobs() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -176,9 +148,6 @@ public void TestListAllJobs() public void TestListJobPipeline() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-job-pipe"; - string accountName = "testlistjobpipe"; - string location = "eastus"; string workItemName = "testWorkItem"; string jobName = null; @@ -187,14 +156,13 @@ public void TestListJobPipeline() () => { return new string[] { string.Format("Test-ListJobPipeline '{0}' '{1}' '{2}'", accountName, workItemName, jobName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); }, () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -205,9 +173,6 @@ public void TestListJobPipeline() public void TestDeleteJob() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-delete-job"; - string accountName = "testdeletejob"; - string location = "eastus"; string workItemName = "testWorkItem"; string jobName = null; @@ -216,14 +181,13 @@ public void TestDeleteJob() () => { return new string[] { string.Format("Test-DeleteJob '{0}' '{1}' '{2}' '0'", accountName, workItemName, jobName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); }, () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -234,9 +198,6 @@ public void TestDeleteJob() public void TestDeleteJobPipeline() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-delete-job-pipe"; - string accountName = "testdeletejobpipe"; - string location = "eastus"; string workItemName = "testWorkItem"; string jobName = null; @@ -245,14 +206,13 @@ public void TestDeleteJobPipeline() () => { return new string[] { string.Format("Test-DeleteJob '{0}' '{1}' '{2}' '1'", accountName, workItemName, jobName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); }, () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.cs index 316d3966026b..26051b477866 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.cs +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.cs @@ -25,36 +25,16 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { public class PoolTests { - // NOTE: To save time on VM allocation when recording, some of tests assume the following: - // - A Batch account named 'pooltests' exists under the subscription being used for recording. - // - The following commands were run to create a pool, and all 3 VMs are allocated: - // $context = Get-AzureBatchAccountKeys "pooltests" - // New-AzureBatchPool -Name "testPool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -TargetDedicated 3 -BatchContext $context - - private const string commonAccountName = "pooltests"; - private const string testPoolName = "testPool"; + private const string commonAccountName = ScenarioTestHelpers.SharedAccount; + private const string testPoolName = ScenarioTestHelpers.SharedPool; [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNewPool() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-new-pool"; - string accountName = "testnewpool"; - string location = "eastus"; - BatchAccountContext context = null; - controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-NewPool '{0}'", accountName) }; }, - () => - { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - }, - () => - { - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); - }, - TestUtilities.GetCallingClass(), - TestUtilities.GetCurrentMethodName()); + controller.RunPsTest(string.Format("Test-NewPool '{0}'", commonAccountName)); + } [Fact] @@ -62,22 +42,18 @@ public void TestNewPool() public void TestGetPoolByName() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-get-pool"; - string accountName = "testgetpool"; - string location = "eastus"; - string poolName = "testName"; + string poolName = "testGetPool"; BatchAccountContext context = null; controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-GetPoolByName '{0}' '{1}'", accountName, poolName) }; }, + () => { return new string[] { string.Format("Test-GetPoolByName '{0}' '{1}'", commonAccountName, poolName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName, 0); }, () => { ScenarioTestHelpers.DeletePool(controller, context, poolName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -88,30 +64,26 @@ public void TestGetPoolByName() public void TestListPoolsByFilter() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-pool-filter"; - string accountName = "testlistpoolfilter"; - string location = "eastus"; - string poolName1 = "testName1"; - string poolName2 = "testName2"; - string poolName3 = "thirdtestName"; - string poolPrefix = "testName"; + string poolName1 = "testFilter1"; + string poolName2 = "testFilter2"; + string poolName3 = "thirdFilterTest"; + string poolPrefix = "testFilter"; int matches = 2; BatchAccountContext context = null; controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-ListPoolsByFilter '{0}' '{1}' '{2}'", accountName, poolPrefix, matches) }; }, + () => { return new string[] { string.Format("Test-ListPoolsByFilter '{0}' '{1}' '{2}'", commonAccountName, poolPrefix, matches) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName1); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName2); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName3); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName1, 0); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName2, 0); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName3, 0); }, () => { ScenarioTestHelpers.DeletePool(controller, context, poolName1); ScenarioTestHelpers.DeletePool(controller, context, poolName2); ScenarioTestHelpers.DeletePool(controller, context, poolName3); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -122,29 +94,25 @@ public void TestListPoolsByFilter() public void TestListPoolsWithMaxCount() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-pool-maxcount"; - string accountName = "testlistpoolmaxcount"; - string location = "eastus"; - string poolName1 = "testName1"; - string poolName2 = "testName2"; - string poolName3 = "thirdtestName"; + string poolName1 = "testMaxCount1"; + string poolName2 = "testMaxCount2"; + string poolName3 = "thirdMaxCount"; int maxCount = 1; BatchAccountContext context = null; controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-ListPoolsWithMaxCount '{0}' '{1}'", accountName, maxCount) }; }, + () => { return new string[] { string.Format("Test-ListPoolsWithMaxCount '{0}' '{1}'", commonAccountName, maxCount) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName1); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName2); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName3); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName1, 0); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName2, 0); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName3, 0); }, () => { ScenarioTestHelpers.DeletePool(controller, context, poolName1); ScenarioTestHelpers.DeletePool(controller, context, poolName2); ScenarioTestHelpers.DeletePool(controller, context, poolName3); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -155,29 +123,28 @@ public void TestListPoolsWithMaxCount() public void TestListAllPools() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-pool"; - string accountName = "testlistpool"; - string location = "eastus"; - string poolName1 = "testName1"; - string poolName2 = "testName2"; - string poolName3 = "thirdtestName"; - int count = 3; + string poolName1 = "testList1"; + string poolName2 = "testList2"; + string poolName3 = "thirdTestList"; + int beforeAddCount = 0; + int afterAddCount = 0; BatchAccountContext context = null; controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-ListAllPools '{0}' '{1}'", accountName, count) }; }, + () => { return new string[] { string.Format("Test-ListAllPools '{0}' '{1}'", commonAccountName, afterAddCount) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName1); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName2); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName3); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName); + beforeAddCount = ScenarioTestHelpers.GetPoolCount(controller, context); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName1, 0); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName2, 0); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName3, 0); + afterAddCount = beforeAddCount + 3; }, () => { ScenarioTestHelpers.DeletePool(controller, context, poolName1); ScenarioTestHelpers.DeletePool(controller, context, poolName2); ScenarioTestHelpers.DeletePool(controller, context, poolName3); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -188,23 +155,17 @@ public void TestListAllPools() public void TestDeletePool() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-delete-pool"; - string accountName = "testdeletepool"; - string location = "eastus"; - string poolName = "testPool"; + string poolName = "testDelete"; BatchAccountContext context = null; controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-DeletePool '{0}' '{1}' '0'", accountName, poolName) }; }, + () => { return new string[] { string.Format("Test-DeletePool '{0}' '{1}' '0'", commonAccountName, poolName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName); - }, - () => - { - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName, 0); }, + null, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); } @@ -214,23 +175,17 @@ public void TestDeletePool() public void TestDeletePoolPipeline() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-delete-pool"; - string accountName = "testdeletepool"; - string location = "eastus"; - string poolName = "testPool"; + string poolName = "testDeletePipe"; BatchAccountContext context = null; controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-DeletePool '{0}' '{1}' '1'", accountName, poolName) }; }, - () => - { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - ScenarioTestHelpers.CreateTestPool(controller, context, poolName); - }, + () => { return new string[] { string.Format("Test-DeletePool '{0}' '{1}' '1'", commonAccountName, poolName) }; }, () => { - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName); + ScenarioTestHelpers.CreateTestPool(controller, context, poolName, 0); }, + null, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); } diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 index f528b4ff8f4d..f63ee1d7a400 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 @@ -153,9 +153,9 @@ function Test-ListAllPools param([string]$accountName, [string]$count) $context = Get-AzureBatchAccountKeys -Name $accountName - $workItems = Get-AzureBatchPool_ST -BatchContext $context + $pools = Get-AzureBatchPool_ST -BatchContext $context - Assert-AreEqual $count $workItems.Length + Assert-AreEqual $count $pools.Length } <# @@ -169,8 +169,8 @@ function Test-DeletePool $context = Get-AzureBatchAccountKeys -Name $accountName # Verify the Pool exists - $pools = Get-AzureBatchPool_ST -BatchContext $context - Assert-AreEqual 1 $pools.Count + $pool = Get-AzureBatchPool_ST $poolName -BatchContext $context + Assert-AreEqual $poolName $pool.Name if ($usePipeline -eq '1') { @@ -181,9 +181,11 @@ function Test-DeletePool Remove-AzureBatchPool_ST -Name $poolName -Force -BatchContext $context } - # Verify the Pool was deleted - $pools = Get-AzureBatchPool_ST -BatchContext $context - Assert-True { $pools -eq $null -or $pools[0].State.ToString().ToLower() -eq 'deleting' } + # Verify the Pool was deleted. Use the OData filter since the GetPool API will cause a 404 if the pool isn't found. + $filter = "name eq '" + $poolName + "'" + $pool = Get-AzureBatchPool_ST -Filter $filter -BatchContext $context + + Assert-True { $pool -eq $null -or $pool.State.ToString().ToLower() -eq 'deleting' } } <# diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs index 9814ed70e258..f110a8941a31 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs @@ -49,7 +49,18 @@ public static class ScenarioTestHelpers // Content-Type header used by the Batch REST APIs private const string ContentTypeString = "application/json;odata=minimalmetadata"; - private const string DefaultPoolName = "testPool"; + // NOTE: To save time on setup and VM allocation when recording, many tests assume the following: + // - A Batch account named 'pstests' exists under the subscription being used for recording. + // - The following commands were run to create a pool, and all 3 VMs are allocated: + // $context = Get-AzureBatchAccountKeys "pstests" + // $startTask = New-Object Microsoft.Azure.Commands.Batch.Models.PSStartTask + // $startTask.CommandLine = "cmd /c echo hello" + // New-AzureBatchPool -Name "testPool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -TargetDedicated 3 -StartTask $startTask -BatchContext $context + internal const string SharedAccount = "pstests"; + internal const string SharedPool = "testPool"; + internal const string SharedPoolVM = "tvm-4155946844_1-20150709t190321z"; // Use the following command to get a VM name: (Get-AzureBatchVM -PoolName "testPool" -BatchContext $context)[0].Name + internal const string SharedPoolStartTaskStdOut = "startup\\stdout.txt"; + internal const string SharedPoolStartTaskStdOutContent = "hello"; /// /// Creates an account and resource group for use with the Scenario tests @@ -88,7 +99,7 @@ public static void CleanupTestAccount(BatchController controller, string resourc /// /// Creates a test pool for use in Scenario tests. /// - public static void CreateTestPool(BatchController controller, BatchAccountContext context, string poolName) + public static void CreateTestPool(BatchController controller, BatchAccountContext context, string poolName, int targetDedicated) { YieldInjectionInterceptor interceptor = CreateHttpRecordingInterceptor(); BatchClientBehavior[] behaviors = new BatchClientBehavior[] { interceptor }; @@ -98,7 +109,7 @@ public static void CreateTestPool(BatchController controller, BatchAccountContex { OSFamily = "4", TargetOSVersion = "*", - TargetDedicated = 1 + TargetDedicated = targetDedicated }; client.CreatePool(parameters); @@ -128,6 +139,39 @@ public static void WaitForSteadyPoolAllocation(BatchController controller, Batch } } + /// + /// Gets the CurrentDedicated count from a pool + /// + public static int GetPoolCurrentDedicated(BatchController controller, BatchAccountContext context, string poolName) + { + YieldInjectionInterceptor interceptor = CreateHttpRecordingInterceptor(); + BatchClientBehavior[] behaviors = new BatchClientBehavior[] { interceptor }; + BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); + + ListPoolOptions options = new ListPoolOptions(context, behaviors) + { + PoolName = poolName + }; + + PSCloudPool pool = client.ListPools(options).First(); + return pool.CurrentDedicated.Value; + } + + /// + /// Gets the number of pools under the specified account + /// + public static int GetPoolCount(BatchController controller, BatchAccountContext context) + { + YieldInjectionInterceptor interceptor = CreateHttpRecordingInterceptor(); + BatchClientBehavior[] behaviors = new BatchClientBehavior[] { interceptor }; + BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); + + ListPoolOptions options = new ListPoolOptions(context, behaviors); + + return client.ListPools(options).Count(); + } + + /// /// Deletes a pool used in a Scenario test. /// @@ -150,7 +194,7 @@ public static void CreateTestWorkItem(BatchController controller, BatchAccountCo BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient); PSJobExecutionEnvironment jobExecutionEnvironment = new PSJobExecutionEnvironment(); - jobExecutionEnvironment.PoolName = DefaultPoolName; + jobExecutionEnvironment.PoolName = SharedPool; PSWorkItemSchedule schedule = null; if (recurrenceInterval != null) { @@ -316,7 +360,6 @@ public static YieldInjectionInterceptor CreateHttpRecordingInterceptor() { object batchResponse = null; - Delegate postProcessDelegate = null; HttpRequestMessage request = GenerateHttpRequest((BatchRequest)batchRequest); // Setup HTTP recorder and send the request diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/TaskTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/TaskTests.cs index e06fe613f456..fcdf7ea02ddc 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/TaskTests.cs +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/TaskTests.cs @@ -26,29 +26,28 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { public class TaskTests { + private const string accountName = ScenarioTestHelpers.SharedAccount; + private const string poolName = ScenarioTestHelpers.SharedPool; + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCreateTask() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-new-task"; - string accountName = "testnewtask"; - string location = "eastus"; - string workItemName = "testName"; + string workItemName = "createTaskWI"; string jobName = null; BatchAccountContext context = null; controller.RunPsTestWorkflow( () => { return new string[] { string.Format("Test-CreateTask '{0}' '{1}' '{2}'", accountName, workItemName, jobName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); }, () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -59,22 +58,7 @@ public void TestCreateTask() public void TestGetTaskRequiredParameters() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-get-task-params"; - string accountName = "testgettaskparams"; - string location = "eastus"; - BatchAccountContext context = null; - controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-GetTaskRequiredParameters '{0}'", accountName) }; }, - () => - { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - }, - () => - { - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); - }, - TestUtilities.GetCallingClass(), - TestUtilities.GetCurrentMethodName()); + controller.RunPsTest(string.Format("Test-GetTaskRequiredParameters '{0}'", accountName)); } [Fact] @@ -82,10 +66,7 @@ public void TestGetTaskRequiredParameters() public void TestGetTaskByName() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-get-task"; - string accountName = "testgettaskbyname"; - string location = "eastus"; - string workItemName = "testName"; + string workItemName = "getTaskWI"; string jobName = null; string taskName = "testTask"; BatchAccountContext context = null; @@ -93,7 +74,7 @@ public void TestGetTaskByName() () => { return new string[] { string.Format("Test-GetTaskByName '{0}' '{1}' '{2}' '{3}'", accountName, workItemName, jobName, taskName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.CreateTestTask(controller, context, workItemName, jobName, taskName); @@ -101,7 +82,6 @@ public void TestGetTaskByName() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -112,10 +92,7 @@ public void TestGetTaskByName() public void TestListTasksByFilter() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-task-filter"; - string accountName = "testlisttaskfilter"; - string location = "eastus"; - string workItemName = "testWorkItem"; + string workItemName = "filterTaskWI"; string jobName = null; string taskName1 = "testTask1"; string taskName2 = "testTask2"; @@ -127,7 +104,7 @@ public void TestListTasksByFilter() () => { return new string[] { string.Format("Test-ListTasksByFilter '{0}' '{1}' '{2}' '{3}' '{4}'", accountName, workItemName, jobName, taskPrefix, matches) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.CreateTestTask(controller, context, workItemName, jobName, taskName1); @@ -137,7 +114,6 @@ public void TestListTasksByFilter() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -148,10 +124,7 @@ public void TestListTasksByFilter() public void TestListTasksWithMaxCount() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-task-maxcount"; - string accountName = "testlisttaskmaxcount"; - string location = "eastus"; - string workItemName = "testWorkItem"; + string workItemName = "maxCountTaskWI"; string jobName = null; string taskName1 = "testTask1"; string taskName2 = "testTask2"; @@ -162,7 +135,7 @@ public void TestListTasksWithMaxCount() () => { return new string[] { string.Format("Test-ListTasksWithMaxCount '{0}' '{1}' '{2}' '{3}'", accountName, workItemName, jobName, maxCount) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.CreateTestTask(controller, context, workItemName, jobName, taskName1); @@ -172,7 +145,6 @@ public void TestListTasksWithMaxCount() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -183,10 +155,7 @@ public void TestListTasksWithMaxCount() public void TestListAllTasks() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-task"; - string accountName = "testlisttask"; - string location = "eastus"; - string workItemName = "testWorkItem"; + string workItemName = "listTaskWI"; string jobName = null; string taskName1 = "testTask1"; string taskName2 = "testTask2"; @@ -197,7 +166,7 @@ public void TestListAllTasks() () => { return new string[] { string.Format("Test-ListAllTasks '{0}' '{1}' '{2}' '{3}'", accountName, workItemName, jobName, count) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.CreateTestTask(controller, context, workItemName, jobName, taskName1); @@ -207,7 +176,6 @@ public void TestListAllTasks() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -218,10 +186,7 @@ public void TestListAllTasks() public void TestListTaskPipeline() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-task-pipe"; - string accountName = "testlisttaskpipe"; - string location = "eastus"; - string workItemName = "testWorkItem"; + string workItemName = "listTaskPipeWI"; string jobName = null; string taskName = "testTask"; BatchAccountContext context = null; @@ -229,7 +194,7 @@ public void TestListTaskPipeline() () => { return new string[] { string.Format("Test-ListTaskPipeline '{0}' '{1}' '{2}' '{3}'", accountName, workItemName, jobName, taskName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.CreateTestTask(controller, context, workItemName, jobName, taskName); @@ -237,7 +202,6 @@ public void TestListTaskPipeline() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -248,10 +212,7 @@ public void TestListTaskPipeline() public void TestDeleteTask() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-delete-task"; - string accountName = "testdeletetask"; - string location = "eastus"; - string workItemName = "testWorkItem"; + string workItemName = "deleteTaskWI"; string jobName = null; string taskName = "testTask"; @@ -260,7 +221,7 @@ public void TestDeleteTask() () => { return new string[] { string.Format("Test-DeleteTask '{0}' '{1}' '{2}' '{3}' '0'", accountName, workItemName, jobName, taskName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.CreateTestTask(controller, context, workItemName, jobName, taskName); @@ -268,7 +229,6 @@ public void TestDeleteTask() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -279,10 +239,7 @@ public void TestDeleteTask() public void TestDeleteTaskPipeline() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-delete-task-pipe"; - string accountName = "testdeletetaskpipe"; - string location = "eastus"; - string workItemName = "testWorkItem"; + string workItemName = "deleteTaskPipeWI"; string jobName = null; string taskName = "testTask"; @@ -291,7 +248,7 @@ public void TestDeleteTaskPipeline() () => { return new string[] { string.Format("Test-DeleteTask '{0}' '{1}' '{2}' '{3}' '1'", accountName, workItemName, jobName, taskName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); jobName = ScenarioTestHelpers.WaitForRecentJob(controller, context, workItemName); ScenarioTestHelpers.CreateTestTask(controller, context, workItemName, jobName, taskName); @@ -299,7 +256,6 @@ public void TestDeleteTaskPipeline() () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/VMTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/VMTests.cs index dee68455de4c..6363d6b5b37e 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/VMTests.cs +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/VMTests.cs @@ -26,15 +26,8 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { public class VMTests { - // NOTE: To save time on VM allocation when recording, these tests assume the following: - // - A Batch account named 'vmtests' exists under the subscription being used for recording. - // - The following commands were run to create a pool, and all 3 VMs are allocated and idle: - // $context = Get-AzureBatchAccountKeys "vmtests" - // New-AzureBatchPool -Name "testPool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -TargetDedicated 3 -BatchContext $context - - private const string accountName = "vmtests"; - private const int vmCount = 3; - private const string poolName = "testPool"; + private const string accountName = ScenarioTestHelpers.SharedAccount; + private const string poolName = ScenarioTestHelpers.SharedPool; [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] @@ -49,9 +42,19 @@ public void TestGetVMByName() public void TestListVMsByFilter() { BatchController controller = BatchController.NewInstance; + BatchAccountContext context = null; string state = "idle"; - int matches = 3; - controller.RunPsTest(string.Format("Test-ListVMsByFilter '{0}' '{1}' '{2}' '{3}'", accountName, poolName, state, matches)); + int matches = 0; + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-ListVMsByFilter '{0}' '{1}' '{2}' '{3}'", accountName, poolName, state, matches) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); + matches = ScenarioTestHelpers.GetPoolCurrentDedicated(controller, context, poolName); + }, + null, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName()); } [Fact] @@ -68,7 +71,18 @@ public void TestListVMsWithMaxCount() public void TestListAllVMs() { BatchController controller = BatchController.NewInstance; - controller.RunPsTest(string.Format("Test-ListAllVMs '{0}' '{1}' '{2}'", accountName, poolName, vmCount)); + BatchAccountContext context = null; + int vmCount = 0; + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-ListAllVMs '{0}' '{1}' '{2}'", accountName, poolName, vmCount) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); + vmCount = ScenarioTestHelpers.GetPoolCurrentDedicated(controller, context, poolName); + }, + null, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName()); } [Fact] @@ -76,7 +90,19 @@ public void TestListAllVMs() public void TestListVMPipeline() { BatchController controller = BatchController.NewInstance; - controller.RunPsTest(string.Format("Test-ListVMPipeline '{0}' '{1}' '{2}'", accountName, poolName, vmCount)); + BatchAccountContext context = null; + string state = "idle"; + int vmCount = 0; + controller.RunPsTestWorkflow( + () => { return new string[] { string.Format("Test-ListVMPipeline '{0}' '{1}' '{2}'", accountName, poolName, vmCount) }; }, + () => + { + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); + vmCount = ScenarioTestHelpers.GetPoolCurrentDedicated(controller, context, poolName); + }, + null, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName()); } } diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/VMUserTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/VMUserTests.cs index 5f269dc864bc..423ebbc293af 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/VMUserTests.cs +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/VMUserTests.cs @@ -27,13 +27,9 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { public class VMUserTests { - // NOTE: To save time on VM allocation when recording, these tests assume the following: - // - A Batch account named 'usertests' exists under the subscription being used for recording. - // - There is a pool named 'testPool' that has at least 1 vm allocated to it. - - private const string accountName = "usertests"; - private const string poolName = "testPool"; - private const string vmName = "tvm-1900272697_1-20150407t180708z"; // Run the following to get a vm name: (Get-AzureBatchVM "testPool" -BatchContext $context)[0].Name + private const string accountName = ScenarioTestHelpers.SharedAccount; + private const string poolName = ScenarioTestHelpers.SharedPool; + private const string vmName = ScenarioTestHelpers.SharedPoolVM; [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/WorkItemTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/WorkItemTests.cs index 9ad894bc106d..9efa541e8958 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/WorkItemTests.cs +++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/WorkItemTests.cs @@ -24,27 +24,14 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { public class WorkItemTests { + private const string accountName = ScenarioTestHelpers.SharedAccount; + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNewWorkItem() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-new-wi"; - string accountName = "testnewwi"; - string location = "eastus"; - BatchAccountContext context = null; - controller.RunPsTestWorkflow( - () => { return new string[] { string.Format("Test-NewWorkItem '{0}'", accountName) }; }, - () => - { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); - }, - () => - { - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); - }, - TestUtilities.GetCallingClass(), - TestUtilities.GetCurrentMethodName()); + controller.RunPsTest(string.Format("Test-NewWorkItem '{0}'", accountName)); } [Fact] @@ -52,22 +39,18 @@ public void TestNewWorkItem() public void TestGetWorkItemByName() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-get-wi"; - string accountName = "testgetwi"; - string location = "eastus"; string workItemName = "testName"; BatchAccountContext context = null; controller.RunPsTestWorkflow( () => { return new string[] { string.Format("Test-GetWorkItemByName '{0}' '{1}'", accountName, workItemName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); }, () => { ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -78,9 +61,6 @@ public void TestGetWorkItemByName() public void TestListWorkItemsByFilter() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-wi-filter"; - string accountName = "testlistwifilter"; - string location = "eastus"; string workItemName1 = "testName1"; string workItemName2 = "testName2"; string workItemName3 = "thirdtestName"; @@ -91,7 +71,7 @@ public void TestListWorkItemsByFilter() () => { return new string[] { string.Format("Test-ListWorkItemsByFilter '{0}' '{1}' '{2}'", accountName, workItemPrefix, matches) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName1); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName2); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName3); @@ -101,7 +81,6 @@ public void TestListWorkItemsByFilter() ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName1); ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName2); ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName3); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -112,9 +91,6 @@ public void TestListWorkItemsByFilter() public void TestListWorkItemsWithMaxCount() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-wi-maxcount"; - string accountName = "testlistwimaxcount"; - string location = "eastus"; string workItemName1 = "testName1"; string workItemName2 = "testName2"; string workItemName3 = "thirdtestName"; @@ -124,7 +100,7 @@ public void TestListWorkItemsWithMaxCount() () => { return new string[] { string.Format("Test-ListWorkItemsWithMaxCount '{0}' '{1}'", accountName, maxCount) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName1); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName2); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName3); @@ -134,7 +110,6 @@ public void TestListWorkItemsWithMaxCount() ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName1); ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName2); ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName3); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -145,9 +120,6 @@ public void TestListWorkItemsWithMaxCount() public void TestListAllWorkItems() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-list-wi"; - string accountName = "testlistwi"; - string location = "eastus"; string workItemName1 = "testName1"; string workItemName2 = "testName2"; string workItemName3 = "thirdtestName"; @@ -157,7 +129,7 @@ public void TestListAllWorkItems() () => { return new string[] { string.Format("Test-ListAllWorkItems '{0}' '{1}'", accountName, count) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName1); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName2); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName3); @@ -167,7 +139,6 @@ public void TestListAllWorkItems() ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName1); ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName2); ScenarioTestHelpers.DeleteWorkItem(controller, context, workItemName3); - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); }, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); @@ -178,9 +149,6 @@ public void TestListAllWorkItems() public void TestDeleteWorkItem() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-delete-wi"; - string accountName = "testdeletewi"; - string location = "eastus"; string workItemName = "testWorkItem"; BatchAccountContext context = null; @@ -188,13 +156,10 @@ public void TestDeleteWorkItem() () => { return new string[] { string.Format("Test-DeleteWorkItem '{0}' '{1}' '0'", accountName, workItemName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); }, - () => - { - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); - }, + null, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); } @@ -204,9 +169,6 @@ public void TestDeleteWorkItem() public void TestDeleteWorkItemPipeline() { BatchController controller = BatchController.NewInstance; - string resourceGroupName = "test-delete-wi-pipe"; - string accountName = "testdeletewipipe"; - string location = "eastus"; string workItemName = "testWorkItem"; BatchAccountContext context = null; @@ -214,13 +176,10 @@ public void TestDeleteWorkItemPipeline() () => { return new string[] { string.Format("Test-DeleteWorkItem '{0}' '{1}' '1'", accountName, workItemName) }; }, () => { - context = ScenarioTestHelpers.CreateTestAccountAndResourceGroup(controller, resourceGroupName, accountName, location); + context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, accountName); ScenarioTestHelpers.CreateTestWorkItem(controller, context, workItemName); }, - () => - { - ScenarioTestHelpers.CleanupTestAccount(controller, resourceGroupName, accountName); - }, + null, TestUtilities.GetCallingClass(), TestUtilities.GetCurrentMethodName()); } diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountKeys.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountKeys.json index 3277cd972be5..152730e28f6d 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountKeys.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountKeys.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"West 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 \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central 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 \"East US\",\r\n \"Central 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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"georegions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"webquotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"adfgated3\",\r\n \"2014-09-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-05-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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"eastasia\",\r\n \"southeastasia\",\r\n \"eastus\",\r\n \"westus\",\r\n \"northcentralus\",\r\n \"southcentralus\",\r\n \"northeurope\",\r\n \"westeurope\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"1.0-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"resourceType\": \"accounts/applications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ - "21795" + "56903" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" + "14974" ], "x-ms-request-id": [ - "9466a22d-9953-4d96-ba1d-48e4efbb0f9d" + "a5f98769-55ad-455a-94c3-e55dc333bdb5" ], "x-ms-correlation-request-id": [ - "9466a22d-9953-4d96-ba1d-48e4efbb0f9d" + "a5f98769-55ad-455a-94c3-e55dc333bdb5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022252Z:9466a22d-9953-4d96-ba1d-48e4efbb0f9d" + "WESTUS:20150709T183422Z:a5f98769-55ad-455a-94c3-e55dc333bdb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:52 GMT" + "Thu, 09 Jul 2015 18:34:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6673?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY2NzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk3935?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -72,17 +72,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "14973" ], "x-ms-request-id": [ - "f342e4ef-03a7-466a-99d4-eb150fa59f27" + "7a360d4d-fb8a-4fba-bbb7-1ba4bb930d5e" ], "x-ms-correlation-request-id": [ - "f342e4ef-03a7-466a-99d4-eb150fa59f27" + "7a360d4d-fb8a-4fba-bbb7-1ba4bb930d5e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022253Z:f342e4ef-03a7-466a-99d4-eb150fa59f27" + "WESTUS:20150709T183423Z:7a360d4d-fb8a-4fba-bbb7-1ba4bb930d5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +94,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:52 GMT" + "Thu, 09 Jul 2015 18:34:22 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6673?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY2NzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk3935?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -118,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "14971" ], "x-ms-request-id": [ - "23e2b0f7-39b5-4138-8956-c01e18767d91" + "4b080209-41dd-4fdf-a30f-eeba67a04a2a" ], "x-ms-correlation-request-id": [ - "23e2b0f7-39b5-4138-8956-c01e18767d91" + "4b080209-41dd-4fdf-a30f-eeba67a04a2a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022300Z:23e2b0f7-39b5-4138-8956-c01e18767d91" + "WESTUS:20150709T183518Z:4b080209-41dd-4fdf-a30f-eeba67a04a2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,31 +139,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:23:00 GMT" + "Thu, 09 Jul 2015 18:35:17 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6673?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY2NzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk3935?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "44" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673\",\r\n \"name\": \"onesdk6673\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935\",\r\n \"name\": \"onesdk3935\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -172,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1194" ], "x-ms-request-id": [ - "fd053c3b-5ff1-4300-bb2f-7fbe20609e32" + "bc8182fe-0ce3-4c38-aec8-c8414911018e" ], "x-ms-correlation-request-id": [ - "fd053c3b-5ff1-4300-bb2f-7fbe20609e32" + "bc8182fe-0ce3-4c38-aec8-c8414911018e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022253Z:fd053c3b-5ff1-4300-bb2f-7fbe20609e32" + "WESTUS:20150709T183424Z:bc8182fe-0ce3-4c38-aec8-c8414911018e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,14 +193,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:53 GMT" + "Thu, 09 Jul 2015 18:34:23 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" + "14972" ], "x-ms-request-id": [ - "7cece720-8384-4268-a52e-92478a780999" + "1578cd17-e1cc-4668-9589-6a9d54291ed8" ], "x-ms-correlation-request-id": [ - "7cece720-8384-4268-a52e-92478a780999" + "1578cd17-e1cc-4668-9589-6a9d54291ed8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022253Z:7cece720-8384-4268-a52e-92478a780999" + "WESTUS:20150709T183424Z:1578cd17-e1cc-4668-9589-6a9d54291ed8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,14 +241,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:53 GMT" + "Thu, 09 Jul 2015 18:34:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6673/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk3935/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -271,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:24e63c87-3e4d-4766-9561-a82d77d0fd47" + "westus:90c95908-3d14-45da-81cd-d39f7881b07b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31893" + "14966" ], "x-ms-correlation-request-id": [ - "c72e23ef-1885-4a37-a4c5-0ae87c195c21" + "c5137566-492f-40b6-882e-a494dba55d5b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022254Z:c72e23ef-1885-4a37-a4c5-0ae87c195c21" + "WESTUS:20150709T183424Z:c5137566-492f-40b6-882e-a494dba55d5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +292,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:54 GMT" + "Thu, 09 Jul 2015 18:34:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,10 +307,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,16 +322,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "14971" ], "x-ms-request-id": [ - "fa637187-9d6c-4307-bd58-9b2d43ddf0c1" + "363e0968-fbef-40d8-915b-90c7a8d47ffb" ], "x-ms-correlation-request-id": [ - "fa637187-9d6c-4307-bd58-9b2d43ddf0c1" + "363e0968-fbef-40d8-915b-90c7a8d47ffb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022254Z:fa637187-9d6c-4307-bd58-9b2d43ddf0c1" + "WESTUS:20150709T183424Z:363e0968-fbef-40d8-915b-90c7a8d47ffb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,28 +340,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:53 GMT" + "Thu, 09 Jul 2015 18:34:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Nj9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "74" + "78" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "7" ] }, "ResponseBody": "", @@ -376,31 +376,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1193" ], "request-id": [ - "29791b0d-87a8-4977-acd9-d7a97c41497b" + "be29cee0-6716-413c-b7f7-81461923459c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e861885-9505-4bc3-84af-2ea294663864" + "c5749860-624d-4c2f-b0ed-e3af917d2cd6" ], "x-ms-correlation-request-id": [ - "0e861885-9505-4bc3-84af-2ea294663864" + "c5749860-624d-4c2f-b0ed-e3af917d2cd6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022255Z:0e861885-9505-4bc3-84af-2ea294663864" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183430Z:c5749860-624d-4c2f-b0ed-e3af917d2cd6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:55 GMT" + "Thu, 09 Jul 2015 18:34:30 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870/operationResults/29791b0d-87a8-4977-acd9-d7a97c41497b?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596/operationResults/be29cee0-6716-413c-b7f7-81461923459c?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -409,25 +409,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870/operationResults/29791b0d-87a8-4977-acd9-d7a97c41497b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzAvb3BlcmF0aW9uUmVzdWx0cy8yOTc5MWIwZC04N2E4LTQ5NzctYWNkOS1kN2E5N2M0MTQ5N2I/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596/operationResults/be29cee0-6716-413c-b7f7-81461923459c?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Ni9vcGVyYXRpb25SZXN1bHRzL2JlMjljZWUwLTY3MTYtNDEzYy1iN2Y3LTgxNDYxOTIzNDU5Yz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "7" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9870\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk9870.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk596\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk596.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "350" + "347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -436,37 +433,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:22:56 GMT" + "Thu, 09 Jul 2015 18:34:32 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e3c0e176-484c-40e8-818c-5614e7ebba66" + "30168fdf-80fe-45ce-809f-8cc9522d769a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" + "14974" ], "x-ms-request-id": [ - "af6c5434-b546-46c2-81e7-124efc9b2365" + "78cb42ed-8172-4599-a095-aa57252ad8de" ], "x-ms-correlation-request-id": [ - "af6c5434-b546-46c2-81e7-124efc9b2365" + "78cb42ed-8172-4599-a095-aa57252ad8de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022256Z:af6c5434-b546-46c2-81e7-124efc9b2365" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183430Z:78cb42ed-8172-4599-a095-aa57252ad8de" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:55 GMT" + "Thu, 09 Jul 2015 18:34:30 GMT" ], "ETag": [ - "0x8D1B63610F1D8CD" + "0x8D2888D081652D1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -475,22 +472,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Nj9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9870\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk9870.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk596\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk596.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "350" + "347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -499,37 +496,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:22:56 GMT" + "Thu, 09 Jul 2015 18:35:13 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8b6be129-3f4b-4e65-a9f0-be8b4e878e1b" + "2a8d3f11-52a6-4f14-9264-596a79c8d09b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" + "14973" ], "x-ms-request-id": [ - "d0048a9a-01aa-4266-bd86-98d7a600ca2c" + "b01b531d-c8d2-45e1-bdda-75369bfdc443" ], "x-ms-correlation-request-id": [ - "d0048a9a-01aa-4266-bd86-98d7a600ca2c" + "b01b531d-c8d2-45e1-bdda-75369bfdc443" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022256Z:d0048a9a-01aa-4266-bd86-98d7a600ca2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183512Z:b01b531d-c8d2-45e1-bdda-75369bfdc443" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:55 GMT" + "Thu, 09 Jul 2015 18:35:12 GMT" ], "ETag": [ - "0x8D1B636112A74A2" + "0x8D2888D2109E403" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -538,22 +535,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Nj9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9870\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk9870.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk596\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk596.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "350" + "347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -562,37 +559,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:22:57 GMT" + "Thu, 09 Jul 2015 18:35:14 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8f4e26f6-65bc-4c6e-8e66-57f6c9f68d60" + "28bd47e2-44fd-4f8a-917d-734c16f50b0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" + "14972" ], "x-ms-request-id": [ - "a58e5a33-b90e-4825-b86c-fffc2b2de06f" + "abecdb72-e1ee-4f12-af6d-5cad0f5882d7" ], "x-ms-correlation-request-id": [ - "a58e5a33-b90e-4825-b86c-fffc2b2de06f" + "abecdb72-e1ee-4f12-af6d-5cad0f5882d7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022257Z:a58e5a33-b90e-4825-b86c-fffc2b2de06f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183513Z:abecdb72-e1ee-4f12-af6d-5cad0f5882d7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:57 GMT" + "Thu, 09 Jul 2015 18:35:12 GMT" ], "ETag": [ - "0x8D1B636118C68FE" + "0x8D2888D21566E4D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -601,22 +598,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Nj9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9870\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk9870.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk596\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk596.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "350" + "347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -625,37 +622,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:22:58 GMT" + "Thu, 09 Jul 2015 18:35:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ffca1258-dacf-489e-aa69-5510e9ef3be6" + "67d37e8f-87c7-4a71-ab07-793cc4a9e3cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "14971" ], "x-ms-request-id": [ - "55b3dd6c-4c45-49d4-8afd-69871498e477" + "00d409d9-0a74-4236-b8e6-d5a14833a613" ], "x-ms-correlation-request-id": [ - "55b3dd6c-4c45-49d4-8afd-69871498e477" + "00d409d9-0a74-4236-b8e6-d5a14833a613" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022258Z:55b3dd6c-4c45-49d4-8afd-69871498e477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183514Z:00d409d9-0a74-4236-b8e6-d5a14833a613" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:58 GMT" + "Thu, 09 Jul 2015 18:35:13 GMT" ], "ETag": [ - "0x8D1B636121CACB6" + "0x8D2888D21BE302A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -664,22 +661,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Nj9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9870\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk9870.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk596\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk596.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "350" + "347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -688,37 +685,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:22:59 GMT" + "Thu, 09 Jul 2015 18:35:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e9703fe2-5564-4bbb-800f-0bfbb069f20a" + "3cb85337-e330-43a4-b484-1d4cab80dccc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" + "14970" ], "x-ms-request-id": [ - "ac771981-2887-4046-af62-cc351a397e92" + "5f71ee17-47c0-4244-9556-7e82911bdf64" ], "x-ms-correlation-request-id": [ - "ac771981-2887-4046-af62-cc351a397e92" + "5f71ee17-47c0-4244-9556-7e82911bdf64" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022259Z:ac771981-2887-4046-af62-cc351a397e92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183514Z:5f71ee17-47c0-4244-9556-7e82911bdf64" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:59 GMT" + "Thu, 09 Jul 2015 18:35:14 GMT" ], "ETag": [ - "0x8D1B63612A38653" + "0x8D2888D222CF951" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -727,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Nj9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9870\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk9870.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk596\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk596.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "350" + "347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -751,37 +748,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:22:59 GMT" + "Thu, 09 Jul 2015 18:35:16 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2e686038-a07b-4b3b-960a-56acab327a1e" + "aa622743-7e8f-41a2-aad6-2e83fc2a5509" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "14969" ], "x-ms-request-id": [ - "fb2cbb03-374c-411d-9afd-6ab3d591f813" + "15bee8b4-b527-47a4-ac17-df4ec3efbcca" ], "x-ms-correlation-request-id": [ - "fb2cbb03-374c-411d-9afd-6ab3d591f813" + "15bee8b4-b527-47a4-ac17-df4ec3efbcca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022259Z:fb2cbb03-374c-411d-9afd-6ab3d591f813" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183515Z:15bee8b4-b527-47a4-ac17-df4ec3efbcca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:59 GMT" + "Thu, 09 Jul 2015 18:35:14 GMT" ], "ETag": [ - "0x8D1B63612FAA1BB" + "0x8D2888D2275ABA1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -790,22 +787,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzAvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"onesdk9870\",\r\n \"primary\": \"FkyrWwhUkpAuOar0WAlUK75yEe5J+vlM1ss3HblX0U5jmV6ahuP5X3TsYq+L6v1meqgpL7SizK71bL2NuohBBw==\",\r\n \"secondary\": \"BMSi4im2fRmZJ9uSJ0ag3TQxgvlsRhNfDrcX2t/FVKVYMsCZE2R+jN5P1M9Qw4TW9bHFHGqP1YEz8DR/5bAQAw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"onesdk596\",\r\n \"primary\": \"ZVBIAmGNWxI9pgp1+w+SWQVpv2T3I2TXExo8lNPhQVp4wbvy/Ly/OSUQm+pDdiPqTgmeG0hn5qfC9bBG9Y4SSg==\",\r\n \"secondary\": \"hLhIO7p7NVi6gSRqbpyID0pnIDkstr4TU+2JjPh9EHnDbLoFYjlXC2NmkTFP9gQ+1ZDa4qnwVP+Fduenr/7Q2Q==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -817,28 +814,28 @@ "no-cache" ], "request-id": [ - "9badef60-d5ac-45fe-b938-35ef3da1e8f1" + "8cd759e2-adf4-4138-9dca-59d9fd1cf565" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1192" ], "x-ms-request-id": [ - "4a1bd51a-de71-4494-852d-43fd6fc10484" + "0a124c4b-0ce7-4487-b367-92792e2535f8" ], "x-ms-correlation-request-id": [ - "4a1bd51a-de71-4494-852d-43fd6fc10484" + "0a124c4b-0ce7-4487-b367-92792e2535f8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022257Z:4a1bd51a-de71-4494-852d-43fd6fc10484" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183513Z:0a124c4b-0ce7-4487-b367-92792e2535f8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:57 GMT" + "Thu, 09 Jul 2015 18:35:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -847,22 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzAvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"onesdk9870\",\r\n \"primary\": \"nIz8F1c0PkoJxfnM5ZpdMEN1NIy28rxvgO6YKLQJOsQOlllL8snWEDn+GHwzDoNUV2hAYkiTuOA+A92drd3Wmg==\",\r\n \"secondary\": \"6kGALTixxIvtdrfRSkJi2DHudeWwT2LPgCX4XO5a9ee0IY/qMJ7pHnayYgbbtBa5JoiEMJM2Yj5dwEuIuYteUQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"onesdk596\",\r\n \"primary\": \"m/MBMbg+x+TauF0t9ieNJDCI1q6b6gJnVxIJzfjHMkVhlmfRcIXU3iQ6ykDfqjSGKneFQw3dS2k1JioxxtUjDw==\",\r\n \"secondary\": \"wShApmOwW2ZMB0j08/v6QU74hPfxasb0vd59C4QvyHo3My/qeK9rgN4xgEof8VYfWfcMkdhc+t9gKS481DikpQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,28 +871,28 @@ "no-cache" ], "request-id": [ - "2e3f8bca-3889-44fc-bc9b-fae5a398821d" + "2c753738-14e2-4153-9f2e-fbf195962f90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "1189" ], "x-ms-request-id": [ - "963800de-cc9c-4e1d-8332-25ad1cc9efda" + "567a0271-1c6d-4a41-b953-a40b03f0c48e" ], "x-ms-correlation-request-id": [ - "963800de-cc9c-4e1d-8332-25ad1cc9efda" + "567a0271-1c6d-4a41-b953-a40b03f0c48e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022259Z:963800de-cc9c-4e1d-8332-25ad1cc9efda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183514Z:567a0271-1c6d-4a41-b953-a40b03f0c48e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:59 GMT" + "Thu, 09 Jul 2015 18:35:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -904,8 +901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870/regenerateKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzAvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596/regenerateKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Ni9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}", "RequestHeaders": { @@ -916,16 +913,16 @@ "28" ], "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"onesdk9870\",\r\n \"primary\": \"nIz8F1c0PkoJxfnM5ZpdMEN1NIy28rxvgO6YKLQJOsQOlllL8snWEDn+GHwzDoNUV2hAYkiTuOA+A92drd3Wmg==\",\r\n \"secondary\": \"BMSi4im2fRmZJ9uSJ0ag3TQxgvlsRhNfDrcX2t/FVKVYMsCZE2R+jN5P1M9Qw4TW9bHFHGqP1YEz8DR/5bAQAw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"onesdk596\",\r\n \"primary\": \"m/MBMbg+x+TauF0t9ieNJDCI1q6b6gJnVxIJzfjHMkVhlmfRcIXU3iQ6ykDfqjSGKneFQw3dS2k1JioxxtUjDw==\",\r\n \"secondary\": \"hLhIO7p7NVi6gSRqbpyID0pnIDkstr4TU+2JjPh9EHnDbLoFYjlXC2NmkTFP9gQ+1ZDa4qnwVP+Fduenr/7Q2Q==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -937,28 +934,28 @@ "no-cache" ], "request-id": [ - "38a74051-d130-4bf9-ad18-3424c953c754" + "1b3f1e78-15f6-431e-b49a-fde31cd909fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1191" ], "x-ms-request-id": [ - "9daac50d-6d91-4d42-8109-bf3708eb79cf" + "ffc58a31-c5a3-40e0-bc90-2b97d5ddd45b" ], "x-ms-correlation-request-id": [ - "9daac50d-6d91-4d42-8109-bf3708eb79cf" + "ffc58a31-c5a3-40e0-bc90-2b97d5ddd45b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022258Z:9daac50d-6d91-4d42-8109-bf3708eb79cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183513Z:ffc58a31-c5a3-40e0-bc90-2b97d5ddd45b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:57 GMT" + "Thu, 09 Jul 2015 18:35:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -967,8 +964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870/regenerateKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzAvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596/regenerateKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Ni9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyName\": \"Secondary\"\r\n}", "RequestHeaders": { @@ -979,16 +976,16 @@ "30" ], "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"onesdk9870\",\r\n \"primary\": \"nIz8F1c0PkoJxfnM5ZpdMEN1NIy28rxvgO6YKLQJOsQOlllL8snWEDn+GHwzDoNUV2hAYkiTuOA+A92drd3Wmg==\",\r\n \"secondary\": \"6kGALTixxIvtdrfRSkJi2DHudeWwT2LPgCX4XO5a9ee0IY/qMJ7pHnayYgbbtBa5JoiEMJM2Yj5dwEuIuYteUQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"onesdk596\",\r\n \"primary\": \"m/MBMbg+x+TauF0t9ieNJDCI1q6b6gJnVxIJzfjHMkVhlmfRcIXU3iQ6ykDfqjSGKneFQw3dS2k1JioxxtUjDw==\",\r\n \"secondary\": \"wShApmOwW2ZMB0j08/v6QU74hPfxasb0vd59C4QvyHo3My/qeK9rgN4xgEof8VYfWfcMkdhc+t9gKS481DikpQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1000,28 +997,28 @@ "no-cache" ], "request-id": [ - "d3f4a599-24e6-453c-b769-621464bd02dc" + "e5bd4561-1353-4728-a986-183b01559b8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1190" ], "x-ms-request-id": [ - "d050214c-a83a-422f-b8af-80c4eb46391f" + "2f65da86-8841-45de-b80c-e0838a4797c7" ], "x-ms-correlation-request-id": [ - "d050214c-a83a-422f-b8af-80c4eb46391f" + "2f65da86-8841-45de-b80c-e0838a4797c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022258Z:d050214c-a83a-422f-b8af-80c4eb46391f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183514Z:2f65da86-8841-45de-b80c-e0838a4797c7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:22:58 GMT" + "Thu, 09 Jul 2015 18:35:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1030,16 +1027,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Nj9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "19" ] }, "ResponseBody": "", @@ -1057,31 +1051,31 @@ "15" ], "request-id": [ - "3026bba7-0b40-4024-b7b9-53ae618b5b67" + "4811a1d2-ff91-470e-ace3-26dde356b0be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1188" ], "x-ms-request-id": [ - "fc57426d-99bc-40a4-857c-fc68f5c1c0d1" + "04fb8ebc-2541-4caa-85a7-dccdf12611e9" ], "x-ms-correlation-request-id": [ - "fc57426d-99bc-40a4-857c-fc68f5c1c0d1" + "04fb8ebc-2541-4caa-85a7-dccdf12611e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022300Z:fc57426d-99bc-40a4-857c-fc68f5c1c0d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183518Z:04fb8ebc-2541-4caa-85a7-dccdf12611e9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:23:00 GMT" + "Thu, 09 Jul 2015 18:35:17 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870/operationResults/3026bba7-0b40-4024-b7b9-53ae618b5b67?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596/operationResults/4811a1d2-ff91-470e-ace3-26dde356b0be?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1090,19 +1084,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6673/providers/Microsoft.Batch/batchAccounts/onesdk9870/operationResults/3026bba7-0b40-4024-b7b9-53ae618b5b67?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk4NzAvb3BlcmF0aW9uUmVzdWx0cy8zMDI2YmJhNy0wYjQwLTQwMjQtYjdiOS01M2FlNjE4YjViNjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk3935/providers/Microsoft.Batch/batchAccounts/onesdk596/operationResults/4811a1d2-ff91-470e-ace3-26dde356b0be?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazU5Ni9vcGVyYXRpb25SZXN1bHRzLzQ4MTFhMWQyLWZmOTEtNDcwZS1hY2UzLTI2ZGRlMzU2YjBiZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "19" ] }, "ResponseBody": "", @@ -1114,37 +1105,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:23:00 GMT" + "Thu, 09 Jul 2015 18:35:19 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8a933aeb-463a-4ef5-a826-9d2f5ca788d8" + "b6ded57c-319a-48d3-b0c4-ae815101ec53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" + "14968" ], "x-ms-request-id": [ - "7e633171-77c6-458c-9f56-f1d8fdc0e2db" + "9ddc100e-c445-4039-baef-26790fae9b92" ], "x-ms-correlation-request-id": [ - "7e633171-77c6-458c-9f56-f1d8fdc0e2db" + "9ddc100e-c445-4039-baef-26790fae9b92" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022300Z:7e633171-77c6-458c-9f56-f1d8fdc0e2db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T183518Z:9ddc100e-c445-4039-baef-26790fae9b92" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:23:00 GMT" + "Thu, 09 Jul 2015 18:35:18 GMT" ], "ETag": [ - "0x8D1B63613A3163A" + "0x8D2888D249C09FE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1153,16 +1144,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6673?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY2NzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk3935?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "23" ] }, "ResponseBody": "", @@ -1180,16 +1168,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1193" ], "x-ms-request-id": [ - "a567e893-256a-465f-b8a1-9772088910bf" + "dde985ec-142a-4989-9e78-260ba73ed5e3" ], "x-ms-correlation-request-id": [ - "a567e893-256a-465f-b8a1-9772088910bf" + "dde985ec-142a-4989-9e78-260ba73ed5e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022301Z:a567e893-256a-465f-b8a1-9772088910bf" + "WESTUS:20150709T183521Z:dde985ec-142a-4989-9e78-260ba73ed5e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1198,17 +1186,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:23:00 GMT" + "Thu, 09 Jul 2015 18:35:20 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOamN6TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0xTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1217,9 +1205,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "23" ] }, "ResponseBody": "", @@ -1237,16 +1222,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "14970" ], "x-ms-request-id": [ - "283931f1-4603-421c-bbdb-1a23c5711a34" + "8a00d894-427e-4f75-ae71-9eb056f0c8b2" ], "x-ms-correlation-request-id": [ - "283931f1-4603-421c-bbdb-1a23c5711a34" + "8a00d894-427e-4f75-ae71-9eb056f0c8b2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022301Z:283931f1-4603-421c-bbdb-1a23c5711a34" + "WESTUS:20150709T183521Z:8a00d894-427e-4f75-ae71-9eb056f0c8b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1255,17 +1240,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:23:00 GMT" + "Thu, 09 Jul 2015 18:35:20 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOamN6TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0xTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1274,9 +1259,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "23" ] }, "ResponseBody": "", @@ -1294,16 +1276,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" + "14969" ], "x-ms-request-id": [ - "3a61f56f-c924-444a-a3e5-9efd07d1ec67" + "f9f48c5e-8ad7-4927-b541-4cd0d48caba1" ], "x-ms-correlation-request-id": [ - "3a61f56f-c924-444a-a3e5-9efd07d1ec67" + "f9f48c5e-8ad7-4927-b541-4cd0d48caba1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022316Z:3a61f56f-c924-444a-a3e5-9efd07d1ec67" + "WESTUS:20150709T183536Z:f9f48c5e-8ad7-4927-b541-4cd0d48caba1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,17 +1294,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:23:15 GMT" + "Thu, 09 Jul 2015 18:35:36 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOamN6TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0xTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1331,9 +1313,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "23" ] }, "ResponseBody": "", @@ -1351,16 +1330,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" + "14968" ], "x-ms-request-id": [ - "fb6427df-c96e-4581-bc6d-8c5cf83830b0" + "a4110e8f-96ce-43d9-8928-4c6485e272cf" ], "x-ms-correlation-request-id": [ - "fb6427df-c96e-4581-bc6d-8c5cf83830b0" + "a4110e8f-96ce-43d9-8928-4c6485e272cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022331Z:fb6427df-c96e-4581-bc6d-8c5cf83830b0" + "WESTUS:20150709T183552Z:a4110e8f-96ce-43d9-8928-4c6485e272cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1369,17 +1348,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:23:30 GMT" + "Thu, 09 Jul 2015 18:35:51 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOamN6TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0xTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1388,9 +1367,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "23" ] }, "ResponseBody": "", @@ -1405,16 +1381,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "14967" ], "x-ms-request-id": [ - "b71a153b-c92f-42ac-85ea-82b14bd1c7f6" + "e8ba4e56-f0a4-4082-9691-909ef66ec0ca" ], "x-ms-correlation-request-id": [ - "b71a153b-c92f-42ac-85ea-82b14bd1c7f6" + "e8ba4e56-f0a4-4082-9691-909ef66ec0ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022346Z:b71a153b-c92f-42ac-85ea-82b14bd1c7f6" + "WESTUS:20150709T183607Z:e8ba4e56-f0a4-4082-9691-909ef66ec0ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1423,7 +1399,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:23:46 GMT" + "Thu, 09 Jul 2015 18:36:07 GMT" ] }, "StatusCode": 200 @@ -1431,11 +1407,11 @@ ], "Names": { "Test-BatchAccountKeys": [ - "onesdk9870", - "onesdk6673" + "onesdk596", + "onesdk3935" ] }, "Variables": { - "SubscriptionId": "4a06fe24-c197-4353-adc1-058d1a51924e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateAndRemoveBatchAccountViaPiping.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateAndRemoveBatchAccountViaPiping.json index 547aa0ba6e48..d958b4090b1c 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateAndRemoveBatchAccountViaPiping.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateAndRemoveBatchAccountViaPiping.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"West 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 \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central 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 \"East US\",\r\n \"Central 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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"georegions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"webquotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"adfgated3\",\r\n \"2014-09-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-05-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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"eastasia\",\r\n \"southeastasia\",\r\n \"eastus\",\r\n \"westus\",\r\n \"northcentralus\",\r\n \"southcentralus\",\r\n \"northeurope\",\r\n \"westeurope\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"1.0-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"resourceType\": \"accounts/applications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ - "21795" + "56903" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31891" + "14963" ], "x-ms-request-id": [ - "e5316358-4ba7-4f6b-bda7-8acd16a182c2" + "e4901bb1-d127-4876-ba55-23daafcfcc5e" ], "x-ms-correlation-request-id": [ - "e5316358-4ba7-4f6b-bda7-8acd16a182c2" + "e4901bb1-d127-4876-ba55-23daafcfcc5e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022418Z:e5316358-4ba7-4f6b-bda7-8acd16a182c2" + "WESTUS:20150709T185038Z:e4901bb1-d127-4876-ba55-23daafcfcc5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,62 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:18 GMT" + "Thu, 09 Jul 2015 18:50:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk2788?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI3ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ + "56903" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "4d7190d8-29b8-43fe-b89b-dccc1a086152" + ], + "x-ms-correlation-request-id": [ + "4d7190d8-29b8-43fe-b89b-dccc1a086152" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T185039Z:4d7190d8-29b8-43fe-b89b-dccc1a086152" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 18:50:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1415?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE0MTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -72,17 +120,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31890" + "14961" ], "x-ms-request-id": [ - "6d94007b-4ad9-4cd6-b2b2-6b974fba53a4" + "681dc0cf-9f96-42a0-996c-186fe7697aed" ], "x-ms-correlation-request-id": [ - "6d94007b-4ad9-4cd6-b2b2-6b974fba53a4" + "681dc0cf-9f96-42a0-996c-186fe7697aed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022419Z:6d94007b-4ad9-4cd6-b2b2-6b974fba53a4" + "WESTUS:20150709T185039Z:681dc0cf-9f96-42a0-996c-186fe7697aed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +142,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:18 GMT" + "Thu, 09 Jul 2015 18:50:38 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk2788?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI3ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1415?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE0MTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -118,16 +169,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31875" + "14955" ], "x-ms-request-id": [ - "ae01dfa8-ce72-4dda-a775-59ea27074ed6" + "24ffe8ba-d723-444a-9f73-df6caecf0324" ], "x-ms-correlation-request-id": [ - "ae01dfa8-ce72-4dda-a775-59ea27074ed6" + "24ffe8ba-d723-444a-9f73-df6caecf0324" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022512Z:ae01dfa8-ce72-4dda-a775-59ea27074ed6" + "WESTUS:20150709T185203Z:24ffe8ba-d723-444a-9f73-df6caecf0324" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,31 +187,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:11 GMT" + "Thu, 09 Jul 2015 18:52:02 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk2788?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI3ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1415?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE0MTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "44" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788\",\r\n \"name\": \"onesdk2788\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415\",\r\n \"name\": \"onesdk1415\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -172,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" + "1188" ], "x-ms-request-id": [ - "1830fe95-4184-4c31-8e18-905ef5054d81" + "1d5def95-406e-4bbf-bfde-5242c713e397" ], "x-ms-correlation-request-id": [ - "1830fe95-4184-4c31-8e18-905ef5054d81" + "1d5def95-406e-4bbf-bfde-5242c713e397" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022419Z:1830fe95-4184-4c31-8e18-905ef5054d81" + "WESTUS:20150709T185041Z:1d5def95-406e-4bbf-bfde-5242c713e397" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,14 +241,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:18 GMT" + "Thu, 09 Jul 2015 18:50:40 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,16 +271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31889" + "14960" ], "x-ms-request-id": [ - "a15b95c6-bbbb-40f9-b3af-536a0c5b9130" + "7e8af119-35d5-4333-972c-367a799ca950" ], "x-ms-correlation-request-id": [ - "a15b95c6-bbbb-40f9-b3af-536a0c5b9130" + "7e8af119-35d5-4333-972c-367a799ca950" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022419Z:a15b95c6-bbbb-40f9-b3af-536a0c5b9130" + "WESTUS:20150709T185041Z:7e8af119-35d5-4333-972c-367a799ca950" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,14 +289,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:18 GMT" + "Thu, 09 Jul 2015 18:50:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk2788/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1415/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -271,16 +322,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:be3cf3ce-629a-438e-aa7d-55dea0461cfe" + "westus:164e5cd4-ade7-465d-a92a-5dda138de697" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "14965" ], "x-ms-correlation-request-id": [ - "28fc95ce-7f32-4d65-b601-c0d0c1b796b7" + "746d13d4-8b23-4ff0-b1d3-ec79f4461bb0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022419Z:28fc95ce-7f32-4d65-b601-c0d0c1b796b7" + "WESTUS:20150709T185041Z:746d13d4-8b23-4ff0-b1d3-ec79f4461bb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +340,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:19 GMT" + "Thu, 09 Jul 2015 18:50:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,10 +355,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,16 +370,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31888" + "14959" ], "x-ms-request-id": [ - "ab3ec83c-7f28-4bb3-b1f9-b69b04bbcfa6" + "3729498e-18f9-41d7-ac7f-18fe0252e453" ], "x-ms-correlation-request-id": [ - "ab3ec83c-7f28-4bb3-b1f9-b69b04bbcfa6" + "3729498e-18f9-41d7-ac7f-18fe0252e453" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022419Z:ab3ec83c-7f28-4bb3-b1f9-b69b04bbcfa6" + "WESTUS:20150709T185041Z:3729498e-18f9-41d7-ac7f-18fe0252e453" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,14 +388,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:19 GMT" + "Thu, 09 Jul 2015 18:50:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -352,10 +403,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,16 +418,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31885" + "14958" ], "x-ms-request-id": [ - "b11d4b96-afab-42fd-9030-3c02be30cd41" + "08e6643d-bed7-4f94-9b23-744322f228fd" ], "x-ms-correlation-request-id": [ - "b11d4b96-afab-42fd-9030-3c02be30cd41" + "08e6643d-bed7-4f94-9b23-744322f228fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022437Z:b11d4b96-afab-42fd-9030-3c02be30cd41" + "WESTUS:20150709T185049Z:08e6643d-bed7-4f94-9b23-744322f228fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,14 +436,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:36 GMT" + "Thu, 09 Jul 2015 18:50:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -400,10 +451,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323\",\r\n \"name\": \"onesdk9323\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919\",\r\n \"name\": \"onesdk6919\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130\",\r\n \"name\": \"onesdk7130\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12751" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -415,16 +466,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31878" + "14957" ], "x-ms-request-id": [ - "de5c6b6a-ba1c-4d4c-ad0e-7df6dcbd4e08" + "362f8323-780a-4e3f-b45b-744a433df851" ], "x-ms-correlation-request-id": [ - "de5c6b6a-ba1c-4d4c-ad0e-7df6dcbd4e08" + "362f8323-780a-4e3f-b45b-744a433df851" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022511Z:de5c6b6a-ba1c-4d4c-ad0e-7df6dcbd4e08" + "WESTUS:20150709T185152Z:362f8323-780a-4e3f-b45b-744a433df851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -433,14 +484,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:11 GMT" + "Thu, 09 Jul 2015 18:51:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -448,10 +499,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323\",\r\n \"name\": \"onesdk9323\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919\",\r\n \"name\": \"onesdk6919\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130\",\r\n \"name\": \"onesdk7130\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12751" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,16 +514,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31876" + "14956" ], "x-ms-request-id": [ - "af5c64ab-3b97-4fb0-ba15-119e8215c6ba" + "37bd8f30-39ff-40e0-bb5e-dc9b9a0b3163" ], "x-ms-correlation-request-id": [ - "af5c64ab-3b97-4fb0-ba15-119e8215c6ba" + "37bd8f30-39ff-40e0-bb5e-dc9b9a0b3163" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022512Z:af5c64ab-3b97-4fb0-ba15-119e8215c6ba" + "WESTUS:20150709T185201Z:37bd8f30-39ff-40e0-bb5e-dc9b9a0b3163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -481,28 +532,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:11 GMT" + "Thu, 09 Jul 2015 18:52:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazkzMjM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazcxMzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "37" ] }, "ResponseBody": "", @@ -520,94 +568,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1187" ], "request-id": [ - "3aa0e339-1de9-4c21-b29f-6cde4e079e48" - ], - "x-ms-request-id": [ - "5e25d3b2-1220-4bc6-86e5-a4eed65724db" - ], - "x-ms-correlation-request-id": [ - "5e25d3b2-1220-4bc6-86e5-a4eed65724db" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022421Z:5e25d3b2-1220-4bc6-86e5-a4eed65724db" + "cd0a5c81-22c4-4700-8f4d-898087cd8045" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:24:21 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323/operationResults/3aa0e339-1de9-4c21-b29f-6cde4e079e48?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323/operationResults/3aa0e339-1de9-4c21-b29f-6cde4e079e48?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazkzMjMvb3BlcmF0aW9uUmVzdWx0cy8zYWEwZTMzOS0xZGU5LTRjMjEtYjI5Zi02Y2RlNGUwNzllNDg/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "37" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "24a33c96-67b2-48fc-b105-15773248337e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31887" - ], "x-ms-request-id": [ - "125e050c-6177-49c5-9c5e-86c93f45e958" + "f07d8eb6-7565-4e50-8e59-c7cb22f05d88" ], "x-ms-correlation-request-id": [ - "125e050c-6177-49c5-9c5e-86c93f45e958" + "f07d8eb6-7565-4e50-8e59-c7cb22f05d88" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022421Z:125e050c-6177-49c5-9c5e-86c93f45e958" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185047Z:f07d8eb6-7565-4e50-8e59-c7cb22f05d88" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:21 GMT" + "Thu, 09 Jul 2015 18:50:47 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323/operationResults/3aa0e339-1de9-4c21-b29f-6cde4e079e48?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130/operationResults/cd0a5c81-22c4-4700-8f4d-898087cd8045?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -616,22 +601,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323/operationResults/3aa0e339-1de9-4c21-b29f-6cde4e079e48?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazkzMjMvb3BlcmF0aW9uUmVzdWx0cy8zYWEwZTMzOS0xZGU5LTRjMjEtYjI5Zi02Y2RlNGUwNzllNDg/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130/operationResults/cd0a5c81-22c4-4700-8f4d-898087cd8045?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazcxMzAvb3BlcmF0aW9uUmVzdWx0cy9jZDBhNWM4MS0yMmM0LTQ3MDAtOGY0ZC04OTgwODdjZDgwNDU/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "37" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9323\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk9323.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7130\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk7130.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "321" @@ -643,37 +625,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:24:36 GMT" + "Thu, 09 Jul 2015 18:50:47 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "829bdca4-8832-4bfa-ad3c-e70a99ff88d8" + "bf0db475-c773-47db-a9f7-5ca9a7bb154e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31886" + "14973" ], "x-ms-request-id": [ - "d0a87b30-a1ff-4218-af44-f1be46c1f686" + "17d7fb4b-8d0b-4609-a3db-3b0c821ccefb" ], "x-ms-correlation-request-id": [ - "d0a87b30-a1ff-4218-af44-f1be46c1f686" + "17d7fb4b-8d0b-4609-a3db-3b0c821ccefb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022437Z:d0a87b30-a1ff-4218-af44-f1be46c1f686" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185047Z:17d7fb4b-8d0b-4609-a3db-3b0c821ccefb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:36 GMT" + "Thu, 09 Jul 2015 18:50:47 GMT" ], "ETag": [ - "0x8D1B6364CD70828" + "0x8D2888F4D8FBF2D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -682,10 +664,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazYwMzk/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazY5MTk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -695,9 +677,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "42" ] }, "ResponseBody": "", @@ -715,94 +694,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1186" ], "request-id": [ - "2311946e-d1d5-4745-b936-0c07cc1afb20" - ], - "x-ms-request-id": [ - "6622dba6-7c24-45cb-9b19-0ba9ac446ca7" - ], - "x-ms-correlation-request-id": [ - "6622dba6-7c24-45cb-9b19-0ba9ac446ca7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022438Z:6622dba6-7c24-45cb-9b19-0ba9ac446ca7" + "42d44f57-ea98-495e-b877-33b9313efc9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:24:38 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039/operationResults/2311946e-d1d5-4745-b936-0c07cc1afb20?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039/operationResults/2311946e-d1d5-4745-b936-0c07cc1afb20?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazYwMzkvb3BlcmF0aW9uUmVzdWx0cy8yMzExOTQ2ZS1kMWQ1LTQ3NDUtYjkzNi0wYzA3Y2MxYWZiMjA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "42" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e3169de6-3ec3-4aa8-8251-fddd455aad95" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31884" - ], "x-ms-request-id": [ - "a898f85f-ace0-409f-9111-765244ffccde" + "e828284c-1f78-40fe-95b4-325d78ba5755" ], "x-ms-correlation-request-id": [ - "a898f85f-ace0-409f-9111-765244ffccde" + "e828284c-1f78-40fe-95b4-325d78ba5755" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022438Z:a898f85f-ace0-409f-9111-765244ffccde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185053Z:e828284c-1f78-40fe-95b4-325d78ba5755" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:38 GMT" + "Thu, 09 Jul 2015 18:50:52 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039/operationResults/2311946e-d1d5-4745-b936-0c07cc1afb20?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919/operationResults/42d44f57-ea98-495e-b877-33b9313efc9a?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -811,25 +727,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039/operationResults/2311946e-d1d5-4745-b936-0c07cc1afb20?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazYwMzkvb3BlcmF0aW9uUmVzdWx0cy8yMzExOTQ2ZS1kMWQ1LTQ3NDUtYjkzNi0wYzA3Y2MxYWZiMjA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919/operationResults/42d44f57-ea98-495e-b877-33b9313efc9a?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazY5MTkvb3BlcmF0aW9uUmVzdWx0cy80MmQ0NGY1Ny1lYTk4LTQ5NWUtYjg3Ny0zM2I5MzEzZWZjOWE/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "42" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6039\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk6039.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6919\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk6919.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "321" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -838,37 +751,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:24:54 GMT" + "Thu, 09 Jul 2015 18:50:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1e89e67b-9aae-4222-9832-cdc7c2484a1d" + "3d190191-2323-4776-89f8-0cbbfc872e75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31883" + "14972" ], "x-ms-request-id": [ - "868a8c6f-0e0f-4ad9-a7c8-815e342fed19" + "e27d342e-9f0d-43b6-a3e7-2a861510941c" ], "x-ms-correlation-request-id": [ - "868a8c6f-0e0f-4ad9-a7c8-815e342fed19" + "e27d342e-9f0d-43b6-a3e7-2a861510941c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022454Z:868a8c6f-0e0f-4ad9-a7c8-815e342fed19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185053Z:e27d342e-9f0d-43b6-a3e7-2a861510941c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:54 GMT" + "Thu, 09 Jul 2015 18:50:53 GMT" ], "ETag": [ - "0x8D1B6365701FC47" + "0x8D2888F50FAC6C5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -877,22 +790,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Batch/batchAccounts?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch/batchAccounts?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"adnanzh1\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ppp\": \"kkkk\",\r\n \"abcd\": \"efgh\",\r\n \"abcde\": \"efgh\",\r\n \"cd\": \"efgh\",\r\n \"cde\": \"efgh\",\r\n \"aefgh\": \"acde\",\r\n \"adnan\": \"ped\",\r\n \"Ped\": \"Pune\",\r\n \"loc\": \"unknown\",\r\n \"jhsdgfjhabcd\": \"csfndhh\",\r\n \"segdfgkjdfjk\": \"jashdgfjshdf\",\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"adnanzh1.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"azbacjnkyz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"azbacjnkyz.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/default-azurebatch-westus/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"clw789\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"clw789.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk6039\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk6039.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk916\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk916.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk9323\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk9323.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"wenwu1007\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"wenwu1007.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"wenwu1007a1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"wenwu1007a1.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk7130\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk7130.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk6919\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk6919.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2974" + "651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -903,20 +816,21 @@ "Pragma": [ "no-cache" ], - "request-id": [ - "c8c74df7-a94e-499e-b61f-41ecf33eea70" + "x-ms-original-request-ids": [ + "", + "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31882" + "14971" ], "x-ms-request-id": [ - "9caa0e15-f625-4e66-9270-5bbc38f1bb1c" + "d879bc4b-67b7-4e6b-858e-212af222219b" ], "x-ms-correlation-request-id": [ - "9caa0e15-f625-4e66-9270-5bbc38f1bb1c" + "d879bc4b-67b7-4e6b-858e-212af222219b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022454Z:9caa0e15-f625-4e66-9270-5bbc38f1bb1c" + "WESTUS:20150709T185147Z:d879bc4b-67b7-4e6b-858e-212af222219b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,25 +839,19 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:54 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 09 Jul 2015 18:51:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazYwMzk/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazcxMzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "47" ] }, "ResponseBody": "", @@ -961,31 +869,31 @@ "15" ], "request-id": [ - "1d9864c5-4fb1-45a6-8766-f8990fad44cb" + "813330f8-636e-4583-812d-ee15d445830a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1185" ], "x-ms-request-id": [ - "18d88cd2-b14a-41c9-b509-bab2137637e6" + "2775a5c2-259e-48b3-8407-9a9751837d2d" ], "x-ms-correlation-request-id": [ - "18d88cd2-b14a-41c9-b509-bab2137637e6" + "2775a5c2-259e-48b3-8407-9a9751837d2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022455Z:18d88cd2-b14a-41c9-b509-bab2137637e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185149Z:2775a5c2-259e-48b3-8407-9a9751837d2d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:55 GMT" + "Thu, 09 Jul 2015 18:51:49 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039/operationResults/1d9864c5-4fb1-45a6-8766-f8990fad44cb?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130/operationResults/813330f8-636e-4583-812d-ee15d445830a?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -994,19 +902,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039/operationResults/1d9864c5-4fb1-45a6-8766-f8990fad44cb?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazYwMzkvb3BlcmF0aW9uUmVzdWx0cy8xZDk4NjRjNS00ZmIxLTQ1YTYtODc2Ni1mODk5MGZhZDQ0Y2I/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130/operationResults/813330f8-636e-4583-812d-ee15d445830a?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazcxMzAvb3BlcmF0aW9uUmVzdWx0cy84MTMzMzBmOC02MzZlLTQ1ODMtODEyZC1lZTE1ZDQ0NTgzMGE/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "47" ] }, "ResponseBody": "", @@ -1017,59 +922,53 @@ "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 18:51:49 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "request-id": [ - "7766e200-b279-4540-817e-1b4ae09e93a0" + "369c62f4-a5b9-41e8-ac3e-41a5af629c89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31881" + "14970" ], "x-ms-request-id": [ - "6406cdb6-3764-4052-bee0-1d7a6686690c" + "10f510f6-d95b-488b-b5ac-a3fca64da5b1" ], "x-ms-correlation-request-id": [ - "6406cdb6-3764-4052-bee0-1d7a6686690c" + "10f510f6-d95b-488b-b5ac-a3fca64da5b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022455Z:6406cdb6-3764-4052-bee0-1d7a6686690c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185150Z:10f510f6-d95b-488b-b5ac-a3fca64da5b1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:55 GMT" + "Thu, 09 Jul 2015 18:51:49 GMT" ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039/operationResults/1d9864c5-4fb1-45a6-8766-f8990fad44cb?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2888F72B31570" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk6039/operationResults/1d9864c5-4fb1-45a6-8766-f8990fad44cb?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazYwMzkvb3BlcmF0aW9uUmVzdWx0cy8xZDk4NjRjNS00ZmIxLTQ1YTYtODc2Ni1mODk5MGZhZDQ0Y2I/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazY5MTk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "47" ] }, "ResponseBody": "", @@ -1080,56 +979,56 @@ "Expires": [ "-1" ], - "Last-Modified": [ - "Wed, 15 Oct 2014 02:25:10 GMT" - ], "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "request-id": [ - "24d5cd14-0523-4ccc-b99d-397baf22d03d" + "d4310b12-f63e-477e-b670-ba8456aac855" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31880" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" ], "x-ms-request-id": [ - "8de1cfda-60bb-49d8-8948-246e7d5a0c24" + "ecda23b0-dc2d-456b-b595-2afa8690fdde" ], "x-ms-correlation-request-id": [ - "8de1cfda-60bb-49d8-8948-246e7d5a0c24" + "ecda23b0-dc2d-456b-b595-2afa8690fdde" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022510Z:8de1cfda-60bb-49d8-8948-246e7d5a0c24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185151Z:ecda23b0-dc2d-456b-b595-2afa8690fdde" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:10 GMT" + "Thu, 09 Jul 2015 18:51:51 GMT" ], - "ETag": [ - "0x8D1B63660E42FF8" + "Location": [ + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919/operationResults/d4310b12-f63e-477e-b670-ba8456aac855?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazkzMjM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919/operationResults/d4310b12-f63e-477e-b670-ba8456aac855?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazY5MTkvb3BlcmF0aW9uUmVzdWx0cy9kNDMxMGIxMi1mNjNlLTQ3N2UtYjY3MC1iYTg0NTZhYWM4NTU/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "51" ] }, "ResponseBody": "", @@ -1140,122 +1039,116 @@ "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 18:51:51 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "request-id": [ - "9e9210df-a82d-48ab-9b40-70d88797321c" + "fee7a0ef-e793-424c-8585-47ca6c1205b7" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" ], "x-ms-request-id": [ - "ded32df1-095c-4fa8-b4b8-385aade0446d" + "0f6168f3-e8fe-4c0c-94ae-36d3af567e12" ], "x-ms-correlation-request-id": [ - "ded32df1-095c-4fa8-b4b8-385aade0446d" + "0f6168f3-e8fe-4c0c-94ae-36d3af567e12" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022511Z:ded32df1-095c-4fa8-b4b8-385aade0446d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185152Z:0f6168f3-e8fe-4c0c-94ae-36d3af567e12" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:10 GMT" + "Thu, 09 Jul 2015 18:51:51 GMT" ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323/operationResults/9e9210df-a82d-48ab-9b40-70d88797321c?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2888F73E327B4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323/operationResults/9e9210df-a82d-48ab-9b40-70d88797321c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazkzMjMvb3BlcmF0aW9uUmVzdWx0cy85ZTkyMTBkZi1hODJkLTQ4YWItOWI0MC03MGQ4ODc5NzMyMWM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk7130?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazcxMzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "51" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:b57dff69-cc07-4a1c-a597-e62421830d2e\\nTime:2015-07-09T18:51:52.0014802Z\",\r\n \"target\": \"BatchAccount\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Last-Modified": [ - "Wed, 15 Oct 2014 02:25:11 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "ff6efa46-eb5e-47bc-ab64-0ac14458f5c2" + "b57dff69-cc07-4a1c-a597-e62421830d2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31879" + "14968" ], "x-ms-request-id": [ - "1f226a8b-6ad0-453e-a0b2-8be29d8dd311" + "1bda9d96-bb9d-482c-80dd-a224c5cf693e" ], "x-ms-correlation-request-id": [ - "1f226a8b-6ad0-453e-a0b2-8be29d8dd311" + "1bda9d96-bb9d-482c-80dd-a224c5cf693e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022511Z:1f226a8b-6ad0-453e-a0b2-8be29d8dd311" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185152Z:1bda9d96-bb9d-482c-80dd-a224c5cf693e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:10 GMT" - ], - "ETag": [ - "0x8D1B63661796EEC" + "Thu, 09 Jul 2015 18:51:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk2788/providers/Microsoft.Batch/batchAccounts/onesdk9323?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazkzMjM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1415/providers/Microsoft.Batch/batchAccounts/onesdk6919?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazY5MTk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:aa37c165-3139-4228-a02e-8f3bd2c3cc55\\nTime:2014-10-15T02:25:11.9688800Z\",\r\n \"target\": \"BatchAccount\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:41e24c73-6f7f-459a-9258-a6809f3fded5\\nTime:2015-07-09T18:52:01.3096951Z\",\r\n \"target\": \"BatchAccount\"\r\n}", "ResponseHeaders": { "Content-Length": [ "183" @@ -1270,28 +1163,28 @@ "no-cache" ], "request-id": [ - "aa37c165-3139-4228-a02e-8f3bd2c3cc55" + "41e24c73-6f7f-459a-9258-a6809f3fded5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31877" + "14967" ], "x-ms-request-id": [ - "864caebb-55b4-40a2-bf40-99022be012e8" + "e315f60e-bd6b-461e-bf6c-c048ab6d9be5" ], "x-ms-correlation-request-id": [ - "864caebb-55b4-40a2-bf40-99022be012e8" + "e315f60e-bd6b-461e-bf6c-c048ab6d9be5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022512Z:864caebb-55b4-40a2-bf40-99022be012e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185201Z:e315f60e-bd6b-461e-bf6c-c048ab6d9be5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:11 GMT" + "Thu, 09 Jul 2015 18:52:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1300,16 +1193,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk2788?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI3ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1415?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE0MTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "58" ] }, "ResponseBody": "", @@ -1327,16 +1217,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1187" ], "x-ms-request-id": [ - "e242bad9-52bd-4ee1-baa8-dcc530f40bdd" + "a393bb07-0728-432d-9b3c-6ca5c5773ba9" ], "x-ms-correlation-request-id": [ - "e242bad9-52bd-4ee1-baa8-dcc530f40bdd" + "a393bb07-0728-432d-9b3c-6ca5c5773ba9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022512Z:e242bad9-52bd-4ee1-baa8-dcc530f40bdd" + "WESTUS:20150709T185206Z:a393bb07-0728-432d-9b3c-6ca5c5773ba9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1345,17 +1235,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:11 GMT" + "Thu, 09 Jul 2015 18:52:05 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNDE1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOemc0TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNDE1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOREUxTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1364,9 +1254,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "58" ] }, "ResponseBody": "", @@ -1384,16 +1271,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31874" + "14954" ], "x-ms-request-id": [ - "173a236f-c711-425b-ae83-b42b29b30527" + "db5c350a-2f4e-41d8-b0f3-0ee1dcf19b81" ], "x-ms-correlation-request-id": [ - "173a236f-c711-425b-ae83-b42b29b30527" + "db5c350a-2f4e-41d8-b0f3-0ee1dcf19b81" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022512Z:173a236f-c711-425b-ae83-b42b29b30527" + "WESTUS:20150709T185207Z:db5c350a-2f4e-41d8-b0f3-0ee1dcf19b81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1402,17 +1289,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:11 GMT" + "Thu, 09 Jul 2015 18:52:06 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNDE1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOemc0TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNDE1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOREUxTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1421,9 +1308,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "58" ] }, "ResponseBody": "", @@ -1441,16 +1325,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31873" + "14953" ], "x-ms-request-id": [ - "3003e95c-5b7c-4a17-8df5-fa4bd867583f" + "546cc124-b628-4cae-84fa-34eae52d36ff" ], "x-ms-correlation-request-id": [ - "3003e95c-5b7c-4a17-8df5-fa4bd867583f" + "546cc124-b628-4cae-84fa-34eae52d36ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022527Z:3003e95c-5b7c-4a17-8df5-fa4bd867583f" + "WESTUS:20150709T185222Z:546cc124-b628-4cae-84fa-34eae52d36ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1459,17 +1343,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:27 GMT" + "Thu, 09 Jul 2015 18:52:22 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNDE1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOemc0TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNDE1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOREUxTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1478,9 +1362,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "58" ] }, "ResponseBody": "", @@ -1498,16 +1379,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31872" + "14952" ], "x-ms-request-id": [ - "4eaaa24c-fdff-4b02-bb04-74a077c6769c" + "0f4bc9ba-d08c-4f19-8e93-5ef50176ad8e" ], "x-ms-correlation-request-id": [ - "4eaaa24c-fdff-4b02-bb04-74a077c6769c" + "0f4bc9ba-d08c-4f19-8e93-5ef50176ad8e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022542Z:4eaaa24c-fdff-4b02-bb04-74a077c6769c" + "WESTUS:20150709T185237Z:0f4bc9ba-d08c-4f19-8e93-5ef50176ad8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1516,17 +1397,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:42 GMT" + "Thu, 09 Jul 2015 18:52:37 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNDE1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOemc0TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNDE1LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOREUxTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1535,9 +1416,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "58" ] }, "ResponseBody": "", @@ -1552,16 +1430,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31871" + "14951" ], "x-ms-request-id": [ - "74afefc7-b802-42e2-96b6-0b48848939de" + "449dac20-3ef3-4c8a-87bd-7aeefc563bf0" ], "x-ms-correlation-request-id": [ - "74afefc7-b802-42e2-96b6-0b48848939de" + "449dac20-3ef3-4c8a-87bd-7aeefc563bf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022557Z:74afefc7-b802-42e2-96b6-0b48848939de" + "WESTUS:20150709T185253Z:449dac20-3ef3-4c8a-87bd-7aeefc563bf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1570,7 +1448,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:25:57 GMT" + "Thu, 09 Jul 2015 18:52:52 GMT" ] }, "StatusCode": 200 @@ -1578,12 +1456,12 @@ ], "Names": { "Test-CreateAndRemoveBatchAccountViaPiping": [ - "onesdk9323", - "onesdk6039", - "onesdk2788" + "onesdk7130", + "onesdk6919", + "onesdk1415" ] }, "Variables": { - "SubscriptionId": "4a06fe24-c197-4353-adc1-058d1a51924e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateExistingBatchAccount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateExistingBatchAccount.json index 5e1c44ff7cbe..17d344be2bd1 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateExistingBatchAccount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateExistingBatchAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"West 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 \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central 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 \"East US\",\r\n \"Central 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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"georegions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"webquotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"adfgated3\",\r\n \"2014-09-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-05-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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"eastasia\",\r\n \"southeastasia\",\r\n \"eastus\",\r\n \"westus\",\r\n \"northcentralus\",\r\n \"southcentralus\",\r\n \"northeurope\",\r\n \"westeurope\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"1.0-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"resourceType\": \"accounts/applications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ - "21795" + "56903" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31824" + "14954" ], "x-ms-request-id": [ - "73d8c3da-e101-4beb-985d-bb1cf261eee0" + "dfa5da80-45bc-494b-aac6-7447325edc0e" ], "x-ms-correlation-request-id": [ - "73d8c3da-e101-4beb-985d-bb1cf261eee0" + "dfa5da80-45bc-494b-aac6-7447325edc0e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023347Z:73d8c3da-e101-4beb-985d-bb1cf261eee0" + "WESTUS:20150709T184703Z:dfa5da80-45bc-494b-aac6-7447325edc0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:33:47 GMT" + "Thu, 09 Jul 2015 18:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4067?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5118?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazUxMTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -72,17 +72,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31823" + "14953" ], "x-ms-request-id": [ - "f7006c6e-2a02-439a-9727-10f78e236319" + "b5dc7ed8-2227-44f9-8cc4-e905584f2242" ], "x-ms-correlation-request-id": [ - "f7006c6e-2a02-439a-9727-10f78e236319" + "b5dc7ed8-2227-44f9-8cc4-e905584f2242" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023347Z:f7006c6e-2a02-439a-9727-10f78e236319" + "WESTUS:20150709T184703Z:b5dc7ed8-2227-44f9-8cc4-e905584f2242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +94,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:33:47 GMT" + "Thu, 09 Jul 2015 18:47:03 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4067?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5118?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazUxMTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -118,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31816" + "14944" ], "x-ms-request-id": [ - "4a78055e-9cc4-4820-a0e4-24dba3ce7c0a" + "72ff2c45-baee-48ae-a1dd-2779e044020e" ], "x-ms-correlation-request-id": [ - "4a78055e-9cc4-4820-a0e4-24dba3ce7c0a" + "72ff2c45-baee-48ae-a1dd-2779e044020e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023508Z:4a78055e-9cc4-4820-a0e4-24dba3ce7c0a" + "WESTUS:20150709T184812Z:72ff2c45-baee-48ae-a1dd-2779e044020e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,31 +139,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:07 GMT" + "Thu, 09 Jul 2015 18:48:12 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4067?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5118?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazUxMTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "44" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067\",\r\n \"name\": \"onesdk4067\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118\",\r\n \"name\": \"onesdk5118\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -172,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1185" ], "x-ms-request-id": [ - "86e0a3dd-6a78-4e2a-89b5-a0cd416be3cd" + "45922e00-8f54-407f-87d7-52f415b714be" ], "x-ms-correlation-request-id": [ - "86e0a3dd-6a78-4e2a-89b5-a0cd416be3cd" + "45922e00-8f54-407f-87d7-52f415b714be" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023348Z:86e0a3dd-6a78-4e2a-89b5-a0cd416be3cd" + "WESTUS:20150709T184704Z:45922e00-8f54-407f-87d7-52f415b714be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,14 +193,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:33:47 GMT" + "Thu, 09 Jul 2015 18:47:04 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQwNjcvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazUxMTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31822" + "14952" ], "x-ms-request-id": [ - "2c048ce2-b8bb-4ac5-ad3e-9e016775a9ad" + "f572a431-3537-44e8-afea-0a9fc0b1dd12" ], "x-ms-correlation-request-id": [ - "2c048ce2-b8bb-4ac5-ad3e-9e016775a9ad" + "f572a431-3537-44e8-afea-0a9fc0b1dd12" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023348Z:2c048ce2-b8bb-4ac5-ad3e-9e016775a9ad" + "WESTUS:20150709T184705Z:f572a431-3537-44e8-afea-0a9fc0b1dd12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,14 +241,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:33:47 GMT" + "Thu, 09 Jul 2015 18:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4067/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5118/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazUxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -271,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:9f13483f-6cec-4000-8c7f-addf5d9b91b6" + "westus:aaf26f06-b517-4c6b-aad2-c584914cb6c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31915" + "14966" ], "x-ms-correlation-request-id": [ - "efae2de8-61fd-421c-bcc7-32dff6ca2aa1" + "fee635ed-d36b-4a14-a2f3-b4529844c935" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023348Z:efae2de8-61fd-421c-bcc7-32dff6ca2aa1" + "WESTUS:20150709T184705Z:fee635ed-d36b-4a14-a2f3-b4529844c935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +292,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:33:47 GMT" + "Thu, 09 Jul 2015 18:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,10 +307,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,16 +322,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31821" + "14951" ], "x-ms-request-id": [ - "3fdd223b-0d2b-40e4-8a96-59a07d38f190" + "2ead865b-0a87-48ce-8795-71a308c9cead" ], "x-ms-correlation-request-id": [ - "3fdd223b-0d2b-40e4-8a96-59a07d38f190" + "2ead865b-0a87-48ce-8795-71a308c9cead" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023348Z:3fdd223b-0d2b-40e4-8a96-59a07d38f190" + "WESTUS:20150709T184705Z:2ead865b-0a87-48ce-8795-71a308c9cead" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,14 +340,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:33:48 GMT" + "Thu, 09 Jul 2015 18:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -352,10 +355,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725\",\r\n \"name\": \"onesdk1725\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/providers/Microsoft.Batch/batchAccounts/onesdk8153\",\r\n \"name\": \"onesdk8153\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12780" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,16 +370,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31818" + "14946" ], "x-ms-request-id": [ - "daffd917-8b8c-43b1-9e08-88b85fad9181" + "f39debb8-ebe8-40d5-a2a2-d12e73f9aa77" ], "x-ms-correlation-request-id": [ - "daffd917-8b8c-43b1-9e08-88b85fad9181" + "f39debb8-ebe8-40d5-a2a2-d12e73f9aa77" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023505Z:daffd917-8b8c-43b1-9e08-88b85fad9181" + "WESTUS:20150709T184804Z:f39debb8-ebe8-40d5-a2a2-d12e73f9aa77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,28 +388,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:05 GMT" + "Thu, 09 Jul 2015 18:48:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQwNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazE3MjU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/providers/Microsoft.Batch/batchAccounts/onesdk8153?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazUxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazgxNTM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "74" + "78" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "172" ] }, "ResponseBody": "", @@ -424,94 +424,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1144" + "1189" ], "request-id": [ - "2c5b9a25-2ddf-46f6-9f0e-97ddd1ac0a1d" - ], - "x-ms-request-id": [ - "0ba5169a-637d-4099-baad-7091cb206e13" - ], - "x-ms-correlation-request-id": [ - "0ba5169a-637d-4099-baad-7091cb206e13" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023350Z:0ba5169a-637d-4099-baad-7091cb206e13" + "8c4a469f-5400-4df1-bb4c-dec8e8a05523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:33:49 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725/operationResults/2c5b9a25-2ddf-46f6-9f0e-97ddd1ac0a1d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725/operationResults/2c5b9a25-2ddf-46f6-9f0e-97ddd1ac0a1d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQwNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazE3MjUvb3BlcmF0aW9uUmVzdWx0cy8yYzViOWEyNS0yZGRmLTQ2ZjYtOWYwZS05N2RkZDFhYzBhMWQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "172" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "dbb87b0b-a151-4951-b81c-828590282b68" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31820" - ], "x-ms-request-id": [ - "9b73aae9-94c4-4a44-85ff-5cb74f0c982f" + "b2fd6773-d090-45e7-b2ed-f02d06d2ae25" ], "x-ms-correlation-request-id": [ - "9b73aae9-94c4-4a44-85ff-5cb74f0c982f" + "b2fd6773-d090-45e7-b2ed-f02d06d2ae25" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023350Z:9b73aae9-94c4-4a44-85ff-5cb74f0c982f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184710Z:b2fd6773-d090-45e7-b2ed-f02d06d2ae25" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:33:49 GMT" + "Thu, 09 Jul 2015 18:47:09 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725/operationResults/2c5b9a25-2ddf-46f6-9f0e-97ddd1ac0a1d?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/providers/Microsoft.Batch/batchAccounts/onesdk8153/operationResults/8c4a469f-5400-4df1-bb4c-dec8e8a05523?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,22 +457,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725/operationResults/2c5b9a25-2ddf-46f6-9f0e-97ddd1ac0a1d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQwNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazE3MjUvb3BlcmF0aW9uUmVzdWx0cy8yYzViOWEyNS0yZGRmLTQ2ZjYtOWYwZS05N2RkZDFhYzBhMWQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/providers/Microsoft.Batch/batchAccounts/onesdk8153/operationResults/8c4a469f-5400-4df1-bb4c-dec8e8a05523?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazUxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazgxNTMvb3BlcmF0aW9uUmVzdWx0cy84YzRhNDY5Zi01NDAwLTRkZjEtYmI0Yy1kZWM4ZThhMDU1MjM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "172" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1725\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk1725.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8153\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk8153.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/providers/Microsoft.Batch/batchAccounts/onesdk8153\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "350" @@ -547,37 +481,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:34:05 GMT" + "Thu, 09 Jul 2015 18:47:09 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3636c17a-39eb-4bdb-96a4-c44bb30f4182" + "2e025f82-ff77-4332-aa71-ffb2146466f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31819" + "14975" ], "x-ms-request-id": [ - "45bdc4f6-03d7-416c-ba69-397e7fa769fa" + "74515edb-ba22-4ace-af93-d26881c902c5" ], "x-ms-correlation-request-id": [ - "45bdc4f6-03d7-416c-ba69-397e7fa769fa" + "74515edb-ba22-4ace-af93-d26881c902c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023405Z:45bdc4f6-03d7-416c-ba69-397e7fa769fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184710Z:74515edb-ba22-4ace-af93-d26881c902c5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:34:05 GMT" + "Thu, 09 Jul 2015 18:47:09 GMT" ], "ETag": [ - "0x8D1B6379FB4A9D3" + "0x8D2888ECBE13350" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -586,16 +520,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQwNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazE3MjU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/providers/Microsoft.Batch/batchAccounts/onesdk8153?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazUxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazgxNTM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "177" ] }, "ResponseBody": "", @@ -613,31 +544,31 @@ "15" ], "request-id": [ - "33c3f26e-0487-4092-8adc-9ae4095682b4" + "d54ab72f-abf7-4acd-845c-467d2b1d0cd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1143" + "1188" ], "x-ms-request-id": [ - "34b2b7aa-2f50-484e-9e88-ba0446298515" + "0713e271-1d21-4ee6-8f20-9f80685f8770" ], "x-ms-correlation-request-id": [ - "34b2b7aa-2f50-484e-9e88-ba0446298515" + "0713e271-1d21-4ee6-8f20-9f80685f8770" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023507Z:34b2b7aa-2f50-484e-9e88-ba0446298515" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184812Z:0713e271-1d21-4ee6-8f20-9f80685f8770" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:07 GMT" + "Thu, 09 Jul 2015 18:48:11 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725/operationResults/33c3f26e-0487-4092-8adc-9ae4095682b4?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/providers/Microsoft.Batch/batchAccounts/onesdk8153/operationResults/d54ab72f-abf7-4acd-845c-467d2b1d0cd2?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -646,19 +577,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4067/providers/Microsoft.Batch/batchAccounts/onesdk1725/operationResults/33c3f26e-0487-4092-8adc-9ae4095682b4?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQwNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazE3MjUvb3BlcmF0aW9uUmVzdWx0cy8zM2MzZjI2ZS0wNDg3LTQwOTItOGFkYy05YWU0MDk1NjgyYjQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5118/providers/Microsoft.Batch/batchAccounts/onesdk8153/operationResults/d54ab72f-abf7-4acd-845c-467d2b1d0cd2?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazUxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazgxNTMvb3BlcmF0aW9uUmVzdWx0cy9kNTRhYjcyZi1hYmY3LTRhY2QtODQ1Yy00NjdkMmIxZDBjZDI/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "177" ] }, "ResponseBody": "", @@ -670,37 +598,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:35:08 GMT" + "Thu, 09 Jul 2015 18:48:12 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "08a4b7e3-6ba7-4089-b6a5-cb9d0e454552" + "9a581e1a-f26f-4b00-a99b-fa4bc3cb171c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31817" + "14974" ], "x-ms-request-id": [ - "31968d64-7a4b-460b-8a8e-325ca51451b1" + "fc95eecf-75f5-45f6-8881-6a1d56490ebc" ], "x-ms-correlation-request-id": [ - "31968d64-7a4b-460b-8a8e-325ca51451b1" + "fc95eecf-75f5-45f6-8881-6a1d56490ebc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023507Z:31968d64-7a4b-460b-8a8e-325ca51451b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184812Z:fc95eecf-75f5-45f6-8881-6a1d56490ebc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:07 GMT" + "Thu, 09 Jul 2015 18:48:11 GMT" ], "ETag": [ - "0x8D1B637C503EEF1" + "0x8D2888EF130F82E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -709,16 +637,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4067?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5118?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazUxMTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "181" ] }, "ResponseBody": "", @@ -736,16 +661,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1184" ], "x-ms-request-id": [ - "16340b0b-a119-4181-a1aa-ba5e439fe23e" + "9f29ccea-7ab0-402d-ae97-83ec98590912" ], "x-ms-correlation-request-id": [ - "16340b0b-a119-4181-a1aa-ba5e439fe23e" + "9f29ccea-7ab0-402d-ae97-83ec98590912" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023508Z:16340b0b-a119-4181-a1aa-ba5e439fe23e" + "WESTUS:20150709T184814Z:9f29ccea-7ab0-402d-ae97-83ec98590912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -754,17 +679,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:07 GMT" + "Thu, 09 Jul 2015 18:48:14 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MTE4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNRFkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MTE4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFNVEU0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -773,9 +698,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "181" ] }, "ResponseBody": "", @@ -793,16 +715,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31815" + "14943" ], "x-ms-request-id": [ - "7a524daa-9dc1-406d-ade9-2d68e64b36a8" + "1dcdc3c4-df2b-4aaa-ac37-e16b8f14af29" ], "x-ms-correlation-request-id": [ - "7a524daa-9dc1-406d-ade9-2d68e64b36a8" + "1dcdc3c4-df2b-4aaa-ac37-e16b8f14af29" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023508Z:7a524daa-9dc1-406d-ade9-2d68e64b36a8" + "WESTUS:20150709T184815Z:1dcdc3c4-df2b-4aaa-ac37-e16b8f14af29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -811,17 +733,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:07 GMT" + "Thu, 09 Jul 2015 18:48:14 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MTE4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNRFkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MTE4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFNVEU0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -830,9 +752,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "181" ] }, "ResponseBody": "", @@ -850,16 +769,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31814" + "14941" ], "x-ms-request-id": [ - "4330e10a-d1d6-49b1-a9a4-89c77bf71ca2" + "9434af75-2027-4579-9f1c-44a1f20810f3" ], "x-ms-correlation-request-id": [ - "4330e10a-d1d6-49b1-a9a4-89c77bf71ca2" + "9434af75-2027-4579-9f1c-44a1f20810f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023523Z:4330e10a-d1d6-49b1-a9a4-89c77bf71ca2" + "WESTUS:20150709T184830Z:9434af75-2027-4579-9f1c-44a1f20810f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,17 +787,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:23 GMT" + "Thu, 09 Jul 2015 18:48:29 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MTE4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNRFkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MTE4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFNVEU0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -887,9 +806,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "181" ] }, "ResponseBody": "", @@ -907,16 +823,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31813" + "14939" ], "x-ms-request-id": [ - "6ae71746-b515-442b-8923-1b390491353c" + "c582e705-f167-4f9b-8af9-2976027b533d" ], "x-ms-correlation-request-id": [ - "6ae71746-b515-442b-8923-1b390491353c" + "c582e705-f167-4f9b-8af9-2976027b533d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023538Z:6ae71746-b515-442b-8923-1b390491353c" + "WESTUS:20150709T184846Z:c582e705-f167-4f9b-8af9-2976027b533d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,17 +841,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:37 GMT" + "Thu, 09 Jul 2015 18:48:45 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MTE4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNRFkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MTE4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFNVEU0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -944,9 +860,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "181" ] }, "ResponseBody": "", @@ -961,16 +874,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31812" + "14938" ], "x-ms-request-id": [ - "c70a9ab7-b8a2-4d37-87e7-22e48b3c3df4" + "6553a0ff-e334-45b7-b57e-a2d61ccc8e11" ], "x-ms-correlation-request-id": [ - "c70a9ab7-b8a2-4d37-87e7-22e48b3c3df4" + "6553a0ff-e334-45b7-b57e-a2d61ccc8e11" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023553Z:c70a9ab7-b8a2-4d37-87e7-22e48b3c3df4" + "WESTUS:20150709T184901Z:6553a0ff-e334-45b7-b57e-a2d61ccc8e11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -979,7 +892,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:35:52 GMT" + "Thu, 09 Jul 2015 18:49:01 GMT" ] }, "StatusCode": 200 @@ -987,11 +900,11 @@ ], "Names": { "Test-CreateExistingBatchAccount": [ - "onesdk1725", - "onesdk4067" + "onesdk8153", + "onesdk5118" ] }, "Variables": { - "SubscriptionId": "4a06fe24-c197-4353-adc1-058d1a51924e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreatesNewBatchAccount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreatesNewBatchAccount.json index ade22750bc28..40adaaa564b8 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreatesNewBatchAccount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreatesNewBatchAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"West 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 \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central 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 \"East US\",\r\n \"Central 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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"georegions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"webquotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"adfgated3\",\r\n \"2014-09-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-05-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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"eastasia\",\r\n \"southeastasia\",\r\n \"eastus\",\r\n \"westus\",\r\n \"northcentralus\",\r\n \"southcentralus\",\r\n \"northeurope\",\r\n \"westeurope\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"1.0-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"resourceType\": \"accounts/applications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ - "21795" + "56903" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "14984" ], "x-ms-request-id": [ - "a7c1fa4f-a518-4f8e-917d-f9a3c5c7ee7f" + "d3510849-4b63-441e-90fa-b06543df4cfe" ], "x-ms-correlation-request-id": [ - "a7c1fa4f-a518-4f8e-917d-f9a3c5c7ee7f" + "d3510849-4b63-441e-90fa-b06543df4cfe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022652Z:a7c1fa4f-a518-4f8e-917d-f9a3c5c7ee7f" + "WESTUS:20150709T184405Z:d3510849-4b63-441e-90fa-b06543df4cfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:26:52 GMT" + "Thu, 09 Jul 2015 18:44:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4630?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk4006?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -72,17 +72,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "14983" ], "x-ms-request-id": [ - "13a18930-ae1f-40ef-ab0a-db5b67493b35" + "010c37c9-7c97-455c-a9df-37b1bea3175c" ], "x-ms-correlation-request-id": [ - "13a18930-ae1f-40ef-ab0a-db5b67493b35" + "010c37c9-7c97-455c-a9df-37b1bea3175c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022652Z:13a18930-ae1f-40ef-ab0a-db5b67493b35" + "WESTUS:20150709T184405Z:010c37c9-7c97-455c-a9df-37b1bea3175c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +94,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:26:52 GMT" + "Thu, 09 Jul 2015 18:44:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4630?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk4006?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -118,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "14980" ], "x-ms-request-id": [ - "0f73e67d-8556-4fad-8a30-ba846de21500" + "d6413f40-76de-4463-8be3-26141da22742" ], "x-ms-correlation-request-id": [ - "0f73e67d-8556-4fad-8a30-ba846de21500" + "d6413f40-76de-4463-8be3-26141da22742" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022727Z:0f73e67d-8556-4fad-8a30-ba846de21500" + "WESTUS:20150709T184447Z:d6413f40-76de-4463-8be3-26141da22742" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,31 +139,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:26 GMT" + "Thu, 09 Jul 2015 18:44:47 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4630?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk4006?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "44" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630\",\r\n \"name\": \"onesdk4630\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006\",\r\n \"name\": \"onesdk4006\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -172,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1191" ], "x-ms-request-id": [ - "2950efa7-b634-4e65-bdb6-025d7ad6b2b2" + "59392f20-27b5-4aa9-9f5c-02ad5808d3f2" ], "x-ms-correlation-request-id": [ - "2950efa7-b634-4e65-bdb6-025d7ad6b2b2" + "59392f20-27b5-4aa9-9f5c-02ad5808d3f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022653Z:2950efa7-b634-4e65-bdb6-025d7ad6b2b2" + "WESTUS:20150709T184407Z:59392f20-27b5-4aa9-9f5c-02ad5808d3f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,14 +193,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:26:53 GMT" + "Thu, 09 Jul 2015 18:44:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MzAvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazQwMDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "14982" ], "x-ms-request-id": [ - "cb8dac8a-5829-4863-91f8-945cf14c6a41" + "ecb7c963-f3da-4fe6-90fe-c3d170ce7d7a" ], "x-ms-correlation-request-id": [ - "cb8dac8a-5829-4863-91f8-945cf14c6a41" + "ecb7c963-f3da-4fe6-90fe-c3d170ce7d7a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022653Z:cb8dac8a-5829-4863-91f8-945cf14c6a41" + "WESTUS:20150709T184407Z:ecb7c963-f3da-4fe6-90fe-c3d170ce7d7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,14 +241,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:26:53 GMT" + "Thu, 09 Jul 2015 18:44:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4630/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk4006/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -271,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:0bbad039-2597-432e-84af-1b46d71e8ce8" + "westus:8c7aba96-38da-436c-8895-4b9770a878a5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31870" + "14988" ], "x-ms-correlation-request-id": [ - "6374c415-fee5-49ba-be69-d4498907da64" + "c97d51b3-caa3-4901-bd47-2265f974182a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022653Z:6374c415-fee5-49ba-be69-d4498907da64" + "WESTUS:20150709T184408Z:c97d51b3-caa3-4901-bd47-2265f974182a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +292,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:26:53 GMT" + "Thu, 09 Jul 2015 18:44:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,10 +307,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,16 +322,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "14981" ], "x-ms-request-id": [ - "69ebda7a-303b-42f9-ac87-77e88a7bfa05" + "aafeba1b-3b28-4d18-bafa-23befb77d380" ], "x-ms-correlation-request-id": [ - "69ebda7a-303b-42f9-ac87-77e88a7bfa05" + "aafeba1b-3b28-4d18-bafa-23befb77d380" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022653Z:69ebda7a-303b-42f9-ac87-77e88a7bfa05" + "WESTUS:20150709T184408Z:aafeba1b-3b28-4d18-bafa-23befb77d380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,28 +340,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:26:53 GMT" + "Thu, 09 Jul 2015 18:44:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQxMDc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "74" + "78" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "71" ] }, "ResponseBody": "", @@ -376,94 +376,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1189" ], "request-id": [ - "33f2c7d3-9a40-4a54-a1c5-6b1228f68005" - ], - "x-ms-request-id": [ - "21d7b486-a50f-4793-98e0-9c2aa53e58fc" - ], - "x-ms-correlation-request-id": [ - "21d7b486-a50f-4793-98e0-9c2aa53e58fc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022655Z:21d7b486-a50f-4793-98e0-9c2aa53e58fc" + "29fb367f-63ef-46a3-aa8d-50ee14a076b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:26:55 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107/operationResults/33f2c7d3-9a40-4a54-a1c5-6b1228f68005?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107/operationResults/33f2c7d3-9a40-4a54-a1c5-6b1228f68005?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQxMDcvb3BlcmF0aW9uUmVzdWx0cy8zM2YyYzdkMy05YTQwLTRhNTQtYTFjNS02YjEyMjhmNjgwMDU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "71" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9a8f148f-e9b7-400e-84ba-29ce64998b1f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" - ], "x-ms-request-id": [ - "f13157de-fcca-4e91-8400-3d077152d68e" + "c7c1c6c6-2b3a-431b-86f1-b5dd888ab346" ], "x-ms-correlation-request-id": [ - "f13157de-fcca-4e91-8400-3d077152d68e" + "c7c1c6c6-2b3a-431b-86f1-b5dd888ab346" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022655Z:f13157de-fcca-4e91-8400-3d077152d68e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184414Z:c7c1c6c6-2b3a-431b-86f1-b5dd888ab346" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:26:55 GMT" + "Thu, 09 Jul 2015 18:44:14 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107/operationResults/33f2c7d3-9a40-4a54-a1c5-6b1228f68005?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519/operationResults/29fb367f-63ef-46a3-aa8d-50ee14a076b5?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -472,22 +409,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107/operationResults/33f2c7d3-9a40-4a54-a1c5-6b1228f68005?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQxMDcvb3BlcmF0aW9uUmVzdWx0cy8zM2YyYzdkMy05YTQwLTRhNTQtYTFjNS02YjEyMjhmNjgwMDU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519/operationResults/29fb367f-63ef-46a3-aa8d-50ee14a076b5?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazI1MTkvb3BlcmF0aW9uUmVzdWx0cy8yOWZiMzY3Zi02M2VmLTQ2YTMtYWE4ZC01MGVlMTRhMDc2YjU/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "71" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4107\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk4107.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2519\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk2519.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "350" @@ -499,37 +433,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:27:11 GMT" + "Thu, 09 Jul 2015 18:44:14 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "33fce9aa-e9a3-495d-895a-31ecf3453170" + "47fe7f95-f638-41d4-8d97-5260d71bd367" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" + "14950" ], "x-ms-request-id": [ - "3bd45eb6-69c2-4a43-afa0-88dfacb64fe5" + "a484db49-8764-4864-9df1-22449f4fdec0" ], "x-ms-correlation-request-id": [ - "3bd45eb6-69c2-4a43-afa0-88dfacb64fe5" + "a484db49-8764-4864-9df1-22449f4fdec0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022710Z:3bd45eb6-69c2-4a43-afa0-88dfacb64fe5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184414Z:a484db49-8764-4864-9df1-22449f4fdec0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:10 GMT" + "Thu, 09 Jul 2015 18:44:14 GMT" ], "ETag": [ - "0x8D1B636A8B6BE0F" + "0x8D2888E632831B8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -538,19 +472,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQxMDc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4107\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk4107.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2519\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk2519.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "350" @@ -562,37 +496,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:27:11 GMT" + "Thu, 09 Jul 2015 18:44:45 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "55a94aa6-11a3-4737-8551-bc194f9cd92d" + "20d026eb-b680-4869-8ec2-5379edd8a804" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "14949" ], "x-ms-request-id": [ - "995a241c-c571-43fe-ae19-96bcf78c9d4a" + "fffe0b4c-dae8-4863-9cb7-7c6dca93d3d0" ], "x-ms-correlation-request-id": [ - "995a241c-c571-43fe-ae19-96bcf78c9d4a" + "fffe0b4c-dae8-4863-9cb7-7c6dca93d3d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022711Z:995a241c-c571-43fe-ae19-96bcf78c9d4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184445Z:fffe0b4c-dae8-4863-9cb7-7c6dca93d3d0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:10 GMT" + "Thu, 09 Jul 2015 18:44:44 GMT" ], "ETag": [ - "0x8D1B636A8E34FA6" + "0x8D2888E75988E59" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -601,16 +535,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQxMDc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "76" ] }, "ResponseBody": "", @@ -628,94 +559,31 @@ "15" ], "request-id": [ - "333ca3df-89bf-43cb-8b7e-91a1bd391f46" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" - ], - "x-ms-request-id": [ - "7f735a55-b298-4af0-a966-27569c4ffe78" - ], - "x-ms-correlation-request-id": [ - "7f735a55-b298-4af0-a966-27569c4ffe78" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022711Z:7f735a55-b298-4af0-a966-27569c4ffe78" + "280c13c8-e40f-4939-aa71-713a857c6339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:27:11 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107/operationResults/333ca3df-89bf-43cb-8b7e-91a1bd391f46?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107/operationResults/333ca3df-89bf-43cb-8b7e-91a1bd391f46?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQxMDcvb3BlcmF0aW9uUmVzdWx0cy8zMzNjYTNkZi04OWJmLTQzY2ItOGI3ZS05MWExYmQzOTFmNDY/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "76" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "659a9f71-dcfc-4726-8693-07ab05a26721" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-request-id": [ - "ca36518e-0e0d-4518-a35d-569cc75cb20e" + "9da614bd-8569-4a63-914c-301b2b3fc58b" ], "x-ms-correlation-request-id": [ - "ca36518e-0e0d-4518-a35d-569cc75cb20e" + "9da614bd-8569-4a63-914c-301b2b3fc58b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022712Z:ca36518e-0e0d-4518-a35d-569cc75cb20e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184447Z:9da614bd-8569-4a63-914c-301b2b3fc58b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:11 GMT" + "Thu, 09 Jul 2015 18:44:47 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107/operationResults/333ca3df-89bf-43cb-8b7e-91a1bd391f46?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519/operationResults/280c13c8-e40f-4939-aa71-713a857c6339?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -724,19 +592,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk4630/providers/Microsoft.Batch/batchAccounts/onesdk4107/operationResults/333ca3df-89bf-43cb-8b7e-91a1bd391f46?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQxMDcvb3BlcmF0aW9uUmVzdWx0cy8zMzNjYTNkZi04OWJmLTQzY2ItOGI3ZS05MWExYmQzOTFmNDY/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk4006/providers/Microsoft.Batch/batchAccounts/onesdk2519/operationResults/280c13c8-e40f-4939-aa71-713a857c6339?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazI1MTkvb3BlcmF0aW9uUmVzdWx0cy8yODBjMTNjOC1lNDBmLTQ5MzktYWE3MS03MTNhODU3YzYzMzk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "76" ] }, "ResponseBody": "", @@ -748,37 +613,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:27:27 GMT" + "Thu, 09 Jul 2015 18:44:47 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "96be1e4d-d24b-4949-9b94-1332b9160191" + "c616885d-f8a0-433b-bd74-b660b7884ac6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "14948" ], "x-ms-request-id": [ - "a3650292-3db7-44bb-9385-3d39b70ea3df" + "24ffe1fe-036c-4143-9553-8f9437a79c14" ], "x-ms-correlation-request-id": [ - "a3650292-3db7-44bb-9385-3d39b70ea3df" + "24ffe1fe-036c-4143-9553-8f9437a79c14" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022727Z:a3650292-3db7-44bb-9385-3d39b70ea3df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T184447Z:24ffe1fe-036c-4143-9553-8f9437a79c14" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:26 GMT" + "Thu, 09 Jul 2015 18:44:47 GMT" ], "ETag": [ - "0x8D1B636B28057FE" + "0x8D2888E76C25C97" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -787,16 +652,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk4630?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk4006?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "81" ] }, "ResponseBody": "", @@ -814,16 +676,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "1190" ], "x-ms-request-id": [ - "fb20e93f-1ca4-4c0b-9719-78e2e589c3d4" + "555e661c-087f-4f1d-ae08-6f5efa0e7d29" ], "x-ms-correlation-request-id": [ - "fb20e93f-1ca4-4c0b-9719-78e2e589c3d4" + "555e661c-087f-4f1d-ae08-6f5efa0e7d29" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022727Z:fb20e93f-1ca4-4c0b-9719-78e2e589c3d4" + "WESTUS:20150709T184449Z:555e661c-087f-4f1d-ae08-6f5efa0e7d29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,17 +694,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:27 GMT" + "Thu, 09 Jul 2015 18:44:48 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDA2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOak13TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDA2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNREEyTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -851,9 +713,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "81" ] }, "ResponseBody": "", @@ -871,16 +730,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "14979" ], "x-ms-request-id": [ - "33c21537-b91e-43a7-876e-d69d3e667dbd" + "aa10c5a0-b2bd-43c0-8ecc-5fda46ddf7c6" ], "x-ms-correlation-request-id": [ - "33c21537-b91e-43a7-876e-d69d3e667dbd" + "aa10c5a0-b2bd-43c0-8ecc-5fda46ddf7c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022727Z:33c21537-b91e-43a7-876e-d69d3e667dbd" + "WESTUS:20150709T184450Z:aa10c5a0-b2bd-43c0-8ecc-5fda46ddf7c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,17 +748,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:27 GMT" + "Thu, 09 Jul 2015 18:44:49 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDA2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOak13TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDA2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNREEyTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -908,9 +767,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "81" ] }, "ResponseBody": "", @@ -928,16 +784,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "14978" ], "x-ms-request-id": [ - "4e3f38a9-b924-4fdb-b8d1-16219a83e78d" + "db9ca2ba-8986-4f99-a627-1950f7319e49" ], "x-ms-correlation-request-id": [ - "4e3f38a9-b924-4fdb-b8d1-16219a83e78d" + "db9ca2ba-8986-4f99-a627-1950f7319e49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022742Z:4e3f38a9-b924-4fdb-b8d1-16219a83e78d" + "WESTUS:20150709T184505Z:db9ca2ba-8986-4f99-a627-1950f7319e49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -946,17 +802,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:42 GMT" + "Thu, 09 Jul 2015 18:45:04 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDA2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOak13TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDA2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNREEyTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,9 +821,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "81" ] }, "ResponseBody": "", @@ -985,16 +838,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "14977" ], "x-ms-request-id": [ - "1cbf168d-72b2-44a7-834b-326a7246ff65" + "b3483f4b-e97b-43bb-a3d2-ac6a53856c9d" ], "x-ms-correlation-request-id": [ - "1cbf168d-72b2-44a7-834b-326a7246ff65" + "b3483f4b-e97b-43bb-a3d2-ac6a53856c9d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022757Z:1cbf168d-72b2-44a7-834b-326a7246ff65" + "WESTUS:20150709T184520Z:b3483f4b-e97b-43bb-a3d2-ac6a53856c9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1003,17 +856,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:27:57 GMT" + "Thu, 09 Jul 2015 18:45:20 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDA2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOak13TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MDA2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNREEyTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1022,9 +875,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "81" ] }, "ResponseBody": "", @@ -1039,16 +889,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "14976" ], "x-ms-request-id": [ - "aa7cd990-18a5-4d93-a9a5-83c28a73ddb6" + "3088c2e7-c6c9-4a38-b3c1-64ac7475cf34" ], "x-ms-correlation-request-id": [ - "aa7cd990-18a5-4d93-a9a5-83c28a73ddb6" + "3088c2e7-c6c9-4a38-b3c1-64ac7475cf34" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022813Z:aa7cd990-18a5-4d93-a9a5-83c28a73ddb6" + "WESTUS:20150709T184536Z:3088c2e7-c6c9-4a38-b3c1-64ac7475cf34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,7 +907,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:13 GMT" + "Thu, 09 Jul 2015 18:45:35 GMT" ] }, "StatusCode": 200 @@ -1065,11 +915,11 @@ ], "Names": { "Test-CreatesNewBatchAccount": [ - "onesdk4107", - "onesdk4630" + "onesdk2519", + "onesdk4006" ] }, "Variables": { - "SubscriptionId": "4a06fe24-c197-4353-adc1-058d1a51924e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetBatchAccountsUnderResourceGroups.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetBatchAccountsUnderResourceGroups.json index f37fea3ddba7..3b784ec6f432 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetBatchAccountsUnderResourceGroups.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetBatchAccountsUnderResourceGroups.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"West 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 \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central 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 \"East US\",\r\n \"Central 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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"georegions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"webquotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"adfgated3\",\r\n \"2014-09-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-05-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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"eastasia\",\r\n \"southeastasia\",\r\n \"eastus\",\r\n \"westus\",\r\n \"northcentralus\",\r\n \"southcentralus\",\r\n \"northeurope\",\r\n \"westeurope\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"1.0-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"resourceType\": \"accounts/applications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ - "21795" + "56903" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31854" + "14965" ], "x-ms-request-id": [ - "df714c85-281e-4da1-baa2-319375e07a56" + "6fa79acc-f788-4c99-860f-652249bb3c97" ], "x-ms-correlation-request-id": [ - "df714c85-281e-4da1-baa2-319375e07a56" + "6fa79acc-f788-4c99-860f-652249bb3c97" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023022Z:df714c85-281e-4da1-baa2-319375e07a56" + "WESTUS:20150709T185541Z:6fa79acc-f788-4c99-860f-652249bb3c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,110 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:22 GMT" + "Thu, 09 Jul 2015 18:55:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6761?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ + "56903" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "07d88fbe-de25-439f-a9a9-63da49543af0" + ], + "x-ms-correlation-request-id": [ + "07d88fbe-de25-439f-a9a9-63da49543af0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T185541Z:07d88fbe-de25-439f-a9a9-63da49543af0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 18:55:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ + "56903" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "59d7a2f9-dca3-464b-91f1-8af7fecb5539" + ], + "x-ms-correlation-request-id": [ + "59d7a2f9-dca3-464b-91f1-8af7fecb5539" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T185542Z:59d7a2f9-dca3-464b-91f1-8af7fecb5539" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 18:55:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk9588?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazk1ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -72,17 +168,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31853" + "14962" ], "x-ms-request-id": [ - "59da3808-264a-401a-a012-5a3c4850ed70" + "70104dcf-9b18-40ee-93bd-cf5b455cd70b" ], "x-ms-correlation-request-id": [ - "59da3808-264a-401a-a012-5a3c4850ed70" + "70104dcf-9b18-40ee-93bd-cf5b455cd70b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023022Z:59da3808-264a-401a-a012-5a3c4850ed70" + "WESTUS:20150709T185542Z:70104dcf-9b18-40ee-93bd-cf5b455cd70b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +190,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:22 GMT" + "Thu, 09 Jul 2015 18:55:41 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6761?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk9588?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazk1ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -118,16 +217,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31836" + "14955" ], "x-ms-request-id": [ - "04f6f9bd-a76f-4ae0-a3c6-9ac982269999" + "b0cc23e9-fc10-4182-898d-5003652bd2b7" ], "x-ms-correlation-request-id": [ - "04f6f9bd-a76f-4ae0-a3c6-9ac982269999" + "b0cc23e9-fc10-4182-898d-5003652bd2b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023118Z:04f6f9bd-a76f-4ae0-a3c6-9ac982269999" + "WESTUS:20150709T185641Z:b0cc23e9-fc10-4182-898d-5003652bd2b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,31 +235,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:18 GMT" + "Thu, 09 Jul 2015 18:56:40 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6761?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk9588?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazk1ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "44" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761\",\r\n \"name\": \"onesdk6761\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588\",\r\n \"name\": \"onesdk9588\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -172,16 +271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1187" ], "x-ms-request-id": [ - "6470c42f-c41f-4d2e-8716-84ade7b39adb" + "29b9a80e-8b3a-49a8-bd39-0d38ca3ed7a3" ], "x-ms-correlation-request-id": [ - "6470c42f-c41f-4d2e-8716-84ade7b39adb" + "29b9a80e-8b3a-49a8-bd39-0d38ca3ed7a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023022Z:6470c42f-c41f-4d2e-8716-84ade7b39adb" + "WESTUS:20150709T185544Z:29b9a80e-8b3a-49a8-bd39-0d38ca3ed7a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,14 +289,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:22 GMT" + "Thu, 09 Jul 2015 18:55:44 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,16 +319,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31852" + "14961" ], "x-ms-request-id": [ - "15b7e8d2-fbf5-4f66-bc2f-d017744078a3" + "8d51a7d4-6b73-4c13-b915-7751bddd2e5a" ], "x-ms-correlation-request-id": [ - "15b7e8d2-fbf5-4f66-bc2f-d017744078a3" + "8d51a7d4-6b73-4c13-b915-7751bddd2e5a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023022Z:15b7e8d2-fbf5-4f66-bc2f-d017744078a3" + "WESTUS:20150709T185544Z:8d51a7d4-6b73-4c13-b915-7751bddd2e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,14 +337,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:22 GMT" + "Thu, 09 Jul 2015 18:55:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6761/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk9588/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -271,16 +370,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:42c8839e-c020-403a-bbc3-3fc373ce79b2" + "westus:0c484026-ecd8-4baf-b7dc-746ecdaf8a70" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31917" + "14968" ], "x-ms-correlation-request-id": [ - "d1908d9a-7f79-4578-90db-e87bfc78119c" + "5d7a6592-a948-4b22-8d4d-32f53e1fb850" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023023Z:d1908d9a-7f79-4578-90db-e87bfc78119c" + "WESTUS:20150709T185544Z:5d7a6592-a948-4b22-8d4d-32f53e1fb850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +388,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:22 GMT" + "Thu, 09 Jul 2015 18:55:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk1390?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5490?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazU0OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -318,17 +417,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31851" + "14960" ], "x-ms-request-id": [ - "6add3aa7-3534-4d0b-9fde-667aeb07a6ff" + "d27fc120-aec8-457c-8a59-b12172b3b3d6" ], "x-ms-correlation-request-id": [ - "6add3aa7-3534-4d0b-9fde-667aeb07a6ff" + "d27fc120-aec8-457c-8a59-b12172b3b3d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023023Z:6add3aa7-3534-4d0b-9fde-667aeb07a6ff" + "WESTUS:20150709T185544Z:d27fc120-aec8-457c-8a59-b12172b3b3d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,14 +439,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:22 GMT" + "Thu, 09 Jul 2015 18:55:44 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk1390?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5490?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazU0OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -364,16 +466,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31829" + "14950" ], "x-ms-request-id": [ - "15e79a12-8d77-448c-a834-2dfa7e4777d2" + "3863a57b-c4f4-499e-9626-69af87d11097" ], "x-ms-correlation-request-id": [ - "15e79a12-8d77-448c-a834-2dfa7e4777d2" + "3863a57b-c4f4-499e-9626-69af87d11097" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023220Z:15e79a12-8d77-448c-a834-2dfa7e4777d2" + "WESTUS:20150709T185735Z:3863a57b-c4f4-499e-9626-69af87d11097" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,31 +484,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:32:19 GMT" + "Thu, 09 Jul 2015 18:57:34 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk1390?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5490?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazU0OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "44" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390\",\r\n \"name\": \"onesdk1390\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490\",\r\n \"name\": \"onesdk5490\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -418,16 +520,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1186" ], "x-ms-request-id": [ - "5ee4df9b-e40b-4f94-b60c-c9f7178a5945" + "80d0e8b6-e3fa-4212-a34d-bca3490203f6" ], "x-ms-correlation-request-id": [ - "5ee4df9b-e40b-4f94-b60c-c9f7178a5945" + "80d0e8b6-e3fa-4212-a34d-bca3490203f6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023023Z:5ee4df9b-e40b-4f94-b60c-c9f7178a5945" + "WESTUS:20150709T185545Z:80d0e8b6-e3fa-4212-a34d-bca3490203f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,14 +538,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:23 GMT" + "Thu, 09 Jul 2015 18:55:45 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazEzOTAvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazU0OTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -466,16 +568,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31850" + "14959" ], "x-ms-request-id": [ - "a94af083-22e2-423e-a834-c72ec0039aff" + "eff632c8-c724-461c-8662-acececaa9123" ], "x-ms-correlation-request-id": [ - "a94af083-22e2-423e-a834-c72ec0039aff" + "eff632c8-c724-461c-8662-acececaa9123" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023023Z:a94af083-22e2-423e-a834-c72ec0039aff" + "WESTUS:20150709T185545Z:eff632c8-c724-461c-8662-acececaa9123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,14 +586,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:23 GMT" + "Thu, 09 Jul 2015 18:55:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk1390/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5490/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazU0OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -517,16 +619,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:ba3fb959-5062-4eba-b243-018946cf5ded" + "westus:1d32e802-9870-4553-88f7-f4bf19557dae" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31916" + "14967" ], "x-ms-correlation-request-id": [ - "ec9a8c47-f25b-4ca8-8473-3821a83fe84b" + "73c711e8-1712-4e64-8e74-0c09fe61de07" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023023Z:ec9a8c47-f25b-4ca8-8473-3821a83fe84b" + "WESTUS:20150709T185545Z:73c711e8-1712-4e64-8e74-0c09fe61de07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -535,14 +637,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:23 GMT" + "Thu, 09 Jul 2015 18:55:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -550,10 +652,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -565,16 +667,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31849" + "14958" ], "x-ms-request-id": [ - "d9c81b87-16a2-4af1-9b3e-4aa68013810b" + "5a1a9f3d-dea4-40d2-add3-45a057f539a3" ], "x-ms-correlation-request-id": [ - "d9c81b87-16a2-4af1-9b3e-4aa68013810b" + "5a1a9f3d-dea4-40d2-add3-45a057f539a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023023Z:d9c81b87-16a2-4af1-9b3e-4aa68013810b" + "WESTUS:20150709T185545Z:5a1a9f3d-dea4-40d2-add3-45a057f539a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583,14 +685,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:23 GMT" + "Thu, 09 Jul 2015 18:55:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598,10 +700,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,16 +715,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31846" + "14957" ], "x-ms-request-id": [ - "69f4b134-08cd-4801-8b0e-661e2d1c4175" + "1bd5e85b-8acc-4f33-9db5-7a0b33c581f9" ], "x-ms-correlation-request-id": [ - "69f4b134-08cd-4801-8b0e-661e2d1c4175" + "1bd5e85b-8acc-4f33-9db5-7a0b33c581f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023041Z:69f4b134-08cd-4801-8b0e-661e2d1c4175" + "WESTUS:20150709T185553Z:1bd5e85b-8acc-4f33-9db5-7a0b33c581f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -631,14 +733,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:41 GMT" + "Thu, 09 Jul 2015 18:55:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -646,10 +748,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680\",\r\n \"name\": \"onesdk4680\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "12751" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -661,16 +763,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31843" + "14956" ], "x-ms-request-id": [ - "b8ac4d79-d215-478a-8834-486b961ade90" + "3a846344-1c85-41f8-8d52-a366bd646215" ], "x-ms-correlation-request-id": [ - "b8ac4d79-d215-478a-8834-486b961ade90" + "3a846344-1c85-41f8-8d52-a366bd646215" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023058Z:b8ac4d79-d215-478a-8834-486b961ade90" + "WESTUS:20150709T185558Z:3a846344-1c85-41f8-8d52-a366bd646215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,28 +781,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:57 GMT" + "Thu, 09 Jul 2015 18:55:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQ2ODA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk3OT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "124" ] }, "ResponseBody": "", @@ -718,94 +817,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1189" ], "request-id": [ - "1ba9964c-fc4b-438d-aacb-11c2599c7442" - ], - "x-ms-request-id": [ - "d2ee41b6-ac67-458e-9571-aedef0a03ada" - ], - "x-ms-correlation-request-id": [ - "d2ee41b6-ac67-458e-9571-aedef0a03ada" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023025Z:d2ee41b6-ac67-458e-9571-aedef0a03ada" + "3c547500-26d5-4de7-b219-369033b35ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:30:25 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680/operationResults/1ba9964c-fc4b-438d-aacb-11c2599c7442?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680/operationResults/1ba9964c-fc4b-438d-aacb-11c2599c7442?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQ2ODAvb3BlcmF0aW9uUmVzdWx0cy8xYmE5OTY0Yy1mYzRiLTQzOGQtYWFjYi0xMWMyNTk5Yzc0NDI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "124" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "1eecdf94-5247-4592-928a-5ca68a556c6d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31848" - ], "x-ms-request-id": [ - "3f319ea1-888d-41f2-8798-2a9c8f4bed73" + "44f37fe3-b1f9-426b-88b5-47478c4f4686" ], "x-ms-correlation-request-id": [ - "3f319ea1-888d-41f2-8798-2a9c8f4bed73" + "44f37fe3-b1f9-426b-88b5-47478c4f4686" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023025Z:3f319ea1-888d-41f2-8798-2a9c8f4bed73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185551Z:44f37fe3-b1f9-426b-88b5-47478c4f4686" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:25 GMT" + "Thu, 09 Jul 2015 18:55:50 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680/operationResults/1ba9964c-fc4b-438d-aacb-11c2599c7442?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979/operationResults/3c547500-26d5-4de7-b219-369033b35ed0?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -814,25 +850,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680/operationResults/1ba9964c-fc4b-438d-aacb-11c2599c7442?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQ2ODAvb3BlcmF0aW9uUmVzdWx0cy8xYmE5OTY0Yy1mYzRiLTQzOGQtYWFjYi0xMWMyNTk5Yzc0NDI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979/operationResults/3c547500-26d5-4de7-b219-369033b35ed0?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk3OS9vcGVyYXRpb25SZXN1bHRzLzNjNTQ3NTAwLTI2ZDUtNGRlNy1iMjE5LTM2OTAzM2IzNWVkMD9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "124" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4680\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk4680.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk979\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk979.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "321" + "318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -841,37 +874,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:30:40 GMT" + "Thu, 09 Jul 2015 18:55:51 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3ea44084-025e-4be3-8736-f7141d7ecb77" + "2cc3e167-36e3-4181-b0cc-d10e9cfc6389" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31847" + "14987" ], "x-ms-request-id": [ - "b64a14a2-290a-4818-a5c1-24544c8f7efd" + "f659262f-5bb0-4bf0-9dd0-6d19c80b646e" ], "x-ms-correlation-request-id": [ - "b64a14a2-290a-4818-a5c1-24544c8f7efd" + "f659262f-5bb0-4bf0-9dd0-6d19c80b646e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023041Z:b64a14a2-290a-4818-a5c1-24544c8f7efd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185551Z:f659262f-5bb0-4bf0-9dd0-6d19c80b646e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:41 GMT" + "Thu, 09 Jul 2015 18:55:51 GMT" ], "ETag": [ - "0x8D1B63725B801A0" + "0x8D2889002BD1111" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -880,10 +913,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM3NzU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazIyNT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -893,9 +926,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "129" ] }, "ResponseBody": "", @@ -913,94 +943,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1188" ], "request-id": [ - "8aa6ce46-ab51-4c19-890c-ec0035fb944f" - ], - "x-ms-request-id": [ - "aee3a36f-1df8-406f-bbca-4953c7e37a99" - ], - "x-ms-correlation-request-id": [ - "aee3a36f-1df8-406f-bbca-4953c7e37a99" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023042Z:aee3a36f-1df8-406f-bbca-4953c7e37a99" + "b4a4a523-7d59-44a1-986f-0d911c8a3474" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:30:42 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775/operationResults/8aa6ce46-ab51-4c19-890c-ec0035fb944f?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775/operationResults/8aa6ce46-ab51-4c19-890c-ec0035fb944f?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM3NzUvb3BlcmF0aW9uUmVzdWx0cy84YWE2Y2U0Ni1hYjUxLTRjMTktODkwYy1lYzAwMzVmYjk0NGY/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "129" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d2c7b6ca-3d68-4b83-9e28-40e38e95ddab" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31845" - ], "x-ms-request-id": [ - "979e75eb-7eb2-4fed-ab89-60b5c1b64be1" + "e00c123c-fa6e-48ba-9eaa-ab941e1fcc4c" ], "x-ms-correlation-request-id": [ - "979e75eb-7eb2-4fed-ab89-60b5c1b64be1" + "e00c123c-fa6e-48ba-9eaa-ab941e1fcc4c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023043Z:979e75eb-7eb2-4fed-ab89-60b5c1b64be1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185557Z:e00c123c-fa6e-48ba-9eaa-ab941e1fcc4c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:42 GMT" + "Thu, 09 Jul 2015 18:55:56 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775/operationResults/8aa6ce46-ab51-4c19-890c-ec0035fb944f?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225/operationResults/b4a4a523-7d59-44a1-986f-0d911c8a3474?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1009,25 +976,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775/operationResults/8aa6ce46-ab51-4c19-890c-ec0035fb944f?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM3NzUvb3BlcmF0aW9uUmVzdWx0cy84YWE2Y2U0Ni1hYjUxLTRjMTktODkwYy1lYzAwMzVmYjk0NGY/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225/operationResults/b4a4a523-7d59-44a1-986f-0d911c8a3474?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazIyNS9vcGVyYXRpb25SZXN1bHRzL2I0YTRhNTIzLTdkNTktNDRhMS05ODZmLTBkOTExYzhhMzQ3ND9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "129" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3775\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk3775.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk225\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk225.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "321" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1036,37 +1000,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:30:58 GMT" + "Thu, 09 Jul 2015 18:55:57 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a26011dd-af07-4e0f-b106-8b9c8ca515ea" + "3c570990-7ac5-4ff7-bf2f-62e704bb6cd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31844" + "14986" ], "x-ms-request-id": [ - "bbeeb4fb-b619-4b17-9ef5-d1fdf562c341" + "2b6a6450-caff-43ad-a83c-51e7c9576598" ], "x-ms-correlation-request-id": [ - "bbeeb4fb-b619-4b17-9ef5-d1fdf562c341" + "2b6a6450-caff-43ad-a83c-51e7c9576598" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023058Z:bbeeb4fb-b619-4b17-9ef5-d1fdf562c341" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185557Z:2b6a6450-caff-43ad-a83c-51e7c9576598" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:30:57 GMT" + "Thu, 09 Jul 2015 18:55:56 GMT" ], "ETag": [ - "0x8D1B637301192ED" + "0x8D28890065C6FA4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1075,22 +1039,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazEzOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazExNjM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/providers/Microsoft.Batch/batchAccounts/onesdk3658?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazU0OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM2NTg/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "134" ] }, "ResponseBody": "", @@ -1108,31 +1069,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1187" ], "request-id": [ - "d46a42b7-9c9d-4306-96dd-530fd50b8693" + "95ca2a77-0386-4f27-8fe8-bee72dd61a22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed9617e3-9584-4ae2-be64-1e78391baae1" + "876e5927-ff75-46d8-84b9-8ac1cd45a981" ], "x-ms-correlation-request-id": [ - "ed9617e3-9584-4ae2-be64-1e78391baae1" + "876e5927-ff75-46d8-84b9-8ac1cd45a981" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023100Z:ed9617e3-9584-4ae2-be64-1e78391baae1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185601Z:876e5927-ff75-46d8-84b9-8ac1cd45a981" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:00 GMT" + "Thu, 09 Jul 2015 18:56:01 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163/operationResults/d46a42b7-9c9d-4306-96dd-530fd50b8693?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/providers/Microsoft.Batch/batchAccounts/onesdk3658/operationResults/95ca2a77-0386-4f27-8fe8-bee72dd61a22?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1141,25 +1102,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163/operationResults/d46a42b7-9c9d-4306-96dd-530fd50b8693?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazEzOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazExNjMvb3BlcmF0aW9uUmVzdWx0cy9kNDZhNDJiNy05YzlkLTQzMDYtOTZkZC01MzBmZDUwYjg2OTM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/providers/Microsoft.Batch/batchAccounts/onesdk3658/operationResults/95ca2a77-0386-4f27-8fe8-bee72dd61a22?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazU0OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM2NTgvb3BlcmF0aW9uUmVzdWx0cy85NWNhMmE3Ny0wMzg2LTRmMjctOGZlOC1iZWU3MmRkNjFhMjI/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "134" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1163\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk1163.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3658\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk3658.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/providers/Microsoft.Batch/batchAccounts/onesdk3658\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "321" + "318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1168,37 +1126,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:31:00 GMT" + "Thu, 09 Jul 2015 18:56:01 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "949d8f35-16ee-4104-bca8-76f71b7ea581" + "3d87f9f8-9e3c-495a-9272-5b6b1e8f5af1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31842" + "14985" ], "x-ms-request-id": [ - "e9cae999-b416-4c1c-adee-f7d08d10eda8" + "61ba1d92-b6a5-49de-982c-ab889c961dab" ], "x-ms-correlation-request-id": [ - "e9cae999-b416-4c1c-adee-f7d08d10eda8" + "61ba1d92-b6a5-49de-982c-ab889c961dab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023100Z:e9cae999-b416-4c1c-adee-f7d08d10eda8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185601Z:61ba1d92-b6a5-49de-982c-ab889c961dab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:00 GMT" + "Thu, 09 Jul 2015 18:56:01 GMT" ], "ETag": [ - "0x8D1B637313FBE6F" + "0x8D2889008C108A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1207,22 +1165,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Batch/batchAccounts?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch/batchAccounts?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"adnanzh1\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ppp\": \"kkkk\",\r\n \"abcd\": \"efgh\",\r\n \"abcde\": \"efgh\",\r\n \"cd\": \"efgh\",\r\n \"cde\": \"efgh\",\r\n \"aefgh\": \"acde\",\r\n \"adnan\": \"ped\",\r\n \"Ped\": \"Pune\",\r\n \"loc\": \"unknown\",\r\n \"jhsdgfjhabcd\": \"csfndhh\",\r\n \"segdfgkjdfjk\": \"jashdgfjshdf\",\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"adnanzh1.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"azbacjnkyz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"azbacjnkyz.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/default-azurebatch-westus/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"clw789\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"clw789.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk1163\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk1163.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk3775\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk3775.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk4680\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk4680.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk916\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk916.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"wenwu1007\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"wenwu1007.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"wenwu1007a1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"wenwu1007a1.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk979\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk979.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk225\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk225.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk3658\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk3658.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/providers/Microsoft.Batch/batchAccounts/onesdk3658\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3296" + "964" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1233,20 +1191,22 @@ "Pragma": [ "no-cache" ], - "request-id": [ - "8d58ee0c-77c2-4ebb-8542-1c848b2d9956" + "x-ms-original-request-ids": [ + "", + "", + "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31841" + "14984" ], "x-ms-request-id": [ - "496ccdfd-f301-45bc-813a-ff120e794eff" + "fea46986-6e7d-4599-8531-3166091471fd" ], "x-ms-correlation-request-id": [ - "496ccdfd-f301-45bc-813a-ff120e794eff" + "fea46986-6e7d-4599-8531-3166091471fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023100Z:496ccdfd-f301-45bc-813a-ff120e794eff" + "WESTUS:20150709T185636Z:fea46986-6e7d-4599-8531-3166091471fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1255,31 +1215,28 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:00 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 09 Jul 2015 18:56:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk3775\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk3775.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk4680\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk4680.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk979\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk979.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n },\r\n {\r\n \"name\": \"onesdk225\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk225.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "655" + "645" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1290,20 +1247,21 @@ "Pragma": [ "no-cache" ], - "request-id": [ - "2bb766cd-da13-4ff8-8e2e-b9bce1c3c64d" + "x-ms-original-request-ids": [ + "", + "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31840" + "14983" ], "x-ms-request-id": [ - "48570702-ab0b-43d4-84a0-fd6cbba00aa4" + "9407827c-2df3-4b13-9a9e-dd83ee7959ff" ], "x-ms-correlation-request-id": [ - "48570702-ab0b-43d4-84a0-fd6cbba00aa4" + "9407827c-2df3-4b13-9a9e-dd83ee7959ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023101Z:48570702-ab0b-43d4-84a0-fd6cbba00aa4" + "WESTUS:20150709T185637Z:9407827c-2df3-4b13-9a9e-dd83ee7959ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,25 +1270,19 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:01 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 09 Jul 2015 18:56:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQ2ODA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk3OT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "139" ] }, "ResponseBody": "", @@ -1348,94 +1300,31 @@ "15" ], "request-id": [ - "855fad74-0228-4f8f-a400-7982b85f0162" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" - ], - "x-ms-request-id": [ - "b977801a-3236-4ddd-9fa5-bd331969f252" - ], - "x-ms-correlation-request-id": [ - "b977801a-3236-4ddd-9fa5-bd331969f252" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023101Z:b977801a-3236-4ddd-9fa5-bd331969f252" + "135e3fc2-864e-4614-bfae-bdc6ae3e9906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:31:01 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680/operationResults/855fad74-0228-4f8f-a400-7982b85f0162?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680/operationResults/855fad74-0228-4f8f-a400-7982b85f0162?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQ2ODAvb3BlcmF0aW9uUmVzdWx0cy84NTVmYWQ3NC0wMjI4LTRmOGYtYTQwMC03OTgyYjg1ZjAxNjI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "139" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d39cd12a-8f7e-423e-acff-9a170ea4fa7e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31839" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" ], "x-ms-request-id": [ - "eda41be7-c46d-44a2-990c-92351c124f8d" + "2e213649-19c8-4c48-8409-f83bcb54cdfe" ], "x-ms-correlation-request-id": [ - "eda41be7-c46d-44a2-990c-92351c124f8d" + "2e213649-19c8-4c48-8409-f83bcb54cdfe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023102Z:eda41be7-c46d-44a2-990c-92351c124f8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185638Z:2e213649-19c8-4c48-8409-f83bcb54cdfe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:01 GMT" + "Thu, 09 Jul 2015 18:56:38 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680/operationResults/855fad74-0228-4f8f-a400-7982b85f0162?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979/operationResults/135e3fc2-864e-4614-bfae-bdc6ae3e9906?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1444,19 +1333,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk4680/operationResults/855fad74-0228-4f8f-a400-7982b85f0162?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazQ2ODAvb3BlcmF0aW9uUmVzdWx0cy84NTVmYWQ3NC0wMjI4LTRmOGYtYTQwMC03OTgyYjg1ZjAxNjI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk979/operationResults/135e3fc2-864e-4614-bfae-bdc6ae3e9906?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazk3OS9vcGVyYXRpb25SZXN1bHRzLzEzNWUzZmMyLTg2NGUtNDYxNC1iZmFlLWJkYzZhZTNlOTkwNj9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "139" ] }, "ResponseBody": "", @@ -1468,37 +1354,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:31:17 GMT" + "Thu, 09 Jul 2015 18:56:38 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "849dd7fc-f7f2-4c1b-a5d9-10f33f3c504d" + "6d15d52a-ec2b-4431-ba27-cce4d4fbb076" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31838" + "14982" ], "x-ms-request-id": [ - "c336d625-cbf9-4216-aaa8-adcfe1a907b4" + "26c79d0a-e1b8-46dd-aceb-4c28843b77e5" ], "x-ms-correlation-request-id": [ - "c336d625-cbf9-4216-aaa8-adcfe1a907b4" + "26c79d0a-e1b8-46dd-aceb-4c28843b77e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023117Z:c336d625-cbf9-4216-aaa8-adcfe1a907b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185639Z:26c79d0a-e1b8-46dd-aceb-4c28843b77e5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:16 GMT" + "Thu, 09 Jul 2015 18:56:38 GMT" ], "ETag": [ - "0x8D1B6373B5CB2A0" + "0x8D288901EE939D1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1507,16 +1393,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM3NzU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazIyNT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "143" ] }, "ResponseBody": "", @@ -1534,31 +1417,31 @@ "15" ], "request-id": [ - "d04fcd33-8e98-4549-b331-0be3e2712d8c" + "aa3af764-cb0d-418e-a64e-452c2846027e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1185" ], "x-ms-request-id": [ - "f12ff0a7-c202-4818-8fe2-0a8fd330d031" + "c5ffafc5-2948-4ad8-9475-4a014f2673de" ], "x-ms-correlation-request-id": [ - "f12ff0a7-c202-4818-8fe2-0a8fd330d031" + "c5ffafc5-2948-4ad8-9475-4a014f2673de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023118Z:f12ff0a7-c202-4818-8fe2-0a8fd330d031" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185640Z:c5ffafc5-2948-4ad8-9475-4a014f2673de" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:18 GMT" + "Thu, 09 Jul 2015 18:56:40 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775/operationResults/d04fcd33-8e98-4549-b331-0be3e2712d8c?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225/operationResults/aa3af764-cb0d-418e-a64e-452c2846027e?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1567,19 +1450,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk6761/providers/Microsoft.Batch/batchAccounts/onesdk3775/operationResults/d04fcd33-8e98-4549-b331-0be3e2712d8c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM3NzUvb3BlcmF0aW9uUmVzdWx0cy9kMDRmY2QzMy04ZTk4LTQ1NDktYjMzMS0wYmUzZTI3MTJkOGM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk9588/providers/Microsoft.Batch/batchAccounts/onesdk225/operationResults/aa3af764-cb0d-418e-a64e-452c2846027e?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazk1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazIyNS9vcGVyYXRpb25SZXN1bHRzL2FhM2FmNzY0LWNiMGQtNDE4ZS1hNjRlLTQ1MmMyODQ2MDI3ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "143" ] }, "ResponseBody": "", @@ -1591,37 +1471,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:31:18 GMT" + "Thu, 09 Jul 2015 18:56:41 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c6a87987-2b90-45cc-983e-10bf8e86bfc1" + "4a4d4489-11ce-43fa-858b-4cded1cbad0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31837" + "14981" ], "x-ms-request-id": [ - "e87b56f3-6577-46e5-9273-100c3dd032a6" + "4561d756-d1f6-4f57-8df2-cb85edbadf66" ], "x-ms-correlation-request-id": [ - "e87b56f3-6577-46e5-9273-100c3dd032a6" + "4561d756-d1f6-4f57-8df2-cb85edbadf66" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023118Z:e87b56f3-6577-46e5-9273-100c3dd032a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185641Z:4561d756-d1f6-4f57-8df2-cb85edbadf66" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:18 GMT" + "Thu, 09 Jul 2015 18:56:40 GMT" ], "ETag": [ - "0x8D1B6373BF4D918" + "0x8D2889020654A28" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1630,16 +1510,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk6761?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk9588?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazk1ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "147" ] }, "ResponseBody": "", @@ -1657,16 +1534,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1150" + "1185" ], "x-ms-request-id": [ - "4ee8c3c2-bbba-4edc-be07-fb770e05fde2" + "62802943-73b6-4916-b47e-00b71188ad2f" ], "x-ms-correlation-request-id": [ - "4ee8c3c2-bbba-4edc-be07-fb770e05fde2" + "62802943-73b6-4916-b47e-00b71188ad2f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023118Z:4ee8c3c2-bbba-4edc-be07-fb770e05fde2" + "WESTUS:20150709T185644Z:62802943-73b6-4916-b47e-00b71188ad2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1675,17 +1552,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:18 GMT" + "Thu, 09 Jul 2015 18:56:43 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NTg4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOell4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NTg4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVOVGc0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1694,9 +1571,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "147" ] }, "ResponseBody": "", @@ -1714,16 +1588,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31835" + "14954" ], "x-ms-request-id": [ - "f4bc51a5-3ec4-49a1-b14c-09a82c531a7f" + "52f9b6d0-6c01-4f6a-9da4-c2242ae846f9" ], "x-ms-correlation-request-id": [ - "f4bc51a5-3ec4-49a1-b14c-09a82c531a7f" + "52f9b6d0-6c01-4f6a-9da4-c2242ae846f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023118Z:f4bc51a5-3ec4-49a1-b14c-09a82c531a7f" + "WESTUS:20150709T185644Z:52f9b6d0-6c01-4f6a-9da4-c2242ae846f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1732,17 +1606,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:18 GMT" + "Thu, 09 Jul 2015 18:56:44 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NTg4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOell4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NTg4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVOVGc0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1751,9 +1625,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "147" ] }, "ResponseBody": "", @@ -1771,16 +1642,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31834" + "14953" ], "x-ms-request-id": [ - "df7a2815-da37-4489-963f-bb2af8ddf476" + "e86e9359-8502-4904-82ec-50dd48271d92" ], "x-ms-correlation-request-id": [ - "df7a2815-da37-4489-963f-bb2af8ddf476" + "e86e9359-8502-4904-82ec-50dd48271d92" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023133Z:df7a2815-da37-4489-963f-bb2af8ddf476" + "WESTUS:20150709T185700Z:e86e9359-8502-4904-82ec-50dd48271d92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1789,17 +1660,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:32 GMT" + "Thu, 09 Jul 2015 18:56:59 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NTg4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOell4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NTg4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVOVGc0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1808,9 +1679,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "147" ] }, "ResponseBody": "", @@ -1828,16 +1696,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31833" + "14952" ], "x-ms-request-id": [ - "55211f66-38d5-4c7f-bf4b-67e3562b2840" + "080df769-d5fb-4ab4-8f07-41b27cf91555" ], "x-ms-correlation-request-id": [ - "55211f66-38d5-4c7f-bf4b-67e3562b2840" + "080df769-d5fb-4ab4-8f07-41b27cf91555" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023148Z:55211f66-38d5-4c7f-bf4b-67e3562b2840" + "WESTUS:20150709T185715Z:080df769-d5fb-4ab4-8f07-41b27cf91555" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1846,17 +1714,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:31:48 GMT" + "Thu, 09 Jul 2015 18:57:15 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NTg4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOell4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NTg4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVOVGc0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1865,9 +1733,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "147" ] }, "ResponseBody": "", @@ -1882,16 +1747,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31832" + "14951" ], "x-ms-request-id": [ - "0bcb3f97-c40d-4a61-8f83-38a199ea6347" + "d5185e20-4aea-4f1e-94f4-104413213bbb" ], "x-ms-correlation-request-id": [ - "0bcb3f97-c40d-4a61-8f83-38a199ea6347" + "d5185e20-4aea-4f1e-94f4-104413213bbb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023203Z:0bcb3f97-c40d-4a61-8f83-38a199ea6347" + "WESTUS:20150709T185730Z:d5185e20-4aea-4f1e-94f4-104413213bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1900,22 +1765,19 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:32:03 GMT" + "Thu, 09 Jul 2015 18:57:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazEzOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazExNjM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/providers/Microsoft.Batch/batchAccounts/onesdk3658?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazU0OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM2NTg/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "153" ] }, "ResponseBody": "", @@ -1933,94 +1795,31 @@ "15" ], "request-id": [ - "61037464-13cb-4dc3-b4c6-71e855f67eaf" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" - ], - "x-ms-request-id": [ - "e3a2fc9a-9285-47a9-8853-c0af735a630b" - ], - "x-ms-correlation-request-id": [ - "e3a2fc9a-9285-47a9-8853-c0af735a630b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023204Z:e3a2fc9a-9285-47a9-8853-c0af735a630b" + "352c3d7c-763a-4bcf-a36e-43eb8bf726cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:32:03 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163/operationResults/61037464-13cb-4dc3-b4c6-71e855f67eaf?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163/operationResults/61037464-13cb-4dc3-b4c6-71e855f67eaf?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazEzOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazExNjMvb3BlcmF0aW9uUmVzdWx0cy82MTAzNzQ2NC0xM2NiLTRkYzMtYjRjNi03MWU4NTVmNjdlYWY/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "153" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e3336b17-afe6-40bb-a624-428c96018f44" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31831" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" ], "x-ms-request-id": [ - "9ec8cf31-589c-4d2a-9302-4d166419f178" + "5e979411-4296-4dab-9cd5-0f86eb8aa244" ], "x-ms-correlation-request-id": [ - "9ec8cf31-589c-4d2a-9302-4d166419f178" + "5e979411-4296-4dab-9cd5-0f86eb8aa244" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023204Z:9ec8cf31-589c-4d2a-9302-4d166419f178" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185734Z:5e979411-4296-4dab-9cd5-0f86eb8aa244" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:32:04 GMT" + "Thu, 09 Jul 2015 18:57:34 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163/operationResults/61037464-13cb-4dc3-b4c6-71e855f67eaf?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/providers/Microsoft.Batch/batchAccounts/onesdk3658/operationResults/352c3d7c-763a-4bcf-a36e-43eb8bf726cf?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2029,19 +1828,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk1390/providers/Microsoft.Batch/batchAccounts/onesdk1163/operationResults/61037464-13cb-4dc3-b4c6-71e855f67eaf?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazEzOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazExNjMvb3BlcmF0aW9uUmVzdWx0cy82MTAzNzQ2NC0xM2NiLTRkYzMtYjRjNi03MWU4NTVmNjdlYWY/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk5490/providers/Microsoft.Batch/batchAccounts/onesdk3658/operationResults/352c3d7c-763a-4bcf-a36e-43eb8bf726cf?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazU0OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazM2NTgvb3BlcmF0aW9uUmVzdWx0cy8zNTJjM2Q3Yy03NjNhLTRiY2YtYTM2ZS00M2ViOGJmNzI2Y2Y/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "153" ] }, "ResponseBody": "", @@ -2053,37 +1849,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:32:19 GMT" + "Thu, 09 Jul 2015 18:57:34 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8e3f4259-5abd-4d2e-9561-066a48b47de1" + "85bc3b37-7b92-41c2-b950-a76b3739ac96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31830" + "14980" ], "x-ms-request-id": [ - "f68c7e7e-9436-4f0a-bf83-e2942382b651" + "2b48f1e8-7b42-42bc-a304-2b66c4682109" ], "x-ms-correlation-request-id": [ - "f68c7e7e-9436-4f0a-bf83-e2942382b651" + "2b48f1e8-7b42-42bc-a304-2b66c4682109" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023219Z:f68c7e7e-9436-4f0a-bf83-e2942382b651" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T185734Z:2b48f1e8-7b42-42bc-a304-2b66c4682109" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:32:19 GMT" + "Thu, 09 Jul 2015 18:57:34 GMT" ], "ETag": [ - "0x8D1B63760AFC825" + "0x8D288904009ED68" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2092,16 +1888,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk1390?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk5490?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazU0OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "158" ] }, "ResponseBody": "", @@ -2119,16 +1912,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1184" ], "x-ms-request-id": [ - "c453159f-9c94-4ded-b9bb-b7217e14afa8" + "8dc37164-b992-4f82-8d94-dada3d6111f3" ], "x-ms-correlation-request-id": [ - "c453159f-9c94-4ded-b9bb-b7217e14afa8" + "8dc37164-b992-4f82-8d94-dada3d6111f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023220Z:c453159f-9c94-4ded-b9bb-b7217e14afa8" + "WESTUS:20150709T185737Z:8dc37164-b992-4f82-8d94-dada3d6111f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2137,17 +1930,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:32:19 GMT" + "Thu, 09 Jul 2015 18:57:36 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NDkwLVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNemt3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NDkwLVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFORGt3TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2156,9 +1949,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "158" ] }, "ResponseBody": "", @@ -2176,16 +1966,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31828" + "14949" ], "x-ms-request-id": [ - "438e2dac-d34d-40ee-800e-43a22f8fb717" + "ef9a3f96-1c26-49d1-9e6b-24e7e679b316" ], "x-ms-correlation-request-id": [ - "438e2dac-d34d-40ee-800e-43a22f8fb717" + "ef9a3f96-1c26-49d1-9e6b-24e7e679b316" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023220Z:438e2dac-d34d-40ee-800e-43a22f8fb717" + "WESTUS:20150709T185737Z:ef9a3f96-1c26-49d1-9e6b-24e7e679b316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2194,17 +1984,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:32:19 GMT" + "Thu, 09 Jul 2015 18:57:36 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NDkwLVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNemt3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NDkwLVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFORGt3TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2213,9 +2003,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "158" ] }, "ResponseBody": "", @@ -2233,16 +2020,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31827" + "14948" ], "x-ms-request-id": [ - "7c28cf11-559a-4124-989f-4a6dd11f193f" + "61a6da64-2da6-4d07-a9ea-ad9b4da9909a" ], "x-ms-correlation-request-id": [ - "7c28cf11-559a-4124-989f-4a6dd11f193f" + "61a6da64-2da6-4d07-a9ea-ad9b4da9909a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023235Z:7c28cf11-559a-4124-989f-4a6dd11f193f" + "WESTUS:20150709T185752Z:61a6da64-2da6-4d07-a9ea-ad9b4da9909a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2251,17 +2038,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:32:35 GMT" + "Thu, 09 Jul 2015 18:57:52 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NDkwLVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNemt3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NDkwLVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFORGt3TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2270,9 +2057,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "158" ] }, "ResponseBody": "", @@ -2290,16 +2074,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31826" + "14947" ], "x-ms-request-id": [ - "9e16b5e4-cca6-4ea0-ae1c-defd0f48766a" + "1ba876d5-2a29-4011-b5a4-783855b96d0e" ], "x-ms-correlation-request-id": [ - "9e16b5e4-cca6-4ea0-ae1c-defd0f48766a" + "1ba876d5-2a29-4011-b5a4-783855b96d0e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023250Z:9e16b5e4-cca6-4ea0-ae1c-defd0f48766a" + "WESTUS:20150709T185808Z:1ba876d5-2a29-4011-b5a4-783855b96d0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2308,17 +2092,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:32:50 GMT" + "Thu, 09 Jul 2015 18:58:07 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NDkwLVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0=?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNemt3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NDkwLVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFORGt3TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2327,9 +2111,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "158" ] }, "ResponseBody": "", @@ -2344,16 +2125,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31825" + "14946" ], "x-ms-request-id": [ - "6d068225-bc88-418c-b2c6-ac1a9b582ca1" + "78b52f94-605e-4e79-af28-0bb0b33d31c5" ], "x-ms-correlation-request-id": [ - "6d068225-bc88-418c-b2c6-ac1a9b582ca1" + "78b52f94-605e-4e79-af28-0bb0b33d31c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T023305Z:6d068225-bc88-418c-b2c6-ac1a9b582ca1" + "WESTUS:20150709T185823Z:78b52f94-605e-4e79-af28-0bb0b33d31c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2362,7 +2143,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:33:05 GMT" + "Thu, 09 Jul 2015 18:58:22 GMT" ] }, "StatusCode": 200 @@ -2370,14 +2151,14 @@ ], "Names": { "Test-GetBatchAccountsUnderResourceGroups": [ - "onesdk6761", - "onesdk1390", - "onesdk4680", - "onesdk3775", - "onesdk1163" + "onesdk9588", + "onesdk5490", + "onesdk979", + "onesdk225", + "onesdk3658" ] }, "Variables": { - "SubscriptionId": "4a06fe24-c197-4353-adc1-058d1a51924e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetNonExistingBatchAccount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetNonExistingBatchAccount.json index 2d2dadadd81c..e73a55324d0b 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetNonExistingBatchAccount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetNonExistingBatchAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31892" + "14951" ], "x-ms-request-id": [ - "363a283b-c30c-4b4c-aad5-c9e84f890aff" + "48f50f6a-d361-43c9-b451-d9494b8ed4ea" ], "x-ms-correlation-request-id": [ - "363a283b-c30c-4b4c-aad5-c9e84f890aff" + "48f50f6a-d361-43c9-b451-d9494b8ed4ea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022411Z:363a283b-c30c-4b4c-aad5-c9e84f890aff" + "WESTUS:20150709T190213Z:48f50f6a-d361-43c9-b451-d9494b8ed4ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:24:11 GMT" + "Thu, 09 Jul 2015 19:02:12 GMT" ] }, "StatusCode": 200 @@ -51,6 +51,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "4a06fe24-c197-4353-adc1-058d1a51924e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestUpdatesExistingBatchAccount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestUpdatesExistingBatchAccount.json index 781a38d316eb..80df45639767 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestUpdatesExistingBatchAccount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestUpdatesExistingBatchAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"West 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 \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central 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 \"East US\",\r\n \"Central 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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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 \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"georegions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"webquotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\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\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"adfgated3\",\r\n \"2014-09-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-05-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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"\"\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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"eastasia\",\r\n \"southeastasia\",\r\n \"eastus\",\r\n \"westus\",\r\n \"northcentralus\",\r\n \"southcentralus\",\r\n \"northeurope\",\r\n \"westeurope\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\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/4a06fe24-c197-4353-adc1-058d1a51924e/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\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 \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"1.0-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/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 \"resourceType\": \"accounts/applications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"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 \"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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 \"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 \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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 \"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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 ],\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 \"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 ],\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 ],\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 ],\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 ],\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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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 ],\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/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/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 ],\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": [ - "21795" + "56903" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31869" + "14979" ], "x-ms-request-id": [ - "9960a075-5e7d-45dd-8495-eeed8d403d7a" + "7fe2dc25-5b0b-4c58-8616-f1e779f5a61f" ], "x-ms-correlation-request-id": [ - "9960a075-5e7d-45dd-8495-eeed8d403d7a" + "7fe2dc25-5b0b-4c58-8616-f1e779f5a61f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022836Z:9960a075-5e7d-45dd-8495-eeed8d403d7a" + "WESTUS:20150709T190000Z:7fe2dc25-5b0b-4c58-8616-f1e779f5a61f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:36 GMT" + "Thu, 09 Jul 2015 18:59:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk764?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1848?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -61,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "101" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72,17 +72,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31868" + "14980" ], "x-ms-request-id": [ - "f757668c-90a1-40bf-8783-990e015480c2" + "8336d0c4-faa2-44c3-8351-ef5291fe3953" ], "x-ms-correlation-request-id": [ - "f757668c-90a1-40bf-8783-990e015480c2" + "8336d0c4-faa2-44c3-8351-ef5291fe3953" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022836Z:f757668c-90a1-40bf-8783-990e015480c2" + "WESTUS:20150709T190000Z:8336d0c4-faa2-44c3-8351-ef5291fe3953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +94,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:36 GMT" + "Thu, 09 Jul 2015 19:00:00 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk764?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1848?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -118,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31859" + "14977" ], "x-ms-request-id": [ - "0579a7e2-a3af-4093-b46f-275c6ab4dfac" + "cff26bcb-475f-4dbb-a392-0f23af4e634f" ], "x-ms-correlation-request-id": [ - "0579a7e2-a3af-4093-b46f-275c6ab4dfac" + "cff26bcb-475f-4dbb-a392-0f23af4e634f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022912Z:0579a7e2-a3af-4093-b46f-275c6ab4dfac" + "WESTUS:20150709T190103Z:cff26bcb-475f-4dbb-a392-0f23af4e634f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,31 +139,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:29:12 GMT" + "Thu, 09 Jul 2015 19:01:02 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk764?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1848?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "44" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764\",\r\n \"name\": \"onesdk764\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848\",\r\n \"name\": \"onesdk1848\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "181" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -172,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1162" + "1184" ], "x-ms-request-id": [ - "f600fd98-521d-4b69-8fe7-c0aec473e645" + "c030ac9a-aac6-463f-ab52-774e6aaa9fe8" ], "x-ms-correlation-request-id": [ - "f600fd98-521d-4b69-8fe7-c0aec473e645" + "c030ac9a-aac6-463f-ab52-774e6aaa9fe8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022836Z:f600fd98-521d-4b69-8fe7-c0aec473e645" + "WESTUS:20150709T190001Z:c030ac9a-aac6-463f-ab52-774e6aaa9fe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,14 +193,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:36 GMT" + "Thu, 09 Jul 2015 19:00:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9yZXNvdXJjZXM/JmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31867" + "14979" ], "x-ms-request-id": [ - "3ea672b1-2e71-4d87-8f66-688fbdb0e9d8" + "8269deaa-4ca6-4aaa-ae86-0c8d2497c656" ], "x-ms-correlation-request-id": [ - "3ea672b1-2e71-4d87-8f66-688fbdb0e9d8" + "8269deaa-4ca6-4aaa-ae86-0c8d2497c656" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022837Z:3ea672b1-2e71-4d87-8f66-688fbdb0e9d8" + "WESTUS:20150709T190001Z:8269deaa-4ca6-4aaa-ae86-0c8d2497c656" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,14 +241,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:36 GMT" + "Thu, 09 Jul 2015 19:00:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk764/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1848/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -271,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:7b7d27e9-2698-4010-afb3-10537c404c14" + "westus:2f61c620-7432-486e-9fbe-25f1a031fa19" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31918" + "14950" ], "x-ms-correlation-request-id": [ - "fb764e28-36e8-4f0e-af3c-28d064f38f12" + "dd7d5132-4f47-403a-8c1b-f14c28cb6ac6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022837Z:fb764e28-36e8-4f0e-af3c-28d064f38f12" + "WESTUS:20150709T190002Z:dd7d5132-4f47-403a-8c1b-f14c28cb6ac6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +292,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:37 GMT" + "Thu, 09 Jul 2015 19:00:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,10 +307,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/azbacnhzf2\",\r\n \"name\": \"azbacnhzf2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaccn0mf1juw5garhbk9q3vxl8d7i\": \"azbacr3u6l8ga5f1w7tjsd0cvqbz4knmhexpio92y\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest1\",\r\n \"name\": \"aztest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-eus/providers/Microsoft.Batch/batchAccounts/aztest11\",\r\n \"name\": \"aztest11\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-ne/providers/Microsoft.Batch/batchAccounts/azbacykf2li0g\",\r\n \"name\": \"azbacykf2li0g\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbaczsgmy6p4a1c0il3b\": \"azbac9u1lydm6ebvs740kpgnowx8i52rctjf3qzah\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-we/providers/Microsoft.Batch/batchAccounts/azbac3mtkshf\",\r\n \"name\": \"azbac3mtkshf\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"azbac1s4853u9twc0yx7ihq2ej6nzdarokpmvlgbf\": \"azbaccg3l82tkpyzjoasn1f4vmq0d7u5he96briwx\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/azurebatch-wus/providers/Microsoft.Batch/batchAccounts/adnanzh1\",\r\n \"name\": \"adnanzh1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsdfgasujhd\": \"jdsfsdahgdfjheee\",\r\n \"adsdfgasujssshd\": \"jdsfsdahgdfjheeefgff\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchwestus/providers/Microsoft.Batch/batchAccounts/wenwu1007a1\",\r\n \"name\": \"wenwu1007a1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151135\",\r\n \"name\": \"zfeng9151135\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151138\",\r\n \"name\": \"zfeng9151138\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151141\",\r\n \"name\": \"zfeng9151141\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9151157\",\r\n \"name\": \"zfeng9151157\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916114\",\r\n \"name\": \"zfeng916114\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161213\",\r\n \"name\": \"zfeng9161213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161247\",\r\n \"name\": \"zfeng9161247\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161253\",\r\n \"name\": \"zfeng9161253\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng9161254\",\r\n \"name\": \"zfeng9161254\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916159\",\r\n \"name\": \"zfeng916159\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/batchWestUS/providers/Microsoft.Batch/batchAccounts/zfeng916735\",\r\n \"name\": \"zfeng916735\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/adnan\",\r\n \"name\": \"adnan\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/c123\",\r\n \"name\": \"c123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw\",\r\n \"name\": \"clw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k3\": \"v3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw1\",\r\n \"name\": \"clw1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw2\",\r\n \"name\": \"clw2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/clwtest/providers/Microsoft.Batch/batchAccounts/clw3\",\r\n \"name\": \"clw3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"k11\": \"v11\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/azbacjnkyz\",\r\n \"name\": \"azbacjnkyz\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azbac09duay1eb8ph5sloviz3crm4ngq7kjt6wx2f\": \"azbac5zjoxel6pb2yvsqh70dgmcu98t1r43nwkafi\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest1\",\r\n \"name\": \"clwtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/clwtest2\",\r\n \"name\": \"clwtest2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/Default-BatchService-WestUS/providers/Microsoft.Batch/batchAccounts/clw678\",\r\n \"name\": \"clw678\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk9501/providers/Microsoft.Batch/batchAccounts/onesdk916\",\r\n \"name\": \"onesdk916\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/testrpgroup/providers/Microsoft.Batch/batchAccounts/wenwu1007\",\r\n \"name\": \"wenwu1007\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567\",\r\n \"name\": \"clw567\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5671\",\r\n \"name\": \"clw5671\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123\",\r\n \"name\": \"clw567123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw567123456\",\r\n \"name\": \"clw567123456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5672\",\r\n \"name\": \"clw5672\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5673\",\r\n \"name\": \"clw5673\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5674\",\r\n \"name\": \"clw5674\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw5675\",\r\n \"name\": \"clw5675\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"k1\": \"\",\r\n \"k2\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clw789\",\r\n \"name\": \"clw789\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest\",\r\n \"name\": \"clwtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest123\",\r\n \"name\": \"clwtest123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/clwtest456\",\r\n \"name\": \"clwtest456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng123\",\r\n \"name\": \"zfeng123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng234\",\r\n \"name\": \"zfeng234\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng345\",\r\n \"name\": \"zfeng345\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng456\",\r\n \"name\": \"zfeng456\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng912118\",\r\n \"name\": \"zfeng912118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng9121231\",\r\n \"name\": \"zfeng9121231\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng913306\",\r\n \"name\": \"zfeng913306\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915422\",\r\n \"name\": \"zfeng915422\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng915619\",\r\n \"name\": \"zfeng915619\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengabc\",\r\n \"name\": \"zfengabc\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengbatch1\",\r\n \"name\": \"zfengbatch1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengclw\",\r\n \"name\": \"zfengclw\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengs607\",\r\n \"name\": \"zfengs607\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "12534" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,16 +322,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31866" + "14978" ], "x-ms-request-id": [ - "f69281d4-8bfc-4f8c-9743-e8e5e017bbc0" + "4d7b8466-35a2-4769-aee0-505ef09ea7d0" ], "x-ms-correlation-request-id": [ - "f69281d4-8bfc-4f8c-9743-e8e5e017bbc0" + "4d7b8466-35a2-4769-aee0-505ef09ea7d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022837Z:f69281d4-8bfc-4f8c-9743-e8e5e017bbc0" + "WESTUS:20150709T190002Z:4d7b8466-35a2-4769-aee0-505ef09ea7d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,28 +340,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:37 GMT" + "Thu, 09 Jul 2015 19:00:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazEyOTI/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag1\": \"testval1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"testtag1\": \"testval1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "76" + "80" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "94" ] }, "ResponseBody": "", @@ -376,31 +376,31 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1199" ], "request-id": [ - "773d87a1-b969-4264-85c4-e86d681420cf" + "218f484e-00f8-4b0b-8b25-65c8eda59afa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b050a9c2-6d92-44f5-9fe9-13ebd1efc625" + "9611c663-68e6-4f55-ab00-90baee78433e" ], "x-ms-correlation-request-id": [ - "b050a9c2-6d92-44f5-9fe9-13ebd1efc625" + "9611c663-68e6-4f55-ab00-90baee78433e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022839Z:b050a9c2-6d92-44f5-9fe9-13ebd1efc625" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T190007Z:9611c663-68e6-4f55-ab00-90baee78433e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:38 GMT" + "Thu, 09 Jul 2015 19:00:07 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631/operationResults/773d87a1-b969-4264-85c4-e86d681420cf?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292/operationResults/218f484e-00f8-4b0b-8b25-65c8eda59afa?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -409,28 +409,25 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazEyOTI/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "75" + "79" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "99" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk631\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk631.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1292\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk1292.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -439,127 +436,61 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:28:56 GMT" + "Thu, 09 Jul 2015 19:00:45 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "dcf760fa-b4ea-46e7-8426-863fc42852e4" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" - ], - "x-ms-request-id": [ - "0ba3f126-c15e-44b7-91cf-b5ea8d935ef9" - ], - "x-ms-correlation-request-id": [ - "0ba3f126-c15e-44b7-91cf-b5ea8d935ef9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022856Z:0ba3f126-c15e-44b7-91cf-b5ea8d935ef9" + "67b30f19-a670-46fa-850d-a6fe3faa5506" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:28:56 GMT" - ], - "ETag": [ - "0x8D1B636E759EFBD" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631/operationResults/773d87a1-b969-4264-85c4-e86d681420cf?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxL29wZXJhdGlvblJlc3VsdHMvNzczZDg3YTEtYjk2OS00MjY0LTg1YzQtZTg2ZDY4MTQyMGNmP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "94" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "34f31333-4a01-4958-9fee-49e1aff92a1c" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31865" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "1415d364-afa6-4223-afea-0e001cd67681" + "099f178c-32a5-47ba-b785-7c0b5bb0e1c6" ], "x-ms-correlation-request-id": [ - "1415d364-afa6-4223-afea-0e001cd67681" + "099f178c-32a5-47ba-b785-7c0b5bb0e1c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022839Z:1415d364-afa6-4223-afea-0e001cd67681" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T190045Z:099f178c-32a5-47ba-b785-7c0b5bb0e1c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:38 GMT" + "Thu, 09 Jul 2015 19:00:45 GMT" ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631/operationResults/773d87a1-b969-4264-85c4-e86d681420cf?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28890B1B221B4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631/operationResults/773d87a1-b969-4264-85c4-e86d681420cf?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxL29wZXJhdGlvblJlc3VsdHMvNzczZDg3YTEtYjk2OS00MjY0LTg1YzQtZTg2ZDY4MTQyMGNmP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292/operationResults/218f484e-00f8-4b0b-8b25-65c8eda59afa?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazEyOTIvb3BlcmF0aW9uUmVzdWx0cy8yMThmNDg0ZS0wMGY4LTRiMGItOGIyNS02NWM4ZWRhNTlhZmE/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "94" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk631\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag1\": \"testval1\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk631.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1292\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag1\": \"testval1\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk1292.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -568,37 +499,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:28:54 GMT" + "Thu, 09 Jul 2015 19:00:09 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6a892784-caa9-4455-91d3-377c4930c0b7" + "880e2b83-a7dd-404b-a4b9-bc013891e484" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31864" + "14993" ], "x-ms-request-id": [ - "0339522f-725c-4464-899a-e2b60fa5257a" + "b693268d-f525-4c41-b49a-c3e001d44d72" ], "x-ms-correlation-request-id": [ - "0339522f-725c-4464-899a-e2b60fa5257a" + "b693268d-f525-4c41-b49a-c3e001d44d72" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022854Z:0339522f-725c-4464-899a-e2b60fa5257a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T190008Z:b693268d-f525-4c41-b49a-c3e001d44d72" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:54 GMT" + "Thu, 09 Jul 2015 19:00:07 GMT" ], "ETag": [ - "0x8D1B636E6753CAC" + "0x8D288909C4F3D49" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -607,22 +538,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazEyOTI/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk631\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag1\": \"testval1\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk631.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1292\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag1\": \"testval1\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk1292.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -631,37 +562,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:28:55 GMT" + "Thu, 09 Jul 2015 19:00:43 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c29f2803-fde6-4950-b20a-49ee5ad8118d" + "6c6ea80a-532a-4174-8342-fc62a284b4c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31863" + "14992" ], "x-ms-request-id": [ - "d7bfe2c0-586d-4493-a406-47ec15867bc2" + "7b408af5-ea7f-4399-95b1-9cf395c5aafc" ], "x-ms-correlation-request-id": [ - "d7bfe2c0-586d-4493-a406-47ec15867bc2" + "7b408af5-ea7f-4399-95b1-9cf395c5aafc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022855Z:d7bfe2c0-586d-4493-a406-47ec15867bc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T190042Z:7b408af5-ea7f-4399-95b1-9cf395c5aafc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:54 GMT" + "Thu, 09 Jul 2015 19:00:41 GMT" ], "ETag": [ - "0x8D1B636E6A80F34" + "0x8D28890B0865188" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,22 +601,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazEyOTI/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk631\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk631.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1292\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {\r\n \"testtag2\": \"testval2\"\r\n },\r\n \"properties\": {\r\n \"accountEndpoint\": \"onesdk1292.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -694,37 +625,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:28:56 GMT" + "Thu, 09 Jul 2015 19:00:46 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4c88dce8-e510-4071-9e7d-755929ae7dc7" + "a6cc161c-9477-4037-a713-7023f71eca6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31862" + "14991" ], "x-ms-request-id": [ - "2ce3e95e-afe3-48cb-a494-659a87146248" + "c3a5ad2c-c0b4-447d-85ed-7f0ed620a121" ], "x-ms-correlation-request-id": [ - "2ce3e95e-afe3-48cb-a494-659a87146248" + "c3a5ad2c-c0b4-447d-85ed-7f0ed620a121" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022856Z:2ce3e95e-afe3-48cb-a494-659a87146248" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T190045Z:c3a5ad2c-c0b4-447d-85ed-7f0ed620a121" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:56 GMT" + "Thu, 09 Jul 2015 19:00:45 GMT" ], "ETag": [ - "0x8D1B636E7A0357E" + "0x8D28890B2925069" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -733,16 +664,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazEyOTI/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "102" ] }, "ResponseBody": "", @@ -760,31 +688,31 @@ "15" ], "request-id": [ - "156ce073-e10d-41db-ba97-3cd2df1e5046" + "2ed9df12-0e82-44c8-ae81-3fc63dd89244" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1197" ], "x-ms-request-id": [ - "f3ff98ed-8341-48f5-b9fe-3ec973422eca" + "8d75b470-10bd-46b1-9ed1-3e33c1e11692" ], "x-ms-correlation-request-id": [ - "f3ff98ed-8341-48f5-b9fe-3ec973422eca" + "8d75b470-10bd-46b1-9ed1-3e33c1e11692" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022857Z:f3ff98ed-8341-48f5-b9fe-3ec973422eca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T190047Z:8d75b470-10bd-46b1-9ed1-3e33c1e11692" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:56 GMT" + "Thu, 09 Jul 2015 19:00:47 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631/operationResults/156ce073-e10d-41db-ba97-3cd2df1e5046?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292/operationResults/2ed9df12-0e82-44c8-ae81-3fc63dd89244?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -793,19 +721,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631/operationResults/156ce073-e10d-41db-ba97-3cd2df1e5046?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxL29wZXJhdGlvblJlc3VsdHMvMTU2Y2UwNzMtZTEwZC00MWRiLWJhOTctM2NkMmRmMWU1MDQ2P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292/operationResults/2ed9df12-0e82-44c8-ae81-3fc63dd89244?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazEyOTIvb3BlcmF0aW9uUmVzdWx0cy8yZWQ5ZGYxMi0wZTgyLTQ0YzgtYWU4MS0zZmM2M2RkODkyNDQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "102" ] }, "ResponseBody": "", @@ -823,31 +748,31 @@ "15" ], "request-id": [ - "73eb703c-5de0-4606-ba24-6705c21f00b9" + "ef75c419-655b-4786-8e52-827530c3e4e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31861" + "14990" ], "x-ms-request-id": [ - "bb8ccd81-35b9-4ecc-b82c-1d1cdf1a08d9" + "790f6d10-d3ca-45ba-abc9-0c744c5b60d2" ], "x-ms-correlation-request-id": [ - "bb8ccd81-35b9-4ecc-b82c-1d1cdf1a08d9" + "790f6d10-d3ca-45ba-abc9-0c744c5b60d2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022857Z:bb8ccd81-35b9-4ecc-b82c-1d1cdf1a08d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T190047Z:790f6d10-d3ca-45ba-abc9-0c744c5b60d2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:28:57 GMT" + "Thu, 09 Jul 2015 19:00:47 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631/operationResults/156ce073-e10d-41db-ba97-3cd2df1e5046?api-version=2014-05-01-privatepreview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292/operationResults/2ed9df12-0e82-44c8-ae81-3fc63dd89244?api-version=2015-07-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -856,19 +781,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourceGroups/onesdk764/providers/Microsoft.Batch/batchAccounts/onesdk631/operationResults/156ce073-e10d-41db-ba97-3cd2df1e5046?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvb25lc2RrNjMxL29wZXJhdGlvblJlc3VsdHMvMTU2Y2UwNzMtZTEwZC00MWRiLWJhOTctM2NkMmRmMWU1MDQ2P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/onesdk1848/providers/Microsoft.Batch/batchAccounts/onesdk1292/operationResults/2ed9df12-0e82-44c8-ae81-3fc63dd89244?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL29uZXNkazEyOTIvb3BlcmF0aW9uUmVzdWx0cy8yZWQ5ZGYxMi0wZTgyLTQ0YzgtYWU4MS0zZmM2M2RkODkyNDQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ], - "client-tracking-id": [ - "102" ] }, "ResponseBody": "", @@ -880,37 +802,37 @@ "-1" ], "Last-Modified": [ - "Wed, 15 Oct 2014 02:29:12 GMT" + "Thu, 09 Jul 2015 19:01:04 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3ad0e717-84e5-495b-ae33-70bf0419a80c" + "8e5a03f8-badd-4487-99f6-fa7535e012a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31860" + "14989" ], "x-ms-request-id": [ - "1ab2a75f-7f35-4dc4-9ac3-e618aa2f4b54" + "fa0d2a14-2f2c-4261-8f5c-65ccc6a2a826" ], "x-ms-correlation-request-id": [ - "1ab2a75f-7f35-4dc4-9ac3-e618aa2f4b54" + "fa0d2a14-2f2c-4261-8f5c-65ccc6a2a826" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022912Z:1ab2a75f-7f35-4dc4-9ac3-e618aa2f4b54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150709T190103Z:fa0d2a14-2f2c-4261-8f5c-65ccc6a2a826" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:29:12 GMT" + "Thu, 09 Jul 2015 19:01:02 GMT" ], "ETag": [ - "0x8D1B636F134C0E6" + "0x8D28890BD0D69CB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -919,16 +841,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/resourcegroups/onesdk764?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/onesdk1848?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "107" ] }, "ResponseBody": "", @@ -946,16 +865,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1183" ], "x-ms-request-id": [ - "03f9a797-a4be-4fca-8979-3fd354171d9c" + "f7701be7-ab91-488c-96e4-5347cf527cdc" ], "x-ms-correlation-request-id": [ - "03f9a797-a4be-4fca-8979-3fd354171d9c" + "f7701be7-ab91-488c-96e4-5347cf527cdc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022913Z:03f9a797-a4be-4fca-8979-3fd354171d9c" + "WESTUS:20150709T190105Z:f7701be7-ab91-488c-96e4-5347cf527cdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -964,17 +883,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:29:13 GMT" + "Thu, 09 Jul 2015 19:01:05 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ==?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ==?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRPT0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFE0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -983,9 +902,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "107" ] }, "ResponseBody": "", @@ -1003,16 +919,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31858" + "14976" ], "x-ms-request-id": [ - "ccfe4c14-6bb0-4c47-9380-fe4654ecae76" + "b474a46a-f8a9-4f2e-b8a8-7d9f8d5dc6e9" ], "x-ms-correlation-request-id": [ - "ccfe4c14-6bb0-4c47-9380-fe4654ecae76" + "b474a46a-f8a9-4f2e-b8a8-7d9f8d5dc6e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022913Z:ccfe4c14-6bb0-4c47-9380-fe4654ecae76" + "WESTUS:20150709T190106Z:b474a46a-f8a9-4f2e-b8a8-7d9f8d5dc6e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1021,17 +937,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:29:13 GMT" + "Thu, 09 Jul 2015 19:01:06 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ==?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ==?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRPT0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFE0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1040,9 +956,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "107" ] }, "ResponseBody": "", @@ -1060,16 +973,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31857" + "14975" ], "x-ms-request-id": [ - "3fecc4be-96da-46e6-bb76-d26b850458f3" + "4a2c1495-bf7c-4126-a53b-fae9f03f819f" ], "x-ms-correlation-request-id": [ - "3fecc4be-96da-46e6-bb76-d26b850458f3" + "4a2c1495-bf7c-4126-a53b-fae9f03f819f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022928Z:3fecc4be-96da-46e6-bb76-d26b850458f3" + "WESTUS:20150709T190121Z:4a2c1495-bf7c-4126-a53b-fae9f03f819f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1078,17 +991,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:29:28 GMT" + "Thu, 09 Jul 2015 19:01:21 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ==?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ==?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRPT0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ4LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFE0TFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1097,66 +1010,6 @@ ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "107" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31856" - ], - "x-ms-request-id": [ - "7e968b87-e67b-40ff-a8e0-6f9e9b91c766" - ], - "x-ms-correlation-request-id": [ - "7e968b87-e67b-40ff-a8e0-6f9e9b91c766" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022943Z:7e968b87-e67b-40ff-a8e0-6f9e9b91c766" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Oct 2014 02:29:42 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ==?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4a06fe24-c197-4353-adc1-058d1a51924e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ==?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGEwNmZlMjQtYzE5Ny00MzUzLWFkYzEtMDU4ZDFhNTE5MjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRPT0/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ], - "client-tracking-id": [ - "107" ] }, "ResponseBody": "", @@ -1171,16 +1024,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31855" + "14974" ], "x-ms-request-id": [ - "ae679df8-d434-4dc6-89a4-e87ea7bf199b" + "0abd8392-3688-4267-946c-f9ede0a3aaa0" ], "x-ms-correlation-request-id": [ - "ae679df8-d434-4dc6-89a4-e87ea7bf199b" + "0abd8392-3688-4267-946c-f9ede0a3aaa0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20141015T022958Z:ae679df8-d434-4dc6-89a4-e87ea7bf199b" + "WESTUS:20150709T190137Z:0abd8392-3688-4267-946c-f9ede0a3aaa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1189,7 +1042,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Oct 2014 02:29:58 GMT" + "Thu, 09 Jul 2015 19:01:37 GMT" ] }, "StatusCode": 200 @@ -1197,11 +1050,11 @@ ], "Names": { "Test-UpdatesExistingBatchAccount": [ - "onesdk631", - "onesdk764" + "onesdk1292", + "onesdk1848" ] }, "Variables": { - "SubscriptionId": "4a06fe24-c197-4353-adc1-058d1a51924e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRDPFileByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRDPFileByName.json index 99384e91d2c8..57d274261c8a 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRDPFileByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRDPFileByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14969" ], "x-ms-request-id": [ - "70bb227d-cd4e-4cc3-92f8-f5ecb57a42ee" + "6e8e6142-e7bc-427f-bffe-4982fcd0ea2a" ], "x-ms-correlation-request-id": [ - "70bb227d-cd4e-4cc3-92f8-f5ecb57a42ee" + "6e8e6142-e7bc-427f-bffe-4982fcd0ea2a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T222109Z:70bb227d-cd4e-4cc3-92f8-f5ecb57a42ee" + "WESTUS:20150709T191407Z:6e8e6142-e7bc-427f-bffe-4982fcd0ea2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 22:21:09 GMT" + "Thu, 09 Jul 2015 19:14:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Thu, 02 Apr 2015 22:21:10 GMT" + "Thu, 09 Jul 2015 19:14:08 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2f8e7cea-3c55-4b8b-9e22-39d812c6b512" + "582f15ca-0f31-4609-8fb8-1bca8ac24574" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14938" ], "x-ms-request-id": [ - "c6c5ff9a-862d-4ce5-b0e5-b0dac7d5c164" + "28968e0d-8665-4da3-a38d-b34f2d502951" ], "x-ms-correlation-request-id": [ - "c6c5ff9a-862d-4ce5-b0e5-b0dac7d5c164" + "28968e0d-8665-4da3-a38d-b34f2d502951" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T222110Z:c6c5ff9a-862d-4ce5-b0e5-b0dac7d5c164" + "WESTUS:20150709T191408Z:28968e0d-8665-4da3-a38d-b34f2d502951" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 22:21:10 GMT" + "Thu, 09 Jul 2015 19:14:08 GMT" ], "ETag": [ - "0x8D23BAA753859C4" + "0x8D28892909404EC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "35047eab-0375-455d-ba7c-89874a4e373d" + "019a89f5-e32c-4b46-85d3-c093e981909b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1178" ], "x-ms-request-id": [ - "e1b1d446-9233-499b-9c9c-149966bec2d2" + "8ad1997a-d947-46ec-9706-52d61fbd7a77" ], "x-ms-correlation-request-id": [ - "e1b1d446-9233-499b-9c9c-149966bec2d2" + "8ad1997a-d947-46ec-9706-52d61fbd7a77" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T222111Z:e1b1d446-9233-499b-9c9c-149966bec2d2" + "WESTUS:20150709T191408Z:8ad1997a-d947-46ec-9706-52d61fbd7a77" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 22:21:10 GMT" + "Thu, 09 Jul 2015 19:14:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/rdp?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L3JkcD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/rdp?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3JkcD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1a49ced3-f6a1-4742-86c0-328e7419b961" + "b9d7e128-6679-4c2d-b765-7f828047c5e5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 22:21:11 GMT" + "Thu, 09 Jul 2015 19:14:08 GMT" ] }, - "ResponseBody": "full address:s:207.46.233.184\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0", + "ResponseBody": "full address:s:137.117.90.4\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0", "ResponseHeaders": { "Content-Type": [ "application/octet-stream" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "e937477d-9894-44f2-a246-2f2256e1d6b8" + "07f9f0eb-0994-4cf8-ad50-2dbaeb2fc456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Thu, 02 Apr 2015 22:21:10 GMT" + "Thu, 09 Jul 2015 19:14:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -214,8 +214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/rdp?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L3JkcD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/rdp?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3JkcD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "08c92cf1-f932-45a2-b8c9-454cb17dcac6" + "6b0765a5-4bdf-46f9-9425-7741b5a44286" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 22:21:11 GMT" + "Thu, 09 Jul 2015 19:14:08 GMT" ] }, - "ResponseBody": "full address:s:207.46.233.184\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0", + "ResponseBody": "full address:s:137.117.90.4\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0", "ResponseHeaders": { "Content-Type": [ "application/octet-stream" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "d42b04ce-fb84-48a5-a8f9-d22f94e7895e" + "e85c2801-ccb0-4b43-b55b-a37f1d27a79c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Thu, 02 Apr 2015 22:21:13 GMT" + "Thu, 09 Jul 2015 19:14:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -261,6 +261,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRDPFilePipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRDPFilePipeline.json index ba2d50a1a8e9..04a07526983a 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRDPFilePipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRDPFilePipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14971" ], "x-ms-request-id": [ - "49ad55c3-4b60-4630-9738-ff9e59d291f6" + "f1a7797b-9ab8-4719-862d-024a68f53554" ], "x-ms-correlation-request-id": [ - "49ad55c3-4b60-4630-9738-ff9e59d291f6" + "f1a7797b-9ab8-4719-862d-024a68f53554" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T222145Z:49ad55c3-4b60-4630-9738-ff9e59d291f6" + "WESTUS:20150709T191609Z:f1a7797b-9ab8-4719-862d-024a68f53554" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 22:21:45 GMT" + "Thu, 09 Jul 2015 19:16:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Thu, 02 Apr 2015 22:21:45 GMT" + "Thu, 09 Jul 2015 19:16:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6f677d3d-9c21-4230-b4fd-a5ba7319857a" + "ed8f83a0-9014-43eb-8f85-9fe65ef44ac1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14970" ], "x-ms-request-id": [ - "465a0275-8fad-434b-b9fd-94c7ce063587" + "c178363c-ddfe-4504-adfa-d4b897bf2e94" ], "x-ms-correlation-request-id": [ - "465a0275-8fad-434b-b9fd-94c7ce063587" + "c178363c-ddfe-4504-adfa-d4b897bf2e94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T222145Z:465a0275-8fad-434b-b9fd-94c7ce063587" + "WESTUS:20150709T191610Z:c178363c-ddfe-4504-adfa-d4b897bf2e94" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 22:21:44 GMT" + "Thu, 09 Jul 2015 19:16:10 GMT" ], "ETag": [ - "0x8D23BAA89F698EB" + "0x8D28892D9A04543" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "965c4884-9b50-4f62-8de2-37288bc8167d" + "fe1b4dda-14c7-459c-9804-7620d9929cd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1183" ], "x-ms-request-id": [ - "df2919da-4198-4ee1-bd07-a9c3f263a83e" + "a4f2060a-6780-4270-b31e-983e3e8f5820" ], "x-ms-correlation-request-id": [ - "df2919da-4198-4ee1-bd07-a9c3f263a83e" + "a4f2060a-6780-4270-b31e-983e3e8f5820" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T222146Z:df2919da-4198-4ee1-bd07-a9c3f263a83e" + "WESTUS:20150709T191610Z:a4f2060a-6780-4270-b31e-983e3e8f5820" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 22:21:46 GMT" + "Thu, 09 Jul 2015 19:16:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8645a688-0521-4974-8043-cff55f14384f" + "f951b4be-23ae-4d39-a61c-4f04ff3d872e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 22:21:46 GMT" + "Thu, 09 Jul 2015 19:16:10 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-1900272697_1-20150331t200107z\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T20:05:49.9151074Z\",\r\n \"lastBootTime\": \"2015-03-31T20:05:49.7391087Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T20:01:07.1482714Z\",\r\n \"ipAddress\": \"100.77.160.57\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t200107z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-03-31T20:05:49.9521089Z\",\r\n \"endTime\": \"2015-03-31T20:05:51.5957379Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 9,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "2e3f841f-c573-46d8-8c46-2fa348f69b2f" + "2736bb32-24ea-424c-83a7-7628b4c072c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Thu, 02 Apr 2015 22:21:47 GMT" + "Thu, 09 Jul 2015 19:16:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -214,8 +214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/rdp?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L3JkcD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/rdp?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3JkcD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0bf784be-c34d-4924-8553-2d3129a1b2b6" + "8cd4645b-21bb-43e9-9a66-6bfe13c6a30b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 22:21:47 GMT" + "Thu, 09 Jul 2015 19:16:11 GMT" ] }, - "ResponseBody": "full address:s:207.46.233.184\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0", + "ResponseBody": "full address:s:137.117.90.4\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0", "ResponseHeaders": { "Content-Type": [ "application/octet-stream" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "35ca021f-d421-4685-8f10-9ddbaedbdaed" + "37d1089f-5d5b-492b-a1fc-7b1dde7e65e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Thu, 02 Apr 2015 22:21:47 GMT" + "Thu, 09 Jul 2015 19:16:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -261,6 +261,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileByName.json index 2c45a1b53b5b..fbbe6d6d30ef 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14942" ], "x-ms-request-id": [ - "89fd4561-9a82-4e22-b91a-c7e3477e15be" + "585e15d8-c12b-4f14-9e9a-0fe355a08fe9" ], "x-ms-correlation-request-id": [ - "89fd4561-9a82-4e22-b91a-c7e3477e15be" + "585e15d8-c12b-4f14-9e9a-0fe355a08fe9" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T180449Z:89fd4561-9a82-4e22-b91a-c7e3477e15be" + "WESTUS:20150709T191451Z:585e15d8-c12b-4f14-9e9a-0fe355a08fe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:04:49 GMT" + "Thu, 09 Jul 2015 19:14:50 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14941" ], "x-ms-request-id": [ - "44c7ce6c-8d06-4ddf-9979-c3459f585ba8" + "1f7cd35e-9ef1-4726-bc36-7bb38cd75d35" ], "x-ms-correlation-request-id": [ - "44c7ce6c-8d06-4ddf-9979-c3459f585ba8" + "1f7cd35e-9ef1-4726-bc36-7bb38cd75d35" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T180632Z:44c7ce6c-8d06-4ddf-9979-c3459f585ba8" + "WESTUS:20150709T191457Z:1f7cd35e-9ef1-4726-bc36-7bb38cd75d35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:06:32 GMT" + "Thu, 09 Jul 2015 19:14:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:04:50 GMT" + "Thu, 09 Jul 2015 19:14:52 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "721f491d-0d1e-480a-8636-5dc4bc4b3770" + "d069a30e-baba-44b1-9c9c-a87ac37f3583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14950" ], "x-ms-request-id": [ - "f64b3502-5173-4b3e-b824-3233905b394e" + "d95275b2-e614-4fd0-9257-583f4bbb6787" ], "x-ms-correlation-request-id": [ - "f64b3502-5173-4b3e-b824-3233905b394e" + "d95275b2-e614-4fd0-9257-583f4bbb6787" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T180450Z:f64b3502-5173-4b3e-b824-3233905b394e" + "WESTUS:20150709T191452Z:d95275b2-e614-4fd0-9257-583f4bbb6787" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:04:50 GMT" + "Thu, 09 Jul 2015 19:14:52 GMT" ], "ETag": [ - "0x8D22E2AD4CC3AB4" + "0x8D28892AB0331DB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:06:33 GMT" + "Thu, 09 Jul 2015 19:14:57 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "30e3b2d8-513b-4316-98fe-3dc0d3db034c" + "74975335-2e54-4a3e-bdec-b49a54629e9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14949" ], "x-ms-request-id": [ - "9af9b246-4183-4a0b-bc2e-6d426a17e2d2" + "fcfd415e-dc4d-40e6-bf9e-09d99fa2427b" ], "x-ms-correlation-request-id": [ - "9af9b246-4183-4a0b-bc2e-6d426a17e2d2" + "fcfd415e-dc4d-40e6-bf9e-09d99fa2427b" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T180633Z:9af9b246-4183-4a0b-bc2e-6d426a17e2d2" + "WESTUS:20150709T191457Z:fcfd415e-dc4d-40e6-bf9e-09d99fa2427b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:06:32 GMT" + "Thu, 09 Jul 2015 19:14:57 GMT" ], "ETag": [ - "0x8D22E2B12363C80" + "0x8D28892ADE4BD9A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "37cfa001-7a2f-47ca-8450-edf6d62da7be" + "d4aa3fd7-d0e4-4035-bf46-b53a6ccaf4b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1176" ], "x-ms-request-id": [ - "4b8d6fdd-c3d2-477e-8cf0-897b71d8163c" + "bd8bbb03-4199-4562-9f9b-5262aa0c4038" ], "x-ms-correlation-request-id": [ - "4b8d6fdd-c3d2-477e-8cf0-897b71d8163c" + "bd8bbb03-4199-4562-9f9b-5262aa0c4038" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T180450Z:4b8d6fdd-c3d2-477e-8cf0-897b71d8163c" + "WESTUS:20150709T191453Z:bd8bbb03-4199-4562-9f9b-5262aa0c4038" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:04:50 GMT" + "Thu, 09 Jul 2015 19:14:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "749b6891-ab88-4e5c-8899-0d0d00996e38" + "6524b7dd-de3e-48dd-9b22-8dba9aac6411" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1175" ], "x-ms-request-id": [ - "2f3b88e0-445a-4a20-ba26-616329d486e9" + "5412e442-4894-40f1-82d7-012c8cdd7aaf" ], "x-ms-correlation-request-id": [ - "2f3b88e0-445a-4a20-ba26-616329d486e9" + "5412e442-4894-40f1-82d7-012c8cdd7aaf" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T180633Z:2f3b88e0-445a-4a20-ba26-616329d486e9" + "WESTUS:20150709T191457Z:5412e442-4894-40f1-82d7-012c8cdd7aaf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:06:33 GMT" + "Thu, 09 Jul 2015 19:14:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "94102674-b1c4-47cc-b776-6f1508584172" + "2afd5344-bb35-418a-b1d2-20739046af4d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:04:51 GMT" + "Thu, 09 Jul 2015 19:14:53 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:04:48 GMT" + "Thu, 09 Jul 2015 19:14:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "533f4333-4622-4101-be2f-6670057ab461" + "94af0e2f-92cd-4bb5-b0c7-50d928977fdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testGetTaskFileWI" + "https://pstests.batch.core.windows.net/workitems/testGetTaskFileWI" ], "Date": [ - "Mon, 16 Mar 2015 18:04:51 GMT" + "Thu, 09 Jul 2015 19:14:52 GMT" ], "ETag": [ - "0x8D22E2AD340E771" + "0x8D28892AB97974D" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testGetTaskFileWI" + "https://pstests.batch.core.windows.net/workitems/testGetTaskFileWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a83d69fd-c0ac-4b9e-a3c0-0e0021fe4b07" + "55b43d40-2e91-46d8-b9f6-96f5369a7332" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:06:12 GMT" + "Thu, 09 Jul 2015 19:14:53 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testGetTaskFileWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTaskFileWI\",\r\n \"eTag\": \"0x8D22E2AD340E771\",\r\n \"lastModified\": \"2015-03-16T18:04:48.0411505Z\",\r\n \"creationTime\": \"2015-03-16T18:04:48.0411505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:04:48.0411505Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTaskFileWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testGetTaskFileWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTaskFileWI\",\r\n \"eTag\": \"0x8D28892AB97974D\",\r\n \"lastModified\": \"2015-07-09T19:14:53.8102605Z\",\r\n \"creationTime\": \"2015-07-09T19:14:53.8102605Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:14:53.8102605Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTaskFileWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:04:48 GMT" + "Thu, 09 Jul 2015 19:14:53 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cff2a68a-423b-4d7f-962c-79ac27db2cc9" + "867a6e78-70dd-4a45-bab3-86737e643bc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,10 +436,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:06:13 GMT" + "Thu, 09 Jul 2015 19:14:53 GMT" ], "ETag": [ - "0x8D22E2AD340E771" + "0x8D28892AB97974D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -451,37 +451,37 @@ "RequestUri": "/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0R2V0VGFza0ZpbGVXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "150" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "e5734963-950a-4652-8822-14eeecf25bce" + "4a1e7c46-9743-443a-8ee1-7dda0aa0f7b0" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:06:19 GMT" + "Thu, 09 Jul 2015 19:14:53 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:06:18 GMT" + "Thu, 09 Jul 2015 19:14:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "910d02db-85f8-4b96-843d-768b9da4eaae" + "0b65f5bf-5be1-49de-b476-934685742781" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Mon, 16 Mar 2015 18:06:18 GMT" + "Thu, 09 Jul 2015 19:14:53 GMT" ], "ETag": [ - "0x8D22E2B094D907F" + "0x8D28892ABC263A0" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +517,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "2cd85cb5-0b63-4116-9e9c-573c2da676f9" + "c627d79a-89a2-4720-8da9-e6bf82a1d66e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:06:22 GMT" + "Thu, 09 Jul 2015 19:14:54 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E2B094D907F\",\r\n \"creationTime\": \"2015-03-16T18:06:18.7210879Z\",\r\n \"lastModified\": \"2015-03-16T18:06:18.7210879Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-16T18:06:21.85067Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-03-16T18:06:21.7626712Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-16T18:06:21.7626712Z\",\r\n \"endTime\": \"2015-03-16T18:06:21.85067Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-3657382398_1-20150313t235640z\",\r\n \"tvmUrl\": \"https://filetests.batch.core.windows.net/pools/testPool/tvms/tvm-3657382398_1-20150313t235640z\",\r\n \"poolName\": \"testPool\",\r\n \"tvmName\": \"tvm-3657382398_1-20150313t235640z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D28892ABC263A0\",\r\n \"creationTime\": \"2015-07-09T19:14:54.0907424Z\",\r\n \"lastModified\": \"2015-07-09T19:14:54.0907424Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:14:54.0907424Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:06:18 GMT" + "Thu, 09 Jul 2015 19:14:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6755deac-8a47-49ec-b8e7-3addef84aba9" + "41903ded-b7c1-4279-8e70-04cb54c1ca3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +547,100 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:06:23 GMT" + "Thu, 09 Jul 2015 19:14:53 GMT" ], "ETag": [ - "0x8D22E2B094D907F" + "0x8D28892ABC263A0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$select=name%2Cstate&$filter=name%20eq%20'testTask'", + "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0R2V0VGFza0ZpbGVXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJiRzZWxlY3Q9bmFtZSUyQ3N0YXRlJiRmaWx0ZXI9bmFtZSUyMGVxJTIwJTI3dGVzdFRhc2slMjc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "6f482c23-de88-49d8-8618-534c96c506e5" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 19:14:54 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "1b6b262f-4f27-441b-a342-603ac8fe9bb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 19:14:54 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/workitems/testGetTaskFileWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$select=name%2Cstate&$filter=name%20eq%20'testTask'", + "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0R2V0VGFza0ZpbGVXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJiRzZWxlY3Q9bmFtZSUyQ3N0YXRlJiRmaWx0ZXI9bmFtZSUyMGVxJTIwJTI3dGVzdFRhc2slMjc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "70804589-8d72-43e2-994c-706b6b79093b" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 19:14:57 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "613f33ac-df50-46a1-9a9a-b3df681e96ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 19:14:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,13 +658,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c8461fcd-347d-4243-a693-8ec35b26899c" + "31844d63-59e3-4d29-8603-d1351d8eeca8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:06:33 GMT" + "Thu, 09 Jul 2015 19:14:57 GMT" ] }, "ResponseBody": "", @@ -586,10 +676,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:06:21 GMT" + "Thu, 09 Jul 2015 19:14:55 GMT" ], "request-id": [ - "2a6f070b-0b61-4e5b-a733-4eab858b91d0" + "4bbf3914-3385-47f8-8313-f56b6cdd456a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,16 +688,16 @@ "3.0" ], "ocp-creation-time": [ - "Mon, 16 Mar 2015 18:06:21 GMT" + "Thu, 09 Jul 2015 19:14:55 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Ffiletests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fstdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fstdout.txt" ], "Date": [ - "Mon, 16 Mar 2015 18:06:44 GMT" + "Thu, 09 Jul 2015 19:14:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -625,13 +715,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f40587ea-f820-47c4-8f3b-a1c514321f8c" + "55bfa12a-b943-423e-a82e-7ce6a9a41002" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:06:55 GMT" + "Thu, 09 Jul 2015 19:14:58 GMT" ] }, "ResponseBody": "", @@ -643,10 +733,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:06:21 GMT" + "Thu, 09 Jul 2015 19:14:55 GMT" ], "request-id": [ - "39272872-1742-44e2-bca0-11f44b836d06" + "21d69255-a2ab-4980-bea7-4dbdeb435d69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -655,16 +745,16 @@ "3.0" ], "ocp-creation-time": [ - "Mon, 16 Mar 2015 18:06:21 GMT" + "Thu, 09 Jul 2015 19:14:55 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Ffiletests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fstdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fstdout.txt" ], "Date": [ - "Mon, 16 Mar 2015 18:07:16 GMT" + "Thu, 09 Jul 2015 19:14:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -682,13 +772,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b1ded214-ce6c-4b24-9f74-9da0fc79a480" + "c02fa103-2e5a-4ea3-89a5-32a2dbe6b1d0" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:07:21 GMT" + "Thu, 09 Jul 2015 19:14:58 GMT" ] }, "ResponseBody": "", @@ -697,7 +787,7 @@ "chunked" ], "request-id": [ - "e22fc414-dd7c-4215-845d-6c08e7ef2827" + "87ecd36a-0ef4-462f-b1fd-2e3809706ea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,7 +796,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:07:21 GMT" + "Thu, 09 Jul 2015 19:14:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileContentByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileContentByName.json index b1039ac8d532..34e647dd4903 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileContentByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileContentByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14937" ], "x-ms-request-id": [ - "5a83fe94-62e1-4ec0-a5e0-d7ff4fbed728" + "e6c5e67b-107a-41cd-bec9-55a9520ce447" ], "x-ms-correlation-request-id": [ - "5a83fe94-62e1-4ec0-a5e0-d7ff4fbed728" + "e6c5e67b-107a-41cd-bec9-55a9520ce447" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T174903Z:5a83fe94-62e1-4ec0-a5e0-d7ff4fbed728" + "WESTUS:20150709T191853Z:e6c5e67b-107a-41cd-bec9-55a9520ce447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:49:03 GMT" + "Thu, 09 Jul 2015 19:18:52 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14936" ], "x-ms-request-id": [ - "4bf34e62-1cf7-41e8-bda5-fac5c95b26fe" + "a1e25e1e-9785-42a4-93ce-3cb01d21e521" ], "x-ms-correlation-request-id": [ - "4bf34e62-1cf7-41e8-bda5-fac5c95b26fe" + "a1e25e1e-9785-42a4-93ce-3cb01d21e521" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T174916Z:4bf34e62-1cf7-41e8-bda5-fac5c95b26fe" + "WESTUS:20150709T191858Z:a1e25e1e-9785-42a4-93ce-3cb01d21e521" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:49:16 GMT" + "Thu, 09 Jul 2015 19:18:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:03 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e8f909d0-6a1e-47da-b16a-05a8638a0a9c" + "d61a8f63-c0e2-4326-a6be-a7a7618a653f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14942" ], "x-ms-request-id": [ - "ce502e33-89b3-4f0c-b4fa-9bc5845a0860" + "d1c4ac70-a1ce-4b7d-9228-5a5761c512ad" ], "x-ms-correlation-request-id": [ - "ce502e33-89b3-4f0c-b4fa-9bc5845a0860" + "d1c4ac70-a1ce-4b7d-9228-5a5761c512ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T174904Z:ce502e33-89b3-4f0c-b4fa-9bc5845a0860" + "WESTUS:20150709T191854Z:d1c4ac70-a1ce-4b7d-9228-5a5761c512ad" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:49:04 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ], "ETag": [ - "0x8D22EF1CA8B3777" + "0x8D288933B0A57FD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:15 GMT" + "Thu, 09 Jul 2015 19:18:59 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8da3ed04-b5bd-489d-901a-aadeda0d55fd" + "96ed1625-9113-4569-a68f-a1455e7111c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14941" ], "x-ms-request-id": [ - "97c2b26d-4025-412d-81ea-9cd41f3c8c79" + "44e5e988-d3f0-423f-a5e7-57cec758ffac" ], "x-ms-correlation-request-id": [ - "97c2b26d-4025-412d-81ea-9cd41f3c8c79" + "44e5e988-d3f0-423f-a5e7-57cec758ffac" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T174916Z:97c2b26d-4025-412d-81ea-9cd41f3c8c79" + "WESTUS:20150709T191858Z:44e5e988-d3f0-423f-a5e7-57cec758ffac" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:49:16 GMT" + "Thu, 09 Jul 2015 19:18:58 GMT" ], "ETag": [ - "0x8D22EF1D18DB0E6" + "0x8D288933DDF49EA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "a970023d-4f2d-485a-9f2e-57516b59c28f" + "cdb0fbbb-5f11-4c93-afd9-5cb3edd2a7c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1170" ], "x-ms-request-id": [ - "31309f8d-3246-40ad-bebd-b199b9fc1254" + "6816c517-062d-4742-affc-efc9ee325352" ], "x-ms-correlation-request-id": [ - "31309f8d-3246-40ad-bebd-b199b9fc1254" + "6816c517-062d-4742-affc-efc9ee325352" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T174905Z:31309f8d-3246-40ad-bebd-b199b9fc1254" + "WESTUS:20150709T191854Z:6816c517-062d-4742-affc-efc9ee325352" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:49:04 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "a7d109a1-ba63-429d-ba92-5fc80355fa86" + "ac6fca59-92af-48c8-bad1-a43a7f2123cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1169" ], "x-ms-request-id": [ - "ebe67176-39d0-49b8-b57f-9e58e08be84a" + "07fbec2a-9703-49e2-9ec3-4e7ee614a0f1" ], "x-ms-correlation-request-id": [ - "ebe67176-39d0-49b8-b57f-9e58e08be84a" + "07fbec2a-9703-49e2-9ec3-4e7ee614a0f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T174917Z:ebe67176-39d0-49b8-b57f-9e58e08be84a" + "WESTUS:20150709T191859Z:07fbec2a-9703-49e2-9ec3-4e7ee614a0f1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:49:16 GMT" + "Thu, 09 Jul 2015 19:18:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "399edbe5-0fb5-4377-ab55-86b66a21d066" + "3859d7d6-7a6a-4e8c-b9a2-eb6a57f0db7d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:05 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:05 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f45d2941-642e-4d6b-892e-c9b0ed4373d4" + "31f1067d-8a55-4ce6-a995-a53fb7396a68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testGetTaskFileContentWI" + "https://pstests.batch.core.windows.net/workitems/testGetTaskFileContentWI" ], "Date": [ - "Tue, 17 Mar 2015 17:49:06 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ], "ETag": [ - "0x8D22EF1CBA57BAA" + "0x8D288933B539F7A" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testGetTaskFileContentWI" + "https://pstests.batch.core.windows.net/workitems/testGetTaskFileContentWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "962133af-b7da-435f-ba94-bfa9f9a0956d" + "bbcce397-60f9-4b72-8eb4-9af1eab45b8d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:05 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testGetTaskFileContentWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTaskFileContentWI\",\r\n \"eTag\": \"0x8D22EF1CBA57BAA\",\r\n \"lastModified\": \"2015-03-17T17:49:05.1277226Z\",\r\n \"creationTime\": \"2015-03-17T17:49:05.1277226Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-17T17:49:05.1277226Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTaskFileContentWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testGetTaskFileContentWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTaskFileContentWI\",\r\n \"eTag\": \"0x8D288933B539F7A\",\r\n \"lastModified\": \"2015-07-09T19:18:54.9567354Z\",\r\n \"creationTime\": \"2015-07-09T19:18:54.9567354Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:18:54.9567354Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTaskFileContentWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:05 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d40cc1c6-085f-4f80-be0e-1b0f6c4e8f07" + "17b19f54-c05d-4b2e-afeb-7c20ec9ec129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,10 +436,10 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:49:06 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ], "ETag": [ - "0x8D22EF1CBA57BAA" + "0x8D288933B539F7A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -463,25 +463,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ca74de9f-71ab-430a-ae29-b4a2b9d7541e" + "1ef5950f-bd7c-41a0-891e-f1f21640fc28" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:06 GMT" + "Thu, 09 Jul 2015 19:18:54 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:07 GMT" + "Thu, 09 Jul 2015 19:18:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "834a8309-c3cb-46b3-a24e-868b7385aa53" + "90af8502-55ab-4dca-9595-6072e485990c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testGetTaskFileContentWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testGetTaskFileContentWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Tue, 17 Mar 2015 17:49:07 GMT" + "Thu, 09 Jul 2015 19:18:55 GMT" ], "ETag": [ - "0x8D22EF1CD07A64B" + "0x8D288933B79FD31" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testGetTaskFileContentWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testGetTaskFileContentWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +517,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f2d97629-e7ac-49db-bacf-2b295d9d0c9b" + "26d20d99-7be0-407d-9e2d-0c17d4d14f64" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:06 GMT" + "Thu, 09 Jul 2015 19:18:55 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTaskFileContentWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22EF1CD07A64B\",\r\n \"creationTime\": \"2015-03-17T17:49:07.4487883Z\",\r\n \"lastModified\": \"2015-03-17T17:49:07.4487883Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-17T17:49:07.4487883Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTaskFileContentWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D288933B79FD31\",\r\n \"creationTime\": \"2015-07-09T19:18:55.2081713Z\",\r\n \"lastModified\": \"2015-07-09T19:18:55.2081713Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:18:55.2081713Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:07 GMT" + "Thu, 09 Jul 2015 19:18:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "16f3d061-da8a-4c3e-bd0e-8dd0699dc4e3" + "d4ad419e-5ebb-4d8f-9d80-84c9215dff67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +547,10 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:49:07 GMT" + "Thu, 09 Jul 2015 19:18:55 GMT" ], "ETag": [ - "0x8D22EF1CD07A64B" + "0x8D288933B79FD31" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,16 +568,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9e14b839-d202-4baf-b56d-b8248d18c9b3" + "76e96768-fac1-4769-8362-3289afbf3f65" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:07 GMT" + "Thu, 09 Jul 2015 19:18:55 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -586,7 +586,7 @@ "chunked" ], "request-id": [ - "3e865f9b-6f1e-4c6f-a372-2ca72d3dc2d7" + "ba9a924c-9e03-4c2b-8b8a-b5256227fa07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +595,7 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:49:09 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -613,16 +613,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b89a66dd-00da-49a2-ab10-899a6a0ed0d7" + "79693159-6475-4b97-9866-8f9d2e732571" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:09 GMT" + "Thu, 09 Jul 2015 19:18:58 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -631,7 +631,7 @@ "chunked" ], "request-id": [ - "b5830eea-69ae-4995-811b-ace826009dd3" + "3ab03bd4-d0de-4dce-b288-9cda892cd537" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,97 +640,7 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:49:12 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testGetTaskFileContentWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$select=name%2Cstate&$filter=name%20eq%20'testTask'", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0R2V0VGFza0ZpbGVDb250ZW50V0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMCYkc2VsZWN0PW5hbWUlMkNzdGF0ZSYkZmlsdGVyPW5hbWUlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "WA-Batch/1.0" - ], - "client-request-id": [ - "c758280b-2444-42f8-9078-8267a4526cd7" - ], - "return-client-request-id": [ - "False" - ], - "ocp-date": [ - "Tue, 17 Mar 2015 17:49:12 GMT" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "423569dd-eb1a-45e3-aa5c-b8c3d83d0fa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Mar 2015 17:49:12 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testGetTaskFileContentWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$select=name%2Cstate&$filter=name%20eq%20'testTask'", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0R2V0VGFza0ZpbGVDb250ZW50V0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMCYkc2VsZWN0PW5hbWUlMkNzdGF0ZSYkZmlsdGVyPW5hbWUlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "WA-Batch/1.0" - ], - "client-request-id": [ - "9ef2f7d8-3725-4245-85e1-a0f5e35cd5e7" - ], - "return-client-request-id": [ - "False" - ], - "ocp-date": [ - "Tue, 17 Mar 2015 17:49:14 GMT" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "ba646f20-c535-4f6c-8818-1acd09fd56a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Mar 2015 17:49:15 GMT" + "Thu, 09 Jul 2015 19:18:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -748,13 +658,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a4475a2a-7699-4a29-8858-65db9f9fa661" + "99267815-c702-4380-a3b2-ab1e4993e644" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:17 GMT" + "Thu, 09 Jul 2015 19:18:58 GMT" ] }, "ResponseBody": "", @@ -766,10 +676,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:11 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "request-id": [ - "fd173814-a719-4f40-a39b-72da2280c2a2" + "cfde246e-3b55-4b9f-bde3-f9f2fb8e11d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,16 +688,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 17 Mar 2015 17:49:11 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Ffiletests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileContentWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileContentWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Tue, 17 Mar 2015 17:49:35 GMT" + "Thu, 09 Jul 2015 19:18:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -805,13 +715,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "d41a094a-e0d6-451a-a394-b24b7a4e285f" + "075185d4-076f-4d56-8b18-a2be2de08eee" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:59 GMT" + "Thu, 09 Jul 2015 19:18:59 GMT" ] }, "ResponseBody": "", @@ -823,10 +733,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:11 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "request-id": [ - "2e7fa1d0-b9fc-45ed-8ce7-97e7ceb28c19" + "2ffd6051-2296-4772-82ec-d4f96b654073" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -835,16 +745,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 17 Mar 2015 17:49:11 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Ffiletests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileContentWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileContentWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Tue, 17 Mar 2015 17:50:23 GMT" + "Thu, 09 Jul 2015 19:18:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -862,13 +772,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "28185e9c-3316-4ac8-9fa0-199ef8b72097" + "77a258f1-a15a-4364-95c2-7dfcf51b4efa" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:49:37 GMT" + "Thu, 09 Jul 2015 19:18:59 GMT" ] }, "ResponseBody": "test file contents \r\n", @@ -877,13 +787,13 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:11 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9b9d19f7-2f8e-431a-ac2f-dff40372a1e6" + "732f91bc-0163-42ff-9a46-9954342ee493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -892,16 +802,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 17 Mar 2015 17:49:11 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Ffiletests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileContentWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileContentWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Tue, 17 Mar 2015 17:50:02 GMT" + "Thu, 09 Jul 2015 19:18:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -919,13 +829,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4d487cf4-b0d8-402d-b5d0-c76ec0d8ca50" + "fa3de7bf-deb2-4119-9103-506cfc5c3251" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:50:23 GMT" + "Thu, 09 Jul 2015 19:19:00 GMT" ] }, "ResponseBody": "test file contents \r\n", @@ -934,13 +844,13 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:49:11 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5dfc879f-05e2-45c9-8c24-763baf93f0cb" + "49449e3e-0310-45d3-b359-4b47a4323cbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -949,16 +859,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 17 Mar 2015 17:49:11 GMT" + "Thu, 09 Jul 2015 19:18:56 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Ffiletests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileContentWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fworkitems%2FtestGetTaskFileContentWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Tue, 17 Mar 2015 17:50:42 GMT" + "Thu, 09 Jul 2015 19:19:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -976,13 +886,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9ae088fc-e87d-45b0-a587-603140f1a56f" + "89b45082-fc15-429b-b41d-4dcfc7a806ab" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:50:42 GMT" + "Thu, 09 Jul 2015 19:19:00 GMT" ] }, "ResponseBody": "", @@ -991,7 +901,7 @@ "chunked" ], "request-id": [ - "c1256100-33d4-462b-933e-58fe445942ab" + "08eb294e-1b4b-4208-be22-c1bad3560a54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1000,7 +910,7 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:50:41 GMT" + "Thu, 09 Jul 2015 19:19:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileContentPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileContentPipeline.json index 3c740f775503..174d526976ad 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileContentPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetTaskFileContentPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14937" ], "x-ms-request-id": [ - "57724122-accb-4beb-8f12-c5f97928b024" + "babde362-f7a4-47b9-a6a2-52b8a95a2616" ], "x-ms-correlation-request-id": [ - "57724122-accb-4beb-8f12-c5f97928b024" + "babde362-f7a4-47b9-a6a2-52b8a95a2616" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T175653Z:57724122-accb-4beb-8f12-c5f97928b024" + "WESTUS:20150709T191946Z:babde362-f7a4-47b9-a6a2-52b8a95a2616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:56:53 GMT" + "Thu, 09 Jul 2015 19:19:46 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14936" ], "x-ms-request-id": [ - "047e4a6c-22c1-4fc3-bef3-cf26828b9325" + "4c3b03a4-25c6-4c1e-9a05-53f0d45f68c7" ], "x-ms-correlation-request-id": [ - "047e4a6c-22c1-4fc3-bef3-cf26828b9325" + "4c3b03a4-25c6-4c1e-9a05-53f0d45f68c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T175703Z:047e4a6c-22c1-4fc3-bef3-cf26828b9325" + "WESTUS:20150709T191949Z:4c3b03a4-25c6-4c1e-9a05-53f0d45f68c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:57:02 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:56:55 GMT" + "Thu, 09 Jul 2015 19:19:47 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c5b341af-0b5c-419c-b490-3d28462c9e0c" + "b8bc1e9c-a86e-4473-bc73-c9a0825bb94e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14977" ], "x-ms-request-id": [ - "14e73ec1-83f7-4603-8c9c-df20e1742016" + "7da12741-c7ab-4359-9e5a-abc96c489181" ], "x-ms-correlation-request-id": [ - "14e73ec1-83f7-4603-8c9c-df20e1742016" + "7da12741-c7ab-4359-9e5a-abc96c489181" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T175654Z:14e73ec1-83f7-4603-8c9c-df20e1742016" + "WESTUS:20150709T191947Z:7da12741-c7ab-4359-9e5a-abc96c489181" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:56:53 GMT" + "Thu, 09 Jul 2015 19:19:46 GMT" ], "ETag": [ - "0x8D22EF2E3D5C1FB" + "0x8D288935A773035" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:57:04 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3a777b15-fee2-4e2b-9ba6-7e8605a3b024" + "d1166633-f6e7-41c7-951e-e7fef622b29b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14976" ], "x-ms-request-id": [ - "c82bd250-8a29-4d4c-8dbf-d3c4c7ebf88f" + "6d5f3ce0-fa0d-4b99-86f2-f56c939950d8" ], "x-ms-correlation-request-id": [ - "c82bd250-8a29-4d4c-8dbf-d3c4c7ebf88f" + "6d5f3ce0-fa0d-4b99-86f2-f56c939950d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T175703Z:c82bd250-8a29-4d4c-8dbf-d3c4c7ebf88f" + "WESTUS:20150709T191949Z:6d5f3ce0-fa0d-4b99-86f2-f56c939950d8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:57:03 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "ETag": [ - "0x8D22EF2E9351DD9" + "0x8D288935C104907" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d1c86454-73b9-4747-baf2-196a012017cf" + "78e4663e-4977-4318-a3fc-80ddfec8b22e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "c5e3859d-7ae8-4844-8da6-6124849594d9" + "f15bed2f-4cfd-4564-8a74-2eac93500ec7" ], "x-ms-correlation-request-id": [ - "c5e3859d-7ae8-4844-8da6-6124849594d9" + "f15bed2f-4cfd-4564-8a74-2eac93500ec7" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T175654Z:c5e3859d-7ae8-4844-8da6-6124849594d9" + "WESTUS:20150709T191947Z:f15bed2f-4cfd-4564-8a74-2eac93500ec7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:56:54 GMT" + "Thu, 09 Jul 2015 19:19:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "25d48edb-4514-4a3b-b072-fd70b9e53a93" + "62f287d8-0c63-4736-bee9-dd77ae0e0068" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-request-id": [ - "e1f0580f-b32d-45cd-b238-3e85e41e49b6" + "37e4aaee-27cd-4ffe-a908-b36e638077d4" ], "x-ms-correlation-request-id": [ - "e1f0580f-b32d-45cd-b238-3e85e41e49b6" + "37e4aaee-27cd-4ffe-a908-b36e638077d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150317T175703Z:e1f0580f-b32d-45cd-b238-3e85e41e49b6" + "WESTUS:20150709T191950Z:37e4aaee-27cd-4ffe-a908-b36e638077d4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 17 Mar 2015 17:57:03 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b88eaea7-bca2-4601-813c-d18e9f394fc0" + "55dc45e6-c169-40d1-8303-db55a5a50ed1" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:56:54 GMT" + "Thu, 09 Jul 2015 19:19:47 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Mar 2015 17:56:56 GMT" + "Thu, 09 Jul 2015 19:19:48 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1b860b46-1332-451f-8b5a-fa04842482cd" + "961c8c93-f9c8-4846-8afb-8761e97448c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testGetTFContentPipeWI" + "https://pstests.batch.core.windows.net/workitems/testGetTFContentPipeWI" ], "Date": [ - "Tue, 17 Mar 2015 17:56:57 GMT" + "Thu, 09 Jul 2015 19:19:46 GMT" ], "ETag": [ - "0x8D22EF2E483905E" + "0x8D288935B0DF116" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testGetTFContentPipeWI" + "https://pstests.batch.core.windows.net/workitems/testGetTFContentPipeWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e2e1912a-1136-44d5-bf07-4b3c933f8cf7" + "03f9a61d-a44e-4aeb-ac11-dcf475f8a2aa" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:56:57 GMT" + "Thu, 09 Jul 2015 19:19:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testGetTFContentPipeWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTFContentPipeWI\",\r\n \"eTag\": \"0x8D22EF2E483905E\",\r\n \"lastModified\": \"2015-03-17T17:56:56.3451998Z\",\r\n \"creationTime\": \"2015-03-17T17:56:56.3451998Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-17T17:56:56.3451998Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTFContentPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testGetTFContentPipeWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTFContentPipeWI\",\r\n \"eTag\": \"0x8D288935B0DF116\",\r\n \"lastModified\": \"2015-07-09T19:19:48.1871638Z\",\r\n \"creationTime\": \"2015-07-09T19:19:48.1871638Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:19:48.1871638Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTFContentPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:56:56 GMT" + "Thu, 09 Jul 2015 19:19:48 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "25be47f1-ec80-46b6-81e9-dbcec24917b9" + "b92ee383-b434-4b97-94bd-c6ecf8c6169d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,10 +436,10 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:56:59 GMT" + "Thu, 09 Jul 2015 19:19:47 GMT" ], "ETag": [ - "0x8D22EF2E483905E" + "0x8D288935B0DF116" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -463,25 +463,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "04fa315c-fb76-4a58-8ffb-9954b3b5d846" + "7a2371a9-6ef7-4c0a-9865-66d21ced8056" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:56:57 GMT" + "Thu, 09 Jul 2015 19:19:48 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 17 Mar 2015 17:57:00 GMT" + "Thu, 09 Jul 2015 19:19:48 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6350a27c-4e18-424e-8300-6e8048484890" + "c32a6d6a-3225-43f0-ab50-70d863cae7d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testGetTFContentPipeWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testGetTFContentPipeWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Tue, 17 Mar 2015 17:57:00 GMT" + "Thu, 09 Jul 2015 19:19:48 GMT" ], "ETag": [ - "0x8D22EF2E735A5A3" + "0x8D288935B495AD3" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testGetTFContentPipeWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testGetTFContentPipeWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +517,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8975d3f0-e7e2-4922-bc11-9429998beaf4" + "e1a382c3-0e0a-4512-aa74-5c7d553c330a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:56:58 GMT" + "Thu, 09 Jul 2015 19:19:48 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testGetTFContentPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22EF2E735A5A3\",\r\n \"creationTime\": \"2015-03-17T17:57:00.8677283Z\",\r\n \"lastModified\": \"2015-03-17T17:57:00.8677283Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-17T17:57:00.8677283Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testGetTFContentPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D288935B495AD3\",\r\n \"creationTime\": \"2015-07-09T19:19:48.5765331Z\",\r\n \"lastModified\": \"2015-07-09T19:19:48.5765331Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:19:48.5765331Z\",\r\n \"commandLine\": \"cmd /c echo test file contents > testFile.txt\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:57:00 GMT" + "Thu, 09 Jul 2015 19:19:48 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0ac04915-fe41-4c55-9e69-e1452dbcd3a5" + "830eed05-17f2-4f18-8496-b407580e8a45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +547,10 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:56:57 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "ETag": [ - "0x8D22EF2E735A5A3" + "0x8D288935B495AD3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,16 +568,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "aa01ef02-fa0a-47c8-a0c9-f195d2b8eb6f" + "7740611c-b38f-4c50-9341-ca918383b9f7" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:56:58 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -586,7 +586,7 @@ "chunked" ], "request-id": [ - "7bf4f8f8-ee7e-4aba-9e4e-0a8f607569cb" + "7b59522f-7010-42ea-b454-386541596dd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,52 +595,7 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:56:59 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testGetTFContentPipeWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$select=name%2Cstate&$filter=name%20eq%20'testTask'", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0R2V0VEZDb250ZW50UGlwZVdJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjAmJHNlbGVjdD1uYW1lJTJDc3RhdGUmJGZpbHRlcj1uYW1lJTIwZXElMjAlMjd0ZXN0VGFzayUyNw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "WA-Batch/1.0" - ], - "client-request-id": [ - "cd5d417f-078e-4cc7-94e9-bb971e7b27f0" - ], - "return-client-request-id": [ - "False" - ], - "ocp-date": [ - "Tue, 17 Mar 2015 17:57:01 GMT" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "495a3a83-d6b4-496d-8e68-13aedea2cf14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 17 Mar 2015 17:56:58 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -658,13 +613,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "fb911233-f404-4f41-bc94-147fb83c6958" + "65fb382e-533e-4558-9e36-e2762df6b4d0" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:57:03 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ] }, "ResponseBody": "", @@ -676,10 +631,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:57:00 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "request-id": [ - "5066be99-453b-467f-9e0e-cd02002d502c" + "403923f9-f4c5-46f7-b0a2-f1407f4796a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -688,16 +643,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 17 Mar 2015 17:57:00 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Ffiletests.batch.core.windows.net%2Fworkitems%2FtestGetTFContentPipeWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fworkitems%2FtestGetTFContentPipeWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Tue, 17 Mar 2015 17:57:23 GMT" + "Thu, 09 Jul 2015 19:19:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -715,13 +670,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8d79deae-2087-4d16-9925-3a371255d632" + "5b3373da-6f83-47cb-b6f3-d276e8f845d3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:57:23 GMT" + "Thu, 09 Jul 2015 19:19:50 GMT" ] }, "ResponseBody": "test file contents \r\n", @@ -730,13 +685,13 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 17 Mar 2015 17:57:00 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "25259253-7c05-4366-a2df-8b397d5dbbab" + "9e0f9a46-67a4-4e5e-81ef-9222ff72b026" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -745,16 +700,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 17 Mar 2015 17:57:00 GMT" + "Thu, 09 Jul 2015 19:19:49 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https%3A%2F%2Ffiletests.batch.core.windows.net%2Fworkitems%2FtestGetTFContentPipeWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fworkitems%2FtestGetTFContentPipeWI%2Fjobs%2Fjob-0000000001%2Ftasks%2FtestTask%2Ffiles%2Fwd%2FtestFile.txt" ], "Date": [ - "Tue, 17 Mar 2015 17:57:43 GMT" + "Thu, 09 Jul 2015 19:19:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -772,13 +727,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "031bd77b-6e86-4eb0-8906-27de0021abbd" + "c8dd6c6c-8735-4842-b602-80dbad7a3069" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 17 Mar 2015 17:57:43 GMT" + "Thu, 09 Jul 2015 19:19:51 GMT" ] }, "ResponseBody": "", @@ -787,7 +742,7 @@ "chunked" ], "request-id": [ - "5ca1041e-9ff8-4150-9b44-a3b3d7f1e5c2" + "62d606bb-6355-4448-a0f3-c826ecf56669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,7 +751,7 @@ "3.0" ], "Date": [ - "Tue, 17 Mar 2015 17:57:45 GMT" + "Thu, 09 Jul 2015 19:19:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileByName.json index 2c918b155aca..90a311ecc01e 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14937" ], "x-ms-request-id": [ - "efbe8134-8e50-406a-b3d7-f7ae34126a42" + "c2961d48-3f18-4eb6-b6d0-15e35a284c7d" ], "x-ms-correlation-request-id": [ - "efbe8134-8e50-406a-b3d7-f7ae34126a42" + "c2961d48-3f18-4eb6-b6d0-15e35a284c7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212735Z:efbe8134-8e50-406a-b3d7-f7ae34126a42" + "WESTUS:20150709T192035Z:c2961d48-3f18-4eb6-b6d0-15e35a284c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:34 GMT" + "Thu, 09 Jul 2015 19:20:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 21:27:37 GMT" + "Thu, 09 Jul 2015 19:20:37 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8f15f1a7-6acd-471c-8d90-5d96ae56767f" + "39730de0-e727-4af6-b63a-3a3e15ab5461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14965" ], "x-ms-request-id": [ - "fd01fb78-8bb1-4379-b490-2fcf4ada50d9" + "fdba840d-6eef-4a4f-941c-19d089856c80" ], "x-ms-correlation-request-id": [ - "fd01fb78-8bb1-4379-b490-2fcf4ada50d9" + "fdba840d-6eef-4a4f-941c-19d089856c80" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212737Z:fd01fb78-8bb1-4379-b490-2fcf4ada50d9" + "WESTUS:20150709T192037Z:fdba840d-6eef-4a4f-941c-19d089856c80" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:36 GMT" + "Thu, 09 Jul 2015 19:20:36 GMT" ], "ETag": [ - "0x8D23A10A519503F" + "0x8D28893782E02AD" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "a0653381-10cb-4cc2-b22c-7eaf47932d3f" + "1482b401-fa80-4aed-972e-dfd138952086" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1182" ], "x-ms-request-id": [ - "6e87b766-6746-4484-886d-1db60e46fe66" + "2d294c49-0812-480c-b0d8-f46d8a5b2d77" ], "x-ms-correlation-request-id": [ - "6e87b766-6746-4484-886d-1db60e46fe66" + "2d294c49-0812-480c-b0d8-f46d8a5b2d77" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212737Z:6e87b766-6746-4484-886d-1db60e46fe66" + "WESTUS:20150709T192037Z:2d294c49-0812-480c-b0d8-f46d8a5b2d77" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:36 GMT" + "Thu, 09 Jul 2015 19:20:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup/stdout.txt?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -178,13 +178,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e96085e2-dab6-49da-9c63-018e867a62b5" + "e129b747-fdd5-4fd6-86f0-b4381152ef7b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:37 GMT" + "Thu, 09 Jul 2015 19:20:37 GMT" ] }, "ResponseBody": "", @@ -196,10 +196,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "request-id": [ - "2016e009-83e8-4740-ba48-1af3b2a88b5b" + "441b645a-4116-4a8b-a7bb-c9d0b956f6a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,16 +208,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fpools%2FtestPool%2Ftvms%2Ftvm-4155946844_1-20150709t190321z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Tue, 31 Mar 2015 21:27:37 GMT" + "Thu, 09 Jul 2015 19:20:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -226,8 +226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup/stdout.txt?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -235,13 +235,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7e60ccae-ffca-4b7f-a4f6-d7b0a6f94c6a" + "2f017206-dbb6-4daa-b738-82699c04922f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:38 GMT" + "Thu, 09 Jul 2015 19:20:38 GMT" ] }, "ResponseBody": "", @@ -253,10 +253,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "request-id": [ - "1785afde-b760-40d7-bb05-4473d2c2c696" + "9f70a0b5-7efa-4995-90a1-0d8aecd2311c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -265,16 +265,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fpools%2FtestPool%2Ftvms%2Ftvm-4155946844_1-20150709t190321z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Tue, 31 Mar 2015 21:27:38 GMT" + "Thu, 09 Jul 2015 19:20:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -285,6 +285,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileContentByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileContentByName.json index 50108f209a12..e5cb7ad151ce 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileContentByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileContentByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14939" ], "x-ms-request-id": [ - "0e54c7a4-ced9-42cd-bc6b-523191eba6ef" + "94fb1db2-14df-41a4-a9a3-c9c14c405951" ], "x-ms-correlation-request-id": [ - "0e54c7a4-ced9-42cd-bc6b-523191eba6ef" + "94fb1db2-14df-41a4-a9a3-c9c14c405951" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T215701Z:0e54c7a4-ced9-42cd-bc6b-523191eba6ef" + "WESTUS:20150709T191807Z:94fb1db2-14df-41a4-a9a3-c9c14c405951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 21:57:01 GMT" + "Thu, 09 Jul 2015 19:18:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Thu, 02 Apr 2015 21:57:03 GMT" + "Thu, 09 Jul 2015 19:18:09 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8208e62a-cc6d-422e-bb50-4adfabf5b518" + "b6a29508-267a-4889-9eac-3e4ac3dfde40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14943" ], "x-ms-request-id": [ - "d3149844-a0d7-47c4-953f-4c05a06ef160" + "fe962535-9599-49ea-82a9-7e66fb928e49" ], "x-ms-correlation-request-id": [ - "d3149844-a0d7-47c4-953f-4c05a06ef160" + "fe962535-9599-49ea-82a9-7e66fb928e49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T215702Z:d3149844-a0d7-47c4-953f-4c05a06ef160" + "WESTUS:20150709T191808Z:fe962535-9599-49ea-82a9-7e66fb928e49" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 21:57:02 GMT" + "Thu, 09 Jul 2015 19:18:08 GMT" ], "ETag": [ - "0x8D23BA716461F69" + "0x8D28893200CCE9B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "32995b3c-3dfe-40d8-adbb-d9503a531ff7" + "449927b4-b99d-4483-9f30-f12842ec00eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1171" ], "x-ms-request-id": [ - "1ee2655f-738f-47e2-b62a-3ae9892fae1e" + "9ee56171-4ba2-4760-88b6-67571a8a8383" ], "x-ms-correlation-request-id": [ - "1ee2655f-738f-47e2-b62a-3ae9892fae1e" + "9ee56171-4ba2-4760-88b6-67571a8a8383" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T215703Z:1ee2655f-738f-47e2-b62a-3ae9892fae1e" + "WESTUS:20150709T191809Z:9ee56171-4ba2-4760-88b6-67571a8a8383" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 21:57:02 GMT" + "Thu, 09 Jul 2015 19:18:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup/stdout.txt?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -178,13 +178,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "fe5afa08-c62f-4093-9bb1-79ef445f887d" + "e51a5691-901b-4628-883f-fbb4497507d1" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 21:57:03 GMT" + "Thu, 09 Jul 2015 19:18:08 GMT" ] }, "ResponseBody": "", @@ -196,10 +196,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "request-id": [ - "afbf84cc-bce9-42c7-9fb4-6d39063abfdf" + "bd309d44-4a2e-43c8-b132-05b6a6c8873f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,16 +208,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fpools%2FtestPool%2Ftvms%2Ftvm-4155946844_1-20150709t190321z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Thu, 02 Apr 2015 21:57:24 GMT" + "Thu, 09 Jul 2015 19:18:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -226,8 +226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup/stdout.txt?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -235,13 +235,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "3eedecc2-1b5f-467e-bccd-b6a5bf8de54b" + "99ee3f6f-0723-4ace-89ae-1cbf17e8861b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 21:57:24 GMT" + "Thu, 09 Jul 2015 19:18:09 GMT" ] }, "ResponseBody": "", @@ -253,10 +253,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "request-id": [ - "c13ec8e8-d9b2-47ac-8b83-58dd0fce95c0" + "7ec9d845-f676-433d-850a-c4bb2b1e85d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -265,16 +265,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fpools%2FtestPool%2Ftvms%2Ftvm-4155946844_1-20150709t190321z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Thu, 02 Apr 2015 21:57:45 GMT" + "Thu, 09 Jul 2015 19:18:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -283,8 +283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup/stdout.txt?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -292,13 +292,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "d1d743ae-cdcd-4d63-a070-7577d9479cbd" + "0417cbdc-6e5c-4f9c-90c5-b2bb545510db" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 21:57:24 GMT" + "Thu, 09 Jul 2015 19:18:09 GMT" ] }, "ResponseBody": "hello\r\n", @@ -307,13 +307,13 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cb5e15b2-7919-4a6d-b486-dacb129d56a3" + "a4736254-b5a0-4e3c-9a48-158ed3092bcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,16 +322,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fpools%2FtestPool%2Ftvms%2Ftvm-4155946844_1-20150709t190321z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Thu, 02 Apr 2015 21:57:25 GMT" + "Thu, 09 Jul 2015 19:18:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -340,8 +340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup/stdout.txt?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -349,13 +349,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "36dff641-f75c-4edb-87c5-b2877e578d89" + "22fd7cb4-e8c4-48dd-99ee-e9ac809a9063" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 21:57:45 GMT" + "Thu, 09 Jul 2015 19:18:10 GMT" ] }, "ResponseBody": "hello\r\n", @@ -364,13 +364,13 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9832b6af-4cda-4b4e-a903-25fb0d204ba2" + "c10e6082-d0c3-4c23-83c5-b92c87039366" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fpools%2FtestPool%2Ftvms%2Ftvm-4155946844_1-20150709t190321z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Thu, 02 Apr 2015 21:57:46 GMT" + "Thu, 09 Jul 2015 19:18:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -399,6 +399,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileContentPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileContentPipeline.json index 0b48cb38d30e..1672a8f0ff40 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileContentPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetVMFileContentPipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14978" ], "x-ms-request-id": [ - "e43f5efc-f91e-4f2e-9fb8-222b7380a5eb" + "64826166-ee26-4884-a4bc-d589451f4ee9" ], "x-ms-correlation-request-id": [ - "e43f5efc-f91e-4f2e-9fb8-222b7380a5eb" + "64826166-ee26-4884-a4bc-d589451f4ee9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T215805Z:e43f5efc-f91e-4f2e-9fb8-222b7380a5eb" + "WESTUS:20150709T191830Z:64826166-ee26-4884-a4bc-d589451f4ee9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 21:58:04 GMT" + "Thu, 09 Jul 2015 19:18:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Thu, 02 Apr 2015 21:58:06 GMT" + "Thu, 09 Jul 2015 19:18:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "19fa5e95-ce71-4a2f-9255-7e19df0a2910" + "e441b99c-3d71-4cf4-84fa-fbdb336b781b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14938" ], "x-ms-request-id": [ - "28e6c78a-4d01-4568-be68-3af3b49017cb" + "46834423-53e4-42db-aab1-b74c3dbaa1ba" ], "x-ms-correlation-request-id": [ - "28e6c78a-4d01-4568-be68-3af3b49017cb" + "46834423-53e4-42db-aab1-b74c3dbaa1ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T215806Z:28e6c78a-4d01-4568-be68-3af3b49017cb" + "WESTUS:20150709T191831Z:46834423-53e4-42db-aab1-b74c3dbaa1ba" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 21:58:06 GMT" + "Thu, 09 Jul 2015 19:18:30 GMT" ], "ETag": [ - "0x8D23BA73C39E897" + "0x8D288932D725D69" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "b2c44e26-0376-4b68-b9d7-d3f52a97c3d1" + "c4ea44f6-0c51-4bf9-b984-c3be390c89ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1187" ], "x-ms-request-id": [ - "0b056e69-e6a2-49e5-9e2e-548e476e3c11" + "8bd99a37-8f9e-4a6a-a806-7da45af9e8e3" ], "x-ms-correlation-request-id": [ - "0b056e69-e6a2-49e5-9e2e-548e476e3c11" + "8bd99a37-8f9e-4a6a-a806-7da45af9e8e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150402T215809Z:0b056e69-e6a2-49e5-9e2e-548e476e3c11" + "WESTUS:20150709T191831Z:8bd99a37-8f9e-4a6a-a806-7da45af9e8e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 02 Apr 2015 21:58:09 GMT" + "Thu, 09 Jul 2015 19:18:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup/stdout.txt?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -178,13 +178,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "90b5a518-5ccd-4a14-94e2-7e9a28f0af38" + "48dc74cc-4424-4d9e-aae4-139a9b3ea0d4" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 21:58:09 GMT" + "Thu, 09 Jul 2015 19:18:31 GMT" ] }, "ResponseBody": "", @@ -196,10 +196,10 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "request-id": [ - "118edc8c-78f9-47a8-925b-45eaf20c0258" + "2e47041e-d016-4cf2-ac40-2d3423fd6116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,16 +208,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fpools%2FtestPool%2Ftvms%2Ftvm-4155946844_1-20150709t190321z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Thu, 02 Apr 2015 21:58:30 GMT" + "Thu, 09 Jul 2015 19:18:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -226,8 +226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup/stdout.txt?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzL3N0YXJ0dXAvc3Rkb3V0LnR4dD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -235,13 +235,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0ffb9f88-b111-4aba-8f9c-c3600ca70c27" + "481882d7-5e90-4d87-ac8c-56cd46ac89b3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 02 Apr 2015 21:58:30 GMT" + "Thu, 09 Jul 2015 19:18:32 GMT" ] }, "ResponseBody": "hello\r\n", @@ -250,13 +250,13 @@ "application/octet-stream" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "89209043-4e75-4f8b-851d-014246c1c002" + "6a6b5479-9345-4974-8c1e-37e33878add3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -265,16 +265,16 @@ "3.0" ], "ocp-creation-time": [ - "Tue, 31 Mar 2015 20:05:51 GMT" + "Thu, 09 Jul 2015 19:08:36 GMT" ], "ocp-batch-file-isdirectory": [ "False" ], "ocp-batch-file-url": [ - "https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup/stdout.txt" + "https%3A%2F%2Fpstests.batch.core.windows.net%2Fpools%2FtestPool%2Ftvms%2Ftvm-4155946844_1-20150709t190321z%2Ffiles%2Fstartup%2Fstdout.txt" ], "Date": [ - "Thu, 02 Apr 2015 21:58:31 GMT" + "Thu, 09 Jul 2015 19:18:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -285,6 +285,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllTaskFiles.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllTaskFiles.json index 7715cf5917ac..4af3cc304c87 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllTaskFiles.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllTaskFiles.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14934" ], "x-ms-request-id": [ - "2a7077ca-3a3d-488a-a663-8179d6ccbbd4" + "c0f31186-48e7-41ec-b0b0-7d10a9757e33" ], "x-ms-correlation-request-id": [ - "2a7077ca-3a3d-488a-a663-8179d6ccbbd4" + "c0f31186-48e7-41ec-b0b0-7d10a9757e33" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T183431Z:2a7077ca-3a3d-488a-a663-8179d6ccbbd4" + "WESTUS:20150709T192010Z:c0f31186-48e7-41ec-b0b0-7d10a9757e33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:34:31 GMT" + "Thu, 09 Jul 2015 19:20:09 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14933" ], "x-ms-request-id": [ - "5952fa64-40c6-4695-a050-b2915d34185c" + "5f543c79-4788-4967-896a-3fc4b16849bd" ], "x-ms-correlation-request-id": [ - "5952fa64-40c6-4695-a050-b2915d34185c" + "5f543c79-4788-4967-896a-3fc4b16849bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T183440Z:5952fa64-40c6-4695-a050-b2915d34185c" + "WESTUS:20150709T192015Z:5f543c79-4788-4967-896a-3fc4b16849bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:34:40 GMT" + "Thu, 09 Jul 2015 19:20:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:34:33 GMT" + "Thu, 09 Jul 2015 19:20:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0f027df1-9ef7-4291-9ec9-75c7d0310e10" + "09e5b89b-1e83-4f29-8b9c-4ed0c1d09e14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14939" ], "x-ms-request-id": [ - "1f25b9de-9b5d-4ad1-a36d-88e449515972" + "11e0b21d-28fd-4971-ac0c-491a415e9d1f" ], "x-ms-correlation-request-id": [ - "1f25b9de-9b5d-4ad1-a36d-88e449515972" + "11e0b21d-28fd-4971-ac0c-491a415e9d1f" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T183433Z:1f25b9de-9b5d-4ad1-a36d-88e449515972" + "WESTUS:20150709T192010Z:11e0b21d-28fd-4971-ac0c-491a415e9d1f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:34:33 GMT" + "Thu, 09 Jul 2015 19:20:10 GMT" ], "ETag": [ - "0x8D22E2EFB8F0A5B" + "0x8D2889368A90F58" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:34:41 GMT" + "Thu, 09 Jul 2015 19:20:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6a3c278f-efa7-4568-bebc-90db6b91383a" + "c39e58da-6129-4317-9a8a-3063b0a3bace" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14938" ], "x-ms-request-id": [ - "4e8cc1f6-d0e6-4764-a615-fd54ade0ad0f" + "f8018bca-f0d4-479f-91b7-9fb4a11b6a34" ], "x-ms-correlation-request-id": [ - "4e8cc1f6-d0e6-4764-a615-fd54ade0ad0f" + "f8018bca-f0d4-479f-91b7-9fb4a11b6a34" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T183441Z:4e8cc1f6-d0e6-4764-a615-fd54ade0ad0f" + "WESTUS:20150709T192015Z:f8018bca-f0d4-479f-91b7-9fb4a11b6a34" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:34:41 GMT" + "Thu, 09 Jul 2015 19:20:14 GMT" ], "ETag": [ - "0x8D22E2F00221371" + "0x8D288936B7E563C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "9026e92e-e399-4856-aef6-c41b6e403a9e" + "5d70e279-f664-4365-b4a7-e7ffd6cff1b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1167" ], "x-ms-request-id": [ - "6d7577c6-b4bc-41a3-9640-60e445261cbb" + "6b874324-c653-4680-97ce-bdbf036b9cdd" ], "x-ms-correlation-request-id": [ - "6d7577c6-b4bc-41a3-9640-60e445261cbb" + "6b874324-c653-4680-97ce-bdbf036b9cdd" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T183433Z:6d7577c6-b4bc-41a3-9640-60e445261cbb" + "WESTUS:20150709T192010Z:6b874324-c653-4680-97ce-bdbf036b9cdd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:34:33 GMT" + "Thu, 09 Jul 2015 19:20:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "ea895e42-1e46-41c4-8d8c-ca961eaa275c" + "650d3816-6cd0-428d-8156-ee38481f492f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1166" ], "x-ms-request-id": [ - "64d7b362-0e98-44a1-b680-85bb0f0c891e" + "d4e74649-64e2-4e5a-be0a-6885a8bd98bc" ], "x-ms-correlation-request-id": [ - "64d7b362-0e98-44a1-b680-85bb0f0c891e" + "d4e74649-64e2-4e5a-be0a-6885a8bd98bc" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T183441Z:64d7b362-0e98-44a1-b680-85bb0f0c891e" + "WESTUS:20150709T192015Z:d4e74649-64e2-4e5a-be0a-6885a8bd98bc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:34:41 GMT" + "Thu, 09 Jul 2015 19:20:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "09fcfb7f-a528-4beb-9e4c-a56088bc4c7f" + "3a816b1c-49c1-41c9-b7f5-3e8c167f9332" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:33 GMT" + "Thu, 09 Jul 2015 19:20:10 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:34:31 GMT" + "Thu, 09 Jul 2015 19:20:11 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "501b9733-94ec-471a-8abe-a8af93cd59fa" + "a890eac6-3501-497f-b0a3-0a32bcff5152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskFileWI" + "https://pstests.batch.core.windows.net/workitems/testListTaskFileWI" ], "Date": [ - "Mon, 16 Mar 2015 18:34:35 GMT" + "Thu, 09 Jul 2015 19:20:10 GMT" ], "ETag": [ - "0x8D22E2EFA5591B6" + "0x8D2889368EFB41E" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskFileWI" + "https://pstests.batch.core.windows.net/workitems/testListTaskFileWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "24e4ffb4-cbca-46b1-8aa4-efcf7075afcc" + "3d90e432-c3ea-4c35-8234-334403dbee63" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:34 GMT" + "Thu, 09 Jul 2015 19:20:11 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTaskFileWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI\",\r\n \"eTag\": \"0x8D22E2EFA5591B6\",\r\n \"lastModified\": \"2015-03-16T18:34:31.5946422Z\",\r\n \"creationTime\": \"2015-03-16T18:34:31.5946422Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:34:31.5946422Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTaskFileWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI\",\r\n \"eTag\": \"0x8D2889368EFB41E\",\r\n \"lastModified\": \"2015-07-09T19:20:11.4770974Z\",\r\n \"creationTime\": \"2015-07-09T19:20:11.4770974Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:20:11.4770974Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:34:31 GMT" + "Thu, 09 Jul 2015 19:20:11 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f9d88af4-3e78-4b91-94e5-462564899656" + "ac2c789c-da75-425c-aab6-80ebaa659057" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,10 +436,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:34:34 GMT" + "Thu, 09 Jul 2015 19:20:10 GMT" ], "ETag": [ - "0x8D22E2EFA5591B6" + "0x8D2889368EFB41E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -463,25 +463,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "5995cc6e-c1df-4653-a115-afe3abd9c4dc" + "81c08938-9b22-4f37-8734-49069a60cc00" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:35 GMT" + "Thu, 09 Jul 2015 19:20:11 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:34:33 GMT" + "Thu, 09 Jul 2015 19:20:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "094c9da2-2c8d-4608-8110-7262e8aff1ac" + "b43f8443-a9b0-4bbe-b12b-47622c97ad04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Mon, 16 Mar 2015 18:34:33 GMT" + "Thu, 09 Jul 2015 19:20:11 GMT" ], "ETag": [ - "0x8D22E2EFB897B75" + "0x8D2889369559F65" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +517,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "102c494d-4f63-4932-86fb-81c5d78f6b41" + "85b5c047-cf85-4e10-b857-2f8d7e5d3618" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:35 GMT" + "Thu, 09 Jul 2015 19:20:11 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E2EFB897B75\",\r\n \"creationTime\": \"2015-03-16T18:34:33.6125813Z\",\r\n \"lastModified\": \"2015-03-16T18:34:33.6125813Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:34:33.6125813Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889369559F65\",\r\n \"creationTime\": \"2015-07-09T19:20:12.1450341Z\",\r\n \"lastModified\": \"2015-07-09T19:20:12.1450341Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:20:12.1450341Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:34:33 GMT" + "Thu, 09 Jul 2015 19:20:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "664b3880-f809-4650-b2d5-653f3ffc8b93" + "8bf3241b-5adc-4757-b1be-b8ed474f146b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +547,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:34:35 GMT" + "Thu, 09 Jul 2015 19:20:12 GMT" ], "ETag": [ - "0x8D22E2EFB897B75" + "0x8D2889369559F65" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,28 +568,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "78342a8d-b8c0-40fc-be34-c9707ae5a380" + "05b1c94f-e81a-4513-b782-343e36dc5c8e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:41 GMT" + "Thu, 09 Jul 2015 19:20:16 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E2EFB897B75\",\r\n \"creationTime\": \"2015-03-16T18:34:33.6125813Z\",\r\n \"lastModified\": \"2015-03-16T18:34:33.6125813Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-16T18:34:36.3601605Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-03-16T18:34:36.2651615Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-16T18:34:36.2651615Z\",\r\n \"endTime\": \"2015-03-16T18:34:36.3601605Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-3657382398_1-20150313t235640z\",\r\n \"tvmUrl\": \"https://filetests.batch.core.windows.net/pools/testPool/tvms/tvm-3657382398_1-20150313t235640z\",\r\n \"poolName\": \"testPool\",\r\n \"tvmName\": \"tvm-3657382398_1-20150313t235640z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889369559F65\",\r\n \"creationTime\": \"2015-07-09T19:20:12.1450341Z\",\r\n \"lastModified\": \"2015-07-09T19:20:12.1450341Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:20:13.0896145Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:20:12.9946197Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:20:12.9946197Z\",\r\n \"endTime\": \"2015-07-09T19:20:13.0896145Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:34:33 GMT" + "Thu, 09 Jul 2015 19:20:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8b596a1c-b15b-4e60-96f1-c4df8f94f9b8" + "3de68743-3cb7-443c-af8f-f766510521ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,10 +598,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:34:41 GMT" + "Thu, 09 Jul 2015 19:20:15 GMT" ], "ETag": [ - "0x8D22E2EFB897B75" + "0x8D2889369559F65" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -619,16 +619,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "15c327c0-e389-478f-b48a-67c234a27215" + "33e490a9-db37-458d-8b43-5ecbe476810c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:36 GMT" + "Thu, 09 Jul 2015 19:20:12 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -637,7 +637,7 @@ "chunked" ], "request-id": [ - "437b8398-f915-40fe-a7fa-10f61ba97e19" + "e07c1a3b-1034-4840-9f38-f54724b4e16f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,7 +646,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:34:35 GMT" + "Thu, 09 Jul 2015 19:20:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -664,16 +664,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "5f706900-60e9-4e92-a2d3-6b2fcc295612" + "f7d2323b-c718-4c7c-a018-558c71685aa8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:38 GMT" + "Thu, 09 Jul 2015 19:20:14 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -682,7 +682,7 @@ "chunked" ], "request-id": [ - "592d8f9a-c9b0-4446-bea2-27fcd6022806" + "aadd3a67-c047-4c6d-8df7-d68141715147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,7 +691,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:34:38 GMT" + "Thu, 09 Jul 2015 19:20:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -709,16 +709,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0952a1a8-48c0-4d1a-b37c-0329e525e132" + "4f09c0d2-2950-499d-a718-bc56e5931922" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:41 GMT" + "Thu, 09 Jul 2015 19:20:15 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:34:36.3381608Z\",\r\n \"lastModified\": \"2015-03-16T18:34:36.3381608Z\",\r\n \"contentLength\": \"1938\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:34:36.2751622Z\",\r\n \"lastModified\": \"2015-03-16T18:34:36.2751622Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:34:36.2751622Z\",\r\n \"lastModified\": \"2015-03-16T18:34:36.346161Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:20:13.0716142Z\",\r\n \"lastModified\": \"2015-07-09T19:20:13.0716142Z\",\r\n \"contentLength\": \"2471\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:20:13.0056142Z\",\r\n \"lastModified\": \"2015-07-09T19:20:13.0056142Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:20:13.0056142Z\",\r\n \"lastModified\": \"2015-07-09T19:20:13.0806143Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -727,7 +727,7 @@ "chunked" ], "request-id": [ - "95f68237-b5e3-4844-9b42-74789e6d42f1" + "6efa9ff6-91c2-4760-afc2-f23a39d288e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:34:41 GMT" + "Thu, 09 Jul 2015 19:20:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -754,16 +754,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "77c08e9d-7a32-4059-a778-47ce5606a5ad" + "6bf0402a-a44d-4245-bf39-72eba055d34a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:34:42 GMT" + "Thu, 09 Jul 2015 19:20:16 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:34:36.3381608Z\",\r\n \"lastModified\": \"2015-03-16T18:34:36.3381608Z\",\r\n \"contentLength\": \"1938\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:34:36.2751622Z\",\r\n \"lastModified\": \"2015-03-16T18:34:36.2751622Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:34:36.2751622Z\",\r\n \"lastModified\": \"2015-03-16T18:34:36.346161Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:20:13.0716142Z\",\r\n \"lastModified\": \"2015-07-09T19:20:13.0716142Z\",\r\n \"contentLength\": \"2471\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:20:13.0056142Z\",\r\n \"lastModified\": \"2015-07-09T19:20:13.0056142Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:20:13.0056142Z\",\r\n \"lastModified\": \"2015-07-09T19:20:13.0806143Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -772,7 +772,7 @@ "chunked" ], "request-id": [ - "9645cee6-9092-422a-b151-c15cb18ac12d" + "5a8d4de6-a655-4918-80c8-959411c918e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +781,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:35:03 GMT" + "Thu, 09 Jul 2015 19:20:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -799,13 +799,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "45873f77-bb68-4a7e-8eea-bc7eaea137c0" + "640d8a25-c602-4503-bf9a-6f096174daf1" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:35:02 GMT" + "Thu, 09 Jul 2015 19:20:16 GMT" ] }, "ResponseBody": "", @@ -814,7 +814,7 @@ "chunked" ], "request-id": [ - "6ea718af-db5c-46e6-8fda-7b5d9efa0109" + "73fa86b0-cec5-4dc7-87c7-5e7964511983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -823,7 +823,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:35:04 GMT" + "Thu, 09 Jul 2015 19:20:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllVMFiles.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllVMFiles.json index 10f06be9708c..bbe3e7bda23e 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllVMFiles.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListAllVMFiles.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14978" ], "x-ms-request-id": [ - "aa169b53-ddeb-464f-8948-b5983d7e2305" + "1dd5ab89-c1b1-403f-88b8-ef4940183442" ], "x-ms-correlation-request-id": [ - "aa169b53-ddeb-464f-8948-b5983d7e2305" + "1dd5ab89-c1b1-403f-88b8-ef4940183442" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212742Z:aa169b53-ddeb-464f-8948-b5983d7e2305" + "WESTUS:20150709T191429Z:1dd5ab89-c1b1-403f-88b8-ef4940183442" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:41 GMT" + "Thu, 09 Jul 2015 19:14:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 21:27:43 GMT" + "Thu, 09 Jul 2015 19:14:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3ef79012-af76-44f4-8ce1-92ae5d16a42e" + "75e929a9-d8f5-4a77-add8-5202fcb657ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14943" ], "x-ms-request-id": [ - "1c3cbb1d-93b8-41d8-a0dd-fa4abcf9bc73" + "77e4ab52-191e-48fa-b4fe-3323c9f3ba4b" ], "x-ms-correlation-request-id": [ - "1c3cbb1d-93b8-41d8-a0dd-fa4abcf9bc73" + "77e4ab52-191e-48fa-b4fe-3323c9f3ba4b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212742Z:1c3cbb1d-93b8-41d8-a0dd-fa4abcf9bc73" + "WESTUS:20150709T191431Z:77e4ab52-191e-48fa-b4fe-3323c9f3ba4b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:42 GMT" + "Thu, 09 Jul 2015 19:14:30 GMT" ], "ETag": [ - "0x8D23A10A877B5BF" + "0x8D288929E0C8B9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "0957d326-aa1b-48c5-9d4a-576f2528461e" + "dfe070af-b67d-45bd-a9f9-96a0f18b842a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1188" ], "x-ms-request-id": [ - "8861f07f-3a75-4072-94a8-cd4c8717a392" + "2e579f57-ca48-4a25-8652-95f597aae043" ], "x-ms-correlation-request-id": [ - "8861f07f-3a75-4072-94a8-cd4c8717a392" + "2e579f57-ca48-4a25-8652-95f597aae043" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212743Z:8861f07f-3a75-4072-94a8-cd4c8717a392" + "WESTUS:20150709T191431Z:2e579f57-ca48-4a25-8652-95f597aae043" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:43 GMT" + "Thu, 09 Jul 2015 19:14:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=False", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=False", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cac06e6b-6968-4313-8741-b5fb58574ce0" + "592c42a9-6da8-4d0c-add5-f0fd2a7b3e65" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:43 GMT" + "Thu, 09 Jul 2015 19:14:31 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "9a4d7d7b-a7b5-4a3a-8cb5-27c048f6d52b" + "c1fd0bbf-0594-44b0-a14f-d78d95eeb6de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:44 GMT" + "Thu, 09 Jul 2015 19:14:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -214,8 +214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=False", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=False", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "388764c6-19f5-4d7c-8521-6ed55771b2f4" + "dc6bc935-854a-4872-9c83-aa060469562c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:44 GMT" + "Thu, 09 Jul 2015 19:14:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "775dc8f2-c373-4522-b951-edc5dd7ce3f9" + "402f550f-aaf0-4540-a2f1-09f296981c1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:47 GMT" + "Thu, 09 Jul 2015 19:14:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -259,8 +259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -268,16 +268,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "2b23f277-eba0-42eb-8094-3ed6048f24b1" + "6cb12a57-1d3b-43b9-ad57-d2cdbe4b2ec6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:43 GMT" + "Thu, 09 Jul 2015 19:14:31 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-1900272697_1-20150331t200107z\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T20:05:49.9151074Z\",\r\n \"lastBootTime\": \"2015-03-31T20:05:49.7391087Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T20:01:07.1482714Z\",\r\n \"ipAddress\": \"100.77.160.57\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t200107z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-03-31T20:05:49.9521089Z\",\r\n \"endTime\": \"2015-03-31T20:05:51.5957379Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 6,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -286,7 +286,7 @@ "chunked" ], "request-id": [ - "cea3c72e-1180-4772-873a-ba0bcac4a1e0" + "06fe22d9-c2d3-4ea3-b6f2-b53e0d7977d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,7 +295,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:43 GMT" + "Thu, 09 Jul 2015 19:14:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,6 +306,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilePipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilePipeline.json index 6064bc94f9ed..b4b6f42bd79b 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilePipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilePipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14970" ], "x-ms-request-id": [ - "161ec686-fa07-4940-9c99-da3f2bc7a388" + "07e3dccd-4e81-495c-aba1-38bfef23e939" ], "x-ms-correlation-request-id": [ - "161ec686-fa07-4940-9c99-da3f2bc7a388" + "07e3dccd-4e81-495c-aba1-38bfef23e939" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T184438Z:161ec686-fa07-4940-9c99-da3f2bc7a388" + "WESTUS:20150709T191630Z:07e3dccd-4e81-495c-aba1-38bfef23e939" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:44:37 GMT" + "Thu, 09 Jul 2015 19:16:29 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14969" ], "x-ms-request-id": [ - "63c45cdd-2365-46c5-b84d-805f994756fa" + "e1e33be3-46f0-4983-bbaf-04a8cefb0f5b" ], "x-ms-correlation-request-id": [ - "63c45cdd-2365-46c5-b84d-805f994756fa" + "e1e33be3-46f0-4983-bbaf-04a8cefb0f5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T184447Z:63c45cdd-2365-46c5-b84d-805f994756fa" + "WESTUS:20150709T191635Z:e1e33be3-46f0-4983-bbaf-04a8cefb0f5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:44:47 GMT" + "Thu, 09 Jul 2015 19:16:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:44:39 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e85190ab-23e6-452e-a383-9928211a340a" + "f97987b1-9295-4fdf-97bf-890a00541b7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14969" ], "x-ms-request-id": [ - "afd1fd67-ebd1-4203-8396-6dc3a4630e26" + "98f8fc5b-83b9-43bc-86be-31208458909a" ], "x-ms-correlation-request-id": [ - "afd1fd67-ebd1-4203-8396-6dc3a4630e26" + "98f8fc5b-83b9-43bc-86be-31208458909a" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T184439Z:afd1fd67-ebd1-4203-8396-6dc3a4630e26" + "WESTUS:20150709T191631Z:98f8fc5b-83b9-43bc-86be-31208458909a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:44:39 GMT" + "Thu, 09 Jul 2015 19:16:30 GMT" ], "ETag": [ - "0x8D22E3064E48FAC" + "0x8D28892E5A62A15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:44:47 GMT" + "Thu, 09 Jul 2015 19:16:36 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ac167047-06de-4924-8c63-08dc39ab07e1" + "f4a0baeb-6127-4b60-9c19-bba0878a41dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14968" ], "x-ms-request-id": [ - "12a8a6d0-f055-4b7e-9c04-81d2a2a62b94" + "ccb5a504-a092-4ace-90b7-bd07e1accf91" ], "x-ms-correlation-request-id": [ - "12a8a6d0-f055-4b7e-9c04-81d2a2a62b94" + "ccb5a504-a092-4ace-90b7-bd07e1accf91" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T184447Z:12a8a6d0-f055-4b7e-9c04-81d2a2a62b94" + "WESTUS:20150709T191635Z:ccb5a504-a092-4ace-90b7-bd07e1accf91" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:44:46 GMT" + "Thu, 09 Jul 2015 19:16:34 GMT" ], "ETag": [ - "0x8D22E306990F417" + "0x8D28892E88889FA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "b5e73171-c55c-4a85-96a5-d3c7fd4bf003" + "b3909a3f-42fc-4f76-b510-c72875819ac6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1182" ], "x-ms-request-id": [ - "5c8f2d7b-feca-465b-81e2-15a664559e6b" + "0b62e477-2747-444e-b835-c56750e19d69" ], "x-ms-correlation-request-id": [ - "5c8f2d7b-feca-465b-81e2-15a664559e6b" + "0b62e477-2747-444e-b835-c56750e19d69" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T184439Z:5c8f2d7b-feca-465b-81e2-15a664559e6b" + "WESTUS:20150709T191631Z:0b62e477-2747-444e-b835-c56750e19d69" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:44:39 GMT" + "Thu, 09 Jul 2015 19:16:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "8ce1f61b-28cc-46f2-b2c0-5acd11d78e28" + "26cf3f95-870b-4033-9ac1-c892f6238a18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1181" ], "x-ms-request-id": [ - "2415e9b4-0ea6-490d-b802-18e2b811d456" + "ea4593a3-07a2-4a89-a017-e23a7354ed3f" ], "x-ms-correlation-request-id": [ - "2415e9b4-0ea6-490d-b802-18e2b811d456" + "ea4593a3-07a2-4a89-a017-e23a7354ed3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T184448Z:2415e9b4-0ea6-490d-b802-18e2b811d456" + "WESTUS:20150709T191635Z:ea4593a3-07a2-4a89-a017-e23a7354ed3f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:44:48 GMT" + "Thu, 09 Jul 2015 19:16:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c33a4bdf-7642-4195-839b-47a765531aee" + "dc346937-a902-4f3c-8644-2c84bab88f66" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:44:40 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:44:37 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2ebccfd0-ea02-4fb7-821f-1d6144e6afd9" + "8aa5b0a6-4776-41d8-8456-6d5da7a76b2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI" + "https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI" ], "Date": [ - "Mon, 16 Mar 2015 18:44:40 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ], "ETag": [ - "0x8D22E3063470F10" + "0x8D28892E6040C11" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI" + "https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7d154be0-8cc3-4038-8925-c44b5d62d48c" + "93e82b85-6e83-4366-b198-4e0fe5d32e97" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:44:40 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTaskPipeWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI\",\r\n \"eTag\": \"0x8D22E3063470F10\",\r\n \"lastModified\": \"2015-03-16T18:44:37.1570448Z\",\r\n \"creationTime\": \"2015-03-16T18:44:37.1570448Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:44:37.1570448Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTaskPipeWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI\",\r\n \"eTag\": \"0x8D28892E6040C11\",\r\n \"lastModified\": \"2015-07-09T19:16:31.8288913Z\",\r\n \"creationTime\": \"2015-07-09T19:16:31.8288913Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:16:31.8288913Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:44:37 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5e01d161-8553-4a44-a660-8617529ab4fd" + "59ec968e-4953-44f5-b207-9bf231cdffc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,10 +436,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:44:40 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ], "ETag": [ - "0x8D22E3063470F10" + "0x8D28892E6040C11" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -457,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cd14b1f0-40ed-433f-8e91-81a0dd1d0a69" + "b5e02626-b090-4c64-9d3b-db5188cac096" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:45:01 GMT" + "Thu, 09 Jul 2015 19:16:36 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTaskPipeWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI\",\r\n \"eTag\": \"0x8D22E3063470F10\",\r\n \"lastModified\": \"2015-03-16T18:44:37.1570448Z\",\r\n \"creationTime\": \"2015-03-16T18:44:37.1570448Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:44:37.1570448Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTaskPipeWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI\",\r\n \"eTag\": \"0x8D28892E6040C11\",\r\n \"lastModified\": \"2015-07-09T19:16:31.8288913Z\",\r\n \"creationTime\": \"2015-07-09T19:16:31.8288913Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:16:31.8288913Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:44:37 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "540dfb39-b449-4ea3-b030-dc276b33fc36" + "99f607e9-f501-4b32-b644-9c16174a92a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -487,10 +487,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:45:01 GMT" + "Thu, 09 Jul 2015 19:16:36 GMT" ], "ETag": [ - "0x8D22E3063470F10" + "0x8D28892E6040C11" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -514,25 +514,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e8d75cce-3429-4ad1-b224-8be96cefa716" + "2ec11812-c301-4147-b13a-a18adbfdae4c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:44:41 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:44:43 GMT" + "Thu, 09 Jul 2015 19:16:32 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4c8f8669-a3c8-4878-ab9d-d2cf3f3a0c79" + "c1e14423-6150-4610-b2ee-820d1c934a8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,16 +541,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Mon, 16 Mar 2015 18:44:43 GMT" + "Thu, 09 Jul 2015 19:16:31 GMT" ], "ETag": [ - "0x8D22E3066D8882F" + "0x8D28892E673DB7C" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,28 +568,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f770e538-449c-4c95-a517-33860bbefc55" + "4241ee15-9c67-45e1-bc2d-4822007dfd14" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:44:41 GMT" + "Thu, 09 Jul 2015 19:16:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E3066D8882F\",\r\n \"creationTime\": \"2015-03-16T18:44:43.1435823Z\",\r\n \"lastModified\": \"2015-03-16T18:44:43.1435823Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:44:43.1435823Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D28892E673DB7C\",\r\n \"creationTime\": \"2015-07-09T19:16:32.5616508Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.5616508Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:16:32.5616508Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:44:43 GMT" + "Thu, 09 Jul 2015 19:16:32 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b5c001d9-9d63-46ec-93d7-eb37d8c04549" + "7ec2ed3d-e375-4e9c-b875-6d96ad115904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,10 +598,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:44:41 GMT" + "Thu, 09 Jul 2015 19:16:32 GMT" ], "ETag": [ - "0x8D22E3066D8882F" + "0x8D28892E673DB7C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -619,28 +619,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0d32dc62-d2c8-41ca-a287-ab13a8ac8920" + "90b3120d-f0bf-4206-91c7-bcea8e72abd9" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:44:48 GMT" + "Thu, 09 Jul 2015 19:16:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E3066D8882F\",\r\n \"creationTime\": \"2015-03-16T18:44:43.1435823Z\",\r\n \"lastModified\": \"2015-03-16T18:44:43.1435823Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-16T18:44:42.2585591Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-03-16T18:44:42.1681739Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-16T18:44:42.1681739Z\",\r\n \"endTime\": \"2015-03-16T18:44:42.2585591Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-3657382398_1-20150313t235640z\",\r\n \"tvmUrl\": \"https://filetests.batch.core.windows.net/pools/testPool/tvms/tvm-3657382398_1-20150313t235640z\",\r\n \"poolName\": \"testPool\",\r\n \"tvmName\": \"tvm-3657382398_1-20150313t235640z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D28892E673DB7C\",\r\n \"creationTime\": \"2015-07-09T19:16:32.5616508Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.5616508Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:16:32.7978126Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:16:32.6976001Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:16:32.6976001Z\",\r\n \"endTime\": \"2015-07-09T19:16:32.7978126Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:44:43 GMT" + "Thu, 09 Jul 2015 19:16:32 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "88cf9499-cac9-423b-9c6b-ccccc9b7ee41" + "fc2426e0-b0fd-45da-9e7c-e85c789fc95a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,10 +649,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:44:47 GMT" + "Thu, 09 Jul 2015 19:16:35 GMT" ], "ETag": [ - "0x8D22E3066D8882F" + "0x8D28892E673DB7C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,16 +670,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8f36691f-1f30-47ca-9f62-61085383c488" + "792c62c6-c7d2-4aa8-8033-acdd1eb97806" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:44:42 GMT" + "Thu, 09 Jul 2015 19:16:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -688,7 +688,7 @@ "chunked" ], "request-id": [ - "d05c3566-be3b-4ed2-880d-a2cc61ff735b" + "a35a1ed3-3031-4db7-8f1c-33fc1514d763" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -697,7 +697,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:44:42 GMT" + "Thu, 09 Jul 2015 19:16:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -715,16 +715,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7b0bcb06-0566-4f8e-9efb-02034215266f" + "5d51c887-ae56-4ec6-8148-57bcd9d80fb6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:44:44 GMT" + "Thu, 09 Jul 2015 19:16:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -733,7 +733,7 @@ "chunked" ], "request-id": [ - "8fa908cb-693a-4e66-81de-f499c25ea71e" + "019d6549-6c94-495a-bed3-24ccf258cb46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -742,7 +742,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:44:44 GMT" + "Thu, 09 Jul 2015 19:16:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -760,16 +760,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "83cb0582-18dc-4841-8e1e-7eb3220e602e" + "ad663dcb-15e6-4ac0-a9a2-4ca72f9d55e3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:44:48 GMT" + "Thu, 09 Jul 2015 19:16:36 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:44:42.2405582Z\",\r\n \"lastModified\": \"2015-03-16T18:44:42.2405582Z\",\r\n \"contentLength\": \"1938\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:44:42.1775983Z\",\r\n \"lastModified\": \"2015-03-16T18:44:42.1775983Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:44:42.1775983Z\",\r\n \"lastModified\": \"2015-03-16T18:44:42.2475589Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:16:32.7808149Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.7808149Z\",\r\n \"contentLength\": \"2471\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:16:32.7158137Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.7158137Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:16:32.7158137Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.7888122Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -778,7 +778,7 @@ "chunked" ], "request-id": [ - "79baa03a-0245-4512-9788-497caaf509cd" + "e848a8cc-c4b5-49cf-af4f-2439cd17e6c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -787,7 +787,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:45:00 GMT" + "Thu, 09 Jul 2015 19:16:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -805,16 +805,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "563a0316-111a-4310-b054-255d27c28083" + "9ae55278-fec1-4ec3-965a-33b0ecdc27e5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:45:02 GMT" + "Thu, 09 Jul 2015 19:16:38 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:44:42.2405582Z\",\r\n \"lastModified\": \"2015-03-16T18:44:42.2405582Z\",\r\n \"contentLength\": \"1938\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:44:42.1775983Z\",\r\n \"lastModified\": \"2015-03-16T18:44:42.1775983Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:44:42.1775983Z\",\r\n \"lastModified\": \"2015-03-16T18:44:42.2475589Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:16:32.7808149Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.7808149Z\",\r\n \"contentLength\": \"2471\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:16:32.7158137Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.7158137Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:16:32.7158137Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.7888122Z\",\r\n \"contentLength\": \"419\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -823,7 +823,7 @@ "chunked" ], "request-id": [ - "9f8fad69-d5f8-41f7-81c1-ad1fba3667ad" + "ad07ca52-f419-4a04-b8d7-0ad6f2c456e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,7 +832,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:45:22 GMT" + "Thu, 09 Jul 2015 19:16:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -850,16 +850,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "39c72d2a-1adb-4da1-9697-1d1e3add5d7a" + "1ef3fc62-ea56-47fa-ad14-1f20f907678f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:45:01 GMT" + "Thu, 09 Jul 2015 19:16:37 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D22E30635C605C\",\r\n \"lastModified\": \"2015-03-16T18:44:37.2967516Z\",\r\n \"creationTime\": \"2015-03-16T18:44:37.2637323Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:44:37.2967516Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-16T18:44:37.2967516Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D28892E614800E\",\r\n \"lastModified\": \"2015-07-09T19:16:31.9367182Z\",\r\n \"creationTime\": \"2015-07-09T19:16:31.9177107Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:16:31.9367182Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:16:31.9367182Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -868,7 +868,7 @@ "chunked" ], "request-id": [ - "8ec0fc66-e878-4729-adc4-98dff2635190" + "6586ee0e-df9d-4c88-8928-6c063cd470a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,7 +877,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:45:01 GMT" + "Thu, 09 Jul 2015 19:16:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -895,16 +895,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "172a5cb0-56dc-4b61-89d5-1e4f3f9a3507" + "258a0463-c274-4d53-9e24-41680449146b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:45:01 GMT" + "Thu, 09 Jul 2015 19:16:37 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E3066D8882F\",\r\n \"creationTime\": \"2015-03-16T18:44:43.1435823Z\",\r\n \"lastModified\": \"2015-03-16T18:44:43.1435823Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-16T18:44:42.2585591Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-03-16T18:44:42.1681739Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-16T18:44:42.1681739Z\",\r\n \"endTime\": \"2015-03-16T18:44:42.2585591Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-3657382398_1-20150313t235640z\",\r\n \"tvmUrl\": \"https://filetests.batch.core.windows.net/pools/testPool/tvms/tvm-3657382398_1-20150313t235640z\",\r\n \"poolName\": \"testPool\",\r\n \"tvmName\": \"tvm-3657382398_1-20150313t235640z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D28892E673DB7C\",\r\n \"creationTime\": \"2015-07-09T19:16:32.5616508Z\",\r\n \"lastModified\": \"2015-07-09T19:16:32.5616508Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:16:32.7978126Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:16:32.6976001Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:16:32.6976001Z\",\r\n \"endTime\": \"2015-07-09T19:16:32.7978126Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -913,7 +913,7 @@ "chunked" ], "request-id": [ - "3919eb86-49cc-4ada-b1f2-4a428465c02e" + "82688b1d-941c-4d09-94ea-5e61dcb9d34a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -922,7 +922,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:45:01 GMT" + "Thu, 09 Jul 2015 19:16:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -940,13 +940,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f504693e-8351-4194-8546-9e0304ab7023" + "f2f3c209-278e-4e18-a4c4-cd404d0572f2" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:45:22 GMT" + "Thu, 09 Jul 2015 19:16:38 GMT" ] }, "ResponseBody": "", @@ -955,7 +955,7 @@ "chunked" ], "request-id": [ - "937136d5-8d0d-45a7-b9f7-3b544a8f0636" + "6201c7cb-abf7-4f7d-90a2-8ed880ede66e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -964,7 +964,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:45:24 GMT" + "Thu, 09 Jul 2015 19:16:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesByFilter.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesByFilter.json index 90c82432ca9b..dd4e77d97375 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesByFilter.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesByFilter.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14939" ], "x-ms-request-id": [ - "ad31eb09-5000-49ac-9e5e-0e29c5b07f17" + "2870229b-2cf1-45be-917c-52a40bb57195" ], "x-ms-correlation-request-id": [ - "ad31eb09-5000-49ac-9e5e-0e29c5b07f17" + "2870229b-2cf1-45be-917c-52a40bb57195" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181439Z:ad31eb09-5000-49ac-9e5e-0e29c5b07f17" + "WESTUS:20150709T191543Z:2870229b-2cf1-45be-917c-52a40bb57195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:14:39 GMT" + "Thu, 09 Jul 2015 19:15:42 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14938" ], "x-ms-request-id": [ - "cee97250-b2fa-49cf-8370-c617edb4f02b" + "de0d68d8-8def-40fb-a0a8-17a65680cac5" ], "x-ms-correlation-request-id": [ - "cee97250-b2fa-49cf-8370-c617edb4f02b" + "de0d68d8-8def-40fb-a0a8-17a65680cac5" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181448Z:cee97250-b2fa-49cf-8370-c617edb4f02b" + "WESTUS:20150709T191549Z:de0d68d8-8def-40fb-a0a8-17a65680cac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:14:47 GMT" + "Thu, 09 Jul 2015 19:15:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:44 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "90ceba17-c78d-41db-b136-6c00dadc41c0" + "330b16cc-5666-4f53-a267-349d094396eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14980" ], "x-ms-request-id": [ - "245609d8-2c72-45ae-ae45-62792c788f76" + "6dcae16b-4241-4844-af14-cf7cd850e31c" ], "x-ms-correlation-request-id": [ - "245609d8-2c72-45ae-ae45-62792c788f76" + "6dcae16b-4241-4844-af14-cf7cd850e31c" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181440Z:245609d8-2c72-45ae-ae45-62792c788f76" + "WESTUS:20150709T191544Z:6dcae16b-4241-4844-af14-cf7cd850e31c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:43 GMT" ], "ETag": [ - "0x8D22E2C3431B271" + "0x8D28892C9CCF4B3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:14:48 GMT" + "Thu, 09 Jul 2015 19:15:49 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8335fb0b-f399-4a5d-b45c-af53e078ab24" + "46e955ef-ee51-494d-8b94-07695237e3a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14979" ], "x-ms-request-id": [ - "ca5819a1-4d64-41d8-841f-5589384dab27" + "083d8ccc-4dd2-4f92-8428-cb99026393eb" ], "x-ms-correlation-request-id": [ - "ca5819a1-4d64-41d8-841f-5589384dab27" + "083d8ccc-4dd2-4f92-8428-cb99026393eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181448Z:ca5819a1-4d64-41d8-841f-5589384dab27" + "WESTUS:20150709T191549Z:083d8ccc-4dd2-4f92-8428-cb99026393eb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:14:47 GMT" + "Thu, 09 Jul 2015 19:15:48 GMT" ], "ETag": [ - "0x8D22E2C38F85CDC" + "0x8D28892CC978AEF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "fb35c4c1-6fae-42e1-bf8a-d340675fcef3" + "8dec9441-3cfb-4724-96a4-e40e61ba6493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-request-id": [ - "c6d77ecb-67f0-4536-9e4b-9fa858e0c2fb" + "b30b14b2-c9fd-44cf-9c87-b4847109db86" ], "x-ms-correlation-request-id": [ - "c6d77ecb-67f0-4536-9e4b-9fa858e0c2fb" + "b30b14b2-c9fd-44cf-9c87-b4847109db86" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181440Z:c6d77ecb-67f0-4536-9e4b-9fa858e0c2fb" + "WESTUS:20150709T191544Z:b30b14b2-c9fd-44cf-9c87-b4847109db86" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "ed286ac2-bff2-4c92-9641-964b113ed32f" + "c13e8576-b7d7-47af-9869-e0d2c0c585d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-request-id": [ - "89a9be39-97db-4c5b-b7e5-c30d4172aad0" + "bd73f64b-6337-4429-bdfa-9fcd424fe6cb" ], "x-ms-correlation-request-id": [ - "89a9be39-97db-4c5b-b7e5-c30d4172aad0" + "bd73f64b-6337-4429-bdfa-9fcd424fe6cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181448Z:89a9be39-97db-4c5b-b7e5-c30d4172aad0" + "WESTUS:20150709T191549Z:bd73f64b-6337-4429-bdfa-9fcd424fe6cb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:14:47 GMT" + "Thu, 09 Jul 2015 19:15:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "81ee4898-616a-431e-9d0e-330f359d716e" + "ff24d528-0ccf-4f4e-b0a3-6b8d7c287060" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:44 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:14:39 GMT" + "Thu, 09 Jul 2015 19:15:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3d20802a-4b43-4e5b-b634-fd9e7af8e7ed" + "53d8d807-0547-45ae-9dd2-b2e88f1a544b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI" + "https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI" ], "Date": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:44 GMT" ], "ETag": [ - "0x8D22E2C33B84885" + "0x8D28892CA459289" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI" + "https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ff5e92e5-15ef-495d-9803-66db237654db" + "78aff494-0aa9-48c4-aab2-aa6a8aa178bb" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:14:41 GMT" + "Thu, 09 Jul 2015 19:15:44 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTaskFileFilterWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI\",\r\n \"eTag\": \"0x8D22E2C33B84885\",\r\n \"lastModified\": \"2015-03-16T18:14:39.3815173Z\",\r\n \"creationTime\": \"2015-03-16T18:14:39.3815173Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:14:39.3815173Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTaskFileFilterWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI\",\r\n \"eTag\": \"0x8D28892CA459289\",\r\n \"lastModified\": \"2015-07-09T19:15:45.2821129Z\",\r\n \"creationTime\": \"2015-07-09T19:15:45.2821129Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:15:45.2821129Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:14:39 GMT" + "Thu, 09 Jul 2015 19:15:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f491034c-e879-4762-b4d6-4d3e4db6cf12" + "51c5fb7b-1e2e-450c-86a3-5432844bf83e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,10 +436,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:44 GMT" ], "ETag": [ - "0x8D22E2C33B84885" + "0x8D28892CA459289" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -451,37 +451,37 @@ "RequestUri": "/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TGlzdFRhc2tGaWxlRmlsdGVyV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "150" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "fb381ccd-0470-4b22-a8b2-3ea8b656a710" + "362cfe12-f827-42b3-97e0-4872b267b53f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:14:42 GMT" + "Thu, 09 Jul 2015 19:15:45 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e4560589-b3d3-4194-a65a-a988a6ea92a2" + "28df353e-1b6b-489c-a99d-e1ae5c79a9ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:45 GMT" ], "ETag": [ - "0x8D22E2C34A26835" + "0x8D28892CAAF21F5" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +517,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b62d4598-7479-411e-8690-825553e4c251" + "f0d650ce-2446-411d-888d-4086e149916e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:14:42 GMT" + "Thu, 09 Jul 2015 19:15:45 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E2C34A26835\",\r\n \"creationTime\": \"2015-03-16T18:14:40.9158709Z\",\r\n \"lastModified\": \"2015-03-16T18:14:40.9158709Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:14:40.9158709Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D28892CAAF21F5\",\r\n \"creationTime\": \"2015-07-09T19:15:45.9739125Z\",\r\n \"lastModified\": \"2015-07-09T19:15:45.9739125Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:15:45.9739125Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9fe0dda2-9e8a-49d8-9875-6688a4a9f15c" + "b512e90a-d9c4-4958-90f1-fa8684c8c764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +547,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:14:43 GMT" + "Thu, 09 Jul 2015 19:15:46 GMT" ], "ETag": [ - "0x8D22E2C34A26835" + "0x8D28892CAAF21F5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,28 +568,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "add03a13-4711-444d-a54c-6f09a71ce665" + "e01e594c-3f6c-42c7-bd2f-0fe3cccf2f25" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:15:12 GMT" + "Thu, 09 Jul 2015 19:15:49 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E2C34A26835\",\r\n \"creationTime\": \"2015-03-16T18:14:40.9158709Z\",\r\n \"lastModified\": \"2015-03-16T18:14:40.9158709Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-16T18:14:43.5598669Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-03-16T18:14:43.4708787Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-16T18:14:43.4708787Z\",\r\n \"endTime\": \"2015-03-16T18:14:43.5598669Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-3657382398_1-20150313t235640z\",\r\n \"tvmUrl\": \"https://filetests.batch.core.windows.net/pools/testPool/tvms/tvm-3657382398_1-20150313t235640z\",\r\n \"poolName\": \"testPool\",\r\n \"tvmName\": \"tvm-3657382398_1-20150313t235640z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D28892CAAF21F5\",\r\n \"creationTime\": \"2015-07-09T19:15:45.9739125Z\",\r\n \"lastModified\": \"2015-07-09T19:15:45.9739125Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:15:46.4572447Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:15:46.3532477Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:15:46.3532477Z\",\r\n \"endTime\": \"2015-07-09T19:15:46.4572447Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:14:40 GMT" + "Thu, 09 Jul 2015 19:15:45 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9d2895c9-f4f3-4a92-bd26-87d927d9cf06" + "e4282c95-7ca2-4085-9b77-2609f4d4b8c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,10 +598,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:15:11 GMT" + "Thu, 09 Jul 2015 19:15:49 GMT" ], "ETag": [ - "0x8D22E2C34A26835" + "0x8D28892CAAF21F5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -619,16 +619,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c64a1080-8e9d-4195-8579-636c0c10edd7" + "486a826d-26d3-4beb-92d5-bcac2702c922" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:14:43 GMT" + "Thu, 09 Jul 2015 19:15:46 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -637,7 +637,7 @@ "chunked" ], "request-id": [ - "8a0b6336-d441-4c90-a1ca-6f8860fa0097" + "92498806-f60e-4d08-bdf5-db3f671e57b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,7 +646,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:14:43 GMT" + "Thu, 09 Jul 2015 19:15:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -664,16 +664,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cabf5b9d-b4aa-47e4-b0da-2a21cddd5c86" + "119efc79-7203-467a-bef0-86c5cdd3ee4a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:14:45 GMT" + "Thu, 09 Jul 2015 19:15:48 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -682,7 +682,7 @@ "chunked" ], "request-id": [ - "c22416b5-6da2-4770-8ee8-73c00210d207" + "2d5f947c-bf36-4d4e-a66a-39636a2386e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,7 +691,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:14:45 GMT" + "Thu, 09 Jul 2015 19:15:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -709,16 +709,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "263836ad-6f79-4b1f-b835-cf5666a577a4" + "afd9604d-f82c-43f5-96a9-aa48b77a4356" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:14:48 GMT" + "Thu, 09 Jul 2015 19:15:49 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:14:43.4798735Z\",\r\n \"lastModified\": \"2015-03-16T18:14:43.4798735Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:14:43.4798735Z\",\r\n \"lastModified\": \"2015-03-16T18:14:43.5428711Z\",\r\n \"contentLength\": \"425\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:46.3632448Z\",\r\n \"lastModified\": \"2015-07-09T19:15:46.3632448Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:46.362245Z\",\r\n \"lastModified\": \"2015-07-09T19:15:46.4332452Z\",\r\n \"contentLength\": \"425\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -727,7 +727,7 @@ "chunked" ], "request-id": [ - "d769ff9c-89a7-49ac-8fa5-5b3333f54d23" + "54aac630-2dd8-4c01-8bbb-a29bb583debd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:15:10 GMT" + "Thu, 09 Jul 2015 19:15:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -754,16 +754,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ead21ac9-1f97-4ac6-8210-104cc83f356a" + "a1f28ac6-e74c-420e-99a9-a82426b7c8b6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:15:12 GMT" + "Thu, 09 Jul 2015 19:15:50 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:14:43.4798735Z\",\r\n \"lastModified\": \"2015-03-16T18:14:43.4798735Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:14:43.4798735Z\",\r\n \"lastModified\": \"2015-03-16T18:14:43.5428711Z\",\r\n \"contentLength\": \"425\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:46.3632448Z\",\r\n \"lastModified\": \"2015-07-09T19:15:46.3632448Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTaskFileFilterWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:46.362245Z\",\r\n \"lastModified\": \"2015-07-09T19:15:46.4332452Z\",\r\n \"contentLength\": \"425\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -772,7 +772,7 @@ "chunked" ], "request-id": [ - "55d9a65a-f34f-4c90-b149-7f0a987b3fbc" + "645b7f22-b6a6-4f49-ad16-9bb0acff3af8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +781,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:15:10 GMT" + "Thu, 09 Jul 2015 19:15:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -799,13 +799,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "95d98a95-0e9a-4c2d-8d1c-852a0805dc89" + "75ccb2d7-97ca-4406-bb9c-a6e78a08cec6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:15:13 GMT" + "Thu, 09 Jul 2015 19:15:50 GMT" ] }, "ResponseBody": "", @@ -814,7 +814,7 @@ "chunked" ], "request-id": [ - "5e7a94ae-ac4d-40ad-bd6a-30a6553500ac" + "a46bbf0f-5a33-4f18-ad23-f2913b8ca5d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -823,7 +823,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:15:13 GMT" + "Thu, 09 Jul 2015 19:15:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesRecursive.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesRecursive.json index 01857b74b462..52da17a40eb7 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesRecursive.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesRecursive.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14945" ], "x-ms-request-id": [ - "ff12a99a-2455-42fc-b7ff-b6ef7b78d1b0" + "374fd330-153a-4e80-8600-3117e2e9e92c" ], "x-ms-correlation-request-id": [ - "ff12a99a-2455-42fc-b7ff-b6ef7b78d1b0" + "374fd330-153a-4e80-8600-3117e2e9e92c" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T185853Z:ff12a99a-2455-42fc-b7ff-b6ef7b78d1b0" + "WESTUS:20150709T191740Z:374fd330-153a-4e80-8600-3117e2e9e92c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:58:53 GMT" + "Thu, 09 Jul 2015 19:17:39 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14944" ], "x-ms-request-id": [ - "13028389-ee3e-4c24-b8d6-40e07bf79b4e" + "cffa3e1c-098c-4b5a-965e-7785df0d0c44" ], "x-ms-correlation-request-id": [ - "13028389-ee3e-4c24-b8d6-40e07bf79b4e" + "cffa3e1c-098c-4b5a-965e-7785df0d0c44" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T185902Z:13028389-ee3e-4c24-b8d6-40e07bf79b4e" + "WESTUS:20150709T191745Z:cffa3e1c-098c-4b5a-965e-7785df0d0c44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:59:01 GMT" + "Thu, 09 Jul 2015 19:17:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:58:55 GMT" + "Thu, 09 Jul 2015 19:17:41 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "24444018-8c16-4d92-9b7a-a55ccccddb1b" + "aa27ab32-0ec8-42e6-8f80-06fb2d38a148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14967" ], "x-ms-request-id": [ - "0b645ce5-49d2-474a-ad9a-0b5999de0680" + "24e3743c-0519-4566-b1c1-f3e5a45c6a68" ], "x-ms-correlation-request-id": [ - "0b645ce5-49d2-474a-ad9a-0b5999de0680" + "24e3743c-0519-4566-b1c1-f3e5a45c6a68" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T185855Z:0b645ce5-49d2-474a-ad9a-0b5999de0680" + "WESTUS:20150709T191741Z:24e3743c-0519-4566-b1c1-f3e5a45c6a68" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:58:54 GMT" + "Thu, 09 Jul 2015 19:17:40 GMT" ], "ETag": [ - "0x8D22E3262DA7637" + "0x8D288930F77B503" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:59:02 GMT" + "Thu, 09 Jul 2015 19:17:46 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "cae44da2-a996-4ce2-a628-adc33cb950ac" + "5753459b-00c1-47f5-b06c-7d34e7800a66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14966" ], "x-ms-request-id": [ - "6f3d8093-2d72-4ae5-b8d4-a5c4d3588c33" + "b8a9231c-390a-4e56-b951-8e7795ba0122" ], "x-ms-correlation-request-id": [ - "6f3d8093-2d72-4ae5-b8d4-a5c4d3588c33" + "b8a9231c-390a-4e56-b951-8e7795ba0122" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T185902Z:6f3d8093-2d72-4ae5-b8d4-a5c4d3588c33" + "WESTUS:20150709T191745Z:b8a9231c-390a-4e56-b951-8e7795ba0122" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:59:01 GMT" + "Thu, 09 Jul 2015 19:17:45 GMT" ], "ETag": [ - "0x8D22E32673707F8" + "0x8D2889312518078" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "8a2d4bc6-0a9d-4664-8689-a209f62552eb" + "47e0ab43-1fe3-4281-a9d5-feda2678127d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1184" ], "x-ms-request-id": [ - "7c0c6b5e-826c-4a26-a6aa-b44e753483ba" + "d706b5bd-8d5d-49db-835c-d10d1f5b1f92" ], "x-ms-correlation-request-id": [ - "7c0c6b5e-826c-4a26-a6aa-b44e753483ba" + "d706b5bd-8d5d-49db-835c-d10d1f5b1f92" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T185855Z:7c0c6b5e-826c-4a26-a6aa-b44e753483ba" + "WESTUS:20150709T191741Z:d706b5bd-8d5d-49db-835c-d10d1f5b1f92" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:58:54 GMT" + "Thu, 09 Jul 2015 19:17:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "12db14f5-05f3-4d9a-9819-5ff203cff40b" + "1284ebae-a1a9-4e5e-bb51-0e1e66ce565d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1183" ], "x-ms-request-id": [ - "9cf9c452-4039-4503-b609-41ba763140e9" + "1e8baf5d-a3ba-42bc-a8b5-4ba3827ee7d3" ], "x-ms-correlation-request-id": [ - "9cf9c452-4039-4503-b609-41ba763140e9" + "1e8baf5d-a3ba-42bc-a8b5-4ba3827ee7d3" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T185902Z:9cf9c452-4039-4503-b609-41ba763140e9" + "WESTUS:20150709T191745Z:1e8baf5d-a3ba-42bc-a8b5-4ba3827ee7d3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:59:02 GMT" + "Thu, 09 Jul 2015 19:17:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "13b5898a-3244-43a5-a731-df6af6ff0b09" + "bc3a48bd-08b5-4fa9-a14d-604e89cfcbed" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:58:55 GMT" + "Thu, 09 Jul 2015 19:17:41 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:58:52 GMT" + "Thu, 09 Jul 2015 19:17:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ab38d7ff-abd6-4c2e-95b7-687fa8feb795" + "220687f1-7aa5-4500-bcdd-a6e3e7b3474b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI" + "https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI" ], "Date": [ - "Mon, 16 Mar 2015 18:58:54 GMT" + "Thu, 09 Jul 2015 19:17:40 GMT" ], "ETag": [ - "0x8D22E3260E58DDD" + "0x8D288930FBFD620" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI" + "https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9f7cd407-7e5d-421e-878c-3e247b8003c7" + "5858cd66-6985-465f-baac-aa12b8fe5d78" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:58:56 GMT" + "Thu, 09 Jul 2015 19:17:41 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTFRecursiveWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI\",\r\n \"eTag\": \"0x8D22E3260E58DDD\",\r\n \"lastModified\": \"2015-03-16T18:58:52.1560541Z\",\r\n \"creationTime\": \"2015-03-16T18:58:52.1560541Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:58:52.1560541Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testListTFRecursiveWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI\",\r\n \"eTag\": \"0x8D288930FBFD620\",\r\n \"lastModified\": \"2015-07-09T19:17:41.8461728Z\",\r\n \"creationTime\": \"2015-07-09T19:17:41.8461728Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:17:41.8461728Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:58:52 GMT" + "Thu, 09 Jul 2015 19:17:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "21282a85-45b2-4744-8936-02a3d269b29d" + "77dd58e7-3f19-4992-b114-f85a0a600590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,10 +436,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:58:54 GMT" + "Thu, 09 Jul 2015 19:17:41 GMT" ], "ETag": [ - "0x8D22E3260E58DDD" + "0x8D288930FBFD620" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -463,25 +463,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "673c4ca0-a4f5-4e4c-8803-9487cb4484e3" + "f30a5581-8f11-4343-8196-faa998b3f613" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:58:56 GMT" + "Thu, 09 Jul 2015 19:17:41 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:58:56 GMT" + "Thu, 09 Jul 2015 19:17:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "413345b0-c43b-47c7-8938-2b0443aa28a2" + "5301e6b7-264d-4ba3-8b4b-9509d33fc3e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Mon, 16 Mar 2015 18:58:56 GMT" + "Thu, 09 Jul 2015 19:17:42 GMT" ], "ETag": [ - "0x8D22E3263C2F800" + "0x8D288931028614F" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +517,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4ef80757-a4d3-4bee-8151-eb08a9e4e66e" + "6959a4c9-17c5-4afe-8682-52a3c644fecc" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:58:57 GMT" + "Thu, 09 Jul 2015 19:17:42 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E3263C2F800\",\r\n \"creationTime\": \"2015-03-16T18:58:56.96256Z\",\r\n \"lastModified\": \"2015-03-16T18:58:56.96256Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:58:56.96256Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test file\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D288931028614F\",\r\n \"creationTime\": \"2015-07-09T19:17:42.5313103Z\",\r\n \"lastModified\": \"2015-07-09T19:17:42.5313103Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:17:42.5313103Z\",\r\n \"commandLine\": \"cmd /c echo \\\"test file\\\" > testFile.txt\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:58:56 GMT" + "Thu, 09 Jul 2015 19:17:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "435cbc51-62e9-4d58-9067-a299f5f09df3" + "8db9a67f-c23d-4e51-aad7-cfd1c62e3e45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +547,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:58:57 GMT" + "Thu, 09 Jul 2015 19:17:42 GMT" ], "ETag": [ - "0x8D22E3263C2F800" + "0x8D288931028614F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,16 +568,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "568224f2-f228-43c4-8491-95ae682c1be1" + "364dcb82-0a9c-4e86-9ff3-dce5ad631cbf" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:58:57 GMT" + "Thu, 09 Jul 2015 19:17:42 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -586,7 +586,7 @@ "chunked" ], "request-id": [ - "b533b177-fb78-4f3e-bc5a-ffb10885bd58" + "ba76e9bd-fc56-4183-817c-5daaa56f3e41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +595,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:58:57 GMT" + "Thu, 09 Jul 2015 19:17:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -613,16 +613,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8e41d765-a7a8-40bd-a0f9-9da682c64ce8" + "83d622e4-b126-4d1b-ac75-81ebbf8f841c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:58:59 GMT" + "Thu, 09 Jul 2015 19:17:45 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -631,7 +631,7 @@ "chunked" ], "request-id": [ - "b094c2ab-efb1-42d5-9939-deac7a847676" + "fbe74b08-9a2a-4a15-a6c3-c497019d05ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,7 +640,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:58:59 GMT" + "Thu, 09 Jul 2015 19:17:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -658,16 +658,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b041fee2-c066-4ec6-8e2c-5282e1261cf2" + "68f7de0f-e9f6-4f46-8c96-f803b2333f53" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:59:02 GMT" + "Thu, 09 Jul 2015 19:17:45 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -676,7 +676,7 @@ "chunked" ], "request-id": [ - "675e8d3e-d694-44fe-96e2-10e15172f27e" + "9141d702-6630-4949-ac53-c738c2774c90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,7 +685,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:59:22 GMT" + "Thu, 09 Jul 2015 19:17:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -703,16 +703,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "759d49e0-b708-4ad4-b859-e8b698c4ba8f" + "33d853c3-7e44-4f5f-9a68-0f4d55995d9f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:59:22 GMT" + "Thu, 09 Jul 2015 19:17:46 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"wd\\\\testFile.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask/files/wd\\\\testFile.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:58:57.2355836Z\",\r\n \"lastModified\": \"2015-03-16T18:58:57.2355836Z\",\r\n \"contentLength\": \"14\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"wd\\\\testFile.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testListTFRecursiveWI/jobs/job-0000000001/tasks/testTask/files/wd\\\\testFile.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:17:43.1674558Z\",\r\n \"lastModified\": \"2015-07-09T19:17:43.1674558Z\",\r\n \"contentLength\": \"14\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -721,7 +721,7 @@ "chunked" ], "request-id": [ - "542bf565-281e-497e-874e-fc69fa7eab1b" + "530e12bb-36d0-457e-b452-a2f75851adf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -730,7 +730,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:59:25 GMT" + "Thu, 09 Jul 2015 19:17:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -748,13 +748,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e2d68dd4-f1a5-45bf-aaa4-24bf5c5d6c30" + "cc1ab08a-8e2c-4de3-a433-8615027b6528" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:59:23 GMT" + "Thu, 09 Jul 2015 19:17:46 GMT" ] }, "ResponseBody": "", @@ -763,7 +763,7 @@ "chunked" ], "request-id": [ - "d37b0180-917e-4158-aa4c-d5123c7202e4" + "0dcebced-60a5-4e63-993d-9b23c6ce3ae6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -772,7 +772,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:59:22 GMT" + "Thu, 09 Jul 2015 19:17:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesWithMaxCount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesWithMaxCount.json index 225a1451ecbb..98344d2039e5 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesWithMaxCount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListTaskFilesWithMaxCount.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14942" ], "x-ms-request-id": [ - "af5e7a87-0ffd-43d7-91a0-2bdb6c028277" + "794e5f38-cac4-427a-af7c-bb595e84f1d7" ], "x-ms-correlation-request-id": [ - "af5e7a87-0ffd-43d7-91a0-2bdb6c028277" + "794e5f38-cac4-427a-af7c-bb595e84f1d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181855Z:af5e7a87-0ffd-43d7-91a0-2bdb6c028277" + "WESTUS:20150709T191517Z:794e5f38-cac4-427a-af7c-bb595e84f1d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:18:55 GMT" + "Thu, 09 Jul 2015 19:15:17 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "740" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14941" ], "x-ms-request-id": [ - "a07fbfc6-4be5-4a97-9206-64639adf4ef2" + "4565c9ff-a064-4e08-8a0b-fc249d49efb8" ], "x-ms-correlation-request-id": [ - "a07fbfc6-4be5-4a97-9206-64639adf4ef2" + "4565c9ff-a064-4e08-8a0b-fc249d49efb8" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181904Z:a07fbfc6-4be5-4a97-9206-64639adf4ef2" + "WESTUS:20150709T191523Z:4565c9ff-a064-4e08-8a0b-fc249d49efb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:19:04 GMT" + "Thu, 09 Jul 2015 19:15:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:18:54 GMT" + "Thu, 09 Jul 2015 19:15:18 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "59905e73-c58c-43a4-9c79-607c5e93677f" + "e4dcafd5-4811-48f9-808b-27edaed18983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14949" ], "x-ms-request-id": [ - "2ebb0573-74bc-4afb-bee8-398bef7a8d8b" + "22da4047-03a2-40f3-98f6-5b0fb3e6b576" ], "x-ms-correlation-request-id": [ - "2ebb0573-74bc-4afb-bee8-398bef7a8d8b" + "22da4047-03a2-40f3-98f6-5b0fb3e6b576" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181857Z:2ebb0573-74bc-4afb-bee8-398bef7a8d8b" + "WESTUS:20150709T191518Z:22da4047-03a2-40f3-98f6-5b0fb3e6b576" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:18:56 GMT" + "Thu, 09 Jul 2015 19:15:17 GMT" ], "ETag": [ - "0x8D22E2CCB9B224B" + "0x8D28892BA283B5C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:19:01 GMT" + "Thu, 09 Jul 2015 19:15:23 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3e74be26-a931-4c1e-8d37-b8ea01d95c76" + "bed4c52e-f03c-4a00-9382-3eccf4de1445" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14948" ], "x-ms-request-id": [ - "4b2bf7eb-0c29-4964-9508-cfe042bd7241" + "54b070d1-60e3-47e6-9545-c3ae61791ea8" ], "x-ms-correlation-request-id": [ - "4b2bf7eb-0c29-4964-9508-cfe042bd7241" + "54b070d1-60e3-47e6-9545-c3ae61791ea8" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181904Z:4b2bf7eb-0c29-4964-9508-cfe042bd7241" + "WESTUS:20150709T191523Z:54b070d1-60e3-47e6-9545-c3ae61791ea8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:19:04 GMT" + "Thu, 09 Jul 2015 19:15:23 GMT" ], "ETag": [ - "0x8D22E2CD01A6F98" + "0x8D28892BD056037" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "0c4e3c6e-2396-4def-9aab-b36bcaaf4453" + "4d802655-af84-44ef-bb51-fb5ee4afaa65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1174" ], "x-ms-request-id": [ - "2c52299a-c808-4a63-8299-3679d4263b2a" + "1683eb9c-5633-4555-a82f-993cda407abe" ], "x-ms-correlation-request-id": [ - "2c52299a-c808-4a63-8299-3679d4263b2a" + "1683eb9c-5633-4555-a82f-993cda407abe" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181857Z:2c52299a-c808-4a63-8299-3679d4263b2a" + "WESTUS:20150709T191518Z:1683eb9c-5633-4555-a82f-993cda407abe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:18:56 GMT" + "Thu, 09 Jul 2015 19:15:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/file-tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2ZpbGUtdGVzdHMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2ZpbGV0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"gs6pQ+s1o6fhgUkmhoPWOR2ulrziKOTOCAsNEPaS3YudZqQdsz5srX2xMr3BVAMyeznOFeHEfWn6j03Rsf9dzw==\",\r\n \"secondary\": \"25FU/EyZDPgajbyq5nSjTwY29dIMn+ilBl/v9lxnObv4r8cxFto4iiTxNSCjyJEeeoWzvTxL9VXQpNc0Z+ce8A==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "394a4b74-1412-4d48-bacb-47e5159ff4f8" + "8ec73bc8-c7ba-4324-9cb1-69bfdfbc2257" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1173" ], "x-ms-request-id": [ - "9e9acb76-9f57-4ef6-9fdf-7b0b7dd40702" + "b5492b28-e5f1-4183-8633-d4a7697df32f" ], "x-ms-correlation-request-id": [ - "9e9acb76-9f57-4ef6-9fdf-7b0b7dd40702" + "b5492b28-e5f1-4183-8633-d4a7697df32f" ], "x-ms-routing-request-id": [ - "WESTUS:20150316T181904Z:9e9acb76-9f57-4ef6-9fdf-7b0b7dd40702" + "WESTUS:20150709T191523Z:b5492b28-e5f1-4183-8633-d4a7697df32f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Mar 2015 18:19:04 GMT" + "Thu, 09 Jul 2015 19:15:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -352,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f598c37d-e078-4fdf-a298-4f4dd45549bf" + "45ce2b34-c113-4c19-99f8-ad7348b019f3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:18:57 GMT" + "Thu, 09 Jul 2015 19:15:18 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:18:55 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "22c0c444-e417-4375-8cd1-d08f408840bb" + "ab0b585f-4328-4cd2-93d3-574c5efe35e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI" + "https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI" ], "Date": [ - "Mon, 16 Mar 2015 18:18:58 GMT" + "Thu, 09 Jul 2015 19:15:18 GMT" ], "ETag": [ - "0x8D22E2CCC7CDA4C" + "0x8D28892BAB5821A" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI" + "https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6738eaee-5ec4-4749-908f-38314594103d" + "ca032581-707e-4eaf-b87e-615d29bf669e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:18:58 GMT" + "Thu, 09 Jul 2015 19:15:18 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testTaskFileMaxWI\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI\",\r\n \"eTag\": \"0x8D22E2CCC7CDA4C\",\r\n \"lastModified\": \"2015-03-16T18:18:55.683438Z\",\r\n \"creationTime\": \"2015-03-16T18:18:55.683438Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:18:55.683438Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testTaskFileMaxWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI\",\r\n \"eTag\": \"0x8D28892BAB5821A\",\r\n \"lastModified\": \"2015-07-09T19:15:19.1721498Z\",\r\n \"creationTime\": \"2015-07-09T19:15:19.1721498Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:15:19.1721498Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:18:55 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "33260187-655c-4a77-aa19-2a9d6218ce32" + "870cf570-6a52-4ae6-a16e-df586f688585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,10 +436,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:18:58 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ], "ETag": [ - "0x8D22E2CCC7CDA4C" + "0x8D28892BAB5821A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -451,37 +451,37 @@ "RequestUri": "/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0VGFza0ZpbGVNYXhXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "150" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "2f681832-ac61-4487-acf9-faaf9d7566e8" + "057283f4-1c7b-4d50-8c63-eb9647bb4582" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:18:58 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 16 Mar 2015 18:19:00 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3a0d4479-0ce2-459d-a3d8-f7068f24f2b7" + "a1fcbfd8-734e-4e21-8f20-18e366ee78fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Mon, 16 Mar 2015 18:19:00 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ], "ETag": [ - "0x8D22E2CCF983BF9" + "0x8D28892BB17730E" ], "Location": [ - "https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +517,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "94605271-7e69-4cfe-88d1-06a22ce21bbc" + "a8e392d5-ec2d-4447-b38e-14b48f353e17" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:18:59 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E2CCF983BF9\",\r\n \"creationTime\": \"2015-03-16T18:19:00.8960505Z\",\r\n \"lastModified\": \"2015-03-16T18:19:00.8960505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-16T18:19:00.8960505Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D28892BB17730E\",\r\n \"creationTime\": \"2015-07-09T19:15:19.8140174Z\",\r\n \"lastModified\": \"2015-07-09T19:15:19.8140174Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:15:19.8140174Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:19:00 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7b167b1-1bdf-4913-aa09-aeb651c79b17" + "85872ada-5f5c-4939-a30d-6621f4aeb55c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +547,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:18:59 GMT" + "Thu, 09 Jul 2015 19:15:20 GMT" ], "ETag": [ - "0x8D22E2CCF983BF9" + "0x8D28892BB17730E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,28 +568,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0aa13470-1cf2-4358-908f-600d6fe61a40" + "b606be1e-ea5c-4fba-9282-85389f614eba" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:19:28 GMT" + "Thu, 09 Jul 2015 19:15:23 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22E2CCF983BF9\",\r\n \"creationTime\": \"2015-03-16T18:19:00.8960505Z\",\r\n \"lastModified\": \"2015-03-16T18:19:00.8960505Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-16T18:18:59.6896328Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-03-16T18:18:59.6006332Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-16T18:18:59.6006332Z\",\r\n \"endTime\": \"2015-03-16T18:18:59.6896328Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-3657382398_1-20150313t235640z\",\r\n \"tvmUrl\": \"https://filetests.batch.core.windows.net/pools/testPool/tvms/tvm-3657382398_1-20150313t235640z\",\r\n \"poolName\": \"testPool\",\r\n \"tvmName\": \"tvm-3657382398_1-20150313t235640z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D28892BB17730E\",\r\n \"creationTime\": \"2015-07-09T19:15:19.8140174Z\",\r\n \"lastModified\": \"2015-07-09T19:15:19.8140174Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:15:21.1613669Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:15:21.0683519Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:15:21.0683519Z\",\r\n \"endTime\": \"2015-07-09T19:15:21.1613669Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 16 Mar 2015 18:19:00 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0a9bd169-68ab-4b6c-88ca-7f5ba3a9341e" + "e3b302be-3a58-41a6-983e-52e2c738b220" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,10 +598,10 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:19:27 GMT" + "Thu, 09 Jul 2015 19:15:23 GMT" ], "ETag": [ - "0x8D22E2CCF983BF9" + "0x8D28892BB17730E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -619,16 +619,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "72bac535-fec9-4d06-aac8-0e07d6fa1d87" + "5cc1f117-0a59-4e05-a480-89fff1d4ca2b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:18:59 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -637,7 +637,7 @@ "chunked" ], "request-id": [ - "a8480f10-19b9-4fef-b3fa-499abcffa546" + "d6cecfb4-08cd-4903-ba30-9a6ce1d7ac6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,7 +646,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:19:00 GMT" + "Thu, 09 Jul 2015 19:15:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -664,16 +664,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0966d75f-3c79-4460-8acf-1ef498fde4f5" + "023676fe-7a54-4d43-96d0-3e8c5cb5ff96" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:19:02 GMT" + "Thu, 09 Jul 2015 19:15:22 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -682,7 +682,7 @@ "chunked" ], "request-id": [ - "6b0a8979-0b68-449d-90c5-a10828238470" + "90fb9c75-9739-4c7a-b15b-641d0e5057e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,7 +691,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:19:02 GMT" + "Thu, 09 Jul 2015 19:15:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -709,16 +709,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4573ebaf-9c62-44d7-81cf-4eff5dc05a76" + "c6bc01a6-7b71-425c-9aa0-d7ffe66d593e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:19:04 GMT" + "Thu, 09 Jul 2015 19:15:23 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:18:59.6656343Z\",\r\n \"lastModified\": \"2015-03-16T18:18:59.6666337Z\",\r\n \"contentLength\": \"1931\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:18:59.6106559Z\",\r\n \"lastModified\": \"2015-03-16T18:18:59.6106559Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:18:59.6106559Z\",\r\n \"lastModified\": \"2015-03-16T18:18:59.6746341Z\",\r\n \"contentLength\": \"418\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:21.1413682Z\",\r\n \"lastModified\": \"2015-07-09T19:15:21.1423675Z\",\r\n \"contentLength\": \"2461\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:21.0783673Z\",\r\n \"lastModified\": \"2015-07-09T19:15:21.0783673Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:21.0773658Z\",\r\n \"lastModified\": \"2015-07-09T19:15:21.1493677Z\",\r\n \"contentLength\": \"418\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -727,7 +727,7 @@ "chunked" ], "request-id": [ - "321ca16b-7dec-46bf-841a-a92ff7c4a6ce" + "61dd311e-8fce-42d4-b62e-7b849a00a077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:19:25 GMT" + "Thu, 09 Jul 2015 19:15:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -754,16 +754,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b0d47cba-9212-46f2-8c09-30b16c87385b" + "11511e54-111b-4350-81d5-693a233b9326" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:19:28 GMT" + "Thu, 09 Jul 2015 19:15:24 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:18:59.6656343Z\",\r\n \"lastModified\": \"2015-03-16T18:18:59.6666337Z\",\r\n \"contentLength\": \"1931\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:18:59.6106559Z\",\r\n \"lastModified\": \"2015-03-16T18:18:59.6106559Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-16T18:18:59.6106559Z\",\r\n \"lastModified\": \"2015-03-16T18:18:59.6746341Z\",\r\n \"contentLength\": \"418\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://filetests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"ProcessEnv.cmd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:21.1413682Z\",\r\n \"lastModified\": \"2015-07-09T19:15:21.1423675Z\",\r\n \"contentLength\": \"2461\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:21.0783673Z\",\r\n \"lastModified\": \"2015-07-09T19:15:21.0783673Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:15:21.0773658Z\",\r\n \"lastModified\": \"2015-07-09T19:15:21.1493677Z\",\r\n \"contentLength\": \"418\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testTaskFileMaxWI/jobs/job-0000000001/tasks/testTask/files/wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -772,7 +772,7 @@ "chunked" ], "request-id": [ - "2a999db5-9d75-4b46-a891-6abe356881db" + "ad134e8b-49d9-4af5-bfde-170f1a6ea293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +781,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:19:29 GMT" + "Thu, 09 Jul 2015 19:15:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -799,13 +799,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4f7d94a8-7b9b-4086-80d6-cbdd93b5f439" + "45c05cda-86df-4624-9cb4-0f7180be66a6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 16 Mar 2015 18:19:29 GMT" + "Thu, 09 Jul 2015 19:15:24 GMT" ] }, "ResponseBody": "", @@ -814,7 +814,7 @@ "chunked" ], "request-id": [ - "26e0d0d3-2075-4ccf-82dd-c28bca3fce8d" + "18b52f59-41a2-4abc-95bd-b3ec3b4d5c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -823,7 +823,7 @@ "3.0" ], "Date": [ - "Mon, 16 Mar 2015 18:19:29 GMT" + "Thu, 09 Jul 2015 19:15:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilePipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilePipeline.json index bb1fa646a71d..50f69b614123 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilePipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilePipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14946" ], "x-ms-request-id": [ - "a4864a61-7911-4538-a995-4204b4805df0" + "abf884c0-4077-474d-8df7-89f11e19ede5" ], "x-ms-correlation-request-id": [ - "a4864a61-7911-4538-a995-4204b4805df0" + "abf884c0-4077-474d-8df7-89f11e19ede5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212723Z:a4864a61-7911-4538-a995-4204b4805df0" + "WESTUS:20150709T191720Z:abf884c0-4077-474d-8df7-89f11e19ede5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:23 GMT" + "Thu, 09 Jul 2015 19:17:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 21:27:23 GMT" + "Thu, 09 Jul 2015 19:17:21 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "dda73c49-cd29-4f21-b877-40a3d928586f" + "d1e3c874-f8e5-412c-9cb9-acf051cf2b86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14968" ], "x-ms-request-id": [ - "dbb86bc9-ea0d-4254-b5f8-5fcda6b6660b" + "456dac2a-e887-4e52-a31b-d102f752e9ec" ], "x-ms-correlation-request-id": [ - "dbb86bc9-ea0d-4254-b5f8-5fcda6b6660b" + "456dac2a-e887-4e52-a31b-d102f752e9ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212723Z:dbb86bc9-ea0d-4254-b5f8-5fcda6b6660b" + "WESTUS:20150709T191721Z:456dac2a-e887-4e52-a31b-d102f752e9ec" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:23 GMT" + "Thu, 09 Jul 2015 19:17:20 GMT" ], "ETag": [ - "0x8D23A109CB1BD3D" + "0x8D2889303E00CA3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "7d2d4f6d-420d-4083-8aed-c9faeefbc625" + "369d9273-03b4-4545-8cb2-e5ddbfc300b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1185" ], "x-ms-request-id": [ - "4bb98bf0-a96a-4a6a-9583-8b759514082f" + "51eb70b2-d38d-43d6-884a-b2a8b5e4d506" ], "x-ms-correlation-request-id": [ - "4bb98bf0-a96a-4a6a-9583-8b759514082f" + "51eb70b2-d38d-43d6-884a-b2a8b5e4d506" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212723Z:4bb98bf0-a96a-4a6a-9583-8b759514082f" + "WESTUS:20150709T191721Z:51eb70b2-d38d-43d6-884a-b2a8b5e4d506" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:23 GMT" + "Thu, 09 Jul 2015 19:17:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0436f984-51f3-440c-a225-cab7f943f995" + "1d080909-39fc-4a8f-925a-10eeb82a44f4" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:23 GMT" + "Thu, 09 Jul 2015 19:17:21 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-1900272697_1-20150331t200107z\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T20:05:49.9151074Z\",\r\n \"lastBootTime\": \"2015-03-31T20:05:49.7391087Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T20:01:07.1482714Z\",\r\n \"ipAddress\": \"100.77.160.57\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t200107z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-03-31T20:05:49.9521089Z\",\r\n \"endTime\": \"2015-03-31T20:05:51.5957379Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 10,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "045be308-ad12-4b4c-a3e8-10d21ef81648" + "15a711b2-a151-473b-aff3-17e02a35014c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:24 GMT" + "Thu, 09 Jul 2015 19:17:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -214,8 +214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=False", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=False", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "fce35c88-7f38-4d80-a202-6854c4cf819a" + "b4a9420d-556b-4fd2-976b-42c213586cc5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:24 GMT" + "Thu, 09 Jul 2015 19:17:22 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "c71a3d36-44fc-465a-a687-8c09c4080a95" + "825a61b0-f58d-4463-93a5-4cba092cddb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:25 GMT" + "Thu, 09 Jul 2015 19:17:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -261,6 +261,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesByFilter.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesByFilter.json index 05da22fbc289..436f3ab02cf4 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesByFilter.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesByFilter.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14940" ], "x-ms-request-id": [ - "a8df4612-33e1-4eca-981f-e779db665877" + "db0c8a74-9127-4f8e-8429-5c110b88c062" ], "x-ms-correlation-request-id": [ - "a8df4612-33e1-4eca-981f-e779db665877" + "db0c8a74-9127-4f8e-8429-5c110b88c062" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212729Z:a8df4612-33e1-4eca-981f-e779db665877" + "WESTUS:20150709T191658Z:db0c8a74-9127-4f8e-8429-5c110b88c062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:28 GMT" + "Thu, 09 Jul 2015 19:16:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 21:27:29 GMT" + "Thu, 09 Jul 2015 19:16:59 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "fa928d82-7b2d-4a83-a1a9-95b880acd4bf" + "fa09da7a-23df-4bc3-a4f1-98e5e0c6d072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14947" ], "x-ms-request-id": [ - "fcc313a2-8abc-4945-9e34-63cffb310092" + "488b0862-6087-4382-b495-df2e6825ee6f" ], "x-ms-correlation-request-id": [ - "fcc313a2-8abc-4945-9e34-63cffb310092" + "488b0862-6087-4382-b495-df2e6825ee6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212729Z:fcc313a2-8abc-4945-9e34-63cffb310092" + "WESTUS:20150709T191659Z:488b0862-6087-4382-b495-df2e6825ee6f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:28 GMT" + "Thu, 09 Jul 2015 19:16:58 GMT" ], "ETag": [ - "0x8D23A10A045F96F" + "0x8D28892F6A1E423" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "9fc24be1-3ce3-4c99-85c7-89980eddc90f" + "57cabe46-0bb4-4534-b4bc-3b1427c56b76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1172" ], "x-ms-request-id": [ - "a016a274-7d70-40fa-a117-c4c459acd95f" + "0ba2f925-acfa-4892-971a-294ba5bca537" ], "x-ms-correlation-request-id": [ - "a016a274-7d70-40fa-a117-c4c459acd95f" + "0ba2f925-acfa-4892-971a-294ba5bca537" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212729Z:a016a274-7d70-40fa-a117-c4c459acd95f" + "WESTUS:20150709T191659Z:0ba2f925-acfa-4892-971a-294ba5bca537" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:29 GMT" + "Thu, 09 Jul 2015 19:16:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=False&$filter=startswith(name%2C's')", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3cyUyNyUyOQ==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=False&$filter=startswith(name%2C's')", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3cyUyNyUyOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6b06b37f-dc1c-477d-9be4-773021dd7320" + "03114fa8-6dbd-4b95-b583-c8cd891a9766" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:29 GMT" + "Thu, 09 Jul 2015 19:16:59 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "f8726a18-4e3f-4ad7-9d14-6a07f351dc30" + "95867e68-c55c-43e9-9d6d-a25111b3e372" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:30 GMT" + "Thu, 09 Jul 2015 19:16:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -214,8 +214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=False&$filter=startswith(name%2C's')", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3cyUyNyUyOQ==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=False&$filter=startswith(name%2C's')", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3cyUyNyUyOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1ef7837a-97eb-462a-b347-9ff36cc3f23e" + "46c65920-151e-4030-b37c-3e7967660636" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:31 GMT" + "Thu, 09 Jul 2015 19:17:00 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "1313cb9a-f363-4d67-aa86-305b5f159748" + "84e69a53-822b-4293-bd43-fcd7418d4651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:31 GMT" + "Thu, 09 Jul 2015 19:17:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -259,8 +259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -268,16 +268,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6d8bab8d-7330-436b-95a5-f79f8238d57c" + "45abb274-7b02-4ab8-8d57-1738f6f6a64d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:30 GMT" + "Thu, 09 Jul 2015 19:17:00 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-1900272697_1-20150331t200107z\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T20:05:49.9151074Z\",\r\n \"lastBootTime\": \"2015-03-31T20:05:49.7391087Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T20:01:07.1482714Z\",\r\n \"ipAddress\": \"100.77.160.57\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t200107z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-03-31T20:05:49.9521089Z\",\r\n \"endTime\": \"2015-03-31T20:05:51.5957379Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 10,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -286,7 +286,7 @@ "chunked" ], "request-id": [ - "402b81fa-666a-4384-816e-17b1c60be8b9" + "bf56409b-c89e-44b0-8c4f-83dbec276eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,7 +295,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:31 GMT" + "Thu, 09 Jul 2015 19:17:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,6 +306,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesRecursive.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesRecursive.json index 9189a1dbd340..f7c8f0ffc855 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesRecursive.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesRecursive.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14935" ], "x-ms-request-id": [ - "2f52dc1d-87bd-4092-8814-8e74bafd6660" + "12e2bc47-533e-48c9-b2e0-28aa5c6f5d65" ], "x-ms-correlation-request-id": [ - "2f52dc1d-87bd-4092-8814-8e74bafd6660" + "12e2bc47-533e-48c9-b2e0-28aa5c6f5d65" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212835Z:2f52dc1d-87bd-4092-8814-8e74bafd6660" + "WESTUS:20150709T191926Z:12e2bc47-533e-48c9-b2e0-28aa5c6f5d65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:28:35 GMT" + "Thu, 09 Jul 2015 19:19:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 21:28:36 GMT" + "Thu, 09 Jul 2015 19:19:27 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d075dcc1-b2b8-4130-9876-3b9b57e2d5ce" + "c1bfa957-f1bd-4ec4-8871-958cb4b34503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14940" ], "x-ms-request-id": [ - "2aeb4796-1d74-45fb-a614-cfa85eed2a9a" + "086ec9a0-9b4c-45df-9213-7fa5e870de9b" ], "x-ms-correlation-request-id": [ - "2aeb4796-1d74-45fb-a614-cfa85eed2a9a" + "086ec9a0-9b4c-45df-9213-7fa5e870de9b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212836Z:2aeb4796-1d74-45fb-a614-cfa85eed2a9a" + "WESTUS:20150709T191927Z:086ec9a0-9b4c-45df-9213-7fa5e870de9b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:28:35 GMT" + "Thu, 09 Jul 2015 19:19:26 GMT" ], "ETag": [ - "0x8D23A10C816B715" + "0x8D288934ED760E9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "833e984f-d99e-4f26-ac1f-193db5573157" + "dd43aea6-840d-4a67-9da5-3a132368c127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1168" ], "x-ms-request-id": [ - "5c128f89-38e2-4f0a-bc2c-24d2915eb14b" + "cd9aab7b-c152-4b95-92c4-c45f18b00585" ], "x-ms-correlation-request-id": [ - "5c128f89-38e2-4f0a-bc2c-24d2915eb14b" + "cd9aab7b-c152-4b95-92c4-c45f18b00585" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212836Z:5c128f89-38e2-4f0a-bc2c-24d2915eb14b" + "WESTUS:20150709T191927Z:cd9aab7b-c152-4b95-92c4-c45f18b00585" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:28:36 GMT" + "Thu, 09 Jul 2015 19:19:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=False&$filter=startswith(name%2C'startup')", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3c3RhcnR1cCUyNyUyOQ==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=False&$filter=startswith(name%2C'startup')", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3c3RhcnR1cCUyNyUyOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7e37b813-4da5-4444-ada1-a52c789a4071" + "2941e257-3903-43e4-8933-3308a0da0e19" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:28:36 GMT" + "Thu, 09 Jul 2015 19:19:27 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "e83a1446-7569-4704-bf9a-eafb21e73fdc" + "c716e8a2-24a3-45d6-ba64-20f59b3e61b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:28:40 GMT" + "Thu, 09 Jul 2015 19:19:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -214,8 +214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=True&$filter=startswith(name%2C'startup')", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1UcnVlJiRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjdzdGFydHVwJTI3JTI5", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=True&$filter=startswith(name%2C'startup')", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1UcnVlJiRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjdzdGFydHVwJTI3JTI5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "2fcd23da-804a-4b10-bdad-d9d058caf01d" + "2e654afe-6a26-4193-bd87-1bfae2009ebb" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:28:37 GMT" + "Thu, 09 Jul 2015 19:19:27 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\\\\ProcessEnv.cmd\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\\\\ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-31T20:05:51.5577376Z\",\r\n \"lastModified\": \"2015-03-31T20:05:51.5587377Z\",\r\n \"contentLength\": \"1751\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\stderr.txt\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\\\\stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-31T20:05:51.3017377Z\",\r\n \"lastModified\": \"2015-03-31T20:05:51.3017377Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\stdout.txt\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\\\\stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-03-31T20:05:51.3017377Z\",\r\n \"lastModified\": \"2015-03-31T20:05:51.5687359Z\",\r\n \"contentLength\": \"7\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\wd\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\\\\wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\\\\ProcessEnv.cmd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\\\\ProcessEnv.cmd\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:08:36.470202Z\",\r\n \"lastModified\": \"2015-07-09T19:08:36.4722005Z\",\r\n \"contentLength\": \"1749\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\stderr.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\\\\stderr.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:08:36.3016231Z\",\r\n \"lastModified\": \"2015-07-09T19:08:36.3016231Z\",\r\n \"contentLength\": \"0\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\stdout.txt\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\\\\stdout.txt\",\r\n \"isDirectory\": false,\r\n \"properties\": {\r\n \"creationTime\": \"2015-07-09T19:08:36.2966236Z\",\r\n \"lastModified\": \"2015-07-09T19:08:36.4822017Z\",\r\n \"contentLength\": \"7\",\r\n \"contentType\": \"application/octet-stream\"\r\n }\r\n },\r\n {\r\n \"name\": \"startup\\\\wd\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\\\\wd\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "44cb2a3a-fb02-472d-8322-80318a0d8a3c" + "8f20f49e-32dc-4776-8943-6f1008148c84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:28:38 GMT" + "Thu, 09 Jul 2015 19:19:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -261,6 +261,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesWithMaxCount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesWithMaxCount.json index e7af1a9f1894..19733b00e309 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesWithMaxCount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestListVMFilesWithMaxCount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14967" ], "x-ms-request-id": [ - "fdd06e69-436c-40f3-b4ff-48463f2eae47" + "cfd43064-9d8d-43fb-ab98-0aff95869af6" ], "x-ms-correlation-request-id": [ - "fdd06e69-436c-40f3-b4ff-48463f2eae47" + "cfd43064-9d8d-43fb-ab98-0aff95869af6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212754Z:fdd06e69-436c-40f3-b4ff-48463f2eae47" + "WESTUS:20150709T192058Z:cfd43064-9d8d-43fb-ab98-0aff95869af6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:53 GMT" + "Thu, 09 Jul 2015 19:20:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"filetests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"filetests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 21:27:54 GMT" + "Thu, 09 Jul 2015 19:21:00 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a9208f0b-2a92-4f2e-a7ff-c5f67b562d58" + "975d7056-c4ab-42e3-b3bc-8c3bde814141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14935" ], "x-ms-request-id": [ - "569c84e4-325c-4724-b16e-bba9c3546ec2" + "3a7fc130-5c26-48f5-a404-2a71386138cc" ], "x-ms-correlation-request-id": [ - "569c84e4-325c-4724-b16e-bba9c3546ec2" + "3a7fc130-5c26-48f5-a404-2a71386138cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212754Z:569c84e4-325c-4724-b16e-bba9c3546ec2" + "WESTUS:20150709T192100Z:3a7fc130-5c26-48f5-a404-2a71386138cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:54 GMT" + "Thu, 09 Jul 2015 19:20:59 GMT" ], "ETag": [ - "0x8D23A10AF56BC8C" + "0x8D2889385EE4A1F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9maWxldGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"filetests\",\r\n \"primary\": \"Gw2XrSTG+Z3A2G6CZkDy61gKKhkeV5hWXXsshX/0Esh+DZFysFAE3mUY7sYC4v3HXZ8vi/HHDWpluMiWyyxB0Q==\",\r\n \"secondary\": \"wXBCVweqkm13+Nb/xq4QXqBaEMem6ZRfJNrSm44s1yY3sfNZFhz0fHmSjqEDpvgHq7ab9knTh4M3Ay6wQh0bAQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "709b06fe-590f-42bd-a7d8-9a113982d8ce" + "bea9e07a-aa8d-4ca5-94ef-3c354c2e9bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1177" ], "x-ms-request-id": [ - "87956a7c-2832-4bea-939e-146b05ce5dee" + "62fec282-c7b0-41bd-852d-81bddf549416" ], "x-ms-correlation-request-id": [ - "87956a7c-2832-4bea-939e-146b05ce5dee" + "62fec282-c7b0-41bd-852d-81bddf549416" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T212755Z:87956a7c-2832-4bea-939e-146b05ce5dee" + "WESTUS:20150709T192100Z:62fec282-c7b0-41bd-852d-81bddf549416" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 21:27:54 GMT" + "Thu, 09 Jul 2015 19:20:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=False", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=False", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "5989cb2b-c22f-486d-adc5-2d3da4b62cc9" + "19f3ec37-f583-4676-98c0-22db3f3880c8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:55 GMT" + "Thu, 09 Jul 2015 19:21:00 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "d366b712-eb10-42fb-91ad-ee0b0fe12633" + "16c1ad12-e746-4ea0-b16b-a5eb65bc9304" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:54 GMT" + "Thu, 09 Jul 2015 19:20:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -214,8 +214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files?api-version=2014-10-01.1.0&recursive=False", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files?api-version=2014-10-01.1.0&recursive=False", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJnJlY3Vyc2l2ZT1GYWxzZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "28b655b7-fdf3-4672-b7d1-137518a754af" + "bec3d9ba-a55a-4a0d-b3ec-bbdcda3d4c84" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:56 GMT" + "Thu, 09 Jul 2015 19:21:01 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#files\",\r\n \"value\": [\r\n {\r\n \"name\": \"shared\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/shared\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"startup\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/startup\",\r\n \"isDirectory\": true\r\n },\r\n {\r\n \"name\": \"workitems\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/files/workitems\",\r\n \"isDirectory\": true\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "a1dd53ad-3ad4-47f6-89d2-347607f3b554" + "b05d392f-93e2-4b8d-9ee4-9d5365bad856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:57 GMT" + "Thu, 09 Jul 2015 19:21:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -259,8 +259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQyMDAxMDd6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -268,16 +268,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "3b88a487-7b5f-4fc3-bb47-a079fe3f1590" + "a2f01768-e18e-4466-a33e-4ff994cc3c9a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 21:27:55 GMT" + "Thu, 09 Jul 2015 19:21:00 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://filetests.batch-test.windows-int.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-1900272697_1-20150331t200107z\",\r\n \"url\": \"https://filetests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t200107z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T20:05:49.9151074Z\",\r\n \"lastBootTime\": \"2015-03-31T20:05:49.7391087Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T20:01:07.1482714Z\",\r\n \"ipAddress\": \"100.77.160.57\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t200107z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-03-31T20:05:49.9521089Z\",\r\n \"endTime\": \"2015-03-31T20:05:51.5957379Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 14,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -286,7 +286,7 @@ "chunked" ], "request-id": [ - "2f44455b-57fa-47af-b801-b7a056ec2600" + "9c55803a-62a5-4011-a3b9-f62ce6cbc29f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,7 +295,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 21:27:58 GMT" + "Thu, 09 Jul 2015 19:21:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,6 +306,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJob.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJob.json index 5e5773fc670d..a61e66443366 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJob.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJob.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-job?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLWpvYj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "ec06dd1b-3b77-4938-84b0-ca9a3ebead0c" + ], + "x-ms-correlation-request-id": [ + "ec06dd1b-3b77-4938-84b0-ca9a3ebead0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192553Z:ec06dd1b-3b77-4938-84b0-ca9a3ebead0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:25:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job\",\r\n \"name\": \"test-delete-job\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" ], "x-ms-request-id": [ - "f44e9d47-8301-4e72-b97d-6423b6a9aab8" + "e678dbcc-3b73-492f-a53e-bd5230c100b6" ], "x-ms-correlation-request-id": [ - "f44e9d47-8301-4e72-b97d-6423b6a9aab8" + "e678dbcc-3b73-492f-a53e-bd5230c100b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T191407Z:f44e9d47-8301-4e72-b97d-6423b6a9aab8" + "WESTUS:20150709T192555Z:e678dbcc-3b73-492f-a53e-bd5230c100b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:14:07 GMT" + "Thu, 09 Jul 2015 19:25:54 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZWpvYj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:25:54 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], "request-id": [ - "955968c6-b5c4-4e8c-8763-7a0d980469df" + "0498b738-1f35-4e16-b6c1-15828bb05cca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], "x-ms-request-id": [ - "aaaf3c7d-41ac-4c98-9ae9-2e64055d629c" + "6924abfa-9686-4d9c-8985-3d7248666a25" ], "x-ms-correlation-request-id": [ - "aaaf3c7d-41ac-4c98-9ae9-2e64055d629c" + "6924abfa-9686-4d9c-8985-3d7248666a25" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T191412Z:aaaf3c7d-41ac-4c98-9ae9-2e64055d629c" + "WESTUS:20150709T192554Z:6924abfa-9686-4d9c-8985-3d7248666a25" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:14:11 GMT" + "Thu, 09 Jul 2015 19:25:53 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob/operationResults/955968c6-b5c4-4e8c-8763-7a0d980469df?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D288943595A96A" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob/operationResults/955968c6-b5c4-4e8c-8763-7a0d980469df?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZWpvYi9vcGVyYXRpb25SZXN1bHRzLzk1NTk2OGM2LWI1YzQtNGU4Yy04NzYzLTdhMGQ5ODA0NjlkZj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletejob\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletejob.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "331" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 19:14:11 GMT" + "Thu, 09 Jul 2015 19:25:56 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "b390cd16-40f6-4461-8c69-54b8f10bc9d6" + "aa54202e-6d2a-4850-b384-2a7245255e0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14932" ], "x-ms-request-id": [ - "f6e05dc4-34ff-401e-8e36-6b81a6607e3a" + "2ad310d6-78b9-443d-9856-064596c73f0a" ], "x-ms-correlation-request-id": [ - "f6e05dc4-34ff-401e-8e36-6b81a6607e3a" + "2ad310d6-78b9-443d-9856-064596c73f0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T191412Z:f6e05dc4-34ff-401e-8e36-6b81a6607e3a" + "WESTUS:20150709T192555Z:2ad310d6-78b9-443d-9856-064596c73f0a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:14:12 GMT" + "Thu, 09 Jul 2015 19:25:55 GMT" ], "ETag": [ - "0x8D224C687EF03EE" + "0x8D288943665333A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZWpvYi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletejob\",\r\n \"primary\": \"/ae3hUFoxdhReJoGqbvRS8+mXKFBmvtJbGZYovlEZIxWMWS6ac+x7O4vxtIE2M+CgULsZhA2MenGjD28Pv1SzA==\",\r\n \"secondary\": \"/3GWkeitTBeorZRZrOjELm8FypbTicPbMVXgSDIPhXMqOesS5LN0tK7Vrz/BiOGBfTgCaxdnI6CibeEEyBHH3Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "235" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "b5f65f9d-dab4-4dd4-9fc3-738426f1fe1c" + "aa3fb879-cf06-466d-b146-da778045b81e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1162" ], "x-ms-request-id": [ - "25468a62-1d73-443e-b023-33b98db365ed" + "cf91a6fe-a03d-4ec5-9286-bee5d74d6598" ], "x-ms-correlation-request-id": [ - "25468a62-1d73-443e-b023-33b98db365ed" + "cf91a6fe-a03d-4ec5-9286-bee5d74d6598" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T191412Z:25468a62-1d73-443e-b023-33b98db365ed" + "WESTUS:20150709T192554Z:cf91a6fe-a03d-4ec5-9286-bee5d74d6598" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:14:12 GMT" + "Thu, 09 Jul 2015 19:25:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZWpvYi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletejob\",\r\n \"primary\": \"/ae3hUFoxdhReJoGqbvRS8+mXKFBmvtJbGZYovlEZIxWMWS6ac+x7O4vxtIE2M+CgULsZhA2MenGjD28Pv1SzA==\",\r\n \"secondary\": \"/3GWkeitTBeorZRZrOjELm8FypbTicPbMVXgSDIPhXMqOesS5LN0tK7Vrz/BiOGBfTgCaxdnI6CibeEEyBHH3Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "235" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "d765a072-d411-465f-ba3f-52b2ff56a8bf" + "3d99f567-b4d1-45b5-b2de-3f05e0525ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1161" ], "x-ms-request-id": [ - "6137e7f8-aa35-4ad7-b8b1-0ec5742f545c" + "434c3175-ea47-4ff5-ab28-4d97269abea1" ], "x-ms-correlation-request-id": [ - "6137e7f8-aa35-4ad7-b8b1-0ec5742f545c" + "434c3175-ea47-4ff5-ab28-4d97269abea1" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T191523Z:6137e7f8-aa35-4ad7-b8b1-0ec5742f545c" + "WESTUS:20150709T192556Z:434c3175-ea47-4ff5-ab28-4d97269abea1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:15:23 GMT" + "Thu, 09 Jul 2015 19:25:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1bda50f6-7f5b-4e27-b1ba-8a9c8789bf3e" + "b88df7fe-c825-431f-abce-91bc0a634a2c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:14:56 GMT" + "Thu, 09 Jul 2015 19:25:54 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 19:14:56 GMT" + "Thu, 09 Jul 2015 19:25:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e62a54e0-4e76-4406-8fb9-4fb38828cf4d" + "775b133a-d073-462c-90b8-6b32c3902c27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testdeletejob.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Date": [ - "Wed, 04 Mar 2015 19:14:56 GMT" + "Thu, 09 Jul 2015 19:25:55 GMT" ], "ETag": [ - "0x8D224C6A2C5AA36" + "0x8D2889435FF7C01" ], "Location": [ - "https://testdeletejob.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "07fb56eb-9ca2-44aa-88dc-5b72317e5cc6" + "c6ee54ac-545b-4120-ae49-b323da12598f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:15:17 GMT" + "Thu, 09 Jul 2015 19:25:55 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletejob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletejob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224C6A2C5AA36\",\r\n \"lastModified\": \"2015-03-04T19:14:56.564895Z\",\r\n \"creationTime\": \"2015-03-04T19:14:56.564895Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T19:14:56.564895Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletejob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2889435FF7C01\",\r\n \"lastModified\": \"2015-07-09T19:25:55.5134465Z\",\r\n \"creationTime\": \"2015-07-09T19:25:55.5134465Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:25:55.5134465Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 19:14:56 GMT" + "Thu, 09 Jul 2015 19:25:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "10a1ba42-a9ac-441b-8763-61c33e27eb0b" + "89126c6a-9fcd-47c6-b036-ff7d3d80cb94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,121 +436,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:15:16 GMT" - ], - "ETag": [ - "0x8D224C6A2C5AA36" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob\",\r\n \"name\": \"testdeletejob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "753" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "bf348fc9-6fc6-4ca4-b620-171100cbbaaf" - ], - "x-ms-correlation-request-id": [ - "bf348fc9-6fc6-4ca4-b620-171100cbbaaf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T191522Z:bf348fc9-6fc6-4ca4-b620-171100cbbaaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:15:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZWpvYj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testdeletejob\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletejob.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "331" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 19:15:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "4615841d-34e7-46ad-ad15-bc73294f9c6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "0ca0fede-da25-4e1e-8441-90bf81854558" - ], - "x-ms-correlation-request-id": [ - "0ca0fede-da25-4e1e-8441-90bf81854558" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T191523Z:0ca0fede-da25-4e1e-8441-90bf81854558" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:15:23 GMT" + "Thu, 09 Jul 2015 19:25:54 GMT" ], "ETag": [ - "0x8D224C6B2255D2C" + "0x8D2889435FF7C01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -526,16 +457,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a185aca8-5642-45a1-8ea6-248540dc40e8" + "88a4aaf0-989d-4784-858f-535d7ca0c614" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:15:27 GMT" + "Thu, 09 Jul 2015 19:25:56 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletejob.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testdeletejob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224C6A2D03173\",\r\n \"lastModified\": \"2015-03-04T19:14:56.6338931Z\",\r\n \"creationTime\": \"2015-03-04T19:14:56.5988856Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T19:14:56.6338931Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T19:14:56.6338931Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D288943609521C\",\r\n \"lastModified\": \"2015-07-09T19:25:55.57791Z\",\r\n \"creationTime\": \"2015-07-09T19:25:55.5591985Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:25:55.57791Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:25:55.57791Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -544,7 +475,7 @@ "chunked" ], "request-id": [ - "84610676-cb62-4b0a-ac9b-3f9e40b9d4ed" + "c78612fb-cbcd-4b59-ba0d-36a2489f1c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,7 +484,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:15:26 GMT" + "Thu, 09 Jul 2015 19:25:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -571,16 +502,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9df0c1f8-5546-4c3d-8a78-cf337e3f9973" + "23f02ef5-5a36-49af-a493-e30f739f98db" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:15:38 GMT" + "Thu, 09 Jul 2015 19:25:57 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletejob.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D288943609521C\",\r\n \"lastModified\": \"2015-07-09T19:25:55.57791Z\",\r\n \"creationTime\": \"2015-07-09T19:25:55.5591985Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:25:57.3704568Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:25:55.57791Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:25:55.57791Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -589,7 +520,7 @@ "chunked" ], "request-id": [ - "8212efc9-2f90-4365-82cf-5c28faf3ecaa" + "2b261348-70a8-4fe7-abdf-322aa3697f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,7 +529,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:15:38 GMT" + "Thu, 09 Jul 2015 19:25:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -616,13 +547,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e3e5ffc6-5846-41ed-bdd3-dac6481dfa89" + "de95d2fb-c8e1-4842-a279-567bd88a37f1" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:15:34 GMT" + "Thu, 09 Jul 2015 19:25:56 GMT" ] }, "ResponseBody": "", @@ -631,7 +562,7 @@ "chunked" ], "request-id": [ - "06d79677-584e-4a6e-a79f-bd75a7b213b0" + "f54bd960-dece-44d3-ab93-0713ad4f3544" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,7 +571,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:15:34 GMT" + "Thu, 09 Jul 2015 19:25:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -658,13 +589,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4fd370c8-b9dc-4004-b236-be43b19a7516" + "c8c18fe1-1dc2-47b4-93f7-d0680a61807a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:15:43 GMT" + "Thu, 09 Jul 2015 19:25:57 GMT" ] }, "ResponseBody": "", @@ -673,7 +604,7 @@ "chunked" ], "request-id": [ - "cf441bf9-6dac-4267-a867-43485c696e94" + "e217d6ba-f13c-4171-81ef-5cc59b316cac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -682,337 +613,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:15:42 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZWpvYj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "270c2e87-15be-4da3-bcd3-1ff7f1b7c2b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" - ], - "x-ms-request-id": [ - "8bc85972-9f9a-4548-b2c2-ee6e4985e76a" - ], - "x-ms-correlation-request-id": [ - "8bc85972-9f9a-4548-b2c2-ee6e4985e76a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T191546Z:8bc85972-9f9a-4548-b2c2-ee6e4985e76a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:15:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob/operationResults/270c2e87-15be-4da3-bcd3-1ff7f1b7c2b3?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:25:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job/providers/Microsoft.Batch/batchAccounts/testdeletejob/operationResults/270c2e87-15be-4da3-bcd3-1ff7f1b7c2b3?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZWpvYi9vcGVyYXRpb25SZXN1bHRzLzI3MGMyZTg3LTE1YmUtNGRhMy1iY2QzLTFmZjdmMWI3YzJiMz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 19:15:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "a73a5532-4fda-42c6-8167-e38c1d90f9e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "306e1e11-6673-4107-b26f-0c90efe4eba4" - ], - "x-ms-correlation-request-id": [ - "306e1e11-6673-4107-b26f-0c90efe4eba4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T191546Z:306e1e11-6673-4107-b26f-0c90efe4eba4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:15:45 GMT" - ], - "ETag": [ - "0x8D224C6C004C812" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-job?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLWpvYj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" - ], - "x-ms-request-id": [ - "15e326ac-9361-4974-b9ba-bf51897aaae2" - ], - "x-ms-correlation-request-id": [ - "15e326ac-9361-4974-b9ba-bf51897aaae2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T191548Z:15e326ac-9361-4974-b9ba-bf51897aaae2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:15:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVTazlDTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "db12bda8-e0f8-451e-ac01-a4f13f043d66" - ], - "x-ms-correlation-request-id": [ - "db12bda8-e0f8-451e-ac01-a4f13f043d66" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T191548Z:db12bda8-e0f8-451e-ac01-a4f13f043d66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:15:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVTazlDTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "c1b9c521-ed27-4c46-985a-7632311d3915" - ], - "x-ms-correlation-request-id": [ - "c1b9c521-ed27-4c46-985a-7632311d3915" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T191603Z:c1b9c521-ed27-4c46-985a-7632311d3915" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:16:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVTazlDTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "eae409dd-eb4b-4611-abf5-eeb36792a597" - ], - "x-ms-correlation-request-id": [ - "eae409dd-eb4b-4611-abf5-eeb36792a597" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T191618Z:eae409dd-eb4b-4611-abf5-eeb36792a597" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:16:18 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJobPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJobPipeline.json index b6bfc1cf115e..526bb2c8124f 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJobPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDeleteJobPipeline.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-job-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "c3ce66eb-2f87-41d3-bcdf-05f58f3f880a" + ], + "x-ms-correlation-request-id": [ + "c3ce66eb-2f87-41d3-bcdf-05f58f3f880a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T193029Z:c3ce66eb-2f87-41d3-bcdf-05f58f3f880a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:30:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe\",\r\n \"name\": \"test-delete-job-pipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "193" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" ], "x-ms-request-id": [ - "522fe081-9786-44b6-a9e5-2bdf64077991" + "e17e9879-addf-4fc9-9e19-b7f7e6939a59" ], "x-ms-correlation-request-id": [ - "522fe081-9786-44b6-a9e5-2bdf64077991" + "e17e9879-addf-4fc9-9e19-b7f7e6939a59" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T192220Z:522fe081-9786-44b6-a9e5-2bdf64077991" + "WESTUS:20150709T193031Z:e17e9879-addf-4fc9-9e19-b7f7e6939a59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:22:19 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRlam9icGlwZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:30:30 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" - ], "request-id": [ - "d51ed99e-d1e6-40ec-9586-5db7a86a9ae2" + "998c63f7-1bb2-4f6a-9a0c-44aae55d1ecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], "x-ms-request-id": [ - "23ec10dd-8701-475a-956e-809ae93d2f6b" + "84588649-c078-46cf-891c-3d54d26c516a" ], "x-ms-correlation-request-id": [ - "23ec10dd-8701-475a-956e-809ae93d2f6b" + "84588649-c078-46cf-891c-3d54d26c516a" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T192224Z:23ec10dd-8701-475a-956e-809ae93d2f6b" + "WESTUS:20150709T193030Z:84588649-c078-46cf-891c-3d54d26c516a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:22:24 GMT" + "Thu, 09 Jul 2015 19:30:30 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe/operationResults/d51ed99e-d1e6-40ec-9586-5db7a86a9ae2?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28894D9CF3B56" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe/operationResults/d51ed99e-d1e6-40ec-9586-5db7a86a9ae2?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRlam9icGlwZS9vcGVyYXRpb25SZXN1bHRzL2Q1MWVkOTllLWQxZTYtNDBlYy05NTg2LTVkYjdhODZhOWFlMj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletejobpipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletejobpipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 19:22:24 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "059b77dc-bc33-4aa0-b5ee-f871e11ab76e" + "20c6e229-0772-4cc9-a3e8-3244d49a7c74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14930" ], "x-ms-request-id": [ - "c9ef20f7-e1c5-41b9-a740-e7f8d81948d8" + "b6da6950-5254-4989-9838-dbc7b1d00667" ], "x-ms-correlation-request-id": [ - "c9ef20f7-e1c5-41b9-a740-e7f8d81948d8" + "b6da6950-5254-4989-9838-dbc7b1d00667" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T192225Z:c9ef20f7-e1c5-41b9-a740-e7f8d81948d8" + "WESTUS:20150709T193031Z:b6da6950-5254-4989-9838-dbc7b1d00667" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:22:24 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ], "ETag": [ - "0x8D224C7ADE64195" + "0x8D28894DA8E8AA4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRlam9icGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletejobpipe\",\r\n \"primary\": \"ZLk02t8d8AbA1HtY/53v7WjuxOYXd26xNTY6DE3CABwCXPbaP93isMaRHfvPyShZMCYf3Rf8HKBU8ZydlBzrEg==\",\r\n \"secondary\": \"c318DCoHTdYojGfsSl8HYLKmWIVvszQla54MnG3tng4IbzEC+gYenun2Yjr1kB1YwzNYzaD7NjgKsoi6Dw9elg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "fd663374-ff6a-472f-a01c-37b0485ac0ec" + "a1e6d4b4-d273-4eff-af53-631ef5e7637f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1161" ], "x-ms-request-id": [ - "e60d242e-134b-48c6-9a19-c6db3afa3556" + "885b2e68-f6f4-4b46-a528-42bc7c51187b" ], "x-ms-correlation-request-id": [ - "e60d242e-134b-48c6-9a19-c6db3afa3556" + "885b2e68-f6f4-4b46-a528-42bc7c51187b" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T192225Z:e60d242e-134b-48c6-9a19-c6db3afa3556" + "WESTUS:20150709T193030Z:885b2e68-f6f4-4b46-a528-42bc7c51187b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:22:24 GMT" + "Thu, 09 Jul 2015 19:30:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRlam9icGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletejobpipe\",\r\n \"primary\": \"ZLk02t8d8AbA1HtY/53v7WjuxOYXd26xNTY6DE3CABwCXPbaP93isMaRHfvPyShZMCYf3Rf8HKBU8ZydlBzrEg==\",\r\n \"secondary\": \"c318DCoHTdYojGfsSl8HYLKmWIVvszQla54MnG3tng4IbzEC+gYenun2Yjr1kB1YwzNYzaD7NjgKsoi6Dw9elg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "c6a49e50-6f5b-4b7e-9c3f-1c406ccbd86b" + "e4a4bb72-0ccf-4b8d-bdad-faab315ebd5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1160" ], "x-ms-request-id": [ - "7528443e-cbbc-42ad-8972-ade969d0cc9d" + "ab352243-2b97-4491-a40a-9e639aff039a" ], "x-ms-correlation-request-id": [ - "7528443e-cbbc-42ad-8972-ade969d0cc9d" + "ab352243-2b97-4491-a40a-9e639aff039a" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T192358Z:7528443e-cbbc-42ad-8972-ade969d0cc9d" + "WESTUS:20150709T193031Z:ab352243-2b97-4491-a40a-9e639aff039a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 19:23:57 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "942eacad-e898-41ad-b38e-2830f85f6261" + "6dae8c7a-7ccd-4080-a957-d7e05b75bdac" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:23:55 GMT" + "Thu, 09 Jul 2015 19:30:30 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 19:23:54 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6bc92b40-c930-40d9-9c33-edd7b563a7e8" + "c9e8e3d7-57bf-490f-a796-fe15706fca44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testdeletejobpipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Date": [ - "Wed, 04 Mar 2015 19:23:54 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ], "ETag": [ - "0x8D224C7E3A8B797" + "0x8D28894DA52625A" ], "Location": [ - "https://testdeletejobpipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6fc01662-a439-4cec-87a0-7f2fd5df06bf" + "9245b8ac-2ebf-447f-82e9-28ad9f145328" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:23:55 GMT" + "Thu, 09 Jul 2015 19:30:30 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletejobpipe.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletejobpipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224C7E3A8B797\",\r\n \"lastModified\": \"2015-03-04T19:23:54.9238167Z\",\r\n \"creationTime\": \"2015-03-04T19:23:54.9238167Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T19:23:54.9238167Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletejobpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894DA52625A\",\r\n \"lastModified\": \"2015-07-09T19:30:31.203081Z\",\r\n \"creationTime\": \"2015-07-09T19:30:31.203081Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:31.203081Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 19:23:54 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f3b39cab-be85-4f2c-bad9-a5a4cdbb5d3d" + "8a0fd325-a47c-4559-87ca-84cd79410694" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,121 +436,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:23:54 GMT" - ], - "ETag": [ - "0x8D224C7E3A8B797" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe\",\r\n \"name\": \"testdeletejobpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "766" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "1cf139d5-f0a0-4904-be86-78c19a2b2f41" - ], - "x-ms-correlation-request-id": [ - "1cf139d5-f0a0-4904-be86-78c19a2b2f41" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T192357Z:1cf139d5-f0a0-4904-be86-78c19a2b2f41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:23:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRlam9icGlwZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testdeletejobpipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletejobpipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 19:23:57 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "76d82980-8740-4296-b6fc-920e26a3637e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "c69d47df-d299-4d24-84ef-111fe4b5214e" - ], - "x-ms-correlation-request-id": [ - "c69d47df-d299-4d24-84ef-111fe4b5214e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T192358Z:c69d47df-d299-4d24-84ef-111fe4b5214e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:23:57 GMT" + "Thu, 09 Jul 2015 19:30:30 GMT" ], "ETag": [ - "0x8D224C7E54D6FD5" + "0x8D28894DA52625A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -526,16 +457,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "09d5de03-2a35-41de-be67-82fd85da9629" + "670ee320-91b8-46c9-bf6d-33b44f963658" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:23:58 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletejobpipe.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testdeletejobpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224C7E3B081A7\",\r\n \"lastModified\": \"2015-03-04T19:23:54.9748647Z\",\r\n \"creationTime\": \"2015-03-04T19:23:54.9578377Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T19:23:54.9748647Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T19:23:54.9748647Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D28894DA5BB130\",\r\n \"lastModified\": \"2015-07-09T19:30:31.2640816Z\",\r\n \"creationTime\": \"2015-07-09T19:30:31.2400729Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:31.2640816Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:30:31.2640816Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -544,7 +475,7 @@ "chunked" ], "request-id": [ - "e7d0e4c2-3dd9-49d2-b4f9-8819275ad843" + "1d169475-43de-408c-9548-60e5839e813d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,7 +484,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:23:58 GMT" + "Thu, 09 Jul 2015 19:30:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -571,16 +502,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "51d937a3-6e34-427d-905a-a0ad129ff1fe" + "284f1f71-4aa2-4422-9e0c-36598a1a4b66" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:23:59 GMT" + "Thu, 09 Jul 2015 19:30:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletejobpipe.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D28894DA5BB130\",\r\n \"lastModified\": \"2015-07-09T19:30:31.2640816Z\",\r\n \"creationTime\": \"2015-07-09T19:30:31.2400729Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:33.1659099Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:30:31.2640816Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:30:31.2640816Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -589,7 +520,7 @@ "chunked" ], "request-id": [ - "e31347d6-a71d-4463-8983-821d7e71c6c0" + "45604776-fd4d-44c1-a659-335b32ced53d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,7 +529,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:23:59 GMT" + "Thu, 09 Jul 2015 19:30:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -616,28 +547,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "aea4156c-17c7-4e0e-bfcc-e5f31c10a57a" + "030b6b1e-9375-489a-8659-e6e3ff475f58" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:23:58 GMT" + "Thu, 09 Jul 2015 19:30:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletejobpipe.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testdeletejobpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224C7E3B081A7\",\r\n \"lastModified\": \"2015-03-04T19:23:54.9748647Z\",\r\n \"creationTime\": \"2015-03-04T19:23:54.9578377Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T19:23:54.9748647Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T19:23:54.9748647Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D28894DA5BB130\",\r\n \"lastModified\": \"2015-07-09T19:30:31.2640816Z\",\r\n \"creationTime\": \"2015-07-09T19:30:31.2400729Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:31.2640816Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:30:31.2640816Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 19:23:54 GMT" + "Thu, 09 Jul 2015 19:30:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fae2b61b-0186-40f8-ba02-fa4dce7f8ed5" + "e4fde3f3-0d0d-4b86-9a3d-24247127fb23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,10 +577,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:23:58 GMT" + "Thu, 09 Jul 2015 19:30:32 GMT" ], "ETag": [ - "0x8D224C7E3B081A7" + "0x8D28894DA5BB130" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,13 +598,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bfdd5637-6512-4930-aef7-c34123a91887" + "acad34a9-c40c-4e94-a6aa-2d8143d83068" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:23:59 GMT" + "Thu, 09 Jul 2015 19:30:32 GMT" ] }, "ResponseBody": "", @@ -682,7 +613,7 @@ "chunked" ], "request-id": [ - "94d61805-dfee-4203-9c3b-1a7498891ae6" + "89e63f8f-3e40-4d5e-8012-aa1f8db1b025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,7 +622,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:23:59 GMT" + "Thu, 09 Jul 2015 19:30:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -709,13 +640,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9028e426-8fa6-4c00-830e-fc71e3c73115" + "6aa1c040-b68e-4e6f-9b6b-195fa58cbe4a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 19:24:00 GMT" + "Thu, 09 Jul 2015 19:30:33 GMT" ] }, "ResponseBody": "", @@ -724,7 +655,7 @@ "chunked" ], "request-id": [ - "07a38f9b-38b2-483d-8391-4014bd877993" + "d85d5d19-7709-45ab-8009-bc84cdafdec5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,337 +664,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 19:24:00 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRlam9icGlwZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "4baaba83-a7f4-42e0-80a1-89dee8e60077" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" - ], - "x-ms-request-id": [ - "bff6af76-09fb-4fa3-a26a-8e07dd3d5aad" - ], - "x-ms-correlation-request-id": [ - "bff6af76-09fb-4fa3-a26a-8e07dd3d5aad" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T192402Z:bff6af76-09fb-4fa3-a26a-8e07dd3d5aad" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:24:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe/operationResults/4baaba83-a7f4-42e0-80a1-89dee8e60077?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:30:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-job-pipe/providers/Microsoft.Batch/batchAccounts/testdeletejobpipe/operationResults/4baaba83-a7f4-42e0-80a1-89dee8e60077?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRlam9icGlwZS9vcGVyYXRpb25SZXN1bHRzLzRiYWFiYTgzLWE3ZjQtNDJlMC04MGExLTg5ZGVlOGU2MDA3Nz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 19:24:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "3d6a3968-14cc-4e99-99c5-74e1c02ce802" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "1d9e2020-60a8-49ef-8475-727a94fea8c4" - ], - "x-ms-correlation-request-id": [ - "1d9e2020-60a8-49ef-8475-727a94fea8c4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T192402Z:1d9e2020-60a8-49ef-8475-727a94fea8c4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:24:02 GMT" - ], - "ETag": [ - "0x8D224C7E82DF813" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-job-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLWpvYi1waXBlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" - ], - "x-ms-request-id": [ - "15f777fa-31b8-4757-bb0c-2a1b8ae4c274" - ], - "x-ms-correlation-request-id": [ - "15f777fa-31b8-4757-bb0c-2a1b8ae4c274" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T192404Z:15f777fa-31b8-4757-bb0c-2a1b8ae4c274" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:24:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9COjJEUElQRS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9COjJEUElQRS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVTazlDT2pKRVVFbFFSUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "74143145-f4f0-4624-bc85-ae2973d9042a" - ], - "x-ms-correlation-request-id": [ - "74143145-f4f0-4624-bc85-ae2973d9042a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T192404Z:74143145-f4f0-4624-bc85-ae2973d9042a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:24:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9COjJEUElQRS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9COjJEUElQRS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVTazlDT2pKRVVFbFFSUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "21af834a-021f-4656-be1b-5c5fa46279bf" - ], - "x-ms-correlation-request-id": [ - "21af834a-021f-4656-be1b-5c5fa46279bf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T192419Z:21af834a-021f-4656-be1b-5c5fa46279bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:24:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9COjJEUElQRS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJESk9COjJEUElQRS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVTazlDT2pKRVVFbFFSUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "fdb6f41c-6835-469f-a71f-2ee5e40728ba" - ], - "x-ms-correlation-request-id": [ - "fdb6f41c-6835-469f-a71f-2ee5e40728ba" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T192434Z:fdb6f41c-6835-469f-a71f-2ee5e40728ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 19:24:34 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobByName.json index f881cfb597e1..812f1d928f76 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobByName.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-job?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LWpvYj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "3eb63431-752d-4391-9f4b-cb70a5d7c23f" + ], + "x-ms-correlation-request-id": [ + "3eb63431-752d-4391-9f4b-cb70a5d7c23f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192616Z:3eb63431-752d-4391-9f4b-cb70a5d7c23f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 19:26:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job\",\r\n \"name\": \"test-get-job\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" ], "x-ms-request-id": [ - "8780a26d-34f6-4fa3-a29f-746fe1ca3510" + "c19679f4-0836-4a45-af3c-f5d313db6b46" ], "x-ms-correlation-request-id": [ - "8780a26d-34f6-4fa3-a29f-746fe1ca3510" + "c19679f4-0836-4a45-af3c-f5d313db6b46" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224347Z:8780a26d-34f6-4fa3-a29f-746fe1ca3510" + "WESTUS:20150709T192618Z:c19679f4-0836-4a45-af3c-f5d313db6b46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:43:46 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGdldGpvYj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:26:17 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" - ], "request-id": [ - "717bc21c-580d-42d1-a40a-d572827a01e7" + "234f8b21-b13a-4e76-9e6e-74577f8d4abc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], "x-ms-request-id": [ - "91ea8f64-ca22-46fa-a3c5-58df305df8f1" + "81adc78c-78c5-4ed2-ac79-e5a1a6713746" ], "x-ms-correlation-request-id": [ - "91ea8f64-ca22-46fa-a3c5-58df305df8f1" + "81adc78c-78c5-4ed2-ac79-e5a1a6713746" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224351Z:91ea8f64-ca22-46fa-a3c5-58df305df8f1" + "WESTUS:20150709T192617Z:81adc78c-78c5-4ed2-ac79-e5a1a6713746" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:43:50 GMT" + "Thu, 09 Jul 2015 19:26:17 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob/operationResults/717bc21c-580d-42d1-a40a-d572827a01e7?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D288944349B6D8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob/operationResults/717bc21c-580d-42d1-a40a-d572827a01e7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGdldGpvYi9vcGVyYXRpb25SZXN1bHRzLzcxN2JjMjFjLTU4MGQtNDJkMS1hNDBhLWQ1NzI4MjdhMDFlNz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testgetjob\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgetjob.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "319" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:43:50 GMT" + "Thu, 09 Jul 2015 19:26:19 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4d75121d-ce5f-4dde-a074-df46370106a2" + "9d5f83f2-50e9-4616-971b-9de2d49c0fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14924" ], "x-ms-request-id": [ - "c6744245-553d-4ffd-b5de-43192aa55161" + "59d9bed4-2e25-43ae-81d8-3d1205d884af" ], "x-ms-correlation-request-id": [ - "c6744245-553d-4ffd-b5de-43192aa55161" + "59d9bed4-2e25-43ae-81d8-3d1205d884af" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224351Z:c6744245-553d-4ffd-b5de-43192aa55161" + "WESTUS:20150709T192618Z:59d9bed4-2e25-43ae-81d8-3d1205d884af" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:43:50 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ], "ETag": [ - "0x8D224E3D1BBE45B" + "0x8D28894440F9331" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGdldGpvYi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testgetjob\",\r\n \"primary\": \"cMTeOF7tCBgGVzFLARCbJapNftd7psaC2+vU7yikP73WBSHQoQPTaDVlx1f6MoRNXg/Nwfh0Kor7QEe+kvc75A==\",\r\n \"secondary\": \"u6/r//THSDgP6tzBmHo58qNAK8pAgvypqPEFMdZtxrYh80hoRRkvPnliDDDI9UtNjO8T2GUBgKgdccA/LApm5w==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "fbfdf7ee-8ab7-49d6-93ee-879593f81f7b" + "0bf8d1db-e5a9-4294-9f21-474b3055c415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1184" ], "x-ms-request-id": [ - "b7c366c8-7a75-49ec-99a9-643e15bb8e4f" + "b66f389e-efa8-491d-8f9d-304780757515" ], "x-ms-correlation-request-id": [ - "b7c366c8-7a75-49ec-99a9-643e15bb8e4f" + "b66f389e-efa8-491d-8f9d-304780757515" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224351Z:b7c366c8-7a75-49ec-99a9-643e15bb8e4f" + "WESTUS:20150709T192617Z:b66f389e-efa8-491d-8f9d-304780757515" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:43:50 GMT" + "Thu, 09 Jul 2015 19:26:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGdldGpvYi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testgetjob\",\r\n \"primary\": \"cMTeOF7tCBgGVzFLARCbJapNftd7psaC2+vU7yikP73WBSHQoQPTaDVlx1f6MoRNXg/Nwfh0Kor7QEe+kvc75A==\",\r\n \"secondary\": \"u6/r//THSDgP6tzBmHo58qNAK8pAgvypqPEFMdZtxrYh80hoRRkvPnliDDDI9UtNjO8T2GUBgKgdccA/LApm5w==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "e25411be-863f-4a24-95a5-d8cc5fd36f1d" + "c9b4cd4f-3956-4d2f-8d94-cf2c6b758e17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1183" ], "x-ms-request-id": [ - "a58301d4-0cb5-4133-ac12-84708fc10459" + "c8bacc8b-a950-430a-85d4-3fc1b0bb0bb5" ], "x-ms-correlation-request-id": [ - "a58301d4-0cb5-4133-ac12-84708fc10459" + "c8bacc8b-a950-430a-85d4-3fc1b0bb0bb5" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224431Z:a58301d4-0cb5-4133-ac12-84708fc10459" + "WESTUS:20150709T192619Z:c8bacc8b-a950-430a-85d4-3fc1b0bb0bb5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:44:31 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "33789f48-1121-4507-91a4-db5a37f85351" + "828b9f98-4d88-4876-8611-b335381b366a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:44:28 GMT" + "Thu, 09 Jul 2015 19:26:17 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 22:44:28 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "16327059-f244-414a-b05b-99c4604f6080" + "548c5d54-adac-43a9-9ed0-b02a73a9d4f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testgetjob.batch.core.windows.net/workitems/testName" + "https://pstests.batch.core.windows.net/workitems/testName" ], "Date": [ - "Wed, 04 Mar 2015 22:44:28 GMT" + "Thu, 09 Jul 2015 19:26:17 GMT" ], "ETag": [ - "0x8D224E3E822AD79" + "0x8D2889443AB657D" ], "Location": [ - "https://testgetjob.batch.core.windows.net/workitems/testName" + "https://pstests.batch.core.windows.net/workitems/testName" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "5f2a08c4-6541-4e63-9a66-d4a9cdd036b1" + "1f1b5a30-cd2a-456d-b40b-78bccb479fcd" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:44:29 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testgetjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testName\",\r\n \"url\": \"https://testgetjob.batch.core.windows.net/workitems/testName\",\r\n \"eTag\": \"0x8D224E3E822AD79\",\r\n \"lastModified\": \"2015-03-04T22:44:28.3424121Z\",\r\n \"creationTime\": \"2015-03-04T22:44:28.3424121Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:44:28.3424121Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testgetjob.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testName\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName\",\r\n \"eTag\": \"0x8D2889443AB657D\",\r\n \"lastModified\": \"2015-07-09T19:26:18.4504701Z\",\r\n \"creationTime\": \"2015-07-09T19:26:18.4504701Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:26:18.4504701Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:44:28 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c0c53540-8d3c-4a75-b0fe-a226be17aa19" + "3da6128e-3441-4f9b-8776-7f35df56ebff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,121 +436,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:44:29 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ], "ETag": [ - "0x8D224E3E822AD79" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob\",\r\n \"name\": \"testgetjob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "744" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "52819794-b585-4ec2-98b9-bc192101888c" - ], - "x-ms-correlation-request-id": [ - "52819794-b585-4ec2-98b9-bc192101888c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224431Z:52819794-b585-4ec2-98b9-bc192101888c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:44:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGdldGpvYj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testgetjob\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgetjob.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "319" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 22:44:30 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "64ff7f8c-e20a-4a26-a1c5-8805423174a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "da365b6e-2538-4f91-a6c6-10efa966c9c5" - ], - "x-ms-correlation-request-id": [ - "da365b6e-2538-4f91-a6c6-10efa966c9c5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224431Z:da365b6e-2538-4f91-a6c6-10efa966c9c5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:44:31 GMT" - ], - "ETag": [ - "0x8D224E3E99789DB" + "0x8D2889443AB657D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -526,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8a2cde10-9829-42da-9ee4-384b66ac0fcc" + "be672192-4580-4b6d-bf66-5aa9fdfdfa28" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:44:31 GMT" + "Thu, 09 Jul 2015 19:26:19 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testgetjob.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testgetjob.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224E3E82E36D3\",\r\n \"lastModified\": \"2015-03-04T22:44:28.4180179Z\",\r\n \"creationTime\": \"2015-03-04T22:44:28.3990181Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:44:28.4180179Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T22:44:28.4180179Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889443B47949\",\r\n \"lastModified\": \"2015-07-09T19:26:18.5099593Z\",\r\n \"creationTime\": \"2015-07-09T19:26:18.4934719Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:26:18.5099593Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:26:18.5099593Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:44:28 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7a65ac37-cafe-42ff-867b-1f54fee45a5d" + "2387a893-e104-473f-bc30-e20e82a17560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,10 +487,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:44:30 GMT" + "Thu, 09 Jul 2015 19:26:19 GMT" ], "ETag": [ - "0x8D224E3E82E36D3" + "0x8D2889443B47949" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -577,28 +508,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1fec7e00-7700-4c46-ac42-f505f64e364a" + "b7b91ccc-66ba-48a9-bce9-47083e05c69a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:44:31 GMT" + "Thu, 09 Jul 2015 19:26:19 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testgetjob.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testgetjob.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224E3E82E36D3\",\r\n \"lastModified\": \"2015-03-04T22:44:28.4180179Z\",\r\n \"creationTime\": \"2015-03-04T22:44:28.3990181Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:44:28.4180179Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T22:44:28.4180179Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889443B47949\",\r\n \"lastModified\": \"2015-07-09T19:26:18.5099593Z\",\r\n \"creationTime\": \"2015-07-09T19:26:18.4934719Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:26:18.5099593Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:26:18.5099593Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:44:28 GMT" + "Thu, 09 Jul 2015 19:26:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6bc7209c-61bc-4633-8893-f93e86b7e979" + "df3a51c2-34e4-402d-bd4b-b6d0b6a1d97e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,10 +538,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:44:30 GMT" + "Thu, 09 Jul 2015 19:26:19 GMT" ], "ETag": [ - "0x8D224E3E82E36D3" + "0x8D2889443B47949" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -628,13 +559,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "394abf95-37ef-4e44-844a-bc05b7065c7d" + "1352c2e2-6b05-40f6-b857-6f1bd8c5bf0c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:44:32 GMT" + "Thu, 09 Jul 2015 19:26:19 GMT" ] }, "ResponseBody": "", @@ -643,7 +574,7 @@ "chunked" ], "request-id": [ - "e0d31e13-185f-4925-8da4-7c17b435bbbc" + "713d12ba-8ec9-4b7d-9c4d-49d9bdac4813" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -652,391 +583,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:44:32 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGdldGpvYj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "5e3de03e-6c8f-4904-bfaa-590a1256d496" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-request-id": [ - "bcaa4d43-3b01-4675-9d1f-df6061082c89" - ], - "x-ms-correlation-request-id": [ - "bcaa4d43-3b01-4675-9d1f-df6061082c89" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224435Z:bcaa4d43-3b01-4675-9d1f-df6061082c89" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:44:34 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob/operationResults/5e3de03e-6c8f-4904-bfaa-590a1256d496?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:26:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job/providers/Microsoft.Batch/batchAccounts/testgetjob/operationResults/5e3de03e-6c8f-4904-bfaa-590a1256d496?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGdldGpvYi9vcGVyYXRpb25SZXN1bHRzLzVlM2RlMDNlLTZjOGYtNDkwNC1iZmFhLTU5MGExMjU2ZDQ5Nj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 22:44:34 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "7358ab50-d752-4d03-98f9-96580870370d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "c9be7018-b4d3-4778-8086-f72c7f2b21d0" - ], - "x-ms-correlation-request-id": [ - "c9be7018-b4d3-4778-8086-f72c7f2b21d0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224435Z:c9be7018-b4d3-4778-8086-f72c7f2b21d0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:44:34 GMT" - ], - "ETag": [ - "0x8D224E3EBD617A9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-job?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LWpvYj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], - "x-ms-request-id": [ - "c6ef5818-6c16-4d3f-96e4-73c2611f59fb" - ], - "x-ms-correlation-request-id": [ - "c6ef5818-6c16-4d3f-96e4-73c2611f59fb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224436Z:c6ef5818-6c16-4d3f-96e4-73c2611f59fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:44:35 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVNrOUNMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "b887aa57-2514-4d49-828b-9430b6284cfa" - ], - "x-ms-correlation-request-id": [ - "b887aa57-2514-4d49-828b-9430b6284cfa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224436Z:b887aa57-2514-4d49-828b-9430b6284cfa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:44:35 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVNrOUNMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "1948bb6d-c860-4d4a-80e6-ada29301e438" - ], - "x-ms-correlation-request-id": [ - "1948bb6d-c860-4d4a-80e6-ada29301e438" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224451Z:1948bb6d-c860-4d4a-80e6-ada29301e438" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:44:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVNrOUNMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "a941fe9e-5e2d-4b49-b952-88a1844f988b" - ], - "x-ms-correlation-request-id": [ - "a941fe9e-5e2d-4b49-b952-88a1844f988b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224506Z:a941fe9e-5e2d-4b49-b952-88a1844f988b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:45:06 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9CLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVNrOUNMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "1b82dd08-1243-4c59-be8a-c6ad6f6dc019" - ], - "x-ms-correlation-request-id": [ - "1b82dd08-1243-4c59-be8a-c6ad6f6dc019" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224522Z:1b82dd08-1243-4c59-be8a-c6ad6f6dc019" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:45:22 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobRequiredParameters.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobRequiredParameters.json index 6eadc6878445..2af54be507b8 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobRequiredParameters.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestGetJobRequiredParameters.json @@ -1,299 +1,5 @@ { "Entries": [ - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-job-params?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params\",\r\n \"name\": \"test-get-job-params\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "7e0416ee-a9e0-485c-868f-a1fea1d77ff7" - ], - "x-ms-correlation-request-id": [ - "7e0416ee-a9e0-485c-868f-a1fea1d77ff7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201519Z:7e0416ee-a9e0-485c-868f-a1fea1d77ff7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:15:19 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRqb2JwYXJhbXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "request-id": [ - "61da2213-ccc4-45df-a04e-c5f87a4c9634" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "12d60db5-5826-48b9-8565-9aecea7e5d91" - ], - "x-ms-correlation-request-id": [ - "12d60db5-5826-48b9-8565-9aecea7e5d91" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201524Z:12d60db5-5826-48b9-8565-9aecea7e5d91" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:15:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams/operationResults/61da2213-ccc4-45df-a04e-c5f87a4c9634?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams/operationResults/61da2213-ccc4-45df-a04e-c5f87a4c9634?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRqb2JwYXJhbXMvb3BlcmF0aW9uUmVzdWx0cy82MWRhMjIxMy1jY2M0LTQ1ZGYtYTA0ZS1jNWY4N2E0Yzk2MzQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testgetjobparams\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgetjobparams.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "344" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 23 Feb 2015 20:15:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "aafb85f4-d05f-4004-a984-6fa1d391d67f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" - ], - "x-ms-request-id": [ - "ad01ba25-b1a1-4abe-bcc0-03c1ec5f2515" - ], - "x-ms-correlation-request-id": [ - "ad01ba25-b1a1-4abe-bcc0-03c1ec5f2515" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201525Z:ad01ba25-b1a1-4abe-bcc0-03c1ec5f2515" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:15:25 GMT" - ], - "ETag": [ - "0x8D21DBC97A8FCB1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRqb2JwYXJhbXMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"accountName\": \"testgetjobparams\",\r\n \"primary\": \"2i9VI2YUsUOLomfutlyH0Igt5UZcInjYIITSzFwESBDmpOtKTcZ+3g3LalPtBkIJ+nT3iCYxqP2i5re8s+j1kQ==\",\r\n \"secondary\": \"YHIGjtI7OPpPwd41e03r3ynbjL1e5ZbYQL+A0PwoAoJW1ZHyaWvFOfaB65+BOlVav4tPx5q5h2xj2JzCtMuwJA==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "238" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d5911d13-985e-4b69-b8e6-db7fa0c23dd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "2fa08eca-5fc6-4d1e-a744-a7783976dd64" - ], - "x-ms-correlation-request-id": [ - "2fa08eca-5fc6-4d1e-a744-a7783976dd64" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201525Z:2fa08eca-5fc6-4d1e-a744-a7783976dd64" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:15:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRqb2JwYXJhbXMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"accountName\": \"testgetjobparams\",\r\n \"primary\": \"2i9VI2YUsUOLomfutlyH0Igt5UZcInjYIITSzFwESBDmpOtKTcZ+3g3LalPtBkIJ+nT3iCYxqP2i5re8s+j1kQ==\",\r\n \"secondary\": \"YHIGjtI7OPpPwd41e03r3ynbjL1e5ZbYQL+A0PwoAoJW1ZHyaWvFOfaB65+BOlVav4tPx5q5h2xj2JzCtMuwJA==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "238" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d3bbc3a1-6f71-4064-a4a0-e20ac9f621a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "b2de9c96-6725-4c4e-b8f5-2a7dbf98b420" - ], - "x-ms-correlation-request-id": [ - "b2de9c96-6725-4c4e-b8f5-2a7dbf98b420" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201601Z:b2de9c96-6725-4c4e-b8f5-2a7dbf98b420" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:16:00 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", @@ -304,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams\",\r\n \"name\": \"testgetjobparams\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "763" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14961" ], "x-ms-request-id": [ - "c214e657-c892-47fc-9ba0-366ddfab0698" + "ea1ad235-e654-4983-80f3-3a59b10edccf" ], "x-ms-correlation-request-id": [ - "c214e657-c892-47fc-9ba0-366ddfab0698" + "ea1ad235-e654-4983-80f3-3a59b10edccf" ], "x-ms-routing-request-id": [ - "WESTUS:20150223T201600Z:c214e657-c892-47fc-9ba0-366ddfab0698" + "WESTUS:20150709T192641Z:ea1ad235-e654-4983-80f3-3a59b10edccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,28 +43,28 @@ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 20:16:00 GMT" + "Thu, 09 Jul 2015 19:26:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRqb2JwYXJhbXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testgetjobparams\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgetjobparams.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "344" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Mon, 23 Feb 2015 20:16:00 GMT" + "Thu, 09 Jul 2015 19:26:44 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "55ce598e-9a1c-4f24-b0d7-a03b7ff1c2c4" + "64788420-d2b3-4c99-9ddb-84bcbc3519ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14932" ], "x-ms-request-id": [ - "1a27751b-b6a0-4c79-8add-db307f56659c" + "09660411-7722-4878-9939-fc5a81c3c4e2" ], "x-ms-correlation-request-id": [ - "1a27751b-b6a0-4c79-8add-db307f56659c" + "09660411-7722-4878-9939-fc5a81c3c4e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150223T201601Z:1a27751b-b6a0-4c79-8add-db307f56659c" + "WESTUS:20150709T192644Z:09660411-7722-4878-9939-fc5a81c3c4e2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 20:16:00 GMT" + "Thu, 09 Jul 2015 19:26:44 GMT" ], "ETag": [ - "0x8D21DBCAD0C085F" + "0x8D2889453022B80" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,382 +112,61 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRqb2JwYXJhbXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "be31d170-09b3-4148-add7-38304fb6f2d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "91ad66d6-7b13-4e28-8f51-313a21f980ac" - ], - "x-ms-correlation-request-id": [ - "91ad66d6-7b13-4e28-8f51-313a21f980ac" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201603Z:91ad66d6-7b13-4e28-8f51-313a21f980ac" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:16:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams/operationResults/be31d170-09b3-4148-add7-38304fb6f2d0?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-job-params/providers/Microsoft.Batch/batchAccounts/testgetjobparams/operationResults/be31d170-09b3-4148-add7-38304fb6f2d0?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRqb2JwYXJhbXMvb3BlcmF0aW9uUmVzdWx0cy9iZTMxZDE3MC0wOWIzLTQxNDgtYWRkNy0zODMwNGZiNmYyZDA/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Last-Modified": [ - "Mon, 23 Feb 2015 20:16:02 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "a9cab41f-e344-4075-9f6c-c4cbe04ed91d" + "1996edb8-63b0-40c1-8920-c28af65d96b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" ], "x-ms-request-id": [ - "02b50cc5-d598-47a8-b35c-0b067c9d5ca5" + "c127f464-1694-488f-9dd0-cc6d57102d4f" ], "x-ms-correlation-request-id": [ - "02b50cc5-d598-47a8-b35c-0b067c9d5ca5" + "c127f464-1694-488f-9dd0-cc6d57102d4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150223T201603Z:02b50cc5-d598-47a8-b35c-0b067c9d5ca5" + "WESTUS:20150709T192645Z:c127f464-1694-488f-9dd0-cc6d57102d4f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 20:16:02 GMT" - ], - "ETag": [ - "0x8D21DBCAE61E543" + "Thu, 09 Jul 2015 19:26:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-job-params?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LWpvYi1wYXJhbXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "8d3d330d-c973-4a9a-9814-6b402d567011" - ], - "x-ms-correlation-request-id": [ - "8d3d330d-c973-4a9a-9814-6b402d567011" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201604Z:8d3d330d-c973-4a9a-9814-6b402d567011" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:16:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9COjJEUEFSQU1TLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9COjJEUEFSQU1TLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVNrOUNPakpFVUVGU1FVMVRMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "ea76bc04-5bdd-4e31-ad96-1320aa6d8482" - ], - "x-ms-correlation-request-id": [ - "ea76bc04-5bdd-4e31-ad96-1320aa6d8482" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201604Z:ea76bc04-5bdd-4e31-ad96-1320aa6d8482" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:16:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9COjJEUEFSQU1TLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9COjJEUEFSQU1TLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVNrOUNPakpFVUVGU1FVMVRMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "fe28b30c-638e-40be-999a-03bdea91752f" - ], - "x-ms-correlation-request-id": [ - "fe28b30c-638e-40be-999a-03bdea91752f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201619Z:fe28b30c-638e-40be-999a-03bdea91752f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:16:19 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9COjJEUEFSQU1TLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9COjJEUEFSQU1TLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVNrOUNPakpFVUVGU1FVMVRMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "6fc5b43b-0fdd-471b-8da3-64e33791af08" - ], - "x-ms-correlation-request-id": [ - "6fc5b43b-0fdd-471b-8da3-64e33791af08" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201635Z:6fc5b43b-0fdd-471b-8da3-64e33791af08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:16:34 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9COjJEUEFSQU1TLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJESk9COjJEUEFSQU1TLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVNrOUNPakpFVUVGU1FVMVRMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "e8288bba-9265-47bf-9b10-54f982c50501" - ], - "x-ms-correlation-request-id": [ - "e8288bba-9265-47bf-9b10-54f982c50501" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T201650Z:e8288bba-9265-47bf-9b10-54f982c50501" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 20:16:49 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListAllJobs.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListAllJobs.json index 2cb3d83bf015..72d200d97184 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListAllJobs.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListAllJobs.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-job?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1qb2I/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "802b96f0-46c2-4f09-8d64-88f745f8b7e3" + ], + "x-ms-correlation-request-id": [ + "802b96f0-46c2-4f09-8d64-88f745f8b7e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192424Z:802b96f0-46c2-4f09-8d64-88f745f8b7e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 19:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job\",\r\n \"name\": \"test-list-job\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" ], "x-ms-request-id": [ - "c4e6cee4-a665-4636-91d8-f620b98e5b5f" + "ff033689-3163-4a55-b6ae-2c5b323b4178" ], "x-ms-correlation-request-id": [ - "c4e6cee4-a665-4636-91d8-f620b98e5b5f" + "ff033689-3163-4a55-b6ae-2c5b323b4178" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T225530Z:c4e6cee4-a665-4636-91d8-f620b98e5b5f" + "WESTUS:20150709T192532Z:ff033689-3163-4a55-b6ae-2c5b323b4178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,88 +91,88 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:55:29 GMT" + "Thu, 09 Jul 2015 19:25:31 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2IvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9iP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:24:25 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" - ], "request-id": [ - "958bbcc9-bbac-4adb-a726-806e29135615" + "6f558034-8d06-4518-aba1-49a4653ad012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], "x-ms-request-id": [ - "8abb6af6-b799-4e72-9a05-5c719e67854e" + "12e8c072-fb41-4c12-a321-59f1e83711ff" ], "x-ms-correlation-request-id": [ - "8abb6af6-b799-4e72-9a05-5c719e67854e" + "12e8c072-fb41-4c12-a321-59f1e83711ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T225535Z:8abb6af6-b799-4e72-9a05-5c719e67854e" + "WESTUS:20150709T192425Z:12e8c072-fb41-4c12-a321-59f1e83711ff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:55:35 GMT" + "Thu, 09 Jul 2015 19:24:25 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob/operationResults/958bbcc9-bbac-4adb-a726-806e29135615?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D288940062F845" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob/operationResults/958bbcc9-bbac-4adb-a726-806e29135615?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2IvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9iL29wZXJhdGlvblJlc3VsdHMvOTU4YmJjYzktYmJhYy00YWRiLWE3MjYtODA2ZTI5MTM1NjE1P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistjob\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistjob.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "323" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:55:34 GMT" + "Thu, 09 Jul 2015 19:25:32 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "a49792cd-f592-4f26-9387-e3d845447602" + "dc5b39b7-4e3e-4ed5-89eb-f8583286ab29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14933" ], "x-ms-request-id": [ - "0bb7eb9b-e9be-431b-95ee-46257db73426" + "63e031cf-1aac-41fe-9078-625fb4874677" ], "x-ms-correlation-request-id": [ - "0bb7eb9b-e9be-431b-95ee-46257db73426" + "63e031cf-1aac-41fe-9078-625fb4874677" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T225535Z:0bb7eb9b-e9be-431b-95ee-46257db73426" + "WESTUS:20150709T192532Z:63e031cf-1aac-41fe-9078-625fb4874677" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:55:35 GMT" + "Thu, 09 Jul 2015 19:25:32 GMT" ], "ETag": [ - "0x8D224E5754B2F4D" + "0x8D2889428649AC4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2IvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9iL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistjob\",\r\n \"primary\": \"CKUOQktq0NQHxCUrWJLCoe2BFhYIbW5WYGuru5V55otpiC2VGVPI2qvmhykIGRP34dnLMdHkkXygL3qJzjuFYQ==\",\r\n \"secondary\": \"8j9r6xM9J9zHaVAHxwm9e1dTlNqOa5SfjrfrIKYtMU675O2SI5lD+Z2KfOyU65LEXKLiHDBz1kqFVg5rW/HEPw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "233" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "7de590ce-88f5-4ad9-8abe-05a9ba75293e" + "a27ff5da-5304-49fc-9f2e-0e9f72d4fbd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1174" ], "x-ms-request-id": [ - "2c9ffe6d-a021-4f16-8f94-eb68481a63e6" + "8bbd5169-15f2-4207-9f0b-0dbfbe384b57" ], "x-ms-correlation-request-id": [ - "2c9ffe6d-a021-4f16-8f94-eb68481a63e6" + "8bbd5169-15f2-4207-9f0b-0dbfbe384b57" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T225535Z:2c9ffe6d-a021-4f16-8f94-eb68481a63e6" + "WESTUS:20150709T192426Z:8bbd5169-15f2-4207-9f0b-0dbfbe384b57" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:55:35 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2IvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9iL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistjob\",\r\n \"primary\": \"CKUOQktq0NQHxCUrWJLCoe2BFhYIbW5WYGuru5V55otpiC2VGVPI2qvmhykIGRP34dnLMdHkkXygL3qJzjuFYQ==\",\r\n \"secondary\": \"8j9r6xM9J9zHaVAHxwm9e1dTlNqOa5SfjrfrIKYtMU675O2SI5lD+Z2KfOyU65LEXKLiHDBz1kqFVg5rW/HEPw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "233" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "2e1a5c3e-d6bc-4df7-90cd-3d6727bcf0c8" + "41406bee-b65a-4a1e-acbe-af7565325535" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1174" ], "x-ms-request-id": [ - "c10bf1d3-3d96-47af-9a05-77ea359940dd" + "9b0523fc-b9a6-406e-bf27-334f1e14aec0" ], "x-ms-correlation-request-id": [ - "c10bf1d3-3d96-47af-9a05-77ea359940dd" + "9b0523fc-b9a6-406e-bf27-334f1e14aec0" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T225713Z:c10bf1d3-3d96-47af-9a05-77ea359940dd" + "WESTUS:20150709T192533Z:9b0523fc-b9a6-406e-bf27-334f1e14aec0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:57:12 GMT" + "Thu, 09 Jul 2015 19:25:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f3e8e6e8-9c73-41fa-93ac-db1e0d8ca50e" + "c2bdb930-e4df-4527-a521-dc0cdea5c0b6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:10 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "eaaafd22-1ea7-47e5-b2c0-79b5c4504683" + "0bcdfc13-9a56-46dc-a124-ff027a3649d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistjob.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Date": [ - "Wed, 04 Mar 2015 22:56:10 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Location": [ - "https://testlistjob.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9406881b-84b0-4240-ac17-5df8adb0bbaf" + "1f94ad9c-3222-4108-bc07-9aa7667cef68" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:10 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "379a4644-5e8f-4c29-99e3-5f180bd8bc0b" + "e11d4b40-4005-4c62-a6f6-b251751a36b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:10 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -415,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ae445860-fef5-4777-984e-4753cd4de002" + "09059329-e4e9-4da4-95a6-1ff9308d03d3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:11 GMT" + "Thu, 09 Jul 2015 19:24:27 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9e963d58-ce97-4a40-93ee-af9d52b3d0f5" + "d7ecc334-8386-4f85-a201-1432ea64e34e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,10 +487,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:10 GMT" + "Thu, 09 Jul 2015 19:24:27 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,28 +508,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "47f8418c-94a4-45c4-9e98-ca8f0bc59497" + "d9e6bce9-6ec2-4042-b5f8-630121c8db1b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:16 GMT" + "Thu, 09 Jul 2015 19:24:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e46af10d-cdae-4df5-8031-a305c7074e91" + "e12332ef-5a77-4319-b3df-0fbc9fffa3f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,10 +538,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:16 GMT" + "Thu, 09 Jul 2015 19:24:33 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +559,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4eb458c3-4452-4950-8501-a72344ba3d75" + "70450220-90a7-43f6-b84a-0c21835ab60d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:22 GMT" + "Thu, 09 Jul 2015 19:24:38 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c078c741-3796-40d2-9571-e5921a26df2c" + "10e24bcd-0c30-465f-b2eb-2c0c741a34da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +589,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:22 GMT" + "Thu, 09 Jul 2015 19:24:37 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,28 +610,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a1f8d5e1-630f-4ec1-afe0-8879c4a89a71" + "77f8b348-77a5-45ed-821a-7d1b0ed53df1" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:27 GMT" + "Thu, 09 Jul 2015 19:24:43 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2e829b25-31a7-4b7e-8921-e4cb0790088d" + "ab02d0c0-7fe0-443d-9115-5844f128f194" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,10 +640,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:27 GMT" + "Thu, 09 Jul 2015 19:24:43 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -619,28 +661,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ff2162b6-5a9c-4548-b37c-ca5ff696bc56" + "cf4ad976-3170-46d9-adf1-c16c2962843c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:33 GMT" + "Thu, 09 Jul 2015 19:24:48 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4ed0c76c-e7ac-492a-800a-37684210e22a" + "6487c167-3139-4424-9c21-856e7a2a47e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,10 +691,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:32 GMT" + "Thu, 09 Jul 2015 19:24:48 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,28 +712,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "54c8a203-5319-4681-bef4-8882f8691137" + "a260b404-7300-466f-8cc9-e067dc7017e7" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:38 GMT" + "Thu, 09 Jul 2015 19:24:54 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ca4b72b9-6c99-4b6e-9d2d-79161a37b5a4" + "062db519-de25-41e6-8687-ed389c80a438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,10 +742,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:37 GMT" + "Thu, 09 Jul 2015 19:24:54 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -721,28 +763,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "28c1e3f4-f75c-41fc-95bb-15b664fe8800" + "6ced48e6-3988-4fe2-9251-d1651f782119" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:43 GMT" + "Thu, 09 Jul 2015 19:24:59 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9d6ac1f8-68a4-4482-8818-0b360e26acea" + "492a5836-fa26-49f7-8a8e-c1a2508ed54d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -751,10 +793,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:43 GMT" + "Thu, 09 Jul 2015 19:24:59 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -772,28 +814,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7f128ebc-2c5c-417a-9eb6-3a4c39165f83" + "0957eaf6-40a9-43fb-beef-062e71b10e4d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:49 GMT" + "Thu, 09 Jul 2015 19:25:04 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6d725274-3366-407b-9ad0-b4c5f25ca811" + "ddfecc53-50e5-47b6-bb73-4205981f630b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -802,10 +844,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:49 GMT" + "Thu, 09 Jul 2015 19:25:05 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -823,28 +865,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b0364a11-4139-420a-9b6a-f0c573ff30bb" + "401fbf88-2b94-449e-93dc-51e153fb28bf" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:54 GMT" + "Thu, 09 Jul 2015 19:25:10 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5eddacca-ce31-4f15-a1d2-602a28c7b6c5" + "da44ac7e-ffba-47c9-9167-6db16c0dcc26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -853,10 +895,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:54 GMT" + "Thu, 09 Jul 2015 19:25:09 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -874,28 +916,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "64ab6438-64c6-4e20-97cd-a2fb24a3aeb0" + "67da34ec-0797-4b74-ad88-dff82f6abfd9" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:56:59 GMT" + "Thu, 09 Jul 2015 19:25:15 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f108515b-b779-4791-858c-b4bd48320aa7" + "c5b884aa-9707-4736-8cbb-475729c7d3cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -904,10 +946,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:56:59 GMT" + "Thu, 09 Jul 2015 19:25:15 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -925,28 +967,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1ecc6e51-b984-45bf-9df1-1bbda4e20b6e" + "f641c7bf-7541-41c7-bba8-6dfc7143c538" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:57:05 GMT" + "Thu, 09 Jul 2015 19:25:20 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:57:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f95edc27-15cf-4927-9133-1add38373fc4" + "fdbe55ef-1edd-4b05-a19f-d55bbba4d27a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -955,10 +997,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:57:04 GMT" + "Thu, 09 Jul 2015 19:25:20 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -976,28 +1018,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ecbee9c7-e140-4bfb-8be9-adb9a7d41f18" + "7dd82edb-071e-4b48-96f3-7d8ee742554a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:57:10 GMT" + "Thu, 09 Jul 2015 19:25:26 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:58:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:25:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "0e1637f6-faa6-4e7a-85f8-4893218b357a" + "733119f9-4032-4555-a421-6a23d5fb70f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,10 +1048,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:57:10 GMT" + "Thu, 09 Jul 2015 19:25:26 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1027,28 +1069,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4ebad7b0-cdc5-4cb3-bb4f-296bc8ddaafd" + "f417002a-c1de-4e86-82c2-81e7a2e1e3e4" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:57:13 GMT" + "Thu, 09 Jul 2015 19:25:31 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E58A3F33F9\",\r\n \"lastModified\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:09.8169849Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T22:58:09.8169849Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:26:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:56:09 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b7fcde39-b70a-44a1-91ec-ac722f3415ef" + "ff1a19c8-ecf0-474f-a00a-6bc95132385d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,10 +1099,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:57:12 GMT" + "Thu, 09 Jul 2015 19:25:32 GMT" ], "ETag": [ - "0x8D224E58A3F33F9" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1069,109 +1111,49 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob\",\r\n \"name\": \"testlistjob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "747" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "bd9dc902-ed4a-4c3b-b404-f7490b1b5c36" - ], - "x-ms-correlation-request-id": [ - "bd9dc902-ed4a-4c3b-b404-f7490b1b5c36" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225712Z:bd9dc902-ed4a-4c3b-b404-f7490b1b5c36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WA-Batch/1.0" ], - "Cache-Control": [ - "no-cache" + "client-request-id": [ + "66677582-37b5-4022-b9b4-dc69ad0fab81" ], - "Date": [ - "Wed, 04 Mar 2015 22:57:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2IvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9iP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" + "return-client-request-id": [ + "False" ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "ocp-date": [ + "Thu, 09 Jul 2015 19:25:33 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistjob\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistjob.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288940133C046\",\r\n \"lastModified\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:26.9367366Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:26:26.9367366Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "323" - ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:57:12 GMT" + "Thu, 09 Jul 2015 19:24:26 GMT" ], - "Pragma": [ - "no-cache" + "Transfer-Encoding": [ + "chunked" ], "request-id": [ - "ea90deed-b568-48a8-9859-b3155f2b4eb6" + "25222882-5c38-47db-9289-73068f453d00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "78eb1335-d96c-403a-ad8e-3eae3a6730e3" - ], - "x-ms-correlation-request-id": [ - "78eb1335-d96c-403a-ad8e-3eae3a6730e3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225713Z:78eb1335-d96c-403a-ad8e-3eae3a6730e3" - ], - "Cache-Control": [ - "no-cache" + "DataServiceVersion": [ + "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:57:12 GMT" + "Thu, 09 Jul 2015 19:25:33 GMT" ], "ETag": [ - "0x8D224E5AF904073" + "0x8D288940133C046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1189,16 +1171,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "355dce36-e7b7-4e56-b00f-19cf81cfb749" + "a96c58a3-4956-4cdb-a392-322b62ad1fa2" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:57:13 GMT" + "Thu, 09 Jul 2015 19:25:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D224E5AE064264\",\r\n \"lastModified\": \"2015-03-04T22:57:09.8417764Z\",\r\n \"creationTime\": \"2015-03-04T22:57:09.8177703Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:57:09.8417764Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T22:57:09.8417764Z\"\r\n }\r\n },\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224E58AE9AD62\",\r\n \"lastModified\": \"2015-03-04T22:56:10.934205Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8509767Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:10.9668348Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-03-04T22:56:09.8883137Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T22:56:09.8883137Z\",\r\n \"endTime\": \"2015-03-04T22:56:10.9668348Z\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D2889424F98774\",\r\n \"lastModified\": \"2015-07-09T19:25:26.9531508Z\",\r\n \"creationTime\": \"2015-07-09T19:25:26.9371428Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:25:26.9531508Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:25:26.9531508Z\"\r\n }\r\n },\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889401B9F8D6\",\r\n \"lastModified\": \"2015-07-09T19:24:27.816367Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.977735Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:28.4685017Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:24:26.9937263Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:24:26.9937263Z\",\r\n \"endTime\": \"2015-07-09T19:24:28.4685017Z\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1207,7 +1189,7 @@ "chunked" ], "request-id": [ - "3283fd5e-628c-48a8-a9ae-6fa47ab59d92" + "ebafd00f-bbb4-4bf7-89b8-e8ba2461a80d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1216,7 +1198,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:57:12 GMT" + "Thu, 09 Jul 2015 19:25:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1234,16 +1216,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c6e62a74-0d76-4a89-9743-fbdba472e80f" + "eff70d6f-b6b4-429a-8352-2ba58511e764" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:57:13 GMT" + "Thu, 09 Jul 2015 19:25:33 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjob.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D224E5AE064264\",\r\n \"lastModified\": \"2015-03-04T22:57:09.8417764Z\",\r\n \"creationTime\": \"2015-03-04T22:57:09.8177703Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:57:09.8417764Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T22:57:09.8417764Z\"\r\n }\r\n },\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlistjob.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224E58AE9AD62\",\r\n \"lastModified\": \"2015-03-04T22:56:10.934205Z\",\r\n \"creationTime\": \"2015-03-04T22:56:09.8509767Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-04T22:56:10.9668348Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-03-04T22:56:09.8883137Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T22:56:09.8883137Z\",\r\n \"endTime\": \"2015-03-04T22:56:10.9668348Z\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D2889424F98774\",\r\n \"lastModified\": \"2015-07-09T19:25:26.9531508Z\",\r\n \"creationTime\": \"2015-07-09T19:25:26.9371428Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:25:26.9531508Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:25:26.9531508Z\"\r\n }\r\n },\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889401B9F8D6\",\r\n \"lastModified\": \"2015-07-09T19:24:27.816367Z\",\r\n \"creationTime\": \"2015-07-09T19:24:26.977735Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:28.4685017Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:24:26.9937263Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:24:26.9937263Z\",\r\n \"endTime\": \"2015-07-09T19:24:28.4685017Z\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1252,7 +1234,7 @@ "chunked" ], "request-id": [ - "c40c867f-dac6-44b1-a288-4ea5a516dd7a" + "dccb6fd6-35a8-40e2-ae65-8883c7d1d8e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1261,7 +1243,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:57:13 GMT" + "Thu, 09 Jul 2015 19:25:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1279,13 +1261,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7c76f028-6586-498c-b434-9242c800ad0f" + "829c8c02-675f-4931-82b2-34e5a40530e7" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:57:14 GMT" + "Thu, 09 Jul 2015 19:25:33 GMT" ] }, "ResponseBody": "", @@ -1294,7 +1276,7 @@ "chunked" ], "request-id": [ - "07b06e31-4f5d-48db-942a-e35daf12da3d" + "d34e67df-66e2-4022-8d4e-b60a3391276f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1303,451 +1285,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:57:13 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2IvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9iP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "39155378-7601-49a3-8a65-27e67f041c9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" - ], - "x-ms-request-id": [ - "34f9ea30-6294-45ae-9fec-05ec4a76ee37" - ], - "x-ms-correlation-request-id": [ - "34f9ea30-6294-45ae-9fec-05ec4a76ee37" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225717Z:34f9ea30-6294-45ae-9fec-05ec4a76ee37" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:57:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob/operationResults/39155378-7601-49a3-8a65-27e67f041c9b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob/operationResults/39155378-7601-49a3-8a65-27e67f041c9b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2IvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9iL29wZXJhdGlvblJlc3VsdHMvMzkxNTUzNzgtNzYwMS00OWEzLThhNjUtMjdlNjdmMDQxYzliP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "55cc66fc-934c-46bd-8a78-dd38e401eb4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "e95d689b-2045-4bcb-9b8e-4202cf0cfd5d" - ], - "x-ms-correlation-request-id": [ - "e95d689b-2045-4bcb-9b8e-4202cf0cfd5d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225717Z:e95d689b-2045-4bcb-9b8e-4202cf0cfd5d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:57:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob/operationResults/39155378-7601-49a3-8a65-27e67f041c9b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job/providers/Microsoft.Batch/batchAccounts/testlistjob/operationResults/39155378-7601-49a3-8a65-27e67f041c9b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2IvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9iL29wZXJhdGlvblJlc3VsdHMvMzkxNTUzNzgtNzYwMS00OWEzLThhNjUtMjdlNjdmMDQxYzliP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 22:57:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "bfcb0838-50db-4fad-9e31-c5a772ff61f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "34cba33f-98fb-4f46-8a47-03c479f09871" - ], - "x-ms-correlation-request-id": [ - "34cba33f-98fb-4f46-8a47-03c479f09871" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225732Z:34cba33f-98fb-4f46-8a47-03c479f09871" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:57:31 GMT" - ], - "ETag": [ - "0x8D224E5BB44B673" + "Thu, 09 Jul 2015 19:25:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-job?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1qb2I/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" - ], - "x-ms-request-id": [ - "62e524fa-6091-4d47-b1ac-76cd753062a7" - ], - "x-ms-correlation-request-id": [ - "62e524fa-6091-4d47-b1ac-76cd753062a7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225733Z:62e524fa-6091-4d47-b1ac-76cd753062a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:57:32 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "0b77ab00-0ef1-42cc-825a-7e81125d4be9" - ], - "x-ms-correlation-request-id": [ - "0b77ab00-0ef1-42cc-825a-7e81125d4be9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225733Z:0b77ab00-0ef1-42cc-825a-7e81125d4be9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:57:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "25392397-537c-4260-93d3-74a352526785" - ], - "x-ms-correlation-request-id": [ - "25392397-537c-4260-93d3-74a352526785" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225749Z:25392397-537c-4260-93d3-74a352526785" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:57:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "25e423d5-8a3a-42aa-b469-7c87aba02d98" - ], - "x-ms-correlation-request-id": [ - "25e423d5-8a3a-42aa-b469-7c87aba02d98" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225804Z:25e423d5-8a3a-42aa-b469-7c87aba02d98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:58:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "553cf142-28cf-48cf-9098-a218321ce064" - ], - "x-ms-correlation-request-id": [ - "553cf142-28cf-48cf-9098-a218321ce064" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T225819Z:553cf142-28cf-48cf-9098-a218321ce064" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:58:19 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobPipeline.json index f67726756f6d..4dcf4bddf10c 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobPipeline.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-job-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "c051c275-34f2-4c44-a0c8-7b683da54997" + ], + "x-ms-correlation-request-id": [ + "c051c275-34f2-4c44-a0c8-7b683da54997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192837Z:c051c275-34f2-4c44-a0c8-7b683da54997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:28:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe\",\r\n \"name\": \"test-list-job-pipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "189" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" ], "x-ms-request-id": [ - "4e93fe4b-cdbe-4a02-9dac-4c440b32709a" + "b02f36b1-4cd9-458a-bd6c-a014d984dd03" ], "x-ms-correlation-request-id": [ - "4e93fe4b-cdbe-4a02-9dac-4c440b32709a" + "b02f36b1-4cd9-458a-bd6c-a014d984dd03" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230544Z:4e93fe4b-cdbe-4a02-9dac-4c440b32709a" + "WESTUS:20150709T192839Z:b02f36b1-4cd9-458a-bd6c-a014d984dd03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:05:44 GMT" + "Thu, 09 Jul 2015 19:28:38 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rqb2JwaXBlP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:28:37 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" - ], "request-id": [ - "f66635fa-cb28-4c2d-b4dc-f660c9d2f476" + "9b364ecb-50d8-4a91-afc2-b6e13dd8d722" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], "x-ms-request-id": [ - "caa23283-87f9-4a91-aeb4-5ec83bef3087" + "c7160666-7af5-4e42-810c-6711bc4b650b" ], "x-ms-correlation-request-id": [ - "caa23283-87f9-4a91-aeb4-5ec83bef3087" + "c7160666-7af5-4e42-810c-6711bc4b650b" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230548Z:caa23283-87f9-4a91-aeb4-5ec83bef3087" + "WESTUS:20150709T192837Z:c7160666-7af5-4e42-810c-6711bc4b650b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:05:48 GMT" + "Thu, 09 Jul 2015 19:28:37 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe/operationResults/f66635fa-cb28-4c2d-b4dc-f660c9d2f476?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28894969928B5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe/operationResults/f66635fa-cb28-4c2d-b4dc-f660c9d2f476?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rqb2JwaXBlL29wZXJhdGlvblJlc3VsdHMvZjY2NjM1ZmEtY2IyOC00YzJkLWI0ZGMtZjY2MGM5ZDJmNDc2P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistjobpipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistjobpipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "340" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:05:48 GMT" + "Thu, 09 Jul 2015 19:28:39 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "9ddd388e-3773-4fdd-8727-c2d10e2567de" + "423db144-6b52-4964-a9c4-4d824831b5aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14968" ], "x-ms-request-id": [ - "d2ef9427-0931-42a1-825a-41bbe2cee7ff" + "52762205-8d0a-4263-aacb-f656c35e458c" ], "x-ms-correlation-request-id": [ - "d2ef9427-0931-42a1-825a-41bbe2cee7ff" + "52762205-8d0a-4263-aacb-f656c35e458c" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230548Z:d2ef9427-0931-42a1-825a-41bbe2cee7ff" + "WESTUS:20150709T192839Z:52762205-8d0a-4263-aacb-f656c35e458c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:05:48 GMT" + "Thu, 09 Jul 2015 19:28:38 GMT" ], "ETag": [ - "0x8D224E6E2F7E415" + "0x8D28894977723F4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rqb2JwaXBlL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistjobpipe\",\r\n \"primary\": \"u84FHYAF6m6de25ULLJKI1nVJGO71p+cQxHzOWRQy2Bxe76lzgR98AKKykb8IYTAHDZoeo1DgPife59Z1D25ug==\",\r\n \"secondary\": \"hwa5j3bBOONLE4xMzdsf1FgLYner+h3nw8IjuVaJDtADPzNt/PVu5QkfNDzeSp3KX9xYiKEQzTKWqpXh/h+5wQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "0327a360-e85b-4152-8f1e-668742c3d068" + "d8d8ec9a-1f39-4d2e-bc65-e789f0395c00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1186" ], "x-ms-request-id": [ - "de73330b-e971-4e6a-8849-e23e61d88238" + "3ecc87e1-c1b2-46a7-9986-0a4406031d1e" ], "x-ms-correlation-request-id": [ - "de73330b-e971-4e6a-8849-e23e61d88238" + "3ecc87e1-c1b2-46a7-9986-0a4406031d1e" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230549Z:de73330b-e971-4e6a-8849-e23e61d88238" + "WESTUS:20150709T192838Z:3ecc87e1-c1b2-46a7-9986-0a4406031d1e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:05:48 GMT" + "Thu, 09 Jul 2015 19:28:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rqb2JwaXBlL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistjobpipe\",\r\n \"primary\": \"u84FHYAF6m6de25ULLJKI1nVJGO71p+cQxHzOWRQy2Bxe76lzgR98AKKykb8IYTAHDZoeo1DgPife59Z1D25ug==\",\r\n \"secondary\": \"hwa5j3bBOONLE4xMzdsf1FgLYner+h3nw8IjuVaJDtADPzNt/PVu5QkfNDzeSp3KX9xYiKEQzTKWqpXh/h+5wQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "237" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "d2abebdd-7cd9-4704-ad84-8eb17b8784a0" + "35abdd19-8abf-4b78-8726-204006d3acc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1185" ], "x-ms-request-id": [ - "33490538-2250-4bf9-ae5d-38ad41639f6c" + "1a1562e5-18b2-45b3-ae7b-e5587a08d41e" ], "x-ms-correlation-request-id": [ - "33490538-2250-4bf9-ae5d-38ad41639f6c" + "1a1562e5-18b2-45b3-ae7b-e5587a08d41e" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230632Z:33490538-2250-4bf9-ae5d-38ad41639f6c" + "WESTUS:20150709T192839Z:1a1562e5-18b2-45b3-ae7b-e5587a08d41e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:06:31 GMT" + "Thu, 09 Jul 2015 19:28:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8c49348a-b515-45c3-9f34-f84b02e09385" + "f1d9420d-ba59-43fb-9544-112ba4937d13" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:06:29 GMT" + "Thu, 09 Jul 2015 19:28:37 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:06:29 GMT" + "Thu, 09 Jul 2015 19:28:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "58d96bdb-b58b-4fbb-a482-91cceae18a3e" + "96d58f52-73cf-4e63-a175-736416298f8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistjobpipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Date": [ - "Wed, 04 Mar 2015 23:06:29 GMT" + "Thu, 09 Jul 2015 19:28:37 GMT" ], "ETag": [ - "0x8D224E6FB558AC8" + "0x8D2889497434D08" ], "Location": [ - "https://testlistjobpipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c6023feb-c979-4781-961f-1aa4c23f9d76" + "1a25d110-5795-48d4-8994-ff9eb4e57ce5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:06:29 GMT" + "Thu, 09 Jul 2015 19:28:38 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobpipe.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobpipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E6FB558AC8\",\r\n \"lastModified\": \"2015-03-04T23:06:29.0426568Z\",\r\n \"creationTime\": \"2015-03-04T23:06:29.0426568Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:06:29.0426568Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2889497434D08\",\r\n \"lastModified\": \"2015-07-09T19:28:38.696884Z\",\r\n \"creationTime\": \"2015-07-09T19:28:38.696884Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:28:38.696884Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:06:29 GMT" + "Thu, 09 Jul 2015 19:28:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7ad653c9-7497-4ee5-aa6d-dc5cae54882c" + "4c9ea1a2-efe0-4a6c-98ba-64f805efd3ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:06:29 GMT" + "Thu, 09 Jul 2015 19:28:37 GMT" ], "ETag": [ - "0x8D224E6FB558AC8" + "0x8D2889497434D08" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -415,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1ed7128c-390e-4d00-be02-ccce940bcc52" + "59161d1d-8549-478f-a345-52e97b9aaf6a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:06:32 GMT" + "Thu, 09 Jul 2015 19:28:39 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobpipe.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobpipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E6FB558AC8\",\r\n \"lastModified\": \"2015-03-04T23:06:29.0426568Z\",\r\n \"creationTime\": \"2015-03-04T23:06:29.0426568Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:06:29.0426568Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2889497434D08\",\r\n \"lastModified\": \"2015-07-09T19:28:38.696884Z\",\r\n \"creationTime\": \"2015-07-09T19:28:38.696884Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:28:38.696884Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:06:29 GMT" + "Thu, 09 Jul 2015 19:28:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "23c79031-592c-4c00-8c2c-f45fcc1bb4d6" + "3381b69e-a931-421b-a8dc-94de5577d847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,121 +487,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:06:32 GMT" - ], - "ETag": [ - "0x8D224E6FB558AC8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe\",\r\n \"name\": \"testlistjobpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "760" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" - ], - "x-ms-request-id": [ - "3d331525-ea3e-4cd6-8ff5-93078425d600" - ], - "x-ms-correlation-request-id": [ - "3d331525-ea3e-4cd6-8ff5-93078425d600" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230631Z:3d331525-ea3e-4cd6-8ff5-93078425d600" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:06:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rqb2JwaXBlP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlistjobpipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistjobpipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "340" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:06:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d3a20bbb-8d9e-4c1f-87ab-df267b32fa56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "f6aea34e-9208-4c2d-beb7-96d87000660c" - ], - "x-ms-correlation-request-id": [ - "f6aea34e-9208-4c2d-beb7-96d87000660c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230632Z:f6aea34e-9208-4c2d-beb7-96d87000660c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:06:31 GMT" + "Thu, 09 Jul 2015 19:28:39 GMT" ], "ETag": [ - "0x8D224E6FCD629DE" + "0x8D2889497434D08" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -577,16 +508,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bb2426ef-e326-4d56-bf69-23130f0cb558" + "e86b1044-b8ce-4ef0-9dfe-9ebc0bede3f6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:06:32 GMT" + "Thu, 09 Jul 2015 19:28:39 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobpipe.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlistjobpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224E6FB668420\",\r\n \"lastModified\": \"2015-03-04T23:06:29.1538976Z\",\r\n \"creationTime\": \"2015-03-04T23:06:29.1236098Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:06:29.1538976Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T23:06:29.1538976Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D28894974C4DFD\",\r\n \"lastModified\": \"2015-07-09T19:28:38.7558909Z\",\r\n \"creationTime\": \"2015-07-09T19:28:38.7388848Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:28:38.7558909Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:28:38.7558909Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -595,7 +526,7 @@ "chunked" ], "request-id": [ - "a6d9946e-3de4-461d-b385-0c1d806b732a" + "1fd2552b-782f-4bb2-8252-0422423808f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -604,7 +535,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:06:32 GMT" + "Thu, 09 Jul 2015 19:28:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -622,13 +553,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "da65d853-1ae2-478c-8840-226d5c20d860" + "4bd95e40-6a47-494a-9274-0cc7fa99aadb" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:06:33 GMT" + "Thu, 09 Jul 2015 19:28:39 GMT" ] }, "ResponseBody": "", @@ -637,7 +568,7 @@ "chunked" ], "request-id": [ - "8ffd5577-2b91-4235-a5b2-859fea94a67c" + "6e54968c-51cc-4b59-924c-a5cf655f772f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,337 +577,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:06:32 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rqb2JwaXBlP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d15e81e4-4e90-488b-a227-dd927342cf58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" - ], - "x-ms-request-id": [ - "d34a47a7-5fe1-400a-861c-1c9a10ce5913" - ], - "x-ms-correlation-request-id": [ - "d34a47a7-5fe1-400a-861c-1c9a10ce5913" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230636Z:d34a47a7-5fe1-400a-861c-1c9a10ce5913" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:06:35 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe/operationResults/d15e81e4-4e90-488b-a227-dd927342cf58?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:28:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-pipe/providers/Microsoft.Batch/batchAccounts/testlistjobpipe/operationResults/d15e81e4-4e90-488b-a227-dd927342cf58?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rqb2JwaXBlL29wZXJhdGlvblJlc3VsdHMvZDE1ZTgxZTQtNGU5MC00ODhiLWEyMjctZGQ5MjczNDJjZjU4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:06:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "5f954683-a20a-4183-b8c5-8c876985a383" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "9f942b12-b8dd-4e7b-a2fc-9e5ae7418996" - ], - "x-ms-correlation-request-id": [ - "9f942b12-b8dd-4e7b-a2fc-9e5ae7418996" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230636Z:9f942b12-b8dd-4e7b-a2fc-9e5ae7418996" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:06:35 GMT" - ], - "ETag": [ - "0x8D224E6FF40F549" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-job-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1qb2ItcGlwZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" - ], - "x-ms-request-id": [ - "13b5f1b5-083e-4be2-80c2-8967a47c4d78" - ], - "x-ms-correlation-request-id": [ - "13b5f1b5-083e-4be2-80c2-8967a47c4d78" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230637Z:13b5f1b5-083e-4be2-80c2-8967a47c4d78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:06:36 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkZCSlVFVXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" - ], - "x-ms-request-id": [ - "af87c7d8-2739-4735-8086-977a75684504" - ], - "x-ms-correlation-request-id": [ - "af87c7d8-2739-4735-8086-977a75684504" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230637Z:af87c7d8-2739-4735-8086-977a75684504" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:06:37 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkZCSlVFVXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" - ], - "x-ms-request-id": [ - "48476151-fc1d-4886-a8e1-cdda65a8af0c" - ], - "x-ms-correlation-request-id": [ - "48476151-fc1d-4886-a8e1-cdda65a8af0c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230653Z:48476151-fc1d-4886-a8e1-cdda65a8af0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:06:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkZCSlVFVXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" - ], - "x-ms-request-id": [ - "2085eccd-d108-44c3-b4b8-17e50b20e89a" - ], - "x-ms-correlation-request-id": [ - "2085eccd-d108-44c3-b4b8-17e50b20e89a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230708Z:2085eccd-d108-44c3-b4b8-17e50b20e89a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:07:07 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json index 5b0d68ea5f87..a0393ed28993 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsByFilter.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-job-filter?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "fcd2c209-d9ec-4e50-af64-1b57bb1d74a6" + ], + "x-ms-correlation-request-id": [ + "fcd2c209-d9ec-4e50-af64-1b57bb1d74a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192703Z:fcd2c209-d9ec-4e50-af64-1b57bb1d74a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:27:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter\",\r\n \"name\": \"test-list-job-filter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "193" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" ], "x-ms-request-id": [ - "1f125785-077d-428d-8338-54c1313696b9" + "dd68b225-48ba-40f2-9361-d31c3d5857ee" ], "x-ms-correlation-request-id": [ - "1f125785-077d-428d-8338-54c1313696b9" + "dd68b225-48ba-40f2-9361-d31c3d5857ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230822Z:1f125785-077d-428d-8338-54c1313696b9" + "WESTUS:20150709T192810Z:dd68b225-48ba-40f2-9361-d31c3d5857ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:08:21 GMT" + "Thu, 09 Jul 2015 19:28:10 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdGpvYmZpbHRlcj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:27:04 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" - ], "request-id": [ - "68f74289-1d23-495c-a5cc-8a2f6357f2f3" + "63183d5a-5194-4e76-9648-51fc88d01b4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], "x-ms-request-id": [ - "b885f0f4-c4b5-4cb7-87f8-12a61aaf8be6" + "3028282d-5e12-4426-bb05-5a3d9272ac52" ], "x-ms-correlation-request-id": [ - "b885f0f4-c4b5-4cb7-87f8-12a61aaf8be6" + "3028282d-5e12-4426-bb05-5a3d9272ac52" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230827Z:b885f0f4-c4b5-4cb7-87f8-12a61aaf8be6" + "WESTUS:20150709T192704Z:3028282d-5e12-4426-bb05-5a3d9272ac52" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:08:26 GMT" + "Thu, 09 Jul 2015 19:27:04 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter/operationResults/68f74289-1d23-495c-a5cc-8a2f6357f2f3?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D288945F038ADE" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter/operationResults/68f74289-1d23-495c-a5cc-8a2f6357f2f3?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdGpvYmZpbHRlci9vcGVyYXRpb25SZXN1bHRzLzY4Zjc0Mjg5LTFkMjMtNDk1Yy1hNWNjLThhMmY2MzU3ZjJmMz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistjobfilter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistjobfilter.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:08:26 GMT" + "Thu, 09 Jul 2015 19:28:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "46c311f6-211f-444f-ab81-32b825d9004a" + "b3a4884b-dfa5-4576-a7b6-3c0614ae286a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14961" ], "x-ms-request-id": [ - "77aefd58-0865-451c-865e-82f4cc57b847" + "8b6f6596-369d-4496-93e8-d08cbbdea149" ], "x-ms-correlation-request-id": [ - "77aefd58-0865-451c-865e-82f4cc57b847" + "8b6f6596-369d-4496-93e8-d08cbbdea149" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230827Z:77aefd58-0865-451c-865e-82f4cc57b847" + "WESTUS:20150709T192811Z:8b6f6596-369d-4496-93e8-d08cbbdea149" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:08:26 GMT" + "Thu, 09 Jul 2015 19:28:10 GMT" ], "ETag": [ - "0x8D224E741482A33" + "0x8D2889486D0A6B0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdGpvYmZpbHRlci9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistjobfilter\",\r\n \"primary\": \"iv8uXr0sg2kS5HlQDEflABsh5tgM0ngd+UtkfeXz8tvBENWR5hOOqqIjhk78f/ZGyUCC1Yo0VNICbxEL9SywiA==\",\r\n \"secondary\": \"3pssYZ1uQaPahxMa+FpVxTY+rSbp5+z56NjKmYPHmd8FMMM7Pk4ZyKQkP/2ARe6h6wfszgEka0DxRnmkLdXh0g==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,7 +250,7 @@ "no-cache" ], "request-id": [ - "80f26f6a-560d-4cc3-b19e-4c7df376d979" + "c0178206-6225-4ac1-9e07-e80e985cf465" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -217,19 +259,19 @@ "1180" ], "x-ms-request-id": [ - "36e92f7d-1665-456e-8a24-8a774db4461e" + "ab04c51d-b226-4a0d-90a0-9a860ef0d14c" ], "x-ms-correlation-request-id": [ - "36e92f7d-1665-456e-8a24-8a774db4461e" + "ab04c51d-b226-4a0d-90a0-9a860ef0d14c" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230827Z:36e92f7d-1665-456e-8a24-8a774db4461e" + "WESTUS:20150709T192704Z:ab04c51d-b226-4a0d-90a0-9a860ef0d14c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:08:26 GMT" + "Thu, 09 Jul 2015 19:27:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdGpvYmZpbHRlci9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistjobfilter\",\r\n \"primary\": \"iv8uXr0sg2kS5HlQDEflABsh5tgM0ngd+UtkfeXz8tvBENWR5hOOqqIjhk78f/ZGyUCC1Yo0VNICbxEL9SywiA==\",\r\n \"secondary\": \"3pssYZ1uQaPahxMa+FpVxTY+rSbp5+z56NjKmYPHmd8FMMM7Pk4ZyKQkP/2ARe6h6wfszgEka0DxRnmkLdXh0g==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,7 +307,7 @@ "no-cache" ], "request-id": [ - "5bb17f0e-7902-4fd2-abee-c9d6d0b52a22" + "163b284f-e15e-48fe-8ef2-92a6cc76074d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -274,19 +316,19 @@ "1179" ], "x-ms-request-id": [ - "0a831933-550e-4ed8-b2d3-5020aae12b90" + "14cfb262-0065-47e9-9db3-3aaadb4d2976" ], "x-ms-correlation-request-id": [ - "0a831933-550e-4ed8-b2d3-5020aae12b90" + "14cfb262-0065-47e9-9db3-3aaadb4d2976" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T231005Z:0a831933-550e-4ed8-b2d3-5020aae12b90" + "WESTUS:20150709T192811Z:14cfb262-0065-47e9-9db3-3aaadb4d2976" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:10:04 GMT" + "Thu, 09 Jul 2015 19:28:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "2f6369e1-b6f0-403f-b17d-a23ca38f55c5" + "0cd716a9-bc92-4828-b31b-066117b51146" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:04 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "685906a7-386a-4ce3-8bcd-19fb14f5ad70" + "a6b8eb66-dba7-4059-a76d-1a365d6474ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Date": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:04 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Location": [ - "https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b5786625-080e-4cf9-abd1-88300e0b95f6" + "cf8f970a-958d-4bd0-9f4f-095009ca5905" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:02 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "13dae758-a315-4936-b397-2b13b79f2848" + "28f9418c-3a27-4155-a832-a7e4de485ce0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:02 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -415,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f39c0fde-3bdc-4223-88fa-d63c37823648" + "4eabc734-fe54-40be-b926-883ca456d005" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:03 GMT" + "Thu, 09 Jul 2015 19:27:06 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "30397d5a-578f-4126-83cd-39ecc31d3443" + "ab470bac-d482-4386-81da-3b33e0f6031d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,10 +487,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:03 GMT" + "Thu, 09 Jul 2015 19:27:06 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,28 +508,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ec215e7e-41db-45c0-a263-e3c23557bca3" + "fc0b8509-d7cf-4954-ac90-3d8dda0402dc" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:08 GMT" + "Thu, 09 Jul 2015 19:27:11 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "41688500-27db-4c7d-b109-56edbb5dbb8a" + "b487118b-217a-47e2-b559-86f866ce094e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,10 +538,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:08 GMT" + "Thu, 09 Jul 2015 19:27:11 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +559,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6b688aa0-01bb-474d-b957-23b47983c9c0" + "ef9d8020-f931-44b9-8305-8d4a1e76d7dc" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:13 GMT" + "Thu, 09 Jul 2015 19:27:16 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8302b23d-a621-4702-a40b-212620194273" + "790327ce-89fc-4f0a-88a4-b60e9f16b293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +589,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:13 GMT" + "Thu, 09 Jul 2015 19:27:16 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,28 +610,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "5195e161-cee6-4e86-bd18-56daece7edc8" + "7fb86bd7-3748-4194-b978-e416ac607ffb" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:19 GMT" + "Thu, 09 Jul 2015 19:27:22 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "bcdb7f8e-dcb6-4034-bee5-e302a2046c84" + "927d62dd-4ebf-439b-9503-570230e1f76d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,10 +640,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:19 GMT" + "Thu, 09 Jul 2015 19:27:20 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -619,28 +661,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "18ac5006-aa5b-4b5d-9a85-326adcc77af5" + "b185e4c8-67c4-4139-9490-9babe38df6c5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:24 GMT" + "Thu, 09 Jul 2015 19:27:27 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cb2ceee3-c082-4b23-91b8-bc20972f3fbf" + "1c34d799-5867-4a11-b998-070e0d80b5f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,10 +691,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:24 GMT" + "Thu, 09 Jul 2015 19:27:27 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,28 +712,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "31385e18-e8e7-4766-b7b8-4036d559ea47" + "16060753-30bf-4875-8575-2650e91eafbc" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:29 GMT" + "Thu, 09 Jul 2015 19:27:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4bdd59ed-ded6-4fa2-a2a7-2098acdd48a3" + "301add79-b841-4683-ab67-039ff2c26772" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,10 +742,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:29 GMT" + "Thu, 09 Jul 2015 19:27:32 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -721,28 +763,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8e7c6ce0-c678-4674-95a2-2b0fed1dd92f" + "272de535-58c2-4f3b-9b9a-d2c639a26b6f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:35 GMT" + "Thu, 09 Jul 2015 19:27:38 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "32819ba6-70d4-4bd4-84de-f31d70428293" + "06fcfe39-9b38-41ae-988a-cfbe43cb162f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -751,10 +793,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:35 GMT" + "Thu, 09 Jul 2015 19:27:37 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -772,28 +814,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "fdf0cdd6-4baf-42d5-a97b-ebb4f550fa15" + "631f0f3d-8e27-4cca-917c-1cdcbd74abb8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:40 GMT" + "Thu, 09 Jul 2015 19:27:43 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1eb09ed8-2a4b-4934-90b0-fd732bbafb86" + "1d00e957-4720-462c-8329-b43ec7b0d1db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -802,10 +844,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:40 GMT" + "Thu, 09 Jul 2015 19:27:43 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -823,28 +865,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "600caa72-60e9-4e03-85a1-3a4ee58e26ea" + "f8862225-8806-4338-bfe3-84f4fa2094a4" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:45 GMT" + "Thu, 09 Jul 2015 19:27:48 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6458bebd-35bf-41da-ba9a-20780986dd8c" + "99626cf6-a069-4a25-b394-b57bec61d29b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -853,10 +895,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:45 GMT" + "Thu, 09 Jul 2015 19:27:48 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -874,28 +916,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ac4ba006-fa54-4736-af77-20fe32c29e0b" + "9df484fe-f714-45f3-8d0b-a535d2e31c53" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:51 GMT" + "Thu, 09 Jul 2015 19:27:54 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d0a71cb3-4f61-4364-85f2-c0d6c35c8d29" + "17522028-0321-4bab-b9a0-fb3f95ecc25e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -904,10 +946,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:50 GMT" + "Thu, 09 Jul 2015 19:27:54 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -925,28 +967,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4b1d9d3d-d911-4572-acdf-c2c80e45bcc6" + "0e087a78-ad21-4a08-b93e-9b651fd5c3ff" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:09:56 GMT" + "Thu, 09 Jul 2015 19:27:59 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:10:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "14887e80-6b28-4bae-91ae-d965a428da2e" + "3ab2c6f9-3e1e-47cc-9feb-2a974122cfd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -955,10 +997,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:09:56 GMT" + "Thu, 09 Jul 2015 19:27:59 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -976,28 +1018,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "3ee983a1-3bb8-45da-8123-7bae50948e47" + "a953f36f-0294-4d9b-a395-d26d230df2e7" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:10:02 GMT" + "Thu, 09 Jul 2015 19:28:04 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:11:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:28:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "848de004-9720-4301-852e-9cf362feeacf" + "5b0700e7-cf78-4b7c-a1ff-c94243fc15b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,10 +1048,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:10:01 GMT" + "Thu, 09 Jul 2015 19:28:04 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1027,28 +1069,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cdc011a3-f2a5-4b4f-958f-ce458c2f122f" + "1fba3510-2ccf-4d06-85f9-6edc22d7fb15" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:10:05 GMT" + "Thu, 09 Jul 2015 19:28:10 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E75649030E\",\r\n \"lastModified\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"creationTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:09:01.6332046Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:11:01.6332046Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:29:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:09:01 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "928dc1ef-ad2d-4e3d-99e4-875c07044792" + "d4de29cb-16a9-4163-8855-15d2885f05bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,10 +1099,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:10:05 GMT" + "Thu, 09 Jul 2015 19:28:09 GMT" ], "ETag": [ - "0x8D224E75649030E" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1069,109 +1111,49 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter\",\r\n \"name\": \"testlistjobfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "766" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "8e0025aa-d990-4e31-8f04-7a4e7c5d373f" - ], - "x-ms-correlation-request-id": [ - "8e0025aa-d990-4e31-8f04-7a4e7c5d373f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231004Z:8e0025aa-d990-4e31-8f04-7a4e7c5d373f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WA-Batch/1.0" ], - "Cache-Control": [ - "no-cache" + "client-request-id": [ + "c984e004-67cf-4097-b526-39b1747f5f56" ], - "Date": [ - "Wed, 04 Mar 2015 23:10:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdGpvYmZpbHRlcj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" + "return-client-request-id": [ + "False" ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "ocp-date": [ + "Thu, 09 Jul 2015 19:28:11 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistjobfilter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistjobfilter.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D288945FCFF753\",\r\n \"lastModified\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"creationTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:27:05.6663379Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:29:05.6663379Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "348" - ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:10:04 GMT" + "Thu, 09 Jul 2015 19:27:05 GMT" ], - "Pragma": [ - "no-cache" + "Transfer-Encoding": [ + "chunked" ], "request-id": [ - "15e85675-40df-4b02-843f-3c2387ba5b10" + "c657cbd7-cd2d-4a31-a2a1-d89e81cc3c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" - ], - "x-ms-request-id": [ - "a24ba613-c854-42e2-a138-508d7269ab4d" - ], - "x-ms-correlation-request-id": [ - "a24ba613-c854-42e2-a138-508d7269ab4d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231004Z:a24ba613-c854-42e2-a138-508d7269ab4d" - ], - "Cache-Control": [ - "no-cache" + "DataServiceVersion": [ + "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:10:04 GMT" + "Thu, 09 Jul 2015 19:28:11 GMT" ], "ETag": [ - "0x8D224E77B7E2C08" + "0x8D288945FCFF753" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1189,16 +1171,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "35b9842d-6952-42db-a884-337f350c2f6a" + "b72514b9-f050-49cd-bfae-1ab2486ecbfd" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:10:04 GMT" + "Thu, 09 Jul 2015 19:28:11 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D224E77A0EC716\",\r\n \"lastModified\": \"2015-03-04T23:10:01.6495382Z\",\r\n \"creationTime\": \"2015-03-04T23:10:01.6335375Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:10:01.6495382Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T23:10:01.6495382Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D288948395892D\",\r\n \"lastModified\": \"2015-07-09T19:28:05.6813869Z\",\r\n \"creationTime\": \"2015-07-09T19:28:05.6663871Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:28:05.6813869Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:28:05.6813869Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1207,7 +1189,7 @@ "chunked" ], "request-id": [ - "8a7d22c1-55da-421d-80e6-5de9419c683e" + "fc32a6ca-1392-4a89-8c48-5fd4da0a4e3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1216,7 +1198,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:10:04 GMT" + "Thu, 09 Jul 2015 19:28:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1234,16 +1216,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1b7ec0b4-0a72-4dd7-a0a6-48318d4f82a1" + "0cac3c1a-646a-4ee1-91a2-bb1bc0cf5de3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:10:05 GMT" + "Thu, 09 Jul 2015 19:28:11 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobfilter.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://testlistjobfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D224E77A0EC716\",\r\n \"lastModified\": \"2015-03-04T23:10:01.6495382Z\",\r\n \"creationTime\": \"2015-03-04T23:10:01.6335375Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:10:01.6495382Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T23:10:01.6495382Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D288948395892D\",\r\n \"lastModified\": \"2015-07-09T19:28:05.6813869Z\",\r\n \"creationTime\": \"2015-07-09T19:28:05.6663871Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:28:05.6813869Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:28:05.6813869Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1252,7 +1234,7 @@ "chunked" ], "request-id": [ - "a57f6cb0-f936-4f55-9b3c-118c1b824339" + "738abcc4-740b-4763-a7b1-bc3fb0dfe4b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1261,7 +1243,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:10:05 GMT" + "Thu, 09 Jul 2015 19:28:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1279,13 +1261,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cbb833ac-8b91-4456-a290-97fc193616fa" + "e98c7678-46f2-43dd-ac5f-65c2a3269fee" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:10:06 GMT" + "Thu, 09 Jul 2015 19:28:12 GMT" ] }, "ResponseBody": "", @@ -1294,7 +1276,7 @@ "chunked" ], "request-id": [ - "e30a1567-fb37-4940-9698-35eba3be15a0" + "f5f55185-7ffd-4fa4-9fa9-3b0c1fb89a71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1303,397 +1285,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:10:05 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdGpvYmZpbHRlcj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "abc21db2-ed97-4684-831c-63e27542e694" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" - ], - "x-ms-request-id": [ - "5eb9c035-2baf-4a0a-867e-e4555ae3038b" - ], - "x-ms-correlation-request-id": [ - "5eb9c035-2baf-4a0a-867e-e4555ae3038b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231008Z:5eb9c035-2baf-4a0a-867e-e4555ae3038b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:10:08 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter/operationResults/abc21db2-ed97-4684-831c-63e27542e694?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter/operationResults/abc21db2-ed97-4684-831c-63e27542e694?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdGpvYmZpbHRlci9vcGVyYXRpb25SZXN1bHRzL2FiYzIxZGIyLWVkOTctNDY4NC04MzFjLTYzZTI3NTQyZTY5ND9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b490639e-8265-4303-beee-d321a5092205" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" - ], - "x-ms-request-id": [ - "7a3cd1de-86d0-46b7-9418-fcf9e51ed623" - ], - "x-ms-correlation-request-id": [ - "7a3cd1de-86d0-46b7-9418-fcf9e51ed623" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231008Z:7a3cd1de-86d0-46b7-9418-fcf9e51ed623" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:10:08 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter/operationResults/abc21db2-ed97-4684-831c-63e27542e694?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:28:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-filter/providers/Microsoft.Batch/batchAccounts/testlistjobfilter/operationResults/abc21db2-ed97-4684-831c-63e27542e694?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdGpvYmZpbHRlci9vcGVyYXRpb25SZXN1bHRzL2FiYzIxZGIyLWVkOTctNDY4NC04MzFjLTYzZTI3NTQyZTY5ND9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:10:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "092c58f0-7ace-46c9-a9be-a9cc21f42d76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" - ], - "x-ms-request-id": [ - "26f906b6-275f-4349-9ac3-66b13cb0508b" - ], - "x-ms-correlation-request-id": [ - "26f906b6-275f-4349-9ac3-66b13cb0508b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231024Z:26f906b6-275f-4349-9ac3-66b13cb0508b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:10:23 GMT" - ], - "ETag": [ - "0x8D224E786E08F5A" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-job-filter?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1qb2ItZmlsdGVyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" - ], - "x-ms-request-id": [ - "99c897a3-46af-41ae-952b-25511ec4524b" - ], - "x-ms-correlation-request-id": [ - "99c897a3-46af-41ae-952b-25511ec4524b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231025Z:99c897a3-46af-41ae-952b-25511ec4524b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:10:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyREZJTFRFUi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyREZJTFRFUi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkVaSlRGUkZVaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "1d810963-38c0-4d95-b9bf-0ba363f4942d" - ], - "x-ms-correlation-request-id": [ - "1d810963-38c0-4d95-b9bf-0ba363f4942d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231025Z:1d810963-38c0-4d95-b9bf-0ba363f4942d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:10:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyREZJTFRFUi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyREZJTFRFUi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkVaSlRGUkZVaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "f14bcf1c-88c3-4a7e-bfbf-4e62194ecc49" - ], - "x-ms-correlation-request-id": [ - "f14bcf1c-88c3-4a7e-bfbf-4e62194ecc49" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231040Z:f14bcf1c-88c3-4a7e-bfbf-4e62194ecc49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:10:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyREZJTFRFUi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyREZJTFRFUi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkVaSlRGUkZVaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "48537e79-5af2-4cf7-a0b1-d2304822a07d" - ], - "x-ms-correlation-request-id": [ - "48537e79-5af2-4cf7-a0b1-d2304822a07d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231056Z:48537e79-5af2-4cf7-a0b1-d2304822a07d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:10:55 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsWithMaxCount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsWithMaxCount.json index 840066e10056..c0e3e66753ab 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsWithMaxCount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestListJobsWithMaxCount.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-job-maxcount?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "bd0fc85d-779a-4261-953f-dd2be3b9c35f" + ], + "x-ms-correlation-request-id": [ + "bd0fc85d-779a-4261-953f-dd2be3b9c35f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192900Z:bd0fc85d-779a-4261-953f-dd2be3b9c35f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:29:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount\",\r\n \"name\": \"test-list-job-maxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" ], "x-ms-request-id": [ - "e3d1b5a7-042d-4a4c-956d-f3649016793f" + "9d80910e-2ceb-4ed2-86d0-e5a32922fd25" ], "x-ms-correlation-request-id": [ - "e3d1b5a7-042d-4a4c-956d-f3649016793f" + "9d80910e-2ceb-4ed2-86d0-e5a32922fd25" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T231209Z:e3d1b5a7-042d-4a4c-956d-f3649016793f" + "WESTUS:20150709T193007Z:9d80910e-2ceb-4ed2-86d0-e5a32922fd25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:12:09 GMT" + "Thu, 09 Jul 2015 19:30:07 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9ibWF4Y291bnQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:29:02 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" - ], "request-id": [ - "e9a5bb5f-dfb4-4bc0-9047-f747640ad0a5" + "10653f3e-c281-4b35-a0b4-b1aaea11cbc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], "x-ms-request-id": [ - "2286cfa7-7877-4122-96da-5288274155a5" + "0fa5977b-f5cb-4d32-a95f-f5a3fc8252d1" ], "x-ms-correlation-request-id": [ - "2286cfa7-7877-4122-96da-5288274155a5" + "0fa5977b-f5cb-4d32-a95f-f5a3fc8252d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T231213Z:2286cfa7-7877-4122-96da-5288274155a5" + "WESTUS:20150709T192901Z:0fa5977b-f5cb-4d32-a95f-f5a3fc8252d1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:12:12 GMT" + "Thu, 09 Jul 2015 19:29:01 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount/operationResults/e9a5bb5f-dfb4-4bc0-9047-f747640ad0a5?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28894A544DC95" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount/operationResults/e9a5bb5f-dfb4-4bc0-9047-f747640ad0a5?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9ibWF4Y291bnQvb3BlcmF0aW9uUmVzdWx0cy9lOWE1YmI1Zi1kZmI0LTRiYzAtOTA0Ny1mNzQ3NjQwYWQwYTU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistjobmaxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistjobmaxcount.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "356" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:12 GMT" + "Thu, 09 Jul 2015 19:30:08 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d3042ea6-eff4-4760-a7db-23731237bf35" + "8415c1b9-6b93-470f-8f25-98dbfd3f3296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14958" ], "x-ms-request-id": [ - "48854591-fcbe-47ef-b64a-fd2a4b3623dc" + "89b045af-7138-47c5-9f95-7f411c0f1dee" ], "x-ms-correlation-request-id": [ - "48854591-fcbe-47ef-b64a-fd2a4b3623dc" + "89b045af-7138-47c5-9f95-7f411c0f1dee" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T231213Z:48854591-fcbe-47ef-b64a-fd2a4b3623dc" + "WESTUS:20150709T193008Z:89b045af-7138-47c5-9f95-7f411c0f1dee" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:12:13 GMT" + "Thu, 09 Jul 2015 19:30:07 GMT" ], "ETag": [ - "0x8D224E7C8575A39" + "0x8D28894CCD1CE62" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9ibWF4Y291bnQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistjobmaxcount\",\r\n \"primary\": \"m0WaSscgEagKDfW6VzO+qbmeHayfjQsX/jQWhjLnKLgvEykQztlx7+/n/vdvLIfdigymRxrJTRBKeJ6DfkEidw==\",\r\n \"secondary\": \"F7E2UTDwDbGyNVUQ7/A33YdxE7nIHnGSinaytC3c4RLwA5RXTjlIJJbaJdpb1kMw4ZcrrmOljJJ8Vio5vfHI+Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "241" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "f7e748be-d55e-4b6f-9f46-3a38041cd508" + "fac4caff-6203-4fc3-926f-c2431deed5d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1185" ], "x-ms-request-id": [ - "6e97b64a-de41-44ba-b01f-ab558fd95b6a" + "818ac719-aa7a-448f-b8c6-6a51770aefc6" ], "x-ms-correlation-request-id": [ - "6e97b64a-de41-44ba-b01f-ab558fd95b6a" + "818ac719-aa7a-448f-b8c6-6a51770aefc6" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T231213Z:6e97b64a-de41-44ba-b01f-ab558fd95b6a" + "WESTUS:20150709T192902Z:818ac719-aa7a-448f-b8c6-6a51770aefc6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:12:13 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9ibWF4Y291bnQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistjobmaxcount\",\r\n \"primary\": \"m0WaSscgEagKDfW6VzO+qbmeHayfjQsX/jQWhjLnKLgvEykQztlx7+/n/vdvLIfdigymRxrJTRBKeJ6DfkEidw==\",\r\n \"secondary\": \"F7E2UTDwDbGyNVUQ7/A33YdxE7nIHnGSinaytC3c4RLwA5RXTjlIJJbaJdpb1kMw4ZcrrmOljJJ8Vio5vfHI+Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "241" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "e9f48862-e8b7-4690-92eb-ed143f27291e" + "32be320a-4ce5-48a4-8df1-8c4d99e5a8a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1184" ], "x-ms-request-id": [ - "a495a995-2e3b-4714-9096-e1287996a493" + "e51e8680-669b-4681-8f49-f3e05c99e497" ], "x-ms-correlation-request-id": [ - "a495a995-2e3b-4714-9096-e1287996a493" + "e51e8680-669b-4681-8f49-f3e05c99e497" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T231401Z:a495a995-2e3b-4714-9096-e1287996a493" + "WESTUS:20150709T193008Z:e51e8680-669b-4681-8f49-f3e05c99e497" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:14:00 GMT" + "Thu, 09 Jul 2015 19:30:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9b536027-e2ce-4202-b45c-2cc93e86c2d8" + "fe985cd2-efaf-4006-8490-71745b0d1a3d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d57b8152-dcee-4dff-92d8-1c553817418c" + "35867b6a-a110-4823-9514-659dcc49321a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Date": [ - "Wed, 04 Mar 2015 23:12:53 GMT" + "Thu, 09 Jul 2015 19:29:01 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Location": [ - "https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7f0b7877-2005-48d0-8abb-9dac18087e86" + "2f4cc6c6-46fb-4f2b-bb81-414ab6f44d36" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "933c4c9a-f1b4-4845-b886-9d22b4f8272a" + "bd052931-11e7-48fa-b141-eb09d553f60e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:03 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -415,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0421c174-1172-4fcc-8ceb-4c363b8f769c" + "5c862170-015a-4b2e-bb28-7a694760c331" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:12:55 GMT" + "Thu, 09 Jul 2015 19:29:03 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4dbcc4ef-b58f-4344-8906-db5a76813021" + "134a0281-1082-4bae-a078-fb45c4848e66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,10 +487,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:12:55 GMT" + "Thu, 09 Jul 2015 19:29:03 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,28 +508,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "51791e7d-c752-4860-9864-0517b467ac08" + "234e336d-25eb-4046-bdf9-6b8934d98064" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:01 GMT" + "Thu, 09 Jul 2015 19:29:08 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "90fd82d1-6c83-4922-8f60-73dcd80869cf" + "1fe46470-924f-4dfe-b234-59e93a9f5a53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,10 +538,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:00 GMT" + "Thu, 09 Jul 2015 19:29:08 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,28 +559,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "eb89cd73-b580-4730-b933-8d7fd7967b3d" + "0c1725a6-de2b-4284-b883-b2592d573e19" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:06 GMT" + "Thu, 09 Jul 2015 19:29:13 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1d363b8e-3548-4c9f-80bb-594828455014" + "c4ad02b8-4048-45a1-82b8-03233bea4ab4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,10 +589,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:06 GMT" + "Thu, 09 Jul 2015 19:29:12 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,28 +610,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "d589597f-361f-47b4-b3d5-6f7d581b70ae" + "1fcd1113-7fb8-403d-ade6-5a22dd115328" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:11 GMT" + "Thu, 09 Jul 2015 19:29:19 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fa43374e-7152-43f7-b09f-dbc84aa8cf5a" + "d344e9db-e751-46c2-a145-d86932a3dc43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,10 +640,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:11 GMT" + "Thu, 09 Jul 2015 19:29:19 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -619,28 +661,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "77da3aaa-59ac-41be-8e3e-76e10dfd54c0" + "1adf673d-efbd-4bc0-9c18-65621b775d4a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:17 GMT" + "Thu, 09 Jul 2015 19:29:24 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ce68e88e-24b9-4d2e-a9c5-a30c9fe302a3" + "b652a791-dc69-4573-8c80-6434f58a263b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,10 +691,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:16 GMT" + "Thu, 09 Jul 2015 19:29:24 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -670,28 +712,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4a43cedc-0268-488c-8623-f9a0920b7e51" + "67127205-4d86-4392-94f2-4703309f0bc6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:22 GMT" + "Thu, 09 Jul 2015 19:29:29 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7aef4c4d-3292-411f-a40e-231abafa2905" + "d4899ebd-a009-4ff7-8351-5f2758a6b28c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,10 +742,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:21 GMT" + "Thu, 09 Jul 2015 19:29:30 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -721,28 +763,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8e5099b5-8659-4f5e-931f-a4bba8ba02d2" + "03ed67cf-0e76-40ff-8ac0-b55e81bc21c5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:27 GMT" + "Thu, 09 Jul 2015 19:29:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9df46145-82b6-47f8-a53c-c63990d02907" + "a5e5b26c-797f-46ef-8db4-f5853c31ed73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -751,10 +793,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:28 GMT" + "Thu, 09 Jul 2015 19:29:35 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -772,28 +814,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4c2b78b7-4423-4fd0-bd51-7bfb2994e193" + "e9b027de-61e7-4ed5-be11-9ce14040bd06" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:33 GMT" + "Thu, 09 Jul 2015 19:29:40 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a372ca26-939c-438b-bf35-009e688a86b6" + "4183a701-192e-4a47-85aa-54a4097640ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -802,10 +844,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:33 GMT" + "Thu, 09 Jul 2015 19:29:41 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -823,28 +865,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "683857a0-47f4-4916-a80b-a7aeddb265ab" + "5e326f85-e3d0-4648-8d9c-5349fbb31323" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:38 GMT" + "Thu, 09 Jul 2015 19:29:45 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b38e3581-8297-4990-8204-8a2fc7ad5d4e" + "bb3d88ae-467a-4d5a-8690-8a8fbe21c821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -853,10 +895,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:38 GMT" + "Thu, 09 Jul 2015 19:29:46 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -874,28 +916,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a15c86b7-1fdf-45b8-b153-9bc69401ebd0" + "d4c007ac-c6dd-4e57-a791-535913a4b3c2" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:43 GMT" + "Thu, 09 Jul 2015 19:29:51 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "541eba56-cb26-4938-8926-38cad1976f91" + "a8480e44-94fd-4256-8eba-63724a7de436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -904,10 +946,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:43 GMT" + "Thu, 09 Jul 2015 19:29:51 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -925,28 +967,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "92d6d195-3b53-4724-b0ef-ad28318f5ca1" + "d8d08f03-ea90-49e7-8ed7-d4a7109c6163" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:49 GMT" + "Thu, 09 Jul 2015 19:29:56 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:13:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2555c3e7-b590-4cb8-ab3e-70cb19e9023d" + "ef5bb2b1-d292-4009-9bf9-9a979726941f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -955,10 +997,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:48 GMT" + "Thu, 09 Jul 2015 19:29:56 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -976,28 +1018,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "3240f8e6-efb1-4e5c-9c58-0480d7614d57" + "145372f7-2775-4614-97e3-884cc0976802" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:13:54 GMT" + "Thu, 09 Jul 2015 19:30:01 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:14:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:30:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4c468ab4-2504-4611-8f6f-caf4b454519b" + "b4ddee1a-599a-49d8-884d-047047962055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,10 +1048,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:13:53 GMT" + "Thu, 09 Jul 2015 19:30:00 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1027,28 +1069,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "40c6048c-5f60-4026-976c-8001485830f9" + "40e00610-4d11-4114-bec6-3558c2157f69" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:14:01 GMT" + "Thu, 09 Jul 2015 19:30:07 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E7E0E7025F\",\r\n \"lastModified\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:54.1942367Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-04T23:14:54.1942367Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:31:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:12:54 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fbea628c-594f-406d-ab88-b876f99992ca" + "b917fff7-f6e8-49f3-be42-bb8be0489225" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,10 +1099,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:14:01 GMT" + "Thu, 09 Jul 2015 19:30:06 GMT" ], "ETag": [ - "0x8D224E7E0E7025F" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1069,109 +1111,49 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount\",\r\n \"name\": \"testlistjobmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "772" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "6506e300-8713-4923-a38d-32c9d1dabf9a" - ], - "x-ms-correlation-request-id": [ - "6506e300-8713-4923-a38d-32c9d1dabf9a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231400Z:6506e300-8713-4923-a38d-32c9d1dabf9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WA-Batch/1.0" ], - "Cache-Control": [ - "no-cache" + "client-request-id": [ + "8e9c12fb-536c-40bf-8b41-02357082450f" ], - "Date": [ - "Wed, 04 Mar 2015 23:14:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9ibWF4Y291bnQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" + "return-client-request-id": [ + "False" ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "ocp-date": [ + "Thu, 09 Jul 2015 19:30:08 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistjobmaxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistjobmaxcount.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28894A5A8A077\",\r\n \"lastModified\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:02.8490359Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"PT1M\"\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-09T19:31:02.8490359Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"name\": \"job-0000000002\"\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "356" - ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:14:00 GMT" + "Thu, 09 Jul 2015 19:29:02 GMT" ], - "Pragma": [ - "no-cache" + "Transfer-Encoding": [ + "chunked" ], "request-id": [ - "4b0b75e2-a357-41b1-a7e0-81b5718c8eda" + "150556f2-5e79-4032-8ef9-8d472e2dd02a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" - ], - "x-ms-request-id": [ - "b73ac77e-dcb7-4bfb-8624-0016d417efbc" - ], - "x-ms-correlation-request-id": [ - "b73ac77e-dcb7-4bfb-8624-0016d417efbc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231401Z:b73ac77e-dcb7-4bfb-8624-0016d417efbc" - ], - "Cache-Control": [ - "no-cache" + "DataServiceVersion": [ + "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:14:00 GMT" + "Thu, 09 Jul 2015 19:30:08 GMT" ], "ETag": [ - "0x8D224E808A2A0D2" + "0x8D28894A5A8A077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1189,16 +1171,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ab878ab9-830c-4f34-9b47-b357f7503145" + "985268a1-89eb-43de-af25-a37e2d7d5abd" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:14:01 GMT" + "Thu, 09 Jul 2015 19:30:08 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D224E804AF88AB\",\r\n \"lastModified\": \"2015-03-04T23:13:54.2286507Z\",\r\n \"creationTime\": \"2015-03-04T23:13:54.1952135Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:13:54.2286507Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T23:13:54.2286507Z\"\r\n }\r\n },\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224E7E1693E75\",\r\n \"lastModified\": \"2015-03-04T23:12:55.0477429Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.2278252Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:55.0888993Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-03-04T23:12:54.2448243Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T23:12:54.2448243Z\",\r\n \"endTime\": \"2015-03-04T23:12:55.0888993Z\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D28894C96E9943\",\r\n \"lastModified\": \"2015-07-09T19:30:02.8667203Z\",\r\n \"creationTime\": \"2015-07-09T19:30:02.8494213Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:02.8667203Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:30:02.8667203Z\"\r\n }\r\n },\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D28894A60FFFC2\",\r\n \"lastModified\": \"2015-07-09T19:29:03.5264962Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8873755Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:04.449729Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:29:02.9033103Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:29:02.9033103Z\",\r\n \"endTime\": \"2015-07-09T19:29:04.449729Z\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1207,7 +1189,7 @@ "chunked" ], "request-id": [ - "d6c9e7ec-2137-4b2b-8153-bd462584a219" + "dbb06b71-aada-44d9-ae80-acf84c440cbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1216,7 +1198,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:14:01 GMT" + "Thu, 09 Jul 2015 19:30:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1234,16 +1216,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "254cdc1c-504d-4df9-a624-b5e10d9e77bb" + "7e30e0fd-e0dd-44a3-829b-cd8ba7d3f080" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:14:02 GMT" + "Thu, 09 Jul 2015 19:30:09 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistjobmaxcount.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D224E804AF88AB\",\r\n \"lastModified\": \"2015-03-04T23:13:54.2286507Z\",\r\n \"creationTime\": \"2015-03-04T23:13:54.1952135Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:13:54.2286507Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T23:13:54.2286507Z\"\r\n }\r\n },\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlistjobmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D224E7E1693E75\",\r\n \"lastModified\": \"2015-03-04T23:12:55.0477429Z\",\r\n \"creationTime\": \"2015-03-04T23:12:54.2278252Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-03-04T23:12:55.0888993Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-03-04T23:12:54.2448243Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-04T23:12:54.2448243Z\",\r\n \"endTime\": \"2015-03-04T23:12:55.0888993Z\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000002\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000002\",\r\n \"eTag\": \"0x8D28894C96E9943\",\r\n \"lastModified\": \"2015-07-09T19:30:02.8667203Z\",\r\n \"creationTime\": \"2015-07-09T19:30:02.8494213Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:02.8667203Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:30:02.8667203Z\"\r\n }\r\n },\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D28894A60FFFC2\",\r\n \"lastModified\": \"2015-07-09T19:29:03.5264962Z\",\r\n \"creationTime\": \"2015-07-09T19:29:02.8873755Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T19:29:04.449729Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:29:02.9033103Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T19:29:02.9033103Z\",\r\n \"endTime\": \"2015-07-09T19:29:04.449729Z\",\r\n \"terminateReason\": \"UserTerminate\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -1252,7 +1234,7 @@ "chunked" ], "request-id": [ - "09422772-d058-462d-a842-07e682b581dd" + "4b93591a-459b-455e-84f6-a8b35e473572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1261,7 +1243,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:14:02 GMT" + "Thu, 09 Jul 2015 19:30:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1279,13 +1261,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7ab1c551-9004-4764-a276-fd62d970b752" + "feb2e643-4c46-4ee4-82e8-18e10ea96148" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:14:02 GMT" + "Thu, 09 Jul 2015 19:30:09 GMT" ] }, "ResponseBody": "", @@ -1294,7 +1276,7 @@ "chunked" ], "request-id": [ - "287439de-2442-40b5-b59c-4ba985b14d1e" + "e2cd96cc-2591-4ae3-ab31-5bd76066298a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1303,397 +1285,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:14:03 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9ibWF4Y291bnQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "3d9d0f49-7e9f-4b96-9dd5-1e1c554f7e34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" - ], - "x-ms-request-id": [ - "c07ce4d5-66ea-4eae-94fe-7b812ecd995d" - ], - "x-ms-correlation-request-id": [ - "c07ce4d5-66ea-4eae-94fe-7b812ecd995d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231405Z:c07ce4d5-66ea-4eae-94fe-7b812ecd995d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:14:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount/operationResults/3d9d0f49-7e9f-4b96-9dd5-1e1c554f7e34?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount/operationResults/3d9d0f49-7e9f-4b96-9dd5-1e1c554f7e34?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9ibWF4Y291bnQvb3BlcmF0aW9uUmVzdWx0cy8zZDlkMGY0OS03ZTlmLTRiOTYtOWRkNS0xZTFjNTU0ZjdlMzQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "020fe2d7-e8b6-4c1e-9ff3-248d0d7d3d34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" - ], - "x-ms-request-id": [ - "a99843d8-f973-4fff-a619-35c1d8aad879" - ], - "x-ms-correlation-request-id": [ - "a99843d8-f973-4fff-a619-35c1d8aad879" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231405Z:a99843d8-f973-4fff-a619-35c1d8aad879" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:14:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount/operationResults/3d9d0f49-7e9f-4b96-9dd5-1e1c554f7e34?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:30:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-job-maxcount/providers/Microsoft.Batch/batchAccounts/testlistjobmaxcount/operationResults/3d9d0f49-7e9f-4b96-9dd5-1e1c554f7e34?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0am9ibWF4Y291bnQvb3BlcmF0aW9uUmVzdWx0cy8zZDlkMGY0OS03ZTlmLTRiOTYtOWRkNS0xZTFjNTU0ZjdlMzQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:14:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "b5d3d46d-8c32-43f8-ac17-c02d34741bc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" - ], - "x-ms-request-id": [ - "bcadc5c1-d67e-44eb-b785-14f6b6098335" - ], - "x-ms-correlation-request-id": [ - "bcadc5c1-d67e-44eb-b785-14f6b6098335" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231420Z:bcadc5c1-d67e-44eb-b785-14f6b6098335" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:14:20 GMT" - ], - "ETag": [ - "0x8D224E8142B2802" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-job-maxcount?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1qb2ItbWF4Y291bnQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" - ], - "x-ms-request-id": [ - "53779194-2d7f-43a1-a88f-a5c1e618a200" - ], - "x-ms-correlation-request-id": [ - "53779194-2d7f-43a1-a88f-a5c1e618a200" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231422Z:53779194-2d7f-43a1-a88f-a5c1e618a200" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:14:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRE1BWENPVU5ULUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRE1BWENPVU5ULUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkUxQldFTlBWVTVVTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "50f6ab02-1c1d-4e0d-a7ba-5f3b09aad406" - ], - "x-ms-correlation-request-id": [ - "50f6ab02-1c1d-4e0d-a7ba-5f3b09aad406" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231422Z:50f6ab02-1c1d-4e0d-a7ba-5f3b09aad406" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:14:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRE1BWENPVU5ULUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRE1BWENPVU5ULUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkUxQldFTlBWVTVVTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "922a6ecc-8273-4209-acaf-44e5313c895d" - ], - "x-ms-correlation-request-id": [ - "922a6ecc-8273-4209-acaf-44e5313c895d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231437Z:922a6ecc-8273-4209-acaf-44e5313c895d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:14:37 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRE1BWENPVU5ULUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyREpPQjoyRE1BWENPVU5ULUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJFcFBRam95UkUxQldFTlBWVTVVTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "a9d95eca-0dee-4eb3-a220-454b96d918d2" - ], - "x-ms-correlation-request-id": [ - "a9d95eca-0dee-4eb3-a220-454b96d918d2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T231453Z:a9d95eca-0dee-4eb3-a220-454b96d918d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:14:52 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePool.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePool.json index 22599c993d24..fc47365a3b00 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePool.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePool.json @@ -1,25 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2w/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool\",\r\n \"name\": \"test-delete-pool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "185" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" ], "x-ms-request-id": [ - "dd5bb06f-01e5-4405-a359-da929c370005" + "4cb09d50-9ef4-418a-aeb8-7f4f124b44a3" ], "x-ms-correlation-request-id": [ - "dd5bb06f-01e5-4405-a359-da929c370005" + "4cb09d50-9ef4-418a-aeb8-7f4f124b44a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213931Z:dd5bb06f-01e5-4405-a359-da929c370005" + "WESTUS:20150709T210143Z:4cb09d50-9ef4-418a-aeb8-7f4f124b44a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,31 +43,28 @@ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:39:31 GMT" + "Thu, 09 Jul 2015 21:01:43 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -81,59 +72,47 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" - ], - "request-id": [ - "28398853-5ff1-4d69-9ba0-a2c808b9b162" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" ], "x-ms-request-id": [ - "7cb0b8ec-02d9-4821-9d7f-b84e360de146" + "843705c3-a119-41e2-8f2c-3db57c74e217" ], "x-ms-correlation-request-id": [ - "7cb0b8ec-02d9-4821-9d7f-b84e360de146" + "843705c3-a119-41e2-8f2c-3db57c74e217" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213936Z:7cb0b8ec-02d9-4821-9d7f-b84e360de146" + "WESTUS:20150709T210146Z:843705c3-a119-41e2-8f2c-3db57c74e217" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:39:35 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/28398853-5ff1-4d69-9ba0-a2c808b9b162?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 09 Jul 2015 21:01:46 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/28398853-5ff1-4d69-9ba0-a2c808b9b162?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvMjgzOTg4NTMtNWZmMS00ZDY5LTliYTAtYTJjODA4YjliMTYyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletepool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletepool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "335" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:39:34 GMT" + "Thu, 09 Jul 2015 21:01:44 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "356e1697-5101-41bb-88d3-79764d8b9fda" + "ee8a3642-fa4b-4e7b-ba23-16ec6f8fdf9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14992" ], "x-ms-request-id": [ - "d569458d-9eaa-4474-b5e6-25b13e1d4088" + "184b62a0-739d-4b85-b31f-6d099927922a" ], "x-ms-correlation-request-id": [ - "d569458d-9eaa-4474-b5e6-25b13e1d4088" + "184b62a0-739d-4b85-b31f-6d099927922a" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213936Z:d569458d-9eaa-4474-b5e6-25b13e1d4088" + "WESTUS:20150709T210144Z:184b62a0-739d-4b85-b31f-6d099927922a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:39:35 GMT" + "Thu, 09 Jul 2015 21:01:44 GMT" ], "ETag": [ - "0x8D228C8AB440321" + "0x8D288A198ADB96D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletepool\",\r\n \"primary\": \"lp0zOuxBNxKOqyhfNQUiGCw8Xguw7jwGNoRed51uUD6q6QctdooB+XXO/zkntFR/2o+BVSzhMVcsAhDKqvpG9Q==\",\r\n \"secondary\": \"Z5nsQehm2swvCGlkv7y/XKGpZFleVgrIujAtmmcU0exJ/mg2eTiCT+GSkQFJCaK8sW669vOaxapI9+Dh/pARBQ==\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "236" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,32 +183,38 @@ "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:01:46 GMT" + ], "Pragma": [ "no-cache" ], "request-id": [ - "48eb1e86-6521-4d6f-95a0-28a5f9049c4d" + "46fee2ab-4c82-4924-8336-f6779030d7c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], "x-ms-request-id": [ - "52666dd4-7d5b-40c2-b2d0-f7c7c5a49c66" + "3289f9f8-2ee1-4444-a387-d8ccba3ad3f8" ], "x-ms-correlation-request-id": [ - "52666dd4-7d5b-40c2-b2d0-f7c7c5a49c66" + "3289f9f8-2ee1-4444-a387-d8ccba3ad3f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213936Z:52666dd4-7d5b-40c2-b2d0-f7c7c5a49c66" + "WESTUS:20150709T210146Z:3289f9f8-2ee1-4444-a387-d8ccba3ad3f8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:39:36 GMT" + "Thu, 09 Jul 2015 21:01:46 GMT" + ], + "ETag": [ + "0x8D288A199DD35A9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletepool\",\r\n \"primary\": \"lp0zOuxBNxKOqyhfNQUiGCw8Xguw7jwGNoRed51uUD6q6QctdooB+XXO/zkntFR/2o+BVSzhMVcsAhDKqvpG9Q==\",\r\n \"secondary\": \"Z5nsQehm2swvCGlkv7y/XKGpZFleVgrIujAtmmcU0exJ/mg2eTiCT+GSkQFJCaK8sW669vOaxapI9+Dh/pARBQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "236" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +250,28 @@ "no-cache" ], "request-id": [ - "2dbd6184-3a15-4c47-84b2-9e951fe9b115" + "48046a39-0292-44a8-9d41-5f2a5e05c1c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-request-id": [ - "6b5091ab-d89c-49b0-89a6-e1e93e72aaa8" + "ca3a221d-e4ab-43e8-9e1d-7fe4e6f4afd3" ], "x-ms-correlation-request-id": [ - "6b5091ab-d89c-49b0-89a6-e1e93e72aaa8" + "ca3a221d-e4ab-43e8-9e1d-7fe4e6f4afd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T214051Z:6b5091ab-d89c-49b0-89a6-e1e93e72aaa8" + "WESTUS:20150709T210145Z:ca3a221d-e4ab-43e8-9e1d-7fe4e6f4afd3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:40:50 GMT" + "Thu, 09 Jul 2015 21:01:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -295,130 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Content-Length": [ - "199" - ], - "User-Agent": [ - "WA-Batch/1.0" - ], - "client-request-id": [ - "fe7bf9fe-74dd-4d5d-908c-b41fcd417b1e" - ], - "return-client-request-id": [ - "False" - ], - "ocp-date": [ - "Mon, 09 Mar 2015 21:40:48 GMT" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Last-Modified": [ - "Mon, 09 Mar 2015 21:40:50 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "97a1d8ed-6b13-419b-b1b9-7dbb4d98534c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "DataServiceVersion": [ - "3.0" - ], - "DataServiceId": [ - "https://testdeletepool.batch.core.windows.net/pools/testPool" - ], - "Date": [ - "Mon, 09 Mar 2015 21:40:47 GMT" - ], - "ETag": [ - "0x8D228C8D8917F2F" - ], - "Location": [ - "https://testdeletepool.batch.core.windows.net/pools/testPool" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool\",\r\n \"name\": \"testdeletepool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "756" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" - ], - "x-ms-request-id": [ - "00d61f7d-22d5-482b-bf49-5a44100f584d" - ], - "x-ms-correlation-request-id": [ - "00d61f7d-22d5-482b-bf49-5a44100f584d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214050Z:00d61f7d-22d5-482b-bf49-5a44100f584d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:40:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletepool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletepool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "335" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,38 +303,32 @@ "Expires": [ "-1" ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:40:47 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "28c609ac-c9e4-4c7e-bd9d-12dcac1a7f9e" + "c480e243-97dc-419e-a143-b88a5a1ee75e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "f84669e9-97d6-4268-8d3f-f95d8cb150d1" + "b3e08902-2851-41aa-8966-c9fac160af4b" ], "x-ms-correlation-request-id": [ - "f84669e9-97d6-4268-8d3f-f95d8cb150d1" + "b3e08902-2851-41aa-8966-c9fac160af4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T214051Z:f84669e9-97d6-4268-8d3f-f95d8cb150d1" + "WESTUS:20150709T210146Z:b3e08902-2851-41aa-8966-c9fac160af4b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:40:50 GMT" - ], - "ETag": [ - "0x8D228C8D6F4FE80" + "Thu, 09 Jul 2015 21:01:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -468,32 +339,38 @@ { "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testDelete\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "Content-Length": [ + "201" + ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "34ab03ae-d026-43f6-80ed-bc7b497103ea" + "b65d0361-ff29-4f78-b916-9ec383282842" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:40:51 GMT" + "Thu, 09 Jul 2015 21:01:45 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletepool.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testPool\",\r\n \"url\": \"https://testdeletepool.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D228C8D8917F2F\",\r\n \"lastModified\": \"2015-03-09T21:40:50.4645423Z\",\r\n \"creationTime\": \"2015-03-09T21:40:50.4645423Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:40:50.4645423Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:40:50.4645423Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" + "Last-Modified": [ + "Thu, 09 Jul 2015 21:01:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "721eff25-8af0-43fb-a703-dffba8a62ebe" + "284976b0-fd1b-4637-85d4-a12fb01d61c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,18 +378,27 @@ "DataServiceVersion": [ "3.0" ], + "DataServiceId": [ + "https://pstests.batch.core.windows.net/pools/testDelete" + ], "Date": [ - "Mon, 09 Mar 2015 21:40:49 GMT" + "Thu, 09 Jul 2015 21:01:45 GMT" + ], + "ETag": [ + "0x8D288A1999610BE" + ], + "Location": [ + "https://pstests.batch.core.windows.net/pools/testDelete" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testDelete?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGU/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -520,25 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "69a4d17c-5dbf-46b5-9e11-fe148f8dfa37" + "0588adaf-52e7-4cc9-9720-24da716c3725" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:40:52 GMT" + "Thu, 09 Jul 2015 21:01:46 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletepool.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testPool\",\r\n \"url\": \"https://testdeletepool.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D228C8DA8307E7\",\r\n \"lastModified\": \"2015-03-09T21:40:53.7251815Z\",\r\n \"creationTime\": \"2015-03-09T21:40:50.4645423Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-03-09T21:40:53.7251815Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:40:50.4645423Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testDelete\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testDelete\",\r\n \"eTag\": \"0x8D288A1999610BE\",\r\n \"lastModified\": \"2015-07-09T21:01:46.0522174Z\",\r\n \"creationTime\": \"2015-07-09T21:01:46.0522174Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T21:01:46.0522174Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:01:46.1568298Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:01:46 GMT" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "eaba1bd6-008c-47ad-b056-3b67d3a1b9f7" + "78bc60ad-1f0e-45d1-b33e-b3bc7d2ce8e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,7 +436,10 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:40:51 GMT" + "Thu, 09 Jul 2015 21:01:47 GMT" + ], + "ETag": [ + "0x8D288A1999610BE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -556,8 +448,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testDelete?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGU/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -565,13 +457,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "580093ec-f8fb-42b7-b8b5-8aca099618e6" + "ad44a58c-fd3b-414d-9d61-e99816a0afb8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:40:51 GMT" + "Thu, 09 Jul 2015 21:01:47 GMT" ] }, "ResponseBody": "", @@ -580,7 +472,7 @@ "chunked" ], "request-id": [ - "47e18aa0-e29f-49b8-937c-2271a96b5e86" + "f0e3c1fd-a24b-4694-a7b5-d42c9d989ef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +481,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:40:52 GMT" + "Thu, 09 Jul 2015 21:01:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -598,1647 +490,48 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/pools?api-version=2014-10-01.1.0&$filter=name%20eq%20'testDelete'", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJiRmaWx0ZXI9bmFtZSUyMGVxJTIwJTI3dGVzdERlbGV0ZSUyNw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "765985b4-456f-4d9e-93c2-421b0007dfba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-request-id": [ - "88eeae3a-6270-4f21-9ddd-c9b0d896b205" - ], - "x-ms-correlation-request-id": [ - "88eeae3a-6270-4f21-9ddd-c9b0d896b205" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214056Z:88eeae3a-6270-4f21-9ddd-c9b0d896b205" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:40:56 GMT" + "WA-Batch/1.0" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" + "client-request-id": [ + "245a7dd4-fa23-4a10-8ef9-cd34d81ab159" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" + "return-client-request-id": [ + "False" ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "ocp-date": [ + "Thu, 09 Jul 2015 21:01:47 GMT" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools\",\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "Content-Type": [ + "application/json; odata=minimalmetadata" ], - "Retry-After": [ - "15" + "Transfer-Encoding": [ + "chunked" ], "request-id": [ - "85a01498-7e20-4700-b617-8630fd22b266" + "ee25b43f-a7cb-4641-aeac-13067fb098dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" - ], - "x-ms-request-id": [ - "f2a5c5c8-cdfa-4593-9193-d4fe39ae1722" - ], - "x-ms-correlation-request-id": [ - "f2a5c5c8-cdfa-4593-9193-d4fe39ae1722" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214056Z:f2a5c5c8-cdfa-4593-9193-d4fe39ae1722" - ], - "Cache-Control": [ - "no-cache" + "DataServiceVersion": [ + "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:40:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 21:01:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "967ae5fd-5d28-467d-b52a-a9955a0fe1ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" - ], - "x-ms-request-id": [ - "ac59731c-98e5-446e-bd83-e6b64c927605" - ], - "x-ms-correlation-request-id": [ - "ac59731c-98e5-446e-bd83-e6b64c927605" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214111Z:ac59731c-98e5-446e-bd83-e6b64c927605" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:41:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a124f469-3113-4955-9ce1-3c2f0c3bc0f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" - ], - "x-ms-request-id": [ - "2e9769b6-b391-49c6-ac01-57c46d6748bc" - ], - "x-ms-correlation-request-id": [ - "2e9769b6-b391-49c6-ac01-57c46d6748bc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214126Z:2e9769b6-b391-49c6-ac01-57c46d6748bc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:41:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b9018b9b-c738-4f48-ba11-ebf6df3854ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" - ], - "x-ms-request-id": [ - "8958964c-d868-494f-b6a0-8ee56c797ac7" - ], - "x-ms-correlation-request-id": [ - "8958964c-d868-494f-b6a0-8ee56c797ac7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214142Z:8958964c-d868-494f-b6a0-8ee56c797ac7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:41:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "7f07a899-2570-486f-90ee-ce0da37c63c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" - ], - "x-ms-request-id": [ - "13d191eb-89c5-4d4b-88c3-e826361c83fc" - ], - "x-ms-correlation-request-id": [ - "13d191eb-89c5-4d4b-88c3-e826361c83fc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214157Z:13d191eb-89c5-4d4b-88c3-e826361c83fc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:41:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b97669c0-ca84-453b-a273-5a46aa3e0be2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" - ], - "x-ms-request-id": [ - "e195767f-dddf-4a9d-ae7b-90f0e0cc7e33" - ], - "x-ms-correlation-request-id": [ - "e195767f-dddf-4a9d-ae7b-90f0e0cc7e33" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214212Z:e195767f-dddf-4a9d-ae7b-90f0e0cc7e33" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:42:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "ef6f1900-4ed0-43c2-a53e-01ab3ea35a49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" - ], - "x-ms-request-id": [ - "841f8229-aa7d-4541-b701-7fe5037fe198" - ], - "x-ms-correlation-request-id": [ - "841f8229-aa7d-4541-b701-7fe5037fe198" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214227Z:841f8229-aa7d-4541-b701-7fe5037fe198" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:42:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "082417f8-978d-4cb9-9ccd-c6dca6aadcba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" - ], - "x-ms-request-id": [ - "21c5bb9c-8c8d-40c4-86a2-9fdadc82d43e" - ], - "x-ms-correlation-request-id": [ - "21c5bb9c-8c8d-40c4-86a2-9fdadc82d43e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214242Z:21c5bb9c-8c8d-40c4-86a2-9fdadc82d43e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:42:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d582a1de-21b0-474a-9d94-bed6374690c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" - ], - "x-ms-request-id": [ - "e6954b85-ae14-4b39-86bc-541d3bb60cef" - ], - "x-ms-correlation-request-id": [ - "e6954b85-ae14-4b39-86bc-541d3bb60cef" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214257Z:e6954b85-ae14-4b39-86bc-541d3bb60cef" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:42:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e04519d1-bd8d-48a8-8ae6-84cdd2750b2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" - ], - "x-ms-request-id": [ - "ef454d6f-65b6-4851-b1dc-fc37dc19f4da" - ], - "x-ms-correlation-request-id": [ - "ef454d6f-65b6-4851-b1dc-fc37dc19f4da" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214313Z:ef454d6f-65b6-4851-b1dc-fc37dc19f4da" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:43:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "96134406-3543-4e29-9f7a-f6395988e3fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31954" - ], - "x-ms-request-id": [ - "530782ed-a9a0-4fd8-9e3f-8fb8509c9697" - ], - "x-ms-correlation-request-id": [ - "530782ed-a9a0-4fd8-9e3f-8fb8509c9697" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214328Z:530782ed-a9a0-4fd8-9e3f-8fb8509c9697" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:43:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "45390dec-069d-42e5-b412-36f90dcc44cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" - ], - "x-ms-request-id": [ - "bbc298bc-79be-4e26-bafb-f47c607bca7c" - ], - "x-ms-correlation-request-id": [ - "bbc298bc-79be-4e26-bafb-f47c607bca7c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214343Z:bbc298bc-79be-4e26-bafb-f47c607bca7c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:43:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "87ef8737-8c47-4dc7-adb2-d7b18553278d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" - ], - "x-ms-request-id": [ - "d5c2c383-068f-432a-9fdb-d85cd419bb13" - ], - "x-ms-correlation-request-id": [ - "d5c2c383-068f-432a-9fdb-d85cd419bb13" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214358Z:d5c2c383-068f-432a-9fdb-d85cd419bb13" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:43:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "fee34479-ea21-46b9-9af8-6fd47276830c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" - ], - "x-ms-request-id": [ - "fb24a0b0-5e78-4e02-b993-41017948f9df" - ], - "x-ms-correlation-request-id": [ - "fb24a0b0-5e78-4e02-b993-41017948f9df" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214413Z:fb24a0b0-5e78-4e02-b993-41017948f9df" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:44:13 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "f3a754be-174e-43f7-ba05-e5ba95b6ffe4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" - ], - "x-ms-request-id": [ - "7b68ee06-5582-4253-beaf-6d6140087e3e" - ], - "x-ms-correlation-request-id": [ - "7b68ee06-5582-4253-beaf-6d6140087e3e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214429Z:7b68ee06-5582-4253-beaf-6d6140087e3e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:44:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "bedb64c0-5331-4755-a9c4-80a0bd09e542" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" - ], - "x-ms-request-id": [ - "d42646e0-5e0e-48c8-ac31-c983ceea3e4d" - ], - "x-ms-correlation-request-id": [ - "d42646e0-5e0e-48c8-ac31-c983ceea3e4d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214444Z:d42646e0-5e0e-48c8-ac31-c983ceea3e4d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:44:43 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "10255dfc-5a31-45f0-b254-a546138d76dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" - ], - "x-ms-request-id": [ - "260e6d9a-054e-443f-9412-61ae432f9e74" - ], - "x-ms-correlation-request-id": [ - "260e6d9a-054e-443f-9412-61ae432f9e74" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214459Z:260e6d9a-054e-443f-9412-61ae432f9e74" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:44:59 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "85e9b9a1-5850-4471-9429-54f708b6ff7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" - ], - "x-ms-request-id": [ - "f83dbc3c-5f47-4c7b-97d7-b421d7180548" - ], - "x-ms-correlation-request-id": [ - "f83dbc3c-5f47-4c7b-97d7-b421d7180548" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214514Z:f83dbc3c-5f47-4c7b-97d7-b421d7180548" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:45:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "26d84c8b-786b-4b0c-bd4c-0d94ecdccc14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" - ], - "x-ms-request-id": [ - "4ddbdf6c-fe6e-4b25-bdb8-5ab1d88e3fd0" - ], - "x-ms-correlation-request-id": [ - "4ddbdf6c-fe6e-4b25-bdb8-5ab1d88e3fd0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214529Z:4ddbdf6c-fe6e-4b25-bdb8-5ab1d88e3fd0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:45:29 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "83deb40b-d0c8-41ed-94ec-00d741e08c2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" - ], - "x-ms-request-id": [ - "34c331e4-536a-422f-a6af-76d1d54beb56" - ], - "x-ms-correlation-request-id": [ - "34c331e4-536a-422f-a6af-76d1d54beb56" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214545Z:34c331e4-536a-422f-a6af-76d1d54beb56" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:45:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "ad40e544-a166-40a8-b8c1-0ec76bbda6a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" - ], - "x-ms-request-id": [ - "59616273-d120-445e-a30f-399604ca66a8" - ], - "x-ms-correlation-request-id": [ - "59616273-d120-445e-a30f-399604ca66a8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214600Z:59616273-d120-445e-a30f-399604ca66a8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:46:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "239b650c-24ed-4b28-92c2-88ab694868e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" - ], - "x-ms-request-id": [ - "26507f56-fb07-4234-b960-4345dda4fd6a" - ], - "x-ms-correlation-request-id": [ - "26507f56-fb07-4234-b960-4345dda4fd6a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214615Z:26507f56-fb07-4234-b960-4345dda4fd6a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:46:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/765985b4-456f-4d9e-93c2-421b0007dfba?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvNzY1OTg1YjQtNDU2Zi00ZDllLTkzYzItNDIxYjAwMDdkZmJhP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:46:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "2c37ca3a-e377-46c2-a178-5d9851719339" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" - ], - "x-ms-request-id": [ - "baf868ee-64ee-45fd-9326-6ecae324853f" - ], - "x-ms-correlation-request-id": [ - "baf868ee-64ee-45fd-9326-6ecae324853f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214630Z:baf868ee-64ee-45fd-9326-6ecae324853f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:46:29 GMT" - ], - "ETag": [ - "0x8D228C9A14F3BB9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2w/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "2985277d-ced1-4e6d-b2dc-049ccada14ff" - ], - "x-ms-correlation-request-id": [ - "2985277d-ced1-4e6d-b2dc-049ccada14ff" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214632Z:2985277d-ced1-4e6d-b2dc-049ccada14ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:46:31 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVVRTlQVEMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "8867dd5e-4f4b-4d90-b9be-2e74100aa2b5" - ], - "x-ms-correlation-request-id": [ - "8867dd5e-4f4b-4d90-b9be-2e74100aa2b5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214632Z:8867dd5e-4f4b-4d90-b9be-2e74100aa2b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:46:31 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVVRTlQVEMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "25a035f6-215c-4679-a92e-14624184f5ec" - ], - "x-ms-correlation-request-id": [ - "25a035f6-215c-4679-a92e-14624184f5ec" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214647Z:25a035f6-215c-4679-a92e-14624184f5ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:46:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVVRTlQVEMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "4624448d-4b68-4307-b8c8-11a5ebaf1e07" - ], - "x-ms-correlation-request-id": [ - "4624448d-4b68-4307-b8c8-11a5ebaf1e07" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214702Z:4624448d-4b68-4307-b8c8-11a5ebaf1e07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:47:02 GMT" - ] - }, "StatusCode": 200 } ], diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePoolPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePoolPipeline.json index be276c309ddb..02f6faaa849e 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePoolPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestDeletePoolPipeline.json @@ -1,25 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2w/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool\",\r\n \"name\": \"test-delete-pool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "185" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" ], "x-ms-request-id": [ - "bf305779-4997-476b-9865-c5f6768547aa" + "fa0e8b91-d658-41d8-a773-1ad886021572" ], "x-ms-correlation-request-id": [ - "bf305779-4997-476b-9865-c5f6768547aa" + "fa0e8b91-d658-41d8-a773-1ad886021572" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T214749Z:bf305779-4997-476b-9865-c5f6768547aa" + "WESTUS:20150709T210242Z:fa0e8b91-d658-41d8-a773-1ad886021572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,31 +43,28 @@ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:47:49 GMT" + "Thu, 09 Jul 2015 21:02:41 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -81,59 +72,47 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "request-id": [ - "26bf9c84-5be1-4daa-984b-fef8a0dbb5d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" ], "x-ms-request-id": [ - "9e472068-e900-499e-809a-5225a8534a89" + "3174d756-4344-4bee-a1d8-91b5708de58d" ], "x-ms-correlation-request-id": [ - "9e472068-e900-499e-809a-5225a8534a89" + "3174d756-4344-4bee-a1d8-91b5708de58d" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T214753Z:9e472068-e900-499e-809a-5225a8534a89" + "WESTUS:20150709T210244Z:3174d756-4344-4bee-a1d8-91b5708de58d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:47:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/26bf9c84-5be1-4daa-984b-fef8a0dbb5d1?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 09 Jul 2015 21:02:43 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/26bf9c84-5be1-4daa-984b-fef8a0dbb5d1?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvMjZiZjljODQtNWJlMS00ZGFhLTk4NGItZmVmOGEwZGJiNWQxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletepool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletepool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "335" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:47:52 GMT" + "Thu, 09 Jul 2015 21:02:43 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "d0c9fbf4-fdd6-42e2-8efa-0df912bbeb84" + "7d9bce68-7392-4e25-bee3-b2036809b84e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14984" ], "x-ms-request-id": [ - "f61c84ad-8686-4995-8676-cc07c140cb9c" + "7e3d2e4e-a822-4328-a59e-38335198b487" ], "x-ms-correlation-request-id": [ - "f61c84ad-8686-4995-8676-cc07c140cb9c" + "7e3d2e4e-a822-4328-a59e-38335198b487" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T214754Z:f61c84ad-8686-4995-8676-cc07c140cb9c" + "WESTUS:20150709T210243Z:7e3d2e4e-a822-4328-a59e-38335198b487" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:47:53 GMT" + "Thu, 09 Jul 2015 21:02:42 GMT" ], "ETag": [ - "0x8D228C9D44317E0" + "0x8D288A1BB911BD3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletepool\",\r\n \"primary\": \"oVrwiMs/GMbdk8CvG5maQSysMmPckn5YBShsRQdBTAoezqt/qcyZ5ynFkywAxIiE1UU1L6ANblW2ES0Ew7chkQ==\",\r\n \"secondary\": \"qxfHq3iv9CPIYDZ7E24ncdc0hEt/NHt8FTK3qDxzIeIqsc7oFhCMUdIylrYwGVltmI784TOF0Gr5Vyr8ScMvgg==\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "236" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,32 +183,38 @@ "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:02:44 GMT" + ], "Pragma": [ "no-cache" ], "request-id": [ - "35d8520f-9829-4f74-a0cc-954fe7edec26" + "eca1ac95-71ef-476b-b2f2-807c871807b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" ], "x-ms-request-id": [ - "166259ae-ef21-4c63-9b95-8698f675a29a" + "46bef400-915e-4827-bac9-2d8acc8e57a9" ], "x-ms-correlation-request-id": [ - "166259ae-ef21-4c63-9b95-8698f675a29a" + "46bef400-915e-4827-bac9-2d8acc8e57a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T214754Z:166259ae-ef21-4c63-9b95-8698f675a29a" + "WESTUS:20150709T210244Z:46bef400-915e-4827-bac9-2d8acc8e57a9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:47:54 GMT" + "Thu, 09 Jul 2015 21:02:44 GMT" + ], + "ETag": [ + "0x8D288A1BCA062EF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletepool\",\r\n \"primary\": \"oVrwiMs/GMbdk8CvG5maQSysMmPckn5YBShsRQdBTAoezqt/qcyZ5ynFkywAxIiE1UU1L6ANblW2ES0Ew7chkQ==\",\r\n \"secondary\": \"qxfHq3iv9CPIYDZ7E24ncdc0hEt/NHt8FTK3qDxzIeIqsc7oFhCMUdIylrYwGVltmI784TOF0Gr5Vyr8ScMvgg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "236" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +250,28 @@ "no-cache" ], "request-id": [ - "ff89fb0e-36dd-4c15-acce-915e25cc723a" + "339af7f9-c43c-4023-8f8e-68cfb5703fd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1186" ], "x-ms-request-id": [ - "32afa613-464a-4964-8cf7-5f82c4e15017" + "270ceea3-469e-4b2e-82d6-49fcb3022a8f" ], "x-ms-correlation-request-id": [ - "32afa613-464a-4964-8cf7-5f82c4e15017" + "270ceea3-469e-4b2e-82d6-49fcb3022a8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T214843Z:32afa613-464a-4964-8cf7-5f82c4e15017" + "WESTUS:20150709T210243Z:270ceea3-469e-4b2e-82d6-49fcb3022a8f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:48:42 GMT" + "Thu, 09 Jul 2015 21:02:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -295,130 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Content-Length": [ - "199" - ], - "User-Agent": [ - "WA-Batch/1.0" - ], - "client-request-id": [ - "ef4a2de4-e272-4a5b-927a-27b8d402e41f" - ], - "return-client-request-id": [ - "False" - ], - "ocp-date": [ - "Mon, 09 Mar 2015 21:48:40 GMT" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Last-Modified": [ - "Mon, 09 Mar 2015 21:48:42 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "0e1a7469-4d74-4099-9455-a55d018aae6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "DataServiceVersion": [ - "3.0" - ], - "DataServiceId": [ - "https://testdeletepool.batch.core.windows.net/pools/testPool" - ], - "Date": [ - "Mon, 09 Mar 2015 21:48:44 GMT" - ], - "ETag": [ - "0x8D228C9F224ECED" - ], - "Location": [ - "https://testdeletepool.batch.core.windows.net/pools/testPool" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool\",\r\n \"name\": \"testdeletepool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "756" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "a78c214f-bef9-4c85-842a-cfe43090eafe" - ], - "x-ms-correlation-request-id": [ - "a78c214f-bef9-4c85-842a-cfe43090eafe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214842Z:a78c214f-bef9-4c85-842a-cfe43090eafe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:48:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletepool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletepool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "335" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,38 +303,32 @@ "Expires": [ "-1" ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:48:41 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "12c335ae-1295-47a0-a158-9c7110394a71" + "4f453d7e-699d-427f-aba1-a94760258e8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" ], "x-ms-request-id": [ - "4cacb972-f613-4997-b424-b6160e73baeb" + "09d8c5d6-7d30-4773-831d-34e22d0d43dd" ], "x-ms-correlation-request-id": [ - "4cacb972-f613-4997-b424-b6160e73baeb" + "09d8c5d6-7d30-4773-831d-34e22d0d43dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T214843Z:4cacb972-f613-4997-b424-b6160e73baeb" + "WESTUS:20150709T210245Z:09d8c5d6-7d30-4773-831d-34e22d0d43dd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:48:42 GMT" - ], - "ETag": [ - "0x8D228C9F16670EC" + "Thu, 09 Jul 2015 21:02:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -468,32 +339,38 @@ { "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testDeletePipe\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "Content-Length": [ + "205" + ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "662f1b86-7cbb-4e2e-9d2d-a54a0c0e07b9" + "9974affc-0e48-4d2c-8dc9-f40cc45d8e42" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:48:43 GMT" + "Thu, 09 Jul 2015 21:02:43 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletepool.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testPool\",\r\n \"url\": \"https://testdeletepool.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D228C9F224ECED\",\r\n \"lastModified\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"creationTime\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" + "Last-Modified": [ + "Thu, 09 Jul 2015 21:02:44 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b38160f0-a629-4183-87ca-58a53d4b72f0" + "18df1f05-acd7-472b-9141-702e25f97c92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,18 +378,27 @@ "DataServiceVersion": [ "3.0" ], + "DataServiceId": [ + "https://pstests.batch.core.windows.net/pools/testDeletePipe" + ], "Date": [ - "Mon, 09 Mar 2015 21:48:43 GMT" + "Thu, 09 Jul 2015 21:02:43 GMT" + ], + "ETag": [ + "0x8D288A1BC580284" + ], + "Location": [ + "https://pstests.batch.core.windows.net/pools/testDeletePipe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testDeletePipe?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -520,25 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "04030ba3-3e49-4868-a441-a0bee295061e" + "55e80a90-7ac3-40ac-a610-607b95408abc" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:48:44 GMT" + "Thu, 09 Jul 2015 21:02:45 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletepool.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testPool\",\r\n \"url\": \"https://testdeletepool.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D228C9F3F0BE25\",\r\n \"lastModified\": \"2015-03-09T21:48:45.8839589Z\",\r\n \"creationTime\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-03-09T21:48:45.8839589Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testDeletePipe\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testDeletePipe\",\r\n \"eTag\": \"0x8D288A1BC580284\",\r\n \"lastModified\": \"2015-07-09T21:02:44.365786Z\",\r\n \"creationTime\": \"2015-07-09T21:02:44.365786Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T21:02:44.365786Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:02:44.4557884Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:02:44 GMT" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "048dcf79-0069-43b5-8888-dd0f799c2fa0" + "349833d8-0f12-42b7-87dc-a6bb5eba65db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,7 +436,10 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:48:42 GMT" + "Thu, 09 Jul 2015 21:02:45 GMT" + ], + "ETag": [ + "0x8D288A1BC580284" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -556,8 +448,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testDeletePipe?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -565,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "81c23a3b-5b6d-4843-bbee-8975c71c9bdd" + "2e62b6b4-a051-46f0-a01f-d1ea547fdd19" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:48:43 GMT" + "Thu, 09 Jul 2015 21:02:45 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletepool.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://testdeletepool.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D228C9F224ECED\",\r\n \"lastModified\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"creationTime\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:48:42.8705005Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testDeletePipe\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testDeletePipe\",\r\n \"eTag\": \"0x8D288A1BC580284\",\r\n \"lastModified\": \"2015-07-09T21:02:44.365786Z\",\r\n \"creationTime\": \"2015-07-09T21:02:44.365786Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T21:02:44.365786Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:02:44.4557884Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:48:42 GMT" + "Thu, 09 Jul 2015 21:02:44 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fc0531dc-36cb-4d91-aff4-6d78a3c2b96b" + "a4b162b7-b3a9-4576-ae32-f8df486326bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,10 +487,10 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:48:40 GMT" + "Thu, 09 Jul 2015 21:02:45 GMT" ], "ETag": [ - "0x8D228C9F224ECED" + "0x8D288A1BC580284" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -607,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testDeletePipe?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3REZWxldGVQaXBlP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -616,13 +508,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7c6da735-cd63-4f6c-b9c8-8e99a3910f35" + "6deb1797-a802-4b07-8ccb-e5a1357cbecb" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:48:44 GMT" + "Thu, 09 Jul 2015 21:02:45 GMT" ] }, "ResponseBody": "", @@ -631,7 +523,7 @@ "chunked" ], "request-id": [ - "49a65dc1-a829-4f85-ab17-3e3d9e113f62" + "ed30105d-3836-448e-b366-2ac3c7c0f0e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,7 +532,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:48:41 GMT" + "Thu, 09 Jul 2015 21:02:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -649,1701 +541,48 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/pools?api-version=2014-10-01.1.0&$filter=name%20eq%20'testDeletePipe'", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJiRmaWx0ZXI9bmFtZSUyMGVxJTIwJTI3dGVzdERlbGV0ZVBpcGUlMjc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "f3203261-3f8e-4a4b-994a-349303034378" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "e872546d-f76c-4407-9424-36b236f1e3de" - ], - "x-ms-correlation-request-id": [ - "e872546d-f76c-4407-9424-36b236f1e3de" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214847Z:e872546d-f76c-4407-9424-36b236f1e3de" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:48:46 GMT" + "WA-Batch/1.0" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" + "client-request-id": [ + "e98451c6-98d3-4e2a-9500-53246704dc07" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" + "return-client-request-id": [ + "False" ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "ocp-date": [ + "Thu, 09 Jul 2015 21:02:46 GMT" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools\",\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "Content-Type": [ + "application/json; odata=minimalmetadata" ], - "Retry-After": [ - "15" + "Transfer-Encoding": [ + "chunked" ], "request-id": [ - "248d8338-9e84-4fbc-839f-c67b92fce823" + "f0001806-55b2-4b72-8ba4-cd14823437ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "b6b59823-80ad-4cb6-b49c-e6fa3496d94d" - ], - "x-ms-correlation-request-id": [ - "b6b59823-80ad-4cb6-b49c-e6fa3496d94d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214847Z:b6b59823-80ad-4cb6-b49c-e6fa3496d94d" - ], - "Cache-Control": [ - "no-cache" + "DataServiceVersion": [ + "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:48:46 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 21:02:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b883143a-eefc-48b1-9e7f-9cbc85c05e98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "14a4930e-cb86-4b53-ad1f-19a008d8f954" - ], - "x-ms-correlation-request-id": [ - "14a4930e-cb86-4b53-ad1f-19a008d8f954" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214902Z:14a4930e-cb86-4b53-ad1f-19a008d8f954" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:49:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "1b4a4cd4-9197-4403-8a2e-d2dc2a15a843" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "0f1bc0af-f7cf-4568-8db5-e275511b419c" - ], - "x-ms-correlation-request-id": [ - "0f1bc0af-f7cf-4568-8db5-e275511b419c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214917Z:0f1bc0af-f7cf-4568-8db5-e275511b419c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:49:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "8534343f-4133-4d2f-bae2-8613b0272a49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "657eef39-3e18-4972-9cea-4c05ce2ccfdb" - ], - "x-ms-correlation-request-id": [ - "657eef39-3e18-4972-9cea-4c05ce2ccfdb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214932Z:657eef39-3e18-4972-9cea-4c05ce2ccfdb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:49:32 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "59e907d2-7574-4468-9623-119926f514ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "1d707591-87ff-43c5-bd02-da5418f22a4e" - ], - "x-ms-correlation-request-id": [ - "1d707591-87ff-43c5-bd02-da5418f22a4e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T214947Z:1d707591-87ff-43c5-bd02-da5418f22a4e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:49:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c472f1e8-152a-47c4-92bb-e956ae3f2927" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "28a904ab-656e-421e-809e-0df06101dcc0" - ], - "x-ms-correlation-request-id": [ - "28a904ab-656e-421e-809e-0df06101dcc0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215003Z:28a904ab-656e-421e-809e-0df06101dcc0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:50:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9d4370f6-c8d8-418e-870a-74262f1fe5ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "2350c5c9-c44a-413e-9c8c-6a9d391aac01" - ], - "x-ms-correlation-request-id": [ - "2350c5c9-c44a-413e-9c8c-6a9d391aac01" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215018Z:2350c5c9-c44a-413e-9c8c-6a9d391aac01" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:50:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "310a0037-c845-41b4-bda0-41db1de5b7d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "eb350dba-d3cf-40ca-9d72-a089dd63fa7a" - ], - "x-ms-correlation-request-id": [ - "eb350dba-d3cf-40ca-9d72-a089dd63fa7a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215033Z:eb350dba-d3cf-40ca-9d72-a089dd63fa7a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:50:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "babf21c0-dee0-4a5e-8a9e-0e2f8b0ff221" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "2f5ed3cd-d756-4af1-9ece-671e0a91bb71" - ], - "x-ms-correlation-request-id": [ - "2f5ed3cd-d756-4af1-9ece-671e0a91bb71" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215048Z:2f5ed3cd-d756-4af1-9ece-671e0a91bb71" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:50:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e2f56b18-63b8-499d-9c0f-703542b5ab10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "d8c5fb73-18a0-4db7-8a62-3ee57f735fde" - ], - "x-ms-correlation-request-id": [ - "d8c5fb73-18a0-4db7-8a62-3ee57f735fde" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215103Z:d8c5fb73-18a0-4db7-8a62-3ee57f735fde" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:51:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "56dd4414-ea33-4024-a56a-9efade44f319" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "f7a665f4-c84d-4405-8342-af7aee6b2519" - ], - "x-ms-correlation-request-id": [ - "f7a665f4-c84d-4405-8342-af7aee6b2519" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215119Z:f7a665f4-c84d-4405-8342-af7aee6b2519" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:51:19 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "443431ce-d0a9-47be-b1b6-7db194f96726" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "2a7a0032-433f-4d0e-b75b-ecdc186f71bd" - ], - "x-ms-correlation-request-id": [ - "2a7a0032-433f-4d0e-b75b-ecdc186f71bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215134Z:2a7a0032-433f-4d0e-b75b-ecdc186f71bd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:51:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "ba9435e4-eef6-49a4-b858-6aec9c9b0b51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "509907ee-36ce-4d0e-bf00-95500873bcb2" - ], - "x-ms-correlation-request-id": [ - "509907ee-36ce-4d0e-bf00-95500873bcb2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215149Z:509907ee-36ce-4d0e-bf00-95500873bcb2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:51:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "bd88fc52-a281-460b-bcb5-826a099c358a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "21f277c2-8d28-4a3c-acdd-dfab6157cc88" - ], - "x-ms-correlation-request-id": [ - "21f277c2-8d28-4a3c-acdd-dfab6157cc88" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215204Z:21f277c2-8d28-4a3c-acdd-dfab6157cc88" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:52:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "16853cdb-7bd3-4129-8e3d-3ff9370f0fa7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "a5a203a6-78c6-40d3-b963-146ca79bbcf9" - ], - "x-ms-correlation-request-id": [ - "a5a203a6-78c6-40d3-b963-146ca79bbcf9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215219Z:a5a203a6-78c6-40d3-b963-146ca79bbcf9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:52:19 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e6339596-554b-4169-8f96-320e00f19948" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "8fbc0ba3-2cae-4992-940f-d1fb1b4a6862" - ], - "x-ms-correlation-request-id": [ - "8fbc0ba3-2cae-4992-940f-d1fb1b4a6862" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215234Z:8fbc0ba3-2cae-4992-940f-d1fb1b4a6862" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:52:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "7db29aec-c62d-4f86-8f86-8fd937a7e70f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "89ab53ab-7e51-452e-977e-1d1a102408f0" - ], - "x-ms-correlation-request-id": [ - "89ab53ab-7e51-452e-977e-1d1a102408f0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215249Z:89ab53ab-7e51-452e-977e-1d1a102408f0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:52:49 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "65740b30-f916-4da4-8d3f-fa88f8272bce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "280aaa4d-b329-40f1-8217-03a25f9bd77b" - ], - "x-ms-correlation-request-id": [ - "280aaa4d-b329-40f1-8217-03a25f9bd77b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215305Z:280aaa4d-b329-40f1-8217-03a25f9bd77b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:53:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "70fcb010-303c-40c6-9b67-e16969a19074" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "4b8c751f-e1f8-45d8-8da1-a01e1e98becc" - ], - "x-ms-correlation-request-id": [ - "4b8c751f-e1f8-45d8-8da1-a01e1e98becc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215320Z:4b8c751f-e1f8-45d8-8da1-a01e1e98becc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:53:19 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c67a1900-a700-4792-b980-62e4d190db73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "9cd4946a-c97c-4248-9dbe-3106239c9005" - ], - "x-ms-correlation-request-id": [ - "9cd4946a-c97c-4248-9dbe-3106239c9005" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215335Z:9cd4946a-c97c-4248-9dbe-3106239c9005" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:53:34 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "aea6c006-5dbe-40f9-891f-28b467d950bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "2d8feb32-e424-43c3-9643-d5a44dd97ceb" - ], - "x-ms-correlation-request-id": [ - "2d8feb32-e424-43c3-9643-d5a44dd97ceb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215350Z:2d8feb32-e424-43c3-9643-d5a44dd97ceb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:53:49 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "cf1c03fa-8c2e-4d03-8f09-e5fc1bd49601" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "4160e727-81f1-41f0-a616-440f8ac9ea4a" - ], - "x-ms-correlation-request-id": [ - "4160e727-81f1-41f0-a616-440f8ac9ea4a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215405Z:4160e727-81f1-41f0-a616-440f8ac9ea4a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:54:05 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-pool/providers/Microsoft.Batch/batchAccounts/testdeletepool/operationResults/f3203261-3f8e-4a4b-994a-349303034378?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGVwb29sL29wZXJhdGlvblJlc3VsdHMvZjMyMDMyNjEtM2Y4ZS00YTRiLTk5NGEtMzQ5MzAzMDM0Mzc4P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:54:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "78285067-f934-4df0-a6aa-c476a90699e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "140c7dad-e16b-4297-a89c-fff320ef90f6" - ], - "x-ms-correlation-request-id": [ - "140c7dad-e16b-4297-a89c-fff320ef90f6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215420Z:140c7dad-e16b-4297-a89c-fff320ef90f6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:54:19 GMT" - ], - "ETag": [ - "0x8D228CABAB6DEEF" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXBvb2w/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" - ], - "x-ms-request-id": [ - "776c0a1d-dc53-4bf5-b914-8940e2d599d0" - ], - "x-ms-correlation-request-id": [ - "776c0a1d-dc53-4bf5-b914-8940e2d599d0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215422Z:776c0a1d-dc53-4bf5-b914-8940e2d599d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:54:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVVRTlQVEMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" - ], - "x-ms-request-id": [ - "c63fd1f9-b611-4b64-9809-8da16b04cfa2" - ], - "x-ms-correlation-request-id": [ - "c63fd1f9-b611-4b64-9809-8da16b04cfa2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215422Z:c63fd1f9-b611-4b64-9809-8da16b04cfa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:54:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVVRTlQVEMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" - ], - "x-ms-request-id": [ - "402e8d41-b7e1-4034-9140-16d4167a2931" - ], - "x-ms-correlation-request-id": [ - "402e8d41-b7e1-4034-9140-16d4167a2931" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215437Z:402e8d41-b7e1-4034-9140-16d4167a2931" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:54:37 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVVRTlQVEMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" - ], - "x-ms-request-id": [ - "a3b0a4d2-a592-4c48-adcd-ba5464709c5d" - ], - "x-ms-correlation-request-id": [ - "a3b0a4d2-a592-4c48-adcd-ba5464709c5d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215453Z:a3b0a4d2-a592-4c48-adcd-ba5464709c5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:54:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVVRTlQVEMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" - ], - "x-ms-request-id": [ - "76f5569c-5ef0-42b2-92e7-38c9e929015c" - ], - "x-ms-correlation-request-id": [ - "76f5569c-5ef0-42b2-92e7-38c9e929015c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T215508Z:76f5569c-5ef0-42b2-92e7-38c9e929015c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:55:08 GMT" - ] - }, "StatusCode": 200 } ], diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetPoolByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetPoolByName.json index dda5c9836296..ed0c6023f2ed 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetPoolByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestGetPoolByName.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LXBvb2w/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "7ce511b8-d0f1-4810-983c-301ab4b9c99d" + ], + "x-ms-correlation-request-id": [ + "7ce511b8-d0f1-4810-983c-301ab4b9c99d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T193315Z:7ce511b8-d0f1-4810-983c-301ab4b9c99d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:33:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool\",\r\n \"name\": \"test-get-pool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" ], "x-ms-request-id": [ - "3a69c93b-9784-4c73-b590-7df014c40044" + "8482bc5c-e3e5-44e1-b5a5-7194ba602fc6" ], "x-ms-correlation-request-id": [ - "3a69c93b-9784-4c73-b590-7df014c40044" + "8482bc5c-e3e5-44e1-b5a5-7194ba602fc6" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T210728Z:3a69c93b-9784-4c73-b590-7df014c40044" + "WESTUS:20150709T193317Z:8482bc5c-e3e5-44e1-b5a5-7194ba602fc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,88 +91,88 @@ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:07:27 GMT" + "Thu, 09 Jul 2015 19:33:16 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:33:16 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "request-id": [ - "85562439-7b90-43c9-9b08-ff5dad173082" + "bdcbd1af-3baf-42f8-a7a5-e93e68ee0aee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], "x-ms-request-id": [ - "2361907a-f3aa-4814-aa12-4a3335b4ba1a" + "9501dc4a-bf9d-41cc-9393-f70b32bd2110" ], "x-ms-correlation-request-id": [ - "2361907a-f3aa-4814-aa12-4a3335b4ba1a" + "9501dc4a-bf9d-41cc-9393-f70b32bd2110" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T210732Z:2361907a-f3aa-4814-aa12-4a3335b4ba1a" + "WESTUS:20150709T193316Z:9501dc4a-bf9d-41cc-9393-f70b32bd2110" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:07:31 GMT" + "Thu, 09 Jul 2015 19:33:16 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/85562439-7b90-43c9-9b08-ff5dad173082?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D288953CFE453E" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/85562439-7b90-43c9-9b08-ff5dad173082?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvODU1NjI0MzktN2I5MC00M2M5LTliMDgtZmY1ZGFkMTczMDgyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testgetpool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgetpool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "323" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:07:28 GMT" + "Thu, 09 Jul 2015 19:33:17 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1756de07-73ec-4ff5-a099-fef065bb58a4" + "ad571bdf-3dad-45d0-8ecb-3b16abc319fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14952" ], "x-ms-request-id": [ - "109070c4-cf11-4468-8e45-8101205216db" + "2d1db790-aee4-4a0d-9771-c503e3b161e7" ], "x-ms-correlation-request-id": [ - "109070c4-cf11-4468-8e45-8101205216db" + "2d1db790-aee4-4a0d-9771-c503e3b161e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T210732Z:109070c4-cf11-4468-8e45-8101205216db" + "WESTUS:20150709T193318Z:2d1db790-aee4-4a0d-9771-c503e3b161e7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:07:32 GMT" + "Thu, 09 Jul 2015 19:33:17 GMT" ], "ETag": [ - "0x8D228C42F94A40C" + "0x8D288953DAABD37" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testgetpool\",\r\n \"primary\": \"8vV4A3qercm8XS6jiJmb11zqs8gQEaIHTnCt51LxyhARg7FrrqlJyWeObbVX1fIVzHpbzQ8tsoJ3s1w9JFrx8Q==\",\r\n \"secondary\": \"s1WK2eDfEgaas8RUZP1tf88brA/Fo2aUt7yDldkPm2XoZLPc19FXXd8R23K1EcLKmiWUw+Hb9GuihGR9PjrEVQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "233" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "dba35f36-3430-4cc0-840d-988103dd55dc" + "b18cbbf5-fbf2-40b2-b27d-bd3afb636170" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1179" ], "x-ms-request-id": [ - "e9b5ff50-d556-4787-aab6-cee7af966633" + "40750e4f-c80a-4e53-85dd-bf0e33ed8a22" ], "x-ms-correlation-request-id": [ - "e9b5ff50-d556-4787-aab6-cee7af966633" + "40750e4f-c80a-4e53-85dd-bf0e33ed8a22" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T210732Z:e9b5ff50-d556-4787-aab6-cee7af966633" + "WESTUS:20150709T193317Z:40750e4f-c80a-4e53-85dd-bf0e33ed8a22" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:07:32 GMT" + "Thu, 09 Jul 2015 19:33:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testgetpool\",\r\n \"primary\": \"8vV4A3qercm8XS6jiJmb11zqs8gQEaIHTnCt51LxyhARg7FrrqlJyWeObbVX1fIVzHpbzQ8tsoJ3s1w9JFrx8Q==\",\r\n \"secondary\": \"s1WK2eDfEgaas8RUZP1tf88brA/Fo2aUt7yDldkPm2XoZLPc19FXXd8R23K1EcLKmiWUw+Hb9GuihGR9PjrEVQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "233" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "6f41ef12-040e-43c6-a6fe-1830a050ccd0" + "6fc7095d-56aa-43a1-b4c6-71d51c7e33a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1178" ], "x-ms-request-id": [ - "4405ebaf-a694-42b9-8e50-583bdfd118b1" + "98f8129b-5372-4a85-bdc0-b4fd7a135668" ], "x-ms-correlation-request-id": [ - "4405ebaf-a694-42b9-8e50-583bdfd118b1" + "98f8129b-5372-4a85-bdc0-b4fd7a135668" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T210806Z:4405ebaf-a694-42b9-8e50-583bdfd118b1" + "WESTUS:20150709T193318Z:98f8129b-5372-4a85-bdc0-b4fd7a135668" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:08:05 GMT" + "Thu, 09 Jul 2015 19:33:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testName\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testGetPool\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "199" + "202" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "56b37685-5083-46a6-8457-8fbaca419821" + "fb8e591c-b549-404b-b262-eb4616b897b5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:08:03 GMT" + "Thu, 09 Jul 2015 19:33:16 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 21:08:05 GMT" + "Thu, 09 Jul 2015 19:33:17 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ecaae0de-a659-486f-8fbb-d82f91f1043d" + "2261ba78-2278-4105-ae20-eb24db6a1d87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testgetpool.batch.core.windows.net/pools/testName" + "https://pstests.batch.core.windows.net/pools/testGetPool" ], "Date": [ - "Mon, 09 Mar 2015 21:08:03 GMT" + "Thu, 09 Jul 2015 19:33:16 GMT" ], "ETag": [ - "0x8D228C44526BB41" + "0x8D288953D7FCC60" ], "Location": [ - "https://testgetpool.batch.core.windows.net/pools/testName" + "https://pstests.batch.core.windows.net/pools/testGetPool" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,119 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool\",\r\n \"name\": \"testgetpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "747" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" - ], - "x-ms-request-id": [ - "12478617-c9f4-422f-9109-db8a92b8a901" - ], - "x-ms-correlation-request-id": [ - "12478617-c9f4-422f-9109-db8a92b8a901" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210805Z:12478617-c9f4-422f-9109-db8a92b8a901" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:08:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testgetpool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgetpool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "323" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:08:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "28810563-6e2b-4edd-bf3d-f12a23b0b960" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "b95a12e2-574c-47ed-9890-12baa021290a" - ], - "x-ms-correlation-request-id": [ - "b95a12e2-574c-47ed-9890-12baa021290a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210805Z:b95a12e2-574c-47ed-9890-12baa021290a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:08:05 GMT" - ], - "ETag": [ - "0x8D228C443A0EE1F" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools/testName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3ROYW1lP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testGetPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RHZXRQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -475,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "20023954-31d0-4495-bbe7-08c0aae2506d" + "5fd0329f-84e0-4b09-81ba-c6cffaac232d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:08:06 GMT" + "Thu, 09 Jul 2015 19:33:18 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testgetpool.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testName\",\r\n \"url\": \"https://testgetpool.batch.core.windows.net/pools/testName\",\r\n \"eTag\": \"0x8D228C44526BB41\",\r\n \"lastModified\": \"2015-03-09T21:08:05.1528513Z\",\r\n \"creationTime\": \"2015-03-09T21:08:05.1528513Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:08:05.1528513Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:08:05.1528513Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testGetPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testGetPool\",\r\n \"eTag\": \"0x8D288953D7FCC60\",\r\n \"lastModified\": \"2015-07-09T19:33:17.5951456Z\",\r\n \"creationTime\": \"2015-07-09T19:33:17.5951456Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:33:17.5951456Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:33:17.6880992Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:08:05 GMT" + "Thu, 09 Jul 2015 19:33:17 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "eea5868d-7848-4c5c-a540-d41438adbe0e" + "79218dde-7aaa-44f1-9f01-f913bff4716f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,10 +436,10 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:08:10 GMT" + "Thu, 09 Jul 2015 19:33:17 GMT" ], "ETag": [ - "0x8D228C44526BB41" + "0x8D288953D7FCC60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,8 +448,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3ROYW1lP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testGetPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RHZXRQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -526,13 +457,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "47051818-b595-4754-b8bd-e206a9a7a13c" + "7b37767a-7eff-47ed-bb96-4a92d0f7fbb0" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:08:06 GMT" + "Thu, 09 Jul 2015 19:33:18 GMT" ] }, "ResponseBody": "", @@ -541,7 +472,7 @@ "chunked" ], "request-id": [ - "295573c6-9919-4420-9483-d8a6255aa5cd" + "430c8888-6efc-43b6-98cb-98ed392dba0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,1657 +481,13 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:08:07 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "595cf57b-1ac3-4947-838d-2319026b2b9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "aadd6871-2c38-45df-afa2-1fcc46f75305" - ], - "x-ms-correlation-request-id": [ - "aadd6871-2c38-45df-afa2-1fcc46f75305" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210809Z:aadd6871-2c38-45df-afa2-1fcc46f75305" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:08:08 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e6664977-8447-4359-b4c6-80e041172be3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "057830f9-acd3-42cd-91c5-a2a69cd3ac19" - ], - "x-ms-correlation-request-id": [ - "057830f9-acd3-42cd-91c5-a2a69cd3ac19" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210809Z:057830f9-acd3-42cd-91c5-a2a69cd3ac19" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:08:08 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:33:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a639db52-d75c-4eb2-8b49-a89c05b76404" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "885088a6-6da7-4293-b9e6-e5ce7e42c3e3" - ], - "x-ms-correlation-request-id": [ - "885088a6-6da7-4293-b9e6-e5ce7e42c3e3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210824Z:885088a6-6da7-4293-b9e6-e5ce7e42c3e3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:08:23 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "5c4a89fd-6c67-49f8-951a-ac09668c2d27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "57b96820-7aa9-4e8e-97e7-7a2558ceee39" - ], - "x-ms-correlation-request-id": [ - "57b96820-7aa9-4e8e-97e7-7a2558ceee39" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210839Z:57b96820-7aa9-4e8e-97e7-7a2558ceee39" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:08:39 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9a574a1d-597d-47de-897d-399ffab373f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "89a421a2-5d67-429e-a26d-c9b405a4c868" - ], - "x-ms-correlation-request-id": [ - "89a421a2-5d67-429e-a26d-c9b405a4c868" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210854Z:89a421a2-5d67-429e-a26d-c9b405a4c868" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:08:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "70d904ec-e05f-4b3c-ad4a-5427cc6fc073" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "515faea7-d993-4965-9afc-c2b53a225a77" - ], - "x-ms-correlation-request-id": [ - "515faea7-d993-4965-9afc-c2b53a225a77" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210909Z:515faea7-d993-4965-9afc-c2b53a225a77" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:09:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "fe26cf20-9a2a-4268-990e-c835cfd15af8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "79fcff13-5fe9-44db-81e0-5956ad478f46" - ], - "x-ms-correlation-request-id": [ - "79fcff13-5fe9-44db-81e0-5956ad478f46" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210924Z:79fcff13-5fe9-44db-81e0-5956ad478f46" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:09:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "30909175-7016-40c4-aff2-3b3f1752c396" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "466cc74c-c739-4fdf-bb4d-a2e56a5886c3" - ], - "x-ms-correlation-request-id": [ - "466cc74c-c739-4fdf-bb4d-a2e56a5886c3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210940Z:466cc74c-c739-4fdf-bb4d-a2e56a5886c3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:09:39 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "8f17b206-f142-4b87-9c96-ec15d2cf1a8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "172a1a27-a28e-4ff6-b14d-5c936a5e451d" - ], - "x-ms-correlation-request-id": [ - "172a1a27-a28e-4ff6-b14d-5c936a5e451d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T210955Z:172a1a27-a28e-4ff6-b14d-5c936a5e451d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:09:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "03b4e81c-76b7-4f0d-9b86-a4cf6c8791d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "c2bfef83-2ab5-4d3a-b175-01c526ccde24" - ], - "x-ms-correlation-request-id": [ - "c2bfef83-2ab5-4d3a-b175-01c526ccde24" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211010Z:c2bfef83-2ab5-4d3a-b175-01c526ccde24" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:10:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a81ec06a-5a7f-400c-88d3-c60082739b8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "85216d93-e4a0-47d2-b929-bf21d3f5b052" - ], - "x-ms-correlation-request-id": [ - "85216d93-e4a0-47d2-b929-bf21d3f5b052" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211025Z:85216d93-e4a0-47d2-b929-bf21d3f5b052" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:10:25 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d0646192-2bf2-4a0c-b8b0-cda4d95f0b43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "b3be39de-6cc4-426c-9850-5bdd45ac19e0" - ], - "x-ms-correlation-request-id": [ - "b3be39de-6cc4-426c-9850-5bdd45ac19e0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211040Z:b3be39de-6cc4-426c-9850-5bdd45ac19e0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:10:39 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "613be36a-272b-4589-a2ef-ae1844426c1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "59c98d86-5761-4428-a871-450fcc287bdc" - ], - "x-ms-correlation-request-id": [ - "59c98d86-5761-4428-a871-450fcc287bdc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211055Z:59c98d86-5761-4428-a871-450fcc287bdc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:10:55 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "648ab14d-1d66-40c0-8f49-c2679d7cc174" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "443dde8b-c4dc-4612-a2d0-b271fefb67a0" - ], - "x-ms-correlation-request-id": [ - "443dde8b-c4dc-4612-a2d0-b271fefb67a0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211111Z:443dde8b-c4dc-4612-a2d0-b271fefb67a0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:11:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "fefe3343-1b09-4e51-bdb0-d5252bec759c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "66ec8110-3c7f-4f0a-863f-a4e4542b28fc" - ], - "x-ms-correlation-request-id": [ - "66ec8110-3c7f-4f0a-863f-a4e4542b28fc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211126Z:66ec8110-3c7f-4f0a-863f-a4e4542b28fc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:11:25 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "3ff739a3-7743-42d3-a2b1-c673e95f3c84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "67e5f216-3397-4dfd-9781-be2f11778c7e" - ], - "x-ms-correlation-request-id": [ - "67e5f216-3397-4dfd-9781-be2f11778c7e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211141Z:67e5f216-3397-4dfd-9781-be2f11778c7e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:11:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a8d4b773-6f4b-41e2-828d-efc446d81e3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "095af783-aba2-402a-b311-8be10e93e1ae" - ], - "x-ms-correlation-request-id": [ - "095af783-aba2-402a-b311-8be10e93e1ae" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211156Z:095af783-aba2-402a-b311-8be10e93e1ae" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:11:55 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "60b800aa-5bc4-49c1-a5c0-c7c69f5bda90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "affd007b-b197-4daa-b0ae-127cc5a04e9a" - ], - "x-ms-correlation-request-id": [ - "affd007b-b197-4daa-b0ae-127cc5a04e9a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211211Z:affd007b-b197-4daa-b0ae-127cc5a04e9a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:12:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "7bd9d3a5-ba29-4a85-a449-33ad51961fbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "5f42300b-8e47-4ab4-9256-62bfdc6d4d5d" - ], - "x-ms-correlation-request-id": [ - "5f42300b-8e47-4ab4-9256-62bfdc6d4d5d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211226Z:5f42300b-8e47-4ab4-9256-62bfdc6d4d5d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:12:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "2e87aca7-d1d5-4f7c-af97-453d55652acf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "475c5aa3-9cf8-4a3b-ac8b-76389880d094" - ], - "x-ms-correlation-request-id": [ - "475c5aa3-9cf8-4a3b-ac8b-76389880d094" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211241Z:475c5aa3-9cf8-4a3b-ac8b-76389880d094" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:12:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c9194f18-5bc5-46f0-b4f4-28672eb16e82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "28c94335-f324-4a68-9d91-b7f568a004bb" - ], - "x-ms-correlation-request-id": [ - "28c94335-f324-4a68-9d91-b7f568a004bb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211257Z:28c94335-f324-4a68-9d91-b7f568a004bb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:12:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "ca4671b1-8d3b-41e4-8eb7-15b7f2033470" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "59f112e7-f060-4bde-a0ac-9bf0767e166d" - ], - "x-ms-correlation-request-id": [ - "59f112e7-f060-4bde-a0ac-9bf0767e166d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211312Z:59f112e7-f060-4bde-a0ac-9bf0767e166d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:13:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d052118e-60b8-46ab-8431-8dca4e3ce2ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "7767e098-8e5a-4095-8df3-7d3a55cfe528" - ], - "x-ms-correlation-request-id": [ - "7767e098-8e5a-4095-8df3-7d3a55cfe528" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211327Z:7767e098-8e5a-4095-8df3-7d3a55cfe528" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:13:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-pool/providers/Microsoft.Batch/batchAccounts/testgetpool/operationResults/595cf57b-1ac3-4947-838d-2319026b2b9d?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXRwb29sL29wZXJhdGlvblJlc3VsdHMvNTk1Y2Y1N2ItMWFjMy00OTQ3LTgzOGQtMjMxOTAyNmIyYjlkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:13:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "611b6c98-2b36-4fae-a12a-b25ccb07cd60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "bbecf1fc-ad5d-4d62-8f57-16f6e5435ae9" - ], - "x-ms-correlation-request-id": [ - "bbecf1fc-ad5d-4d62-8f57-16f6e5435ae9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211342Z:bbecf1fc-ad5d-4d62-8f57-16f6e5435ae9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:13:41 GMT" - ], - "ETag": [ - "0x8D228C50C56E61B" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LXBvb2w/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "52a0c6b7-ad2a-4d5c-9ec1-fd188e325eaf" - ], - "x-ms-correlation-request-id": [ - "52a0c6b7-ad2a-4d5c-9ec1-fd188e325eaf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211344Z:52a0c6b7-ad2a-4d5c-9ec1-fd188e325eaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:13:43 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVVFOVBUQzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "e92a4a09-447a-417c-ab15-5ade7abe3d7c" - ], - "x-ms-correlation-request-id": [ - "e92a4a09-447a-417c-ab15-5ade7abe3d7c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211344Z:e92a4a09-447a-417c-ab15-5ade7abe3d7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:13:43 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVVFOVBUQzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "89f67a93-b4d5-4fb4-8989-c6c1e4a61a6b" - ], - "x-ms-correlation-request-id": [ - "89f67a93-b4d5-4fb4-8989-c6c1e4a61a6b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211359Z:89f67a93-b4d5-4fb4-8989-c6c1e4a61a6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:13:59 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVVFOVBUQzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "0b5f9b81-e014-46fe-9e41-d24d63ac8470" - ], - "x-ms-correlation-request-id": [ - "0b5f9b81-e014-46fe-9e41-d24d63ac8470" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211415Z:0b5f9b81-e014-46fe-9e41-d24d63ac8470" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:14:14 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListAllPools.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListAllPools.json index d45383b8a999..6fdc3d45cde9 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListAllPools.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListAllPools.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1wb29sP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "31c8a4e1-22d6-4747-890d-85b2ce28534b" + ], + "x-ms-correlation-request-id": [ + "31c8a4e1-22d6-4747-890d-85b2ce28534b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T212451Z:31c8a4e1-22d6-4747-890d-85b2ce28534b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 21:24:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool\",\r\n \"name\": \"test-list-pool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "181" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" ], "x-ms-request-id": [ - "3f5492b4-0da4-44d8-bc8d-5c7edec50b42" + "1d8de408-3e2d-4aed-aa9e-e5a14b794633" ], "x-ms-correlation-request-id": [ - "3f5492b4-0da4-44d8-bc8d-5c7edec50b42" + "1d8de408-3e2d-4aed-aa9e-e5a14b794633" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213127Z:3f5492b4-0da4-44d8-bc8d-5c7edec50b42" + "WESTUS:20150709T212456Z:1d8de408-3e2d-4aed-aa9e-e5a14b794633" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:31:27 GMT" + "Thu, 09 Jul 2015 21:24:56 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2w/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:24:52 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], "request-id": [ - "16226453-47b5-415b-ab52-932f1775f499" + "276153cd-499e-4a8f-9ebd-ebf4bdc5f5fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], "x-ms-request-id": [ - "34aaf14a-db8c-46a1-a348-4bbe29a78da2" + "ce615c40-311d-4e64-881e-1ff5a6f48c6e" ], "x-ms-correlation-request-id": [ - "34aaf14a-db8c-46a1-a348-4bbe29a78da2" + "ce615c40-311d-4e64-881e-1ff5a6f48c6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213133Z:34aaf14a-db8c-46a1-a348-4bbe29a78da2" + "WESTUS:20150709T212452Z:ce615c40-311d-4e64-881e-1ff5a6f48c6e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:31:33 GMT" + "Thu, 09 Jul 2015 21:24:52 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/16226453-47b5-415b-ab52-932f1775f499?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D288A4D3DE09C9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/16226453-47b5-415b-ab52-932f1775f499?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy8xNjIyNjQ1My00N2I1LTQxNWItYWI1Mi05MzJmMTc3NWY0OTk/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistpool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistpool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "327" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:31:31 GMT" + "Thu, 09 Jul 2015 21:24:56 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "dd38869b-4ed7-410c-a63d-7defc87ddaba" + "1f8f75d3-ce83-4d75-9ac4-9b1dc6257cf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14976" ], "x-ms-request-id": [ - "b4238350-c681-4ec9-a54e-9fa5405da9c0" + "eb1c86d9-a76f-41ef-851a-3cd5abfca776" ], "x-ms-correlation-request-id": [ - "b4238350-c681-4ec9-a54e-9fa5405da9c0" + "eb1c86d9-a76f-41ef-851a-3cd5abfca776" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213134Z:b4238350-c681-4ec9-a54e-9fa5405da9c0" + "WESTUS:20150709T212456Z:eb1c86d9-a76f-41ef-851a-3cd5abfca776" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:31:33 GMT" + "Thu, 09 Jul 2015 21:24:56 GMT" ], "ETag": [ - "0x8D228C78BA991ED" + "0x8D288A4D66F8561" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistpool\",\r\n \"primary\": \"6WI8qq3I9HcZoAHFWsHRM8RT5RSOf9Lx6BTI4jwPMssJbc2/ljCO9Xxil73w2csgpivaemK/+NDuRhkmbuGJIQ==\",\r\n \"secondary\": \"K235c2HXRmDMeCFXmaFz+gKeef1KV2qqlFDkpErSYnGXHcxQLrjFnYXJ2cH8ql2joRJ55K+2zk01YnW9mLdciQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "f89d3dd5-6dec-4914-acf6-1655f9b9a434" + "0cd2ab50-4097-4cf1-ab17-69f0e9a07f3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-request-id": [ - "211c99d9-1f74-471b-9932-ab94d2a7bc6f" + "96b1166b-1ad5-4221-ab63-28b15a8a056a" ], "x-ms-correlation-request-id": [ - "211c99d9-1f74-471b-9932-ab94d2a7bc6f" + "96b1166b-1ad5-4221-ab63-28b15a8a056a" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213134Z:211c99d9-1f74-471b-9932-ab94d2a7bc6f" + "WESTUS:20150709T212452Z:96b1166b-1ad5-4221-ab63-28b15a8a056a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:31:33 GMT" + "Thu, 09 Jul 2015 21:24:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistpool\",\r\n \"primary\": \"6WI8qq3I9HcZoAHFWsHRM8RT5RSOf9Lx6BTI4jwPMssJbc2/ljCO9Xxil73w2csgpivaemK/+NDuRhkmbuGJIQ==\",\r\n \"secondary\": \"K235c2HXRmDMeCFXmaFz+gKeef1KV2qqlFDkpErSYnGXHcxQLrjFnYXJ2cH8ql2joRJ55K+2zk01YnW9mLdciQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "6b70c497-fe70-45c7-b329-557a3ad16ce9" + "bd31edd8-6392-4dd4-b384-3599b3209d2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1191" ], "x-ms-request-id": [ - "1d05a0c6-4cc6-4503-a9c8-4fe7cf410eab" + "c1b168b3-9429-4fd3-8417-9abaea9e6c53" ], "x-ms-correlation-request-id": [ - "1d05a0c6-4cc6-4503-a9c8-4fe7cf410eab" + "c1b168b3-9429-4fd3-8417-9abaea9e6c53" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T213213Z:1d05a0c6-4cc6-4503-a9c8-4fe7cf410eab" + "WESTUS:20150709T212456Z:c1b168b3-9429-4fd3-8417-9abaea9e6c53" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:32:12 GMT" + "Thu, 09 Jul 2015 21:24:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,38 +339,32 @@ { "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testName1\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Content-Length": [ - "200" - ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "c32f85fd-f32c-4745-8c77-485e2ec6324a" + "5e8bce91-e177-4a11-82ad-e48d7408da43" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:32:07 GMT" + "Thu, 09 Jul 2015 21:24:52 GMT" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools\",\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Last-Modified": [ - "Mon, 09 Mar 2015 21:32:09 GMT" + "Content-Type": [ + "application/json; odata=minimalmetadata" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9287b447-d55e-4e89-a353-ccca57fd4b0f" + "36305c7d-275b-47ee-84df-35abd2508ef2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -336,59 +372,44 @@ "DataServiceVersion": [ "3.0" ], - "DataServiceId": [ - "https://testlistpool.batch.core.windows.net/pools/testName1" - ], "Date": [ - "Mon, 09 Mar 2015 21:32:08 GMT" - ], - "ETag": [ - "0x8D228C7A254DFBC" - ], - "Location": [ - "https://testlistpool.batch.core.windows.net/pools/testName1" + "Thu, 09 Jul 2015 21:24:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testName2\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Content-Length": [ - "200" - ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "bc3df369-75cc-40ef-b4d9-4fd32116b5e9" + "59525f66-cc9c-44c0-80ca-483eb63f2c00" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:32:09 GMT" + "Thu, 09 Jul 2015 21:24:56 GMT" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testList1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testList1\",\r\n \"eTag\": \"0x8D288A4D56464D8\",\r\n \"lastModified\": \"2015-07-09T21:24:54.8801752Z\",\r\n \"creationTime\": \"2015-07-09T21:24:54.8801752Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T21:24:54.8801752Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:24:54.9774592Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"testList2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testList2\",\r\n \"eTag\": \"0x8D288A4D5BA230F\",\r\n \"lastModified\": \"2015-07-09T21:24:55.4421007Z\",\r\n \"creationTime\": \"2015-07-09T21:24:55.4421007Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T21:24:55.4421007Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:24:55.5247104Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"thirdTestList\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/thirdTestList\",\r\n \"eTag\": \"0x8D288A4D60DAD11\",\r\n \"lastModified\": \"2015-07-09T21:24:55.9895825Z\",\r\n \"creationTime\": \"2015-07-09T21:24:55.9895825Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T21:24:55.9895825Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:24:56.0695725Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Last-Modified": [ - "Mon, 09 Mar 2015 21:32:11 GMT" + "Content-Type": [ + "application/json; odata=minimalmetadata" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e1278a3e-ccd5-48da-ab74-e51072e0a48c" + "d79fc9ea-1f56-4e3a-b2da-2155acfd5f33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -396,59 +417,50 @@ "DataServiceVersion": [ "3.0" ], - "DataServiceId": [ - "https://testlistpool.batch.core.windows.net/pools/testName2" - ], "Date": [ - "Mon, 09 Mar 2015 21:32:13 GMT" - ], - "ETag": [ - "0x8D228C7A3650D1C" - ], - "Location": [ - "https://testlistpool.batch.core.windows.net/pools/testName2" + "Thu, 09 Jul 2015 21:24:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"thirdtestName\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testList1\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "204" + "200" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "dba1acfb-8280-4c6f-af56-77cb05372826" + "d3198e61-a91a-4315-8465-4948fe556188" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:32:11 GMT" + "Thu, 09 Jul 2015 21:24:54 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 21:32:13 GMT" + "Thu, 09 Jul 2015 21:24:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "18aa4b44-f9d0-4ad8-9b2f-afcce41ce69b" + "04241d13-3448-4d25-af04-98fc43fe85a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,16 +469,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistpool.batch.core.windows.net/pools/thirdtestName" + "https://pstests.batch.core.windows.net/pools/testList1" ], "Date": [ - "Mon, 09 Mar 2015 21:32:10 GMT" + "Thu, 09 Jul 2015 21:24:54 GMT" ], "ETag": [ - "0x8D228C7A42F175A" + "0x8D288A4D56464D8" ], "Location": [ - "https://testlistpool.batch.core.windows.net/pools/thirdtestName" + "https://pstests.batch.core.windows.net/pools/testList1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -475,145 +487,100 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/pools?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testList2\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool\",\r\n \"name\": \"testlistpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "750" - ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" - ], - "x-ms-request-id": [ - "74fec67c-555a-40bf-82d4-99514fa08b37" - ], - "x-ms-correlation-request-id": [ - "74fec67c-555a-40bf-82d4-99514fa08b37" + "application/json;odata=minimalmetadata" ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213212Z:74fec67c-555a-40bf-82d4-99514fa08b37" + "Content-Length": [ + "200" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "User-Agent": [ + "WA-Batch/1.0" ], - "Cache-Control": [ - "no-cache" + "client-request-id": [ + "3d049ab6-599e-4056-a675-3898bc678e34" ], - "Date": [ - "Mon, 09 Mar 2015 21:32:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2w/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" + "return-client-request-id": [ + "False" ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "ocp-date": [ + "Thu, 09 Jul 2015 21:24:54 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistpool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistpool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "327" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:32:10 GMT" + "Thu, 09 Jul 2015 21:24:55 GMT" ], - "Pragma": [ - "no-cache" + "Transfer-Encoding": [ + "chunked" ], "request-id": [ - "444f6134-6763-4d63-9eae-18998eca8f5f" + "acb45f74-922f-4aca-8569-2cefed60a119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "4c7a8921-ae7b-4769-8af0-6e1843e4da38" - ], - "x-ms-correlation-request-id": [ - "4c7a8921-ae7b-4769-8af0-6e1843e4da38" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213213Z:4c7a8921-ae7b-4769-8af0-6e1843e4da38" + "DataServiceVersion": [ + "3.0" ], - "Cache-Control": [ - "no-cache" + "DataServiceId": [ + "https://pstests.batch.core.windows.net/pools/testList2" ], "Date": [ - "Mon, 09 Mar 2015 21:32:12 GMT" + "Thu, 09 Jul 2015 21:24:54 GMT" ], "ETag": [ - "0x8D228C7A2E9B0DB" + "0x8D288A4D5BA230F" + ], + "Location": [ + "https://pstests.batch.core.windows.net/pools/testList2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"thirdTestList\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "Content-Length": [ + "204" + ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "461f3cce-2410-498b-9468-72797cc81323" + "a3036f28-b39b-478c-bb28-90f35de993a3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:32:13 GMT" + "Thu, 09 Jul 2015 21:24:55 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistpool.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://testlistpool.batch.core.windows.net/pools/testName1\",\r\n \"eTag\": \"0x8D228C7A254DFBC\",\r\n \"lastModified\": \"2015-03-09T21:32:09.9735484Z\",\r\n \"creationTime\": \"2015-03-09T21:32:09.9735484Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:32:09.9735484Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:32:09.9735484Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://testlistpool.batch.core.windows.net/pools/testName2\",\r\n \"eTag\": \"0x8D228C7A3650D1C\",\r\n \"lastModified\": \"2015-03-09T21:32:11.7572892Z\",\r\n \"creationTime\": \"2015-03-09T21:32:11.7572892Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:32:11.7572892Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:32:11.7572892Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"thirdtestName\",\r\n \"url\": \"https://testlistpool.batch.core.windows.net/pools/thirdtestName\",\r\n \"eTag\": \"0x8D228C7A42F175A\",\r\n \"lastModified\": \"2015-03-09T21:32:13.0813786Z\",\r\n \"creationTime\": \"2015-03-09T21:32:13.0813786Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:32:13.0813786Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:32:13.0813786Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" + "Last-Modified": [ + "Thu, 09 Jul 2015 21:24:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ed3e4dad-6e59-45d8-85bf-17face5d84d3" + "de9ea0b8-5729-41c9-a1be-bf98eac12b42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,18 +588,27 @@ "DataServiceVersion": [ "3.0" ], + "DataServiceId": [ + "https://pstests.batch.core.windows.net/pools/thirdTestList" + ], "Date": [ - "Mon, 09 Mar 2015 21:32:11 GMT" + "Thu, 09 Jul 2015 21:24:55 GMT" + ], + "ETag": [ + "0x8D288A4D60DAD11" + ], + "Location": [ + "https://pstests.batch.core.windows.net/pools/thirdTestList" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/pools/testName1?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3ROYW1lMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testList1?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RMaXN0MT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -640,13 +616,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e626ef58-11fb-4c1c-b28d-dcaa564ee207" + "3de7bac1-2976-4ed8-9015-4c068490dbf3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:32:13 GMT" + "Thu, 09 Jul 2015 21:24:57 GMT" ] }, "ResponseBody": "", @@ -655,7 +631,7 @@ "chunked" ], "request-id": [ - "d189f562-1318-4151-8b3f-cb2766122d32" + "c79f8676-030c-4f2e-b161-3c3417b7f326" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,7 +640,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:32:12 GMT" + "Thu, 09 Jul 2015 21:24:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,8 +649,8 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testName2?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3ROYW1lMj9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testList2?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RMaXN0Mj9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -682,13 +658,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "25e23343-63f2-4853-899f-120559eff66c" + "56df5a80-035d-4e69-9365-2725ae015c28" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:32:14 GMT" + "Thu, 09 Jul 2015 21:24:57 GMT" ] }, "ResponseBody": "", @@ -697,7 +673,7 @@ "chunked" ], "request-id": [ - "a14b94d9-7855-44d9-a3ab-f050ac3e88ff" + "acee9bae-92d3-49aa-a864-7ab3135ccedb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,7 +682,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:32:13 GMT" + "Thu, 09 Jul 2015 21:24:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -715,8 +691,8 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/thirdtestName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3RoaXJkdGVzdE5hbWU/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/pools/thirdTestList?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3RoaXJkVGVzdExpc3Q/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -724,13 +700,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "00adb5c5-25e0-4d6e-a4f7-ad4e377fde0f" + "f31ac337-fa73-41de-95b0-e116a52e06a5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:32:14 GMT" + "Thu, 09 Jul 2015 21:24:57 GMT" ] }, "ResponseBody": "", @@ -739,7 +715,7 @@ "chunked" ], "request-id": [ - "40953ef9-754f-4684-bbe5-93612dbac0b8" + "3c84e03d-f13e-4de6-8cda-d011b229f230" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,1711 +724,13 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:32:18 GMT" + "Thu, 09 Jul 2015 21:24:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2w/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "794f3e02-d4cd-4f85-8149-b8875bc81ab7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "5d209d3c-7df9-454d-b5ee-c3f194878ade" - ], - "x-ms-correlation-request-id": [ - "5d209d3c-7df9-454d-b5ee-c3f194878ade" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213216Z:5d209d3c-7df9-454d-b5ee-c3f194878ade" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:32:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a0f74de6-9e7c-46cc-acca-a85d1ad4f67a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "284de937-acf9-45c1-8628-6e232c83fa4d" - ], - "x-ms-correlation-request-id": [ - "284de937-acf9-45c1-8628-6e232c83fa4d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213216Z:284de937-acf9-45c1-8628-6e232c83fa4d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:32:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a826e2ae-f87a-4e75-b549-43716e185e46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "5cad5c03-342e-4b4d-a8d6-9f0b973cbf7a" - ], - "x-ms-correlation-request-id": [ - "5cad5c03-342e-4b4d-a8d6-9f0b973cbf7a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213231Z:5cad5c03-342e-4b4d-a8d6-9f0b973cbf7a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:32:31 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "62b69d04-4772-4fc7-af4c-3956892e5b45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "4c713c0d-7753-4053-9742-04de90ec2d4b" - ], - "x-ms-correlation-request-id": [ - "4c713c0d-7753-4053-9742-04de90ec2d4b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213246Z:4c713c0d-7753-4053-9742-04de90ec2d4b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:32:46 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "abb53f9e-a87d-4649-a6c1-920c7acdb3de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "90acff06-aca4-4ed4-8e20-1699cb3a61cb" - ], - "x-ms-correlation-request-id": [ - "90acff06-aca4-4ed4-8e20-1699cb3a61cb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213302Z:90acff06-aca4-4ed4-8e20-1699cb3a61cb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:33:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "eb39433b-f7ef-455f-b71b-122652c5fb96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "a6a279bd-5d7d-4a70-86ac-af6b45090e16" - ], - "x-ms-correlation-request-id": [ - "a6a279bd-5d7d-4a70-86ac-af6b45090e16" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213317Z:a6a279bd-5d7d-4a70-86ac-af6b45090e16" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:33:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e9764080-e6d0-4d55-82da-025f12b652c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "0bcb8fcf-d427-461a-bff7-eae22f2f2361" - ], - "x-ms-correlation-request-id": [ - "0bcb8fcf-d427-461a-bff7-eae22f2f2361" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213332Z:0bcb8fcf-d427-461a-bff7-eae22f2f2361" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:33:32 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "51a8a850-7a30-4784-93d3-d84da02a4b7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "faef6a29-58f2-439b-a572-4c1b6e135118" - ], - "x-ms-correlation-request-id": [ - "faef6a29-58f2-439b-a572-4c1b6e135118" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213347Z:faef6a29-58f2-439b-a572-4c1b6e135118" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:33:46 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "863436ac-17af-4ef9-a7c7-e8ed2d0a9752" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "ffd1d438-b4b7-44e5-8e12-92c1d07af37b" - ], - "x-ms-correlation-request-id": [ - "ffd1d438-b4b7-44e5-8e12-92c1d07af37b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213402Z:ffd1d438-b4b7-44e5-8e12-92c1d07af37b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:34:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9a96f9fb-c2b0-4f2c-8b19-eb3c75abff18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "27e3024c-b20c-410b-9920-475dc8184f93" - ], - "x-ms-correlation-request-id": [ - "27e3024c-b20c-410b-9920-475dc8184f93" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213417Z:27e3024c-b20c-410b-9920-475dc8184f93" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:34:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d4732d77-b2a3-46ea-b386-eea004955ae9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "9387c699-0001-45a4-a188-db36b5b09518" - ], - "x-ms-correlation-request-id": [ - "9387c699-0001-45a4-a188-db36b5b09518" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213433Z:9387c699-0001-45a4-a188-db36b5b09518" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:34:32 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "eef41c87-ae77-4243-9d62-6e7a4ffd545a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "dc6e841e-8032-44bc-9866-686c9a4062d2" - ], - "x-ms-correlation-request-id": [ - "dc6e841e-8032-44bc-9866-686c9a4062d2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213448Z:dc6e841e-8032-44bc-9866-686c9a4062d2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:34:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "00d37578-5e06-476d-aa8e-f7a5cb481f2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "8f9e3db6-2cd8-46f7-bad5-6f4e85dcbd57" - ], - "x-ms-correlation-request-id": [ - "8f9e3db6-2cd8-46f7-bad5-6f4e85dcbd57" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213503Z:8f9e3db6-2cd8-46f7-bad5-6f4e85dcbd57" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:35:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b10fd9fb-4ee8-4924-91fd-87b00ae6a646" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "202c69d7-1c53-42a3-983d-bce9e54d79e2" - ], - "x-ms-correlation-request-id": [ - "202c69d7-1c53-42a3-983d-bce9e54d79e2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213518Z:202c69d7-1c53-42a3-983d-bce9e54d79e2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:35:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "cbc38c19-c9e8-40ae-8084-b8b1ea8b5c2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "3812aa0d-40e6-4eef-8401-41915583e4de" - ], - "x-ms-correlation-request-id": [ - "3812aa0d-40e6-4eef-8401-41915583e4de" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213533Z:3812aa0d-40e6-4eef-8401-41915583e4de" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:35:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "6849ad97-8f68-460b-bf38-674ef15333f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "539a5bdc-d33a-4bc2-a154-d5d73fb08c49" - ], - "x-ms-correlation-request-id": [ - "539a5bdc-d33a-4bc2-a154-d5d73fb08c49" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213549Z:539a5bdc-d33a-4bc2-a154-d5d73fb08c49" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:35:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e7a95b27-6cb3-417e-928b-560f849f5ca2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "3eaf8dd8-a7b1-46e9-a29c-21cd4f9c58c8" - ], - "x-ms-correlation-request-id": [ - "3eaf8dd8-a7b1-46e9-a29c-21cd4f9c58c8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213604Z:3eaf8dd8-a7b1-46e9-a29c-21cd4f9c58c8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:36:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c42a1ef6-4bab-4760-8c29-b4b8dffee415" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "bed8b6c3-be13-41bb-bb68-7504aa720228" - ], - "x-ms-correlation-request-id": [ - "bed8b6c3-be13-41bb-bb68-7504aa720228" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213619Z:bed8b6c3-be13-41bb-bb68-7504aa720228" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:36:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d2f865f7-6dca-49b0-b497-ace7fede9a2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" - ], - "x-ms-request-id": [ - "fc85a59d-af39-4417-b82b-2d8bdac4374b" - ], - "x-ms-correlation-request-id": [ - "fc85a59d-af39-4417-b82b-2d8bdac4374b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213634Z:fc85a59d-af39-4417-b82b-2d8bdac4374b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:36:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b04a6a31-bae2-4f45-a866-f979fbcf9bed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" - ], - "x-ms-request-id": [ - "6feee0ab-2381-4c14-9766-3b86d1ed927b" - ], - "x-ms-correlation-request-id": [ - "6feee0ab-2381-4c14-9766-3b86d1ed927b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213649Z:6feee0ab-2381-4c14-9766-3b86d1ed927b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:36:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "53fe7165-9480-4567-a664-cd4b94137a8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" - ], - "x-ms-request-id": [ - "b5eefe4e-7c01-497b-8a64-61ec7f7ac9f0" - ], - "x-ms-correlation-request-id": [ - "b5eefe4e-7c01-497b-8a64-61ec7f7ac9f0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213704Z:b5eefe4e-7c01-497b-8a64-61ec7f7ac9f0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:37:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c6b45d83-98af-48a5-8ed2-a55713f88fba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" - ], - "x-ms-request-id": [ - "b7ae9c3b-6121-41a3-a1a2-9ba0d17c044a" - ], - "x-ms-correlation-request-id": [ - "b7ae9c3b-6121-41a3-a1a2-9ba0d17c044a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213720Z:b7ae9c3b-6121-41a3-a1a2-9ba0d17c044a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:37:19 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "54d20bbe-8cb9-4a72-a483-0a4a46ab8acf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" - ], - "x-ms-request-id": [ - "abdb9ca2-66d8-41ca-89c4-6a95741b583e" - ], - "x-ms-correlation-request-id": [ - "abdb9ca2-66d8-41ca-89c4-6a95741b583e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213735Z:abdb9ca2-66d8-41ca-89c4-6a95741b583e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:37:34 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool/providers/Microsoft.Batch/batchAccounts/testlistpool/operationResults/794f3e02-d4cd-4f85-8149-b8875bc81ab7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2wvb3BlcmF0aW9uUmVzdWx0cy83OTRmM2UwMi1kNGNkLTRmODUtODE0OS1iODg3NWJjODFhYjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:37:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "fbeb2176-9bc4-496a-af2f-c153eba20d57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" - ], - "x-ms-request-id": [ - "8b14fb4c-ab29-478a-b618-7783b07ed108" - ], - "x-ms-correlation-request-id": [ - "8b14fb4c-ab29-478a-b618-7783b07ed108" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213750Z:8b14fb4c-ab29-478a-b618-7783b07ed108" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:37:49 GMT" - ], - "ETag": [ - "0x8D228C86BF21990" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1wb29sP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "75e3ec88-9f7f-4375-bca7-edd68f70a003" - ], - "x-ms-correlation-request-id": [ - "75e3ec88-9f7f-4375-bca7-edd68f70a003" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213751Z:75e3ec88-9f7f-4375-bca7-edd68f70a003" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:37:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0wtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0wtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "2767b23f-9a1c-4f55-87cf-97f96e9fe2ab" - ], - "x-ms-correlation-request-id": [ - "2767b23f-9a1c-4f55-87cf-97f96e9fe2ab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213751Z:2767b23f-9a1c-4f55-87cf-97f96e9fe2ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:37:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0wtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0wtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "f87fd3ff-3e8e-4ee2-b5a4-dc0c527fe53e" - ], - "x-ms-correlation-request-id": [ - "f87fd3ff-3e8e-4ee2-b5a4-dc0c527fe53e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213807Z:f87fd3ff-3e8e-4ee2-b5a4-dc0c527fe53e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:38:06 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0wtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0wtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "954ea419-2bc7-4cdc-bf72-8dff1a225537" - ], - "x-ms-correlation-request-id": [ - "954ea419-2bc7-4cdc-bf72-8dff1a225537" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213822Z:954ea419-2bc7-4cdc-bf72-8dff1a225537" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:38:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0wtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0wtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "67549037-dea2-40ef-99e9-346b423870ef" - ], - "x-ms-correlation-request-id": [ - "67549037-dea2-40ef-99e9-346b423870ef" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213837Z:67549037-dea2-40ef-99e9-346b423870ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:38:37 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsByFilter.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsByFilter.json index 0f5b870d92b3..0c30340cd296 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsByFilter.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsByFilter.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-pool-filter?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "9d07f6a6-f6d8-460a-8c20-40ef0d7e3ad1" + ], + "x-ms-correlation-request-id": [ + "9d07f6a6-f6d8-460a-8c20-40ef0d7e3ad1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T193206Z:9d07f6a6-f6d8-460a-8c20-40ef0d7e3ad1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:32:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter\",\r\n \"name\": \"test-list-pool-filter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "195" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" ], "x-ms-request-id": [ - "823b1f6a-9179-43dd-965f-a2e3824ab723" + "8d5a243c-83bf-4a3c-a92f-534de35c7461" ], "x-ms-correlation-request-id": [ - "823b1f6a-9179-43dd-965f-a2e3824ab723" + "8d5a243c-83bf-4a3c-a92f-534de35c7461" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T211503Z:823b1f6a-9179-43dd-965f-a2e3824ab723" + "WESTUS:20150709T193209Z:8d5a243c-83bf-4a3c-a92f-534de35c7461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:15:02 GMT" + "Thu, 09 Jul 2015 19:32:09 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:32:07 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "request-id": [ - "084694aa-eab6-4291-b1d8-2d5e29a76b49" + "a31fce70-b6c9-4421-be8e-d85d6466b5d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], "x-ms-request-id": [ - "9990460a-9893-4c31-9b8f-c994e56aebd8" + "adb2a6da-f37e-4830-9770-189aa641ebc7" ], "x-ms-correlation-request-id": [ - "9990460a-9893-4c31-9b8f-c994e56aebd8" + "adb2a6da-f37e-4830-9770-189aa641ebc7" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T211507Z:9990460a-9893-4c31-9b8f-c994e56aebd8" + "WESTUS:20150709T193207Z:adb2a6da-f37e-4830-9770-189aa641ebc7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:15:07 GMT" + "Thu, 09 Jul 2015 19:32:06 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/084694aa-eab6-4291-b1d8-2d5e29a76b49?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889513EDCA0D" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/084694aa-eab6-4291-b1d8-2d5e29a76b49?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMDg0Njk0YWEtZWFiNi00MjkxLWIxZDgtMmQ1ZTI5YTc2YjQ5P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistpoolfilter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistpoolfilter.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "352" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:15:06 GMT" + "Thu, 09 Jul 2015 19:32:09 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "53100357-2b17-481e-bd01-edc4d92776a2" + "dbc38435-b856-4bc6-b6eb-423b02f6e78b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14954" ], "x-ms-request-id": [ - "f9c138c9-8443-4fc8-b668-64a7be63c018" + "4856e516-130d-4c10-8035-1792348a39b2" ], "x-ms-correlation-request-id": [ - "f9c138c9-8443-4fc8-b668-64a7be63c018" + "4856e516-130d-4c10-8035-1792348a39b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T211507Z:f9c138c9-8443-4fc8-b668-64a7be63c018" + "WESTUS:20150709T193209Z:4856e516-130d-4c10-8035-1792348a39b2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:15:07 GMT" + "Thu, 09 Jul 2015 19:32:08 GMT" ], "ETag": [ - "0x8D228C5403D3C7A" + "0x8D2889515351FD2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistpoolfilter\",\r\n \"primary\": \"aeLkyyI0o/gYeJIPJsfroJiftqePsl7i4roJZm4Va6Q7IJfQzQs+pAoOOOfQLcbPLP6xcV2hC+OQxZ5MattoLw==\",\r\n \"secondary\": \"9JjdO8wTD+DYEqxFjSCJzlRYYkZdJbGB6gAskCSldoZIK8LgDskbE6oYLGspzeKSMCjJAoUmgJYQRTkpKpnH4Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "cf65ab2c-89ed-4f55-9ac9-4bea12afdf56" + "1d614c8b-41ac-445b-a3d1-4b0e964ad83b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1181" ], "x-ms-request-id": [ - "38408e1f-0ed5-4b03-95d2-ad89e11ac799" + "c6dbdc19-0e85-4adb-b9f3-7a26da4ae307" ], "x-ms-correlation-request-id": [ - "38408e1f-0ed5-4b03-95d2-ad89e11ac799" + "c6dbdc19-0e85-4adb-b9f3-7a26da4ae307" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T211507Z:38408e1f-0ed5-4b03-95d2-ad89e11ac799" + "WESTUS:20150709T193207Z:c6dbdc19-0e85-4adb-b9f3-7a26da4ae307" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:15:07 GMT" + "Thu, 09 Jul 2015 19:32:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistpoolfilter\",\r\n \"primary\": \"aeLkyyI0o/gYeJIPJsfroJiftqePsl7i4roJZm4Va6Q7IJfQzQs+pAoOOOfQLcbPLP6xcV2hC+OQxZ5MattoLw==\",\r\n \"secondary\": \"9JjdO8wTD+DYEqxFjSCJzlRYYkZdJbGB6gAskCSldoZIK8LgDskbE6oYLGspzeKSMCjJAoUmgJYQRTkpKpnH4Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "e814fba5-386a-4115-982a-eb7458063d0d" + "53f4a9d5-8821-4c1c-a239-84618574d911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1180" ], "x-ms-request-id": [ - "6e5dd0ff-b0a4-49d6-ae30-322a28072674" + "13c2488f-1ba5-417b-a5fa-53a05650ad21" ], "x-ms-correlation-request-id": [ - "6e5dd0ff-b0a4-49d6-ae30-322a28072674" + "13c2488f-1ba5-417b-a5fa-53a05650ad21" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T211547Z:6e5dd0ff-b0a4-49d6-ae30-322a28072674" + "WESTUS:20150709T193209Z:13c2488f-1ba5-417b-a5fa-53a05650ad21" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:15:47 GMT" + "Thu, 09 Jul 2015 19:32:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testName1\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testFilter1\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "200" + "202" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "74c9996d-d7fa-4a1a-8eab-80b83be0dc9b" + "eb0e4e2e-7213-468c-a3cf-9e10e364e3bf" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:15:43 GMT" + "Thu, 09 Jul 2015 19:32:07 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 21:15:45 GMT" + "Thu, 09 Jul 2015 19:32:08 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d83cc150-51a2-445f-a973-ff0aadb567e4" + "003a8ca7-a115-45be-9460-5aa3ec49bf40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistpoolfilter.batch.core.windows.net/pools/testName1" + "https://pstests.batch.core.windows.net/pools/testFilter1" ], "Date": [ - "Mon, 09 Mar 2015 21:15:40 GMT" + "Thu, 09 Jul 2015 19:32:07 GMT" ], "ETag": [ - "0x8D228C5575D0C2D" + "0x8D28895142ED964" ], "Location": [ - "https://testlistpoolfilter.batch.core.windows.net/pools/testName1" + "https://pstests.batch.core.windows.net/pools/testFilter1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -358,37 +400,37 @@ "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testName2\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testFilter2\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "200" + "202" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "e6460f14-8123-4d6b-826d-1c1e39792b30" + "fe94277c-1e6d-4ae2-bcc0-b49a92d3b629" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:15:44 GMT" + "Thu, 09 Jul 2015 19:32:08 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 21:15:46 GMT" + "Thu, 09 Jul 2015 19:32:08 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d0e54e27-08ee-4a5e-a500-04c334b34a54" + "f57850a7-f1c8-4372-ae08-01a077c5761d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,16 +439,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistpoolfilter.batch.core.windows.net/pools/testName2" + "https://pstests.batch.core.windows.net/pools/testFilter2" ], "Date": [ - "Mon, 09 Mar 2015 21:15:42 GMT" + "Thu, 09 Jul 2015 19:32:08 GMT" ], "ETag": [ - "0x8D228C55827F8B3" + "0x8D288951487E233" ], "Location": [ - "https://testlistpoolfilter.batch.core.windows.net/pools/testName2" + "https://pstests.batch.core.windows.net/pools/testFilter2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -418,37 +460,37 @@ "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"thirdtestName\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"thirdFilterTest\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "204" + "206" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "c9f14ef8-76a7-497e-ab29-86252982b763" + "117cdde8-d736-4cf1-b3a9-861daca14d02" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:15:45 GMT" + "Thu, 09 Jul 2015 19:32:08 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 21:15:47 GMT" + "Thu, 09 Jul 2015 19:32:09 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "18fca5c0-ae0f-4e88-b167-3fb0c43026cf" + "a05a7314-bf22-49a6-aa69-840cefa62287" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,16 +499,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistpoolfilter.batch.core.windows.net/pools/thirdtestName" + "https://pstests.batch.core.windows.net/pools/thirdFilterTest" ], "Date": [ - "Mon, 09 Mar 2015 21:15:44 GMT" + "Thu, 09 Jul 2015 19:32:09 GMT" ], "ETag": [ - "0x8D228C558D41BCE" + "0x8D2889514DE9429" ], "Location": [ - "https://testlistpoolfilter.batch.core.windows.net/pools/thirdtestName" + "https://pstests.batch.core.windows.net/pools/thirdFilterTest" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -475,119 +517,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter\",\r\n \"name\": \"testlistpoolfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "769" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" - ], - "x-ms-request-id": [ - "b9d407c1-79a8-46c8-b870-b4f0e03f61a2" - ], - "x-ms-correlation-request-id": [ - "b9d407c1-79a8-46c8-b870-b4f0e03f61a2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211547Z:b9d407c1-79a8-46c8-b870-b4f0e03f61a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:15:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlistpoolfilter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistpoolfilter.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "352" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:15:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "88a72701-5e9f-48f4-be86-5fbd4a6df7e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "03b3198f-8f08-4173-b69f-dd185e2f7742" - ], - "x-ms-correlation-request-id": [ - "03b3198f-8f08-4173-b69f-dd185e2f7742" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211547Z:03b3198f-8f08-4173-b69f-dd185e2f7742" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:15:47 GMT" - ], - "ETag": [ - "0x8D228C557FCC0A7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/pools?api-version=2014-10-01.1.0&$filter=startswith(name%2C'testName')", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJiRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd0ZXN0TmFtZSUyNyUyOQ==", + "RequestUri": "/pools?api-version=2014-10-01.1.0&$filter=startswith(name%2C'testFilter')", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4wJiRmaWx0ZXI9c3RhcnRzd2l0aCUyOG5hbWUlMkMlMjd0ZXN0RmlsdGVyJTI3JTI5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,16 +526,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "da2a3905-8622-4a7e-ace5-3f1d15dc6fa6" + "b39288b5-263e-4c12-8633-8b8434b0de35" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:15:47 GMT" + "Thu, 09 Jul 2015 19:32:09 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistpoolfilter.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://testlistpoolfilter.batch.core.windows.net/pools/testName1\",\r\n \"eTag\": \"0x8D228C5575D0C2D\",\r\n \"lastModified\": \"2015-03-09T21:15:45.2045357Z\",\r\n \"creationTime\": \"2015-03-09T21:15:45.2045357Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:15:45.2045357Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:15:45.2045357Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://testlistpoolfilter.batch.core.windows.net/pools/testName2\",\r\n \"eTag\": \"0x8D228C55827F8B3\",\r\n \"lastModified\": \"2015-03-09T21:15:46.5344179Z\",\r\n \"creationTime\": \"2015-03-09T21:15:46.5344179Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:15:46.5344179Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:15:46.5344179Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testFilter1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testFilter1\",\r\n \"eTag\": \"0x8D28895142ED964\",\r\n \"lastModified\": \"2015-07-09T19:32:08.2780516Z\",\r\n \"creationTime\": \"2015-07-09T19:32:08.2780516Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:32:08.2780516Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:32:08.3720435Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"testFilter2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testFilter2\",\r\n \"eTag\": \"0x8D288951487E233\",\r\n \"lastModified\": \"2015-07-09T19:32:08.8615475Z\",\r\n \"creationTime\": \"2015-07-09T19:32:08.8615475Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:32:08.8615475Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:32:08.9485495Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -613,7 +544,7 @@ "chunked" ], "request-id": [ - "93b2a220-114c-4725-8607-0d7db9f25104" + "a9559b90-3ef8-426e-a35f-367904d08310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,7 +553,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:15:48 GMT" + "Thu, 09 Jul 2015 19:32:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -631,8 +562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testName1?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3ROYW1lMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testFilter1?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RGaWx0ZXIxP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -640,13 +571,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bef4bf4b-dc48-4bb7-a85d-8d04c814f806" + "5a08d942-c052-4cb3-a4ce-cd2fe38b54ff" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:15:48 GMT" + "Thu, 09 Jul 2015 19:32:10 GMT" ] }, "ResponseBody": "", @@ -655,7 +586,7 @@ "chunked" ], "request-id": [ - "5da8f249-76b1-4cb6-a59b-580e8afa22e8" + "a77540c4-eb99-4145-88e9-02b4d5f8d8d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,7 +595,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:15:46 GMT" + "Thu, 09 Jul 2015 19:32:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,8 +604,8 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testName2?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3ROYW1lMj9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testFilter2?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RGaWx0ZXIyP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -682,13 +613,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4913c06c-8dad-4aee-842c-264224f71bbc" + "01906c97-08db-4f2b-9b7a-1d08b8b25e29" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:15:48 GMT" + "Thu, 09 Jul 2015 19:32:10 GMT" ] }, "ResponseBody": "", @@ -697,7 +628,7 @@ "chunked" ], "request-id": [ - "5d153dfa-9fb6-482e-94be-75832000c1b1" + "41713212-b250-4848-902a-6b5fe0ae8f83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,7 +637,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:15:48 GMT" + "Thu, 09 Jul 2015 19:32:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -715,8 +646,8 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/thirdtestName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3RoaXJkdGVzdE5hbWU/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/pools/thirdFilterTest?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3RoaXJkRmlsdGVyVGVzdD9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -724,13 +655,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6e542245-59e6-4833-a424-446ca9bc98d8" + "3b647f0f-1e27-46ba-997c-537e3d95355b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:15:49 GMT" + "Thu, 09 Jul 2015 19:32:10 GMT" ] }, "ResponseBody": "", @@ -739,7 +670,7 @@ "chunked" ], "request-id": [ - "874a80c9-e9cd-427f-a2e4-139503d5bc65" + "09ad93d1-69f6-4fb2-9a94-fddf1857c254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,1711 +679,13 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:15:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "1c89a4ce-850f-454d-b9b8-24813d0a7883" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "e84379c8-c45d-4ab9-bb7c-03d04d598b78" - ], - "x-ms-correlation-request-id": [ - "e84379c8-c45d-4ab9-bb7c-03d04d598b78" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211550Z:e84379c8-c45d-4ab9-bb7c-03d04d598b78" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:15:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "18151046-4643-499d-8a65-80c6714ad4c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "05ae26cd-d444-415b-bc50-f2023fda5877" - ], - "x-ms-correlation-request-id": [ - "05ae26cd-d444-415b-bc50-f2023fda5877" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211551Z:05ae26cd-d444-415b-bc50-f2023fda5877" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:15:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:32:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "003e3900-b2df-4be5-a5c0-d8004566808d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "80a1492f-0593-45fe-aa15-2f72abac3429" - ], - "x-ms-correlation-request-id": [ - "80a1492f-0593-45fe-aa15-2f72abac3429" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211606Z:80a1492f-0593-45fe-aa15-2f72abac3429" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:16:06 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "189c7cc0-c3bb-40df-bcdf-eb8c077fc1fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "6b26c3ac-cb8b-4a77-99a2-4a99b554b415" - ], - "x-ms-correlation-request-id": [ - "6b26c3ac-cb8b-4a77-99a2-4a99b554b415" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211621Z:6b26c3ac-cb8b-4a77-99a2-4a99b554b415" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:16:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "ce6570f3-0c9e-476f-b24b-b44a9c8b9f78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "dc9154cc-7389-4f73-a771-c40f40e7eb08" - ], - "x-ms-correlation-request-id": [ - "dc9154cc-7389-4f73-a771-c40f40e7eb08" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211636Z:dc9154cc-7389-4f73-a771-c40f40e7eb08" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:16:36 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "63d51693-bdc0-4492-a46e-e9170d3585de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "1d64e8e6-2c42-4caa-b520-fd42f2351ed2" - ], - "x-ms-correlation-request-id": [ - "1d64e8e6-2c42-4caa-b520-fd42f2351ed2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211651Z:1d64e8e6-2c42-4caa-b520-fd42f2351ed2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:16:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b0872d8e-7110-4f4c-a028-ba380eaa4ac4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "95ea1528-9c48-432a-980b-8d2e56f389ec" - ], - "x-ms-correlation-request-id": [ - "95ea1528-9c48-432a-980b-8d2e56f389ec" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211706Z:95ea1528-9c48-432a-980b-8d2e56f389ec" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:17:06 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "7dbf5a60-9339-4d7f-a76b-24ef7d3e9a77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "3383edf1-8176-4a38-8f50-693e3b00a839" - ], - "x-ms-correlation-request-id": [ - "3383edf1-8176-4a38-8f50-693e3b00a839" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211722Z:3383edf1-8176-4a38-8f50-693e3b00a839" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:17:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "0cfbdfec-027b-405f-8a91-b15db2ef9144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "83b51e1f-12e9-4639-9cd5-187de0b200d3" - ], - "x-ms-correlation-request-id": [ - "83b51e1f-12e9-4639-9cd5-187de0b200d3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211737Z:83b51e1f-12e9-4639-9cd5-187de0b200d3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:17:36 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e9d2a61e-f815-4b3f-ac76-aebd36fe874e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "78053fa5-07cd-49e2-b7dc-00ce42b04646" - ], - "x-ms-correlation-request-id": [ - "78053fa5-07cd-49e2-b7dc-00ce42b04646" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211752Z:78053fa5-07cd-49e2-b7dc-00ce42b04646" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:17:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "7ccd0bc4-3e60-44e4-83db-617913c8a243" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "7b66f25a-2e02-4c73-8aca-7c8caa3d9bc9" - ], - "x-ms-correlation-request-id": [ - "7b66f25a-2e02-4c73-8aca-7c8caa3d9bc9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211807Z:7b66f25a-2e02-4c73-8aca-7c8caa3d9bc9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:18:07 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "f342cc43-7edc-4408-bbc2-330cb529ef74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "06614c00-a88f-47ce-a9bb-95a5c10fe172" - ], - "x-ms-correlation-request-id": [ - "06614c00-a88f-47ce-a9bb-95a5c10fe172" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211822Z:06614c00-a88f-47ce-a9bb-95a5c10fe172" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:18:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "22d05e26-50fe-48a7-a84c-1e6c2cb89945" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "33194783-3d4c-4bbe-954e-ca4b11c532e4" - ], - "x-ms-correlation-request-id": [ - "33194783-3d4c-4bbe-954e-ca4b11c532e4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211837Z:33194783-3d4c-4bbe-954e-ca4b11c532e4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:18:37 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "8ea71fe9-f3fa-4712-ab2b-fb3683cef95f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "530805bd-1027-4bc3-9fc2-45754447582e" - ], - "x-ms-correlation-request-id": [ - "530805bd-1027-4bc3-9fc2-45754447582e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211853Z:530805bd-1027-4bc3-9fc2-45754447582e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:18:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a2d2ddb3-2af1-47c6-b4b1-14ba58016b80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "71928d01-2259-42ef-a73e-eead742eb151" - ], - "x-ms-correlation-request-id": [ - "71928d01-2259-42ef-a73e-eead742eb151" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211908Z:71928d01-2259-42ef-a73e-eead742eb151" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:19:08 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "410e456a-e142-4ad6-8bc4-61996928dca1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "a8a14d00-a4c0-4ef8-a517-08dc0b9a1a12" - ], - "x-ms-correlation-request-id": [ - "a8a14d00-a4c0-4ef8-a517-08dc0b9a1a12" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211923Z:a8a14d00-a4c0-4ef8-a517-08dc0b9a1a12" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:19:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "58f26c19-c683-4263-9857-761209fe7f0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "73e4eac8-7c13-4a25-a0ca-ef548ffdb620" - ], - "x-ms-correlation-request-id": [ - "73e4eac8-7c13-4a25-a0ca-ef548ffdb620" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211938Z:73e4eac8-7c13-4a25-a0ca-ef548ffdb620" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:19:37 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "bea8ee61-9272-481c-9f4b-c032473d7556" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "26a61516-3861-45f2-8139-ac949f02b495" - ], - "x-ms-correlation-request-id": [ - "26a61516-3861-45f2-8139-ac949f02b495" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T211953Z:26a61516-3861-45f2-8139-ac949f02b495" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:19:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "ec96c45b-b7db-41b8-a1aa-9abce58bfe92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "5f33f183-3835-4136-99f3-b0402dac335b" - ], - "x-ms-correlation-request-id": [ - "5f33f183-3835-4136-99f3-b0402dac335b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212008Z:5f33f183-3835-4136-99f3-b0402dac335b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:20:07 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "8caadf8d-2ced-4502-8c3c-b57575057eb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "725c6db9-545b-41ae-92c1-056f577a7706" - ], - "x-ms-correlation-request-id": [ - "725c6db9-545b-41ae-92c1-056f577a7706" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212023Z:725c6db9-545b-41ae-92c1-056f577a7706" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:20:23 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "6014b7b8-9491-464d-9f6b-916be22abccb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "770ee0fe-7ed3-4fba-8f08-6626b815be16" - ], - "x-ms-correlation-request-id": [ - "770ee0fe-7ed3-4fba-8f08-6626b815be16" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212039Z:770ee0fe-7ed3-4fba-8f08-6626b815be16" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:20:38 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "3383ab79-b3e8-4389-be05-b7419627a547" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "dc3527b0-d275-4fe0-b721-21668a3d9d12" - ], - "x-ms-correlation-request-id": [ - "dc3527b0-d275-4fe0-b721-21668a3d9d12" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212054Z:dc3527b0-d275-4fe0-b721-21668a3d9d12" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:20:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "33062d11-48f6-441b-903a-b1ded4fbf75f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "fdf6254d-4600-4e1d-8a50-de97dcd52121" - ], - "x-ms-correlation-request-id": [ - "fdf6254d-4600-4e1d-8a50-de97dcd52121" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212109Z:fdf6254d-4600-4e1d-8a50-de97dcd52121" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:21:08 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-filter/providers/Microsoft.Batch/batchAccounts/testlistpoolfilter/operationResults/1c89a4ce-850f-454d-b9b8-24813d0a7883?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3Rwb29sZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvMWM4OWE0Y2UtODUwZi00NTRkLWI5YjgtMjQ4MTNkMGE3ODgzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:21:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d58a82c4-967a-4b68-b5b5-61548a1a3dea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "9b878eac-8e7f-46b3-8c2d-8d75beb4a9c6" - ], - "x-ms-correlation-request-id": [ - "9b878eac-8e7f-46b3-8c2d-8d75beb4a9c6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212124Z:9b878eac-8e7f-46b3-8c2d-8d75beb4a9c6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:21:23 GMT" - ], - "ETag": [ - "0x8D228C620CE2731" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-pool-filter?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1wb29sLWZpbHRlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "f1529196-56dc-4de4-b9ea-faa26e79a917" - ], - "x-ms-correlation-request-id": [ - "f1529196-56dc-4de4-b9ea-faa26e79a917" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212127Z:f1529196-56dc-4de4-b9ea-faa26e79a917" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:21:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHc2TWtSR1NVeFVSVkl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "476c9821-ae9f-4e0c-981a-3ce5201f8c19" - ], - "x-ms-correlation-request-id": [ - "476c9821-ae9f-4e0c-981a-3ce5201f8c19" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212127Z:476c9821-ae9f-4e0c-981a-3ce5201f8c19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:21:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHc2TWtSR1NVeFVSVkl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "9a06d687-6032-46f6-88b1-ec817e511f37" - ], - "x-ms-correlation-request-id": [ - "9a06d687-6032-46f6-88b1-ec817e511f37" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212142Z:9a06d687-6032-46f6-88b1-ec817e511f37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:21:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHc2TWtSR1NVeFVSVkl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "a80ca6e6-3f9f-4f24-9320-a18560fb796b" - ], - "x-ms-correlation-request-id": [ - "a80ca6e6-3f9f-4f24-9320-a18560fb796b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212158Z:a80ca6e6-3f9f-4f24-9320-a18560fb796b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:21:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHc2TWtSR1NVeFVSVkl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "2b99b823-7603-42d2-a8e2-72bdda2e2b95" - ], - "x-ms-correlation-request-id": [ - "2b99b823-7603-42d2-a8e2-72bdda2e2b95" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212213Z:2b99b823-7603-42d2-a8e2-72bdda2e2b95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:22:12 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsWithMaxCount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsWithMaxCount.json index d53d02a3d3ff..148084184d4e 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsWithMaxCount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestListPoolsWithMaxCount.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-pool-maxcount?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "a798c359-69eb-4436-8beb-31f0b6fc98d3" + ], + "x-ms-correlation-request-id": [ + "a798c359-69eb-4436-8beb-31f0b6fc98d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T193053Z:a798c359-69eb-4436-8beb-31f0b6fc98d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:30:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount\",\r\n \"name\": \"test-list-pool-maxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "199" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" ], "x-ms-request-id": [ - "5d3145f1-b8b1-41b6-b912-31634a7f80c8" + "4fade442-a320-4f9b-8978-2246deda634b" ], "x-ms-correlation-request-id": [ - "5d3145f1-b8b1-41b6-b912-31634a7f80c8" + "4fade442-a320-4f9b-8978-2246deda634b" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T212301Z:5d3145f1-b8b1-41b6-b912-31634a7f80c8" + "WESTUS:20150709T193056Z:4fade442-a320-4f9b-8978-2246deda634b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:23:01 GMT" + "Thu, 09 Jul 2015 19:30:55 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudD9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:30:53 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "request-id": [ - "7ebe5a0d-222c-469a-bc90-7385d65af5fb" + "618e8156-2624-470c-901b-19887cdd3f68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], "x-ms-request-id": [ - "5a35f1e4-ff54-4a64-bec5-fbe7547a3558" + "a9cd4286-e695-403e-bd74-ed6699feab94" ], "x-ms-correlation-request-id": [ - "5a35f1e4-ff54-4a64-bec5-fbe7547a3558" + "a9cd4286-e695-403e-bd74-ed6699feab94" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T212305Z:5a35f1e4-ff54-4a64-bec5-fbe7547a3558" + "WESTUS:20150709T193053Z:a9cd4286-e695-403e-bd74-ed6699feab94" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:23:05 GMT" + "Thu, 09 Jul 2015 19:30:53 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/7ebe5a0d-222c-469a-bc90-7385d65af5fb?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28894E7C54969" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/7ebe5a0d-222c-469a-bc90-7385d65af5fb?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzdlYmU1YTBkLTIyMmMtNDY5YS1iYzkwLTczODVkNjVhZjVmYj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistpoolmaxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistpoolmaxcount.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "360" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 09 Mar 2015 21:23:04 GMT" + "Thu, 09 Jul 2015 19:30:56 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "157353f7-d2f2-426d-b403-84a66780da33" + "b3b2c067-26aa-4d75-b5b1-91a383eab4b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14928" ], "x-ms-request-id": [ - "9e5b52e8-58d3-4521-b4e2-a5bde980476f" + "b664f5d6-d496-42e2-96e6-6f7d6c8fe160" ], "x-ms-correlation-request-id": [ - "9e5b52e8-58d3-4521-b4e2-a5bde980476f" + "b664f5d6-d496-42e2-96e6-6f7d6c8fe160" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T212305Z:9e5b52e8-58d3-4521-b4e2-a5bde980476f" + "WESTUS:20150709T193056Z:b664f5d6-d496-42e2-96e6-6f7d6c8fe160" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:23:05 GMT" + "Thu, 09 Jul 2015 19:30:55 GMT" ], "ETag": [ - "0x8D228C65D5190AF" + "0x8D28894E92B636A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistpoolmaxcount\",\r\n \"primary\": \"2+e9MgrZJhJut6Gl/oGkcgvDFgHwaAXKB0O84f6t40lIdoykH0/NUebjCkFH9zOq7bY6+irtqj0rtm2kRTH8Tg==\",\r\n \"secondary\": \"dTjIU141l6mga3TtFOeFoacCcZx8abHpwIlcy5kmMgdYHfonRL1s7ATgLAet/y6YfZqOReeJ8WGQo64QpBzpyA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "242" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "320bdc50-9998-4caf-bd04-5c64124efb91" + "a8b2aae7-1328-49e2-a60c-673f1fd96bf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1159" ], "x-ms-request-id": [ - "ae17c09f-06d1-495c-b30a-4a67892d21ac" + "3e0d58b4-e03c-4cd9-8b36-c0e4508cde61" ], "x-ms-correlation-request-id": [ - "ae17c09f-06d1-495c-b30a-4a67892d21ac" + "3e0d58b4-e03c-4cd9-8b36-c0e4508cde61" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T212305Z:ae17c09f-06d1-495c-b30a-4a67892d21ac" + "WESTUS:20150709T193054Z:3e0d58b4-e03c-4cd9-8b36-c0e4508cde61" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:23:05 GMT" + "Thu, 09 Jul 2015 19:30:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistpoolmaxcount\",\r\n \"primary\": \"2+e9MgrZJhJut6Gl/oGkcgvDFgHwaAXKB0O84f6t40lIdoykH0/NUebjCkFH9zOq7bY6+irtqj0rtm2kRTH8Tg==\",\r\n \"secondary\": \"dTjIU141l6mga3TtFOeFoacCcZx8abHpwIlcy5kmMgdYHfonRL1s7ATgLAet/y6YfZqOReeJ8WGQo64QpBzpyA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "242" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "3c7acb53-d973-4af7-845a-d32b49136a33" + "bb371899-8b6d-46d3-be4b-b1d2cf21c088" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1158" ], "x-ms-request-id": [ - "e1b07a1a-ae24-4d4e-9d06-9fc9fc378cd7" + "0bf9e60e-d78a-40b5-ab32-720fca753e84" ], "x-ms-correlation-request-id": [ - "e1b07a1a-ae24-4d4e-9d06-9fc9fc378cd7" + "0bf9e60e-d78a-40b5-ab32-720fca753e84" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T212352Z:e1b07a1a-ae24-4d4e-9d06-9fc9fc378cd7" + "WESTUS:20150709T193056Z:0bf9e60e-d78a-40b5-ab32-720fca753e84" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 21:23:52 GMT" + "Thu, 09 Jul 2015 19:30:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testName1\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testMaxCount1\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "200" + "204" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "74590d71-e331-4d7a-8e4c-82efca72076e" + "f415c31a-6940-4998-a51e-40ad04fd57bc" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:23:47 GMT" + "Thu, 09 Jul 2015 19:30:54 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 21:23:49 GMT" + "Thu, 09 Jul 2015 19:30:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5922df46-a5ff-4a60-bd71-f4f902aa3041" + "ea4eecae-afb0-4e19-94b7-975c19827151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistpoolmaxcount.batch.core.windows.net/pools/testName1" + "https://pstests.batch.core.windows.net/pools/testMaxCount1" ], "Date": [ - "Mon, 09 Mar 2015 21:23:46 GMT" + "Thu, 09 Jul 2015 19:30:53 GMT" ], "ETag": [ - "0x8D228C677C997D0" + "0x8D28894E83C368A" ], "Location": [ - "https://testlistpoolmaxcount.batch.core.windows.net/pools/testName1" + "https://pstests.batch.core.windows.net/pools/testMaxCount1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -358,37 +400,37 @@ "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testName2\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testMaxCount2\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "200" + "204" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "8228ce0e-4e10-46e0-a531-e92fad14524d" + "2b66d171-7b5c-4f3a-a587-73f9a0d1a90c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:23:49 GMT" + "Thu, 09 Jul 2015 19:30:54 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 21:23:51 GMT" + "Thu, 09 Jul 2015 19:30:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6eb689b8-9b38-40e7-a8af-0b800a5b49a8" + "b4d115b4-214b-44a3-aecb-7e8344fde34c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,16 +439,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistpoolmaxcount.batch.core.windows.net/pools/testName2" + "https://pstests.batch.core.windows.net/pools/testMaxCount2" ], "Date": [ - "Mon, 09 Mar 2015 21:23:50 GMT" + "Thu, 09 Jul 2015 19:30:55 GMT" ], "ETag": [ - "0x8D228C6793F4EDF" + "0x8D28894E8939293" ], "Location": [ - "https://testlistpoolmaxcount.batch.core.windows.net/pools/testName2" + "https://pstests.batch.core.windows.net/pools/testMaxCount2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -418,7 +460,7 @@ "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"thirdtestName\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"thirdMaxCount\",\r\n \"tvmSize\": \"small\",\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"osFamily\": \"4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" @@ -430,25 +472,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "58016c8b-df33-44b3-af15-a6fb176a26fd" + "3b1b169a-51ba-403b-a2e1-9e4225d379ec" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:23:50 GMT" + "Thu, 09 Jul 2015 19:30:55 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 21:23:52 GMT" + "Thu, 09 Jul 2015 19:30:55 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "98cccaba-12a4-4de9-8ac5-87a808f7f1c5" + "29c74d63-3038-473c-983b-88f2c985f739" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,16 +499,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistpoolmaxcount.batch.core.windows.net/pools/thirdtestName" + "https://pstests.batch.core.windows.net/pools/thirdMaxCount" ], "Date": [ - "Mon, 09 Mar 2015 21:23:50 GMT" + "Thu, 09 Jul 2015 19:30:54 GMT" ], "ETag": [ - "0x8D228C679D822A0" + "0x8D28894E8E66C7F" ], "Location": [ - "https://testlistpoolmaxcount.batch.core.windows.net/pools/thirdtestName" + "https://pstests.batch.core.windows.net/pools/thirdMaxCount" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -474,117 +516,6 @@ }, "StatusCode": 201 }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount\",\r\n \"name\": \"testlistpoolmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "775" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "6a7f7731-289a-4317-b4d8-a29097298ef8" - ], - "x-ms-correlation-request-id": [ - "6a7f7731-289a-4317-b4d8-a29097298ef8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212352Z:6a7f7731-289a-4317-b4d8-a29097298ef8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:23:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudD9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlistpoolmaxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistpoolmaxcount.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "360" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:23:51 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "b15d58b6-4284-4f6d-b8ae-be4ba2db8631" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "0ea01da9-7085-43f2-838e-eb2cdeb7b4f5" - ], - "x-ms-correlation-request-id": [ - "0ea01da9-7085-43f2-838e-eb2cdeb7b4f5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212352Z:0ea01da9-7085-43f2-838e-eb2cdeb7b4f5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:23:52 GMT" - ], - "ETag": [ - "0x8D228C6793B9899" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/pools?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", @@ -595,16 +526,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6ef8c119-6bfc-4da8-880d-082879d852f0" + "8d5a41ce-8eb5-4f36-b444-b38e70723362" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:23:52 GMT" + "Thu, 09 Jul 2015 19:30:56 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistpoolmaxcount.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://testlistpoolmaxcount.batch.core.windows.net/pools/testName1\",\r\n \"eTag\": \"0x8D228C677C997D0\",\r\n \"lastModified\": \"2015-03-09T21:23:49.09972Z\",\r\n \"creationTime\": \"2015-03-09T21:23:49.09972Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:23:49.09972Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:23:49.09972Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://testlistpoolmaxcount.batch.core.windows.net/pools/testName2\",\r\n \"eTag\": \"0x8D228C6793F4EDF\",\r\n \"lastModified\": \"2015-03-09T21:23:51.5488991Z\",\r\n \"creationTime\": \"2015-03-09T21:23:51.5488991Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:23:51.5488991Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:23:51.5488991Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"thirdtestName\",\r\n \"url\": \"https://testlistpoolmaxcount.batch.core.windows.net/pools/thirdtestName\",\r\n \"eTag\": \"0x8D228C679D822A0\",\r\n \"lastModified\": \"2015-03-09T21:23:52.5504672Z\",\r\n \"creationTime\": \"2015-03-09T21:23:52.5504672Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T21:23:52.5504672Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T21:23:52.5504672Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"name\": \"testMaxCount1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testMaxCount1\",\r\n \"eTag\": \"0x8D28894E83C368A\",\r\n \"lastModified\": \"2015-07-09T19:30:54.5458826Z\",\r\n \"creationTime\": \"2015-07-09T19:30:54.5458826Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:54.5458826Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:30:54.6399771Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"testMaxCount2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testMaxCount2\",\r\n \"eTag\": \"0x8D28894E8939293\",\r\n \"lastModified\": \"2015-07-09T19:30:55.1184019Z\",\r\n \"creationTime\": \"2015-07-09T19:30:55.1184019Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:55.1184019Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:30:55.1984015Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n },\r\n {\r\n \"name\": \"thirdMaxCount\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/thirdMaxCount\",\r\n \"eTag\": \"0x8D28894E8E66C7F\",\r\n \"lastModified\": \"2015-07-09T19:30:55.6613759Z\",\r\n \"creationTime\": \"2015-07-09T19:30:55.6613759Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:30:55.6613759Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:30:55.7764366Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 0,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -613,7 +544,7 @@ "chunked" ], "request-id": [ - "3538e5dc-120f-4524-9bf0-dcc963548a95" + "c794c883-e951-415d-adcd-74240a60eab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,7 +553,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:23:51 GMT" + "Thu, 09 Jul 2015 19:30:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -631,8 +562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testName1?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3ROYW1lMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testMaxCount1?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RNYXhDb3VudDE/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -640,13 +571,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0ba01a5e-1716-4296-ad9f-f0dbb7540abd" + "d68b0dfb-7f88-4713-96b6-cc68e1d18df2" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:23:53 GMT" + "Thu, 09 Jul 2015 19:30:56 GMT" ] }, "ResponseBody": "", @@ -655,7 +586,7 @@ "chunked" ], "request-id": [ - "b322fa53-1c78-4075-a3b4-e2bf20dcfc92" + "04350bac-ec14-4b5e-9505-f7bda0dcdb5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,7 +595,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:23:53 GMT" + "Thu, 09 Jul 2015 19:30:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -673,8 +604,8 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/testName2?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3ROYW1lMj9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testMaxCount2?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RNYXhDb3VudDI/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -682,13 +613,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f83315d8-c3ec-4425-8f4d-f76308eb5260" + "b4176382-2d67-4f22-b4b3-ab9448e8b322" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:23:53 GMT" + "Thu, 09 Jul 2015 19:30:57 GMT" ] }, "ResponseBody": "", @@ -697,7 +628,7 @@ "chunked" ], "request-id": [ - "d79bec5f-4b45-4b81-864a-36ee346c4317" + "6f203c79-1b84-4221-8c8a-9797ac6b74b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,7 +637,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:23:57 GMT" + "Thu, 09 Jul 2015 19:30:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -715,8 +646,8 @@ "StatusCode": 202 }, { - "RequestUri": "/pools/thirdtestName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3RoaXJkdGVzdE5hbWU/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/pools/thirdMaxCount?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3RoaXJkTWF4Q291bnQ/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -724,13 +655,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "79bce6f5-2095-4292-ad33-485ef0bd1db1" + "5c057fce-841c-4e30-ba4c-dee59818b85e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 21:23:53 GMT" + "Thu, 09 Jul 2015 19:30:57 GMT" ] }, "ResponseBody": "", @@ -739,7 +670,7 @@ "chunked" ], "request-id": [ - "c6566f68-d855-468c-9639-f251c7492503" + "83c7d158-b48d-41e4-8507-4c5569fa4afa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,1711 +679,13 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 21:23:54 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudD9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "08d31eb0-1a0d-44b3-8147-2af820db174e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "f2095993-f876-4eb6-ba80-7c2e782c8b58" - ], - "x-ms-correlation-request-id": [ - "f2095993-f876-4eb6-ba80-7c2e782c8b58" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212355Z:f2095993-f876-4eb6-ba80-7c2e782c8b58" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:23:55 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "0313058d-db50-4c4d-a9c7-e0d3fd31afb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "ff289809-2b74-4015-b583-f68502feb041" - ], - "x-ms-correlation-request-id": [ - "ff289809-2b74-4015-b583-f68502feb041" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212355Z:ff289809-2b74-4015-b583-f68502feb041" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:23:55 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:30:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9370a629-21d7-4fdb-8394-d6b1120fc932" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "1a9adf05-da16-42d5-a42a-f1a92e55e400" - ], - "x-ms-correlation-request-id": [ - "1a9adf05-da16-42d5-a42a-f1a92e55e400" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212410Z:1a9adf05-da16-42d5-a42a-f1a92e55e400" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:24:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "18cb3568-4d59-4f9d-b53e-ed0641e69f4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "ae501b3f-7146-4573-8813-e28c73809e02" - ], - "x-ms-correlation-request-id": [ - "ae501b3f-7146-4573-8813-e28c73809e02" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212426Z:ae501b3f-7146-4573-8813-e28c73809e02" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:24:25 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "cbf95903-345d-4736-a19b-4a56354bb89b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "c8eee1f6-7a7f-43d2-af30-ae9a7f82f894" - ], - "x-ms-correlation-request-id": [ - "c8eee1f6-7a7f-43d2-af30-ae9a7f82f894" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212441Z:c8eee1f6-7a7f-43d2-af30-ae9a7f82f894" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:24:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "58950941-c4c8-448f-8592-08ea75a18f24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "ceaf98b7-214a-47d0-937f-434bd3e28003" - ], - "x-ms-correlation-request-id": [ - "ceaf98b7-214a-47d0-937f-434bd3e28003" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212456Z:ceaf98b7-214a-47d0-937f-434bd3e28003" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:24:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "73006c04-8b6c-4eba-8caf-e34943ee0b75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "720311b9-d211-4a92-bb33-3a1c036fec7f" - ], - "x-ms-correlation-request-id": [ - "720311b9-d211-4a92-bb33-3a1c036fec7f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212511Z:720311b9-d211-4a92-bb33-3a1c036fec7f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:25:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "68f76cdb-9852-4e9f-b5b2-03d27c010e2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "a5ff852f-68eb-41a1-9a25-63178158cbda" - ], - "x-ms-correlation-request-id": [ - "a5ff852f-68eb-41a1-9a25-63178158cbda" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212526Z:a5ff852f-68eb-41a1-9a25-63178158cbda" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:25:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "61d41a24-71ba-46e2-be2d-c42634bed0ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "3fb8e630-07f5-4d51-9698-2d1133e330f5" - ], - "x-ms-correlation-request-id": [ - "3fb8e630-07f5-4d51-9698-2d1133e330f5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212541Z:3fb8e630-07f5-4d51-9698-2d1133e330f5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:25:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "3943d86a-7968-4ca7-bd3f-331c40fb1f14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "767ffe71-36c4-4550-9b6e-67660d28ba27" - ], - "x-ms-correlation-request-id": [ - "767ffe71-36c4-4550-9b6e-67660d28ba27" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212556Z:767ffe71-36c4-4550-9b6e-67660d28ba27" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:25:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d678cea4-badc-4935-a249-dfde0877ef65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "20777ed3-8078-4c06-80d5-fb5fea2a2357" - ], - "x-ms-correlation-request-id": [ - "20777ed3-8078-4c06-80d5-fb5fea2a2357" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212612Z:20777ed3-8078-4c06-80d5-fb5fea2a2357" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:26:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e07261bf-1074-4e7c-94a4-7b9866c53742" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "e0351a52-f914-4e21-b2cd-73e0f8bd7389" - ], - "x-ms-correlation-request-id": [ - "e0351a52-f914-4e21-b2cd-73e0f8bd7389" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212627Z:e0351a52-f914-4e21-b2cd-73e0f8bd7389" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:26:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "73b0c6e0-349e-4a26-9786-ea9934e6bb8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "f29ef476-c4ae-4d9f-b9b4-d9fabcbed88b" - ], - "x-ms-correlation-request-id": [ - "f29ef476-c4ae-4d9f-b9b4-d9fabcbed88b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212642Z:f29ef476-c4ae-4d9f-b9b4-d9fabcbed88b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:26:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "0ab60d3e-6e53-41df-adef-022bafe6e87d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "26708153-1cfc-4199-92cc-f8520e93cd2c" - ], - "x-ms-correlation-request-id": [ - "26708153-1cfc-4199-92cc-f8520e93cd2c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212657Z:26708153-1cfc-4199-92cc-f8520e93cd2c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:26:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c843375f-ca52-4037-b026-2d22eaa7d184" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "f411394e-dc9a-448d-b2a6-c7ac77b25e44" - ], - "x-ms-correlation-request-id": [ - "f411394e-dc9a-448d-b2a6-c7ac77b25e44" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212712Z:f411394e-dc9a-448d-b2a6-c7ac77b25e44" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:27:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e5f4545c-ca44-423e-957d-7d098d72b5d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "4fa5e7cd-5f22-44ed-8949-e7e11e2497aa" - ], - "x-ms-correlation-request-id": [ - "4fa5e7cd-5f22-44ed-8949-e7e11e2497aa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212727Z:4fa5e7cd-5f22-44ed-8949-e7e11e2497aa" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:27:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "855d30b9-e615-4e48-9d30-636ff46a2c5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "c6496a37-75ce-4427-8542-b5240040f10e" - ], - "x-ms-correlation-request-id": [ - "c6496a37-75ce-4427-8542-b5240040f10e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212742Z:c6496a37-75ce-4427-8542-b5240040f10e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:27:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "5a389d19-36a0-4ccb-a785-f0876a075032" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "0afaf392-0c90-453a-8afa-6a94f4d95d47" - ], - "x-ms-correlation-request-id": [ - "0afaf392-0c90-453a-8afa-6a94f4d95d47" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212758Z:0afaf392-0c90-453a-8afa-6a94f4d95d47" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:27:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "cbfa7664-41f5-401e-9ca9-d235a4e70a53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "d2d8c46c-ea74-4bf9-916b-ab175738e840" - ], - "x-ms-correlation-request-id": [ - "d2d8c46c-ea74-4bf9-916b-ab175738e840" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212813Z:d2d8c46c-ea74-4bf9-916b-ab175738e840" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:28:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c34f8dd2-48ae-4a48-ad77-275a701180ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "6efa965d-b310-4a95-a4ee-e51a6afd0689" - ], - "x-ms-correlation-request-id": [ - "6efa965d-b310-4a95-a4ee-e51a6afd0689" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212828Z:6efa965d-b310-4a95-a4ee-e51a6afd0689" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:28:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "186ac301-a83a-4fb0-a01b-3cd5ca060cb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "3ca453f4-025f-4758-90f8-21bb12165d59" - ], - "x-ms-correlation-request-id": [ - "3ca453f4-025f-4758-90f8-21bb12165d59" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212843Z:3ca453f4-025f-4758-90f8-21bb12165d59" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:28:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "2d92c18a-01a5-4926-bb95-c598b29f3289" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "9e4d4119-57db-4d49-997c-e2a206ccc4fd" - ], - "x-ms-correlation-request-id": [ - "9e4d4119-57db-4d49-997c-e2a206ccc4fd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212858Z:9e4d4119-57db-4d49-997c-e2a206ccc4fd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:28:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "196106c4-63b6-44b8-a808-768c2f0c4585" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "5eeee7af-2d7c-432b-955b-dd47d4207b38" - ], - "x-ms-correlation-request-id": [ - "5eeee7af-2d7c-432b-955b-dd47d4207b38" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212914Z:5eeee7af-2d7c-432b-955b-dd47d4207b38" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:29:13 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-pool-maxcount/providers/Microsoft.Batch/batchAccounts/testlistpoolmaxcount/operationResults/08d31eb0-1a0d-44b3-8147-2af820db174e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHBvb2xtYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzLzA4ZDMxZWIwLTFhMGQtNDRiMy04MTQ3LTJhZjgyMGRiMTc0ZT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 21:29:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "01f7ce7a-5ef1-4a1d-903b-5a3221313d10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "6620f9b6-37b6-45f9-a66f-fca2dbd4c355" - ], - "x-ms-correlation-request-id": [ - "6620f9b6-37b6-45f9-a66f-fca2dbd4c355" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212929Z:6620f9b6-37b6-45f9-a66f-fca2dbd4c355" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:29:28 GMT" - ], - "ETag": [ - "0x8D228C741F14DD7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-pool-maxcount?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC1wb29sLW1heGNvdW50P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "30dd7fe8-a7af-4fcc-90a2-260a2d606067" - ], - "x-ms-correlation-request-id": [ - "30dd7fe8-a7af-4fcc-90a2-260a2d606067" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212930Z:30dd7fe8-a7af-4fcc-90a2-260a2d606067" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:29:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHc2TWtSTlFWaERUMVZPVkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "0ba7a1c8-32b5-4778-aa66-d92b283792e5" - ], - "x-ms-correlation-request-id": [ - "0ba7a1c8-32b5-4778-aa66-d92b283792e5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212931Z:0ba7a1c8-32b5-4778-aa66-d92b283792e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:29:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHc2TWtSTlFWaERUMVZPVkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "9bafc020-9b3e-47b6-87e3-1b3d48b86c98" - ], - "x-ms-correlation-request-id": [ - "9bafc020-9b3e-47b6-87e3-1b3d48b86c98" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T212946Z:9bafc020-9b3e-47b6-87e3-1b3d48b86c98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:29:46 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHc2TWtSTlFWaERUMVZPVkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" - ], - "x-ms-request-id": [ - "a13ec456-2a76-41ff-b78e-3fff04f04f3d" - ], - "x-ms-correlation-request-id": [ - "a13ec456-2a76-41ff-b78e-3fff04f04f3d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213001Z:a13ec456-2a76-41ff-b78e-3fff04f04f3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:30:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFBPT0w6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGQlBUMHc2TWtSTlFWaERUMVZPVkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" - ], - "x-ms-request-id": [ - "583a2083-27da-4bf4-a65c-f148ff8c075a" - ], - "x-ms-correlation-request-id": [ - "583a2083-27da-4bf4-a65c-f148ff8c075a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T213016Z:583a2083-27da-4bf4-a65c-f148ff8c075a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 21:30:16 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestNewPool.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestNewPool.json index 614b46fb57af..9b687e47686f 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestNewPool.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestNewPool.json @@ -1,25 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-new-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbmV3LXBvb2w/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool\",\r\n \"name\": \"test-new-pool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,107 +24,44 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" ], "x-ms-request-id": [ - "cfb919d1-748a-413b-880d-14f147753fcf" + "50029ee5-6201-432d-a2d5-c3ca1e5433bb" ], "x-ms-correlation-request-id": [ - "cfb919d1-748a-413b-880d-14f147753fcf" + "50029ee5-6201-432d-a2d5-c3ca1e5433bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T225712Z:cfb919d1-748a-413b-880d-14f147753fcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:57:11 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "request-id": [ - "69e33618-492c-4cad-8bd2-dae8aa0748cf" + "WESTUS:20150709T193118Z:50029ee5-6201-432d-a2d5-c3ca1e5433bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "e6df996e-eb4b-4380-8968-5c9f803e1d05" - ], - "x-ms-correlation-request-id": [ - "e6df996e-eb4b-4380-8968-5c9f803e1d05" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225716Z:e6df996e-eb4b-4380-8968-5c9f803e1d05" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 22:57:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/69e33618-492c-4cad-8bd2-dae8aa0748cf?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 09 Jul 2015 19:31:17 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/69e33618-492c-4cad-8bd2-dae8aa0748cf?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvNjllMzM2MTgtNDkyYy00Y2FkLThiZDItZGFlOGFhMDc0OGNmP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testnewpool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testnewpool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "323" @@ -142,94 +73,37 @@ "-1" ], "Last-Modified": [ - "Mon, 09 Mar 2015 22:57:15 GMT" + "Thu, 09 Jul 2015 19:31:19 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "64c2083d-5ac2-48ed-bcd6-4dc20502b95b" + "896fcaa6-e5aa-4e73-8e0e-047e5982e514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14958" ], "x-ms-request-id": [ - "96ddb523-213e-4842-8258-82b88df8b09c" + "77490f05-386f-4dee-85f1-cae5219f4f83" ], "x-ms-correlation-request-id": [ - "96ddb523-213e-4842-8258-82b88df8b09c" + "77490f05-386f-4dee-85f1-cae5219f4f83" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T225716Z:96ddb523-213e-4842-8258-82b88df8b09c" + "WESTUS:20150709T193119Z:77490f05-386f-4dee-85f1-cae5219f4f83" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 22:57:15 GMT" + "Thu, 09 Jul 2015 19:31:19 GMT" ], "ETag": [ - "0x8D228D38545C2CE" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"accountName\": \"testnewpool\",\r\n \"primary\": \"3Sl/oU1CTFNjKdCIQjtQN1vuMHrmwE/0yZ+Rn+rbeTXSpUHMoNVWonCGYW56hyNNOTi53qEsD50JoYUD5XysRA==\",\r\n \"secondary\": \"x+Bda3DnnbMzoH93cktbTDelFLNPzhUxYABwOCP6usVRsO8S8Xv67C5Y1Fk7aT7NjjRU/b4V1bzfhkQO3OBRsg==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "233" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "9cda882b-8bc1-421d-9882-c140ffc420ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "a4864608-5447-433d-b8e1-a8597dfb8167" - ], - "x-ms-correlation-request-id": [ - "a4864608-5447-433d-b8e1-a8597dfb8167" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225716Z:a4864608-5447-433d-b8e1-a8597dfb8167" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:57:15 GMT" + "0x8D28894F6D5F917" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testnewpool\",\r\n \"primary\": \"3Sl/oU1CTFNjKdCIQjtQN1vuMHrmwE/0yZ+Rn+rbeTXSpUHMoNVWonCGYW56hyNNOTi53qEsD50JoYUD5XysRA==\",\r\n \"secondary\": \"x+Bda3DnnbMzoH93cktbTDelFLNPzhUxYABwOCP6usVRsO8S8Xv67C5Y1Fk7aT7NjjRU/b4V1bzfhkQO3OBRsg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "233" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,139 +139,28 @@ "no-cache" ], "request-id": [ - "0d3d5bb6-feb0-41bf-b9fc-618ee7a7c42b" + "83b9e340-c39e-4e6f-89e7-be833d8ced9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "14bec0c3-6114-4d6a-ba8e-55fc3826d98f" - ], - "x-ms-correlation-request-id": [ - "14bec0c3-6114-4d6a-ba8e-55fc3826d98f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225753Z:14bec0c3-6114-4d6a-ba8e-55fc3826d98f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:57:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool\",\r\n \"name\": \"testnewpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "747" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" - ], - "x-ms-request-id": [ - "00721651-5151-49f2-ad82-f9f9f7032114" - ], - "x-ms-correlation-request-id": [ - "00721651-5151-49f2-ad82-f9f9f7032114" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225752Z:00721651-5151-49f2-ad82-f9f9f7032114" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:57:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testnewpool\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testnewpool.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "323" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 22:57:51 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "da65b01c-32ba-4372-ba7a-edc5a956c033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "1179" ], "x-ms-request-id": [ - "dc8b58b3-f48e-4a92-aa4f-dceefd0d025a" + "9d9ab566-b18b-4f5e-8751-240c6deab37e" ], "x-ms-correlation-request-id": [ - "dc8b58b3-f48e-4a92-aa4f-dceefd0d025a" + "9d9ab566-b18b-4f5e-8751-240c6deab37e" ], "x-ms-routing-request-id": [ - "WESTUS:20150309T225752Z:dc8b58b3-f48e-4a92-aa4f-dceefd0d025a" + "WESTUS:20150709T193119Z:9d9ab566-b18b-4f5e-8751-240c6deab37e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 09 Mar 2015 22:57:52 GMT" - ], - "ETag": [ - "0x8D228D39AF17926" + "Thu, 09 Jul 2015 19:31:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -421,25 +184,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b7529faf-b7a2-4cda-854d-0e141e145444" + "bc997a12-9530-4624-aba9-633e9eebcc2c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 22:57:53 GMT" + "Thu, 09 Jul 2015 19:31:19 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 22:57:55 GMT" + "Thu, 09 Jul 2015 19:31:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "934a54c6-1b89-42ea-a97e-52a827806dc8" + "0d532c22-a817-4b36-8c8a-f2f08c6f392c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +211,16 @@ "3.0" ], "DataServiceId": [ - "https://testnewpool.batch.core.windows.net/pools/simple" + "https://pstests.batch.core.windows.net/pools/simple" ], "Date": [ - "Mon, 09 Mar 2015 22:57:52 GMT" + "Thu, 09 Jul 2015 19:31:19 GMT" ], "ETag": [ - "0x8D228D39D41AFB2" + "0x8D28894F75C51ED" ], "Location": [ - "https://testnewpool.batch.core.windows.net/pools/simple" + "https://pstests.batch.core.windows.net/pools/simple" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -481,25 +244,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c4ca1570-0a2b-46cf-b1e4-068eed2e099c" + "5b2dc906-a98f-4887-bd00-8ec0c4ba8a0d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 22:57:54 GMT" + "Thu, 09 Jul 2015 19:31:20 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 09 Mar 2015 22:57:56 GMT" + "Thu, 09 Jul 2015 19:31:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c8807584-3dcc-4243-b193-79177e2a52dc" + "d0713053-dafb-4e3f-8d00-af68088a6c04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,16 +271,16 @@ "3.0" ], "DataServiceId": [ - "https://testnewpool.batch.core.windows.net/pools/complex" + "https://pstests.batch.core.windows.net/pools/complex" ], "Date": [ - "Mon, 09 Mar 2015 22:57:55 GMT" + "Thu, 09 Jul 2015 19:31:20 GMT" ], "ETag": [ - "0x8D228D39DF4D5DE" + "0x8D28894F80EA52E" ], "Location": [ - "https://testnewpool.batch.core.windows.net/pools/complex" + "https://pstests.batch.core.windows.net/pools/complex" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -535,28 +298,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a1ab9bd1-37f1-4c0b-8513-67b930ab100b" + "7f25dba6-21f7-44ca-a2f6-766b40a8b928" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 22:57:54 GMT" + "Thu, 09 Jul 2015 19:31:19 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testnewpool.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"simple\",\r\n \"url\": \"https://testnewpool.batch.core.windows.net/pools/simple\",\r\n \"eTag\": \"0x8D228D39D41AFB2\",\r\n \"lastModified\": \"2015-03-09T22:57:55.4199474Z\",\r\n \"creationTime\": \"2015-03-09T22:57:55.4199474Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T22:57:55.4199474Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T22:57:55.4199474Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT10M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"simple\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/simple\",\r\n \"eTag\": \"0x8D28894F75C51ED\",\r\n \"lastModified\": \"2015-07-09T19:31:19.9221229Z\",\r\n \"creationTime\": \"2015-07-09T19:31:19.9221229Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:31:19.9221229Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:31:19.9221229Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT10M\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 1,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 09 Mar 2015 22:57:55 GMT" + "Thu, 09 Jul 2015 19:31:19 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "89a5bc48-c08d-4ef8-a8d9-2f1eac5e1e70" + "6f92b22f-dc04-4ac1-8c9a-a3f23f62ed59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,10 +328,10 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 22:57:52 GMT" + "Thu, 09 Jul 2015 19:31:19 GMT" ], "ETag": [ - "0x8D228D39D41AFB2" + "0x8D28894F75C51ED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -586,28 +349,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "19edc501-a6b3-491b-aef3-06f97aac8bb2" + "b5024b2e-67db-4118-8310-3de54a17386f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 22:57:55 GMT" + "Thu, 09 Jul 2015 19:31:21 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testnewpool.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"complex\",\r\n \"url\": \"https://testnewpool.batch.core.windows.net/pools/complex\",\r\n \"eTag\": \"0x8D228D39DF4D5DE\",\r\n \"lastModified\": \"2015-03-09T22:57:56.594019Z\",\r\n \"creationTime\": \"2015-03-09T22:57:56.594019Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-09T22:57:56.594019Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-03-09T22:57:56.594019Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-03-09T22:57:56.594019Z\",\r\n \"results\": \"$TargetDedicated=2;$TVMDeallocationOption=requeue\"\r\n },\r\n \"communication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ],\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"maxTasksPerTVM\": 2,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Pack\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"complex\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/complex\",\r\n \"eTag\": \"0x8D28894F80EA52E\",\r\n \"lastModified\": \"2015-07-09T19:31:21.090795Z\",\r\n \"creationTime\": \"2015-07-09T19:31:21.090795Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:31:21.090795Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:31:21.090795Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 0,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicated=2\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2015-07-09T19:31:21.090795Z\",\r\n \"results\": \"$TargetDedicated=2;$NodeDeallocationOption=requeue\"\r\n },\r\n \"communication\": true,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct1.blob.core.windows.net/\",\r\n \"filePath\": \"filePath1\"\r\n },\r\n {\r\n \"blobSource\": \"https://testacct2.blob.core.windows.net/\",\r\n \"filePath\": \"filePath2\"\r\n }\r\n ],\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"maxTasksPerTVM\": 2,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Pack\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 09 Mar 2015 22:57:56 GMT" + "Thu, 09 Jul 2015 19:31:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "73edb2be-85ff-41a2-a9b5-76e81cac1471" + "e3cdd31e-fd08-4444-a49c-b1b04fa26a6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,10 +379,10 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 22:57:53 GMT" + "Thu, 09 Jul 2015 19:31:21 GMT" ], "ETag": [ - "0x8D228D39DF4D5DE" + "0x8D28894F80EA52E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -637,13 +400,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a110d8a5-5115-4cce-bd68-d7025e574277" + "1e82e691-69c3-40b7-98c7-14f4759f8a33" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 22:57:55 GMT" + "Thu, 09 Jul 2015 19:31:21 GMT" ] }, "ResponseBody": "", @@ -652,7 +415,7 @@ "chunked" ], "request-id": [ - "0ccfc917-8aab-451a-9b5b-e19494d953a5" + "0590e183-cfd6-4661-bb64-639e5b9bd504" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -661,7 +424,7 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 22:57:55 GMT" + "Thu, 09 Jul 2015 19:31:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,13 +442,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "537979d0-d594-432a-87b6-d704e949a688" + "357c0a8b-9829-4357-9f2d-2c080a41ff0a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 09 Mar 2015 22:57:56 GMT" + "Thu, 09 Jul 2015 19:31:21 GMT" ] }, "ResponseBody": "", @@ -694,7 +457,7 @@ "chunked" ], "request-id": [ - "c0f709d2-e0e7-4570-a44f-d36f99eb7109" + "6708f9be-9e7f-4e76-a58d-d6f9fbfdc813" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -703,1657 +466,13 @@ "3.0" ], "Date": [ - "Mon, 09 Mar 2015 22:58:00 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c1a960bd-0149-4f22-a0cd-ae51745d036c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "48fe09ce-2eac-4c01-98d2-913c1cdb88d9" - ], - "x-ms-correlation-request-id": [ - "48fe09ce-2eac-4c01-98d2-913c1cdb88d9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225758Z:48fe09ce-2eac-4c01-98d2-913c1cdb88d9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:57:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:31:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "fd54e56e-0c92-46cc-a239-89471e2584ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "f11361fd-ec36-47d6-9718-c560a9981b49" - ], - "x-ms-correlation-request-id": [ - "f11361fd-ec36-47d6-9718-c560a9981b49" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225758Z:f11361fd-ec36-47d6-9718-c560a9981b49" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:57:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "0cfc30da-0efd-4b95-b4ed-ced693722c69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "a174abad-e305-4095-b1dd-d239514aeb0f" - ], - "x-ms-correlation-request-id": [ - "a174abad-e305-4095-b1dd-d239514aeb0f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225813Z:a174abad-e305-4095-b1dd-d239514aeb0f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:58:13 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c7163421-6ed4-4024-a36c-2f9010a65367" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "1ff540a6-c25c-4dbe-a7e3-6c134c55c9a4" - ], - "x-ms-correlation-request-id": [ - "1ff540a6-c25c-4dbe-a7e3-6c134c55c9a4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225829Z:1ff540a6-c25c-4dbe-a7e3-6c134c55c9a4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:58:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "1a3f6eae-1a94-4d00-92fb-01b4c7f457bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "520a8ca0-b2ff-429d-afd6-48d4c8bd1b41" - ], - "x-ms-correlation-request-id": [ - "520a8ca0-b2ff-429d-afd6-48d4c8bd1b41" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225844Z:520a8ca0-b2ff-429d-afd6-48d4c8bd1b41" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:58:43 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e6293c92-58cf-4bde-bbad-ad24e72a3bd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "2f3d9b65-2cf9-477b-8efd-1e996a3be33c" - ], - "x-ms-correlation-request-id": [ - "2f3d9b65-2cf9-477b-8efd-1e996a3be33c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225859Z:2f3d9b65-2cf9-477b-8efd-1e996a3be33c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:58:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "f2c03269-d710-4d72-a125-92eaa242cd6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "8322816c-012e-4961-9bc4-4562b479516d" - ], - "x-ms-correlation-request-id": [ - "8322816c-012e-4961-9bc4-4562b479516d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225914Z:8322816c-012e-4961-9bc4-4562b479516d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:59:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "fc1028cd-8adf-4f07-b209-6d51cd12a967" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "99fe8311-fc84-42c4-a0b5-674ceb89951d" - ], - "x-ms-correlation-request-id": [ - "99fe8311-fc84-42c4-a0b5-674ceb89951d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225929Z:99fe8311-fc84-42c4-a0b5-674ceb89951d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:59:29 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9f0a3abe-21b9-41e1-8188-6e39173e5fbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "52ac06aa-c4cc-441e-84dc-bef8b7e3d122" - ], - "x-ms-correlation-request-id": [ - "52ac06aa-c4cc-441e-84dc-bef8b7e3d122" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T225944Z:52ac06aa-c4cc-441e-84dc-bef8b7e3d122" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:59:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9980881f-28f2-44ea-ac32-c71dc5274c8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "acf8c53d-bbdd-44ce-901f-ef9ae877ecd5" - ], - "x-ms-correlation-request-id": [ - "acf8c53d-bbdd-44ce-901f-ef9ae877ecd5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230000Z:acf8c53d-bbdd-44ce-901f-ef9ae877ecd5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 22:59:59 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "895fbb84-e86e-4208-892b-c8219b6a4f21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "4129e63b-311c-4acf-87e6-1079ac91ae80" - ], - "x-ms-correlation-request-id": [ - "4129e63b-311c-4acf-87e6-1079ac91ae80" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230015Z:4129e63b-311c-4acf-87e6-1079ac91ae80" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:00:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "d313d2f7-75bf-42e2-8d5f-69469dc813b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "7ea9ec26-7f83-412e-9ba9-020c29c874dc" - ], - "x-ms-correlation-request-id": [ - "7ea9ec26-7f83-412e-9ba9-020c29c874dc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230030Z:7ea9ec26-7f83-412e-9ba9-020c29c874dc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:00:29 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "6d132b66-8929-4875-97d4-c65efcab0e5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "36163aea-3b9b-4265-bef9-b1c16aa679b7" - ], - "x-ms-correlation-request-id": [ - "36163aea-3b9b-4265-bef9-b1c16aa679b7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230045Z:36163aea-3b9b-4265-bef9-b1c16aa679b7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:00:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b6207c2c-f484-49ea-93ce-8ba21ad7933a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "398b9971-b996-4a1f-8b45-6ec28b9da30b" - ], - "x-ms-correlation-request-id": [ - "398b9971-b996-4a1f-8b45-6ec28b9da30b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230100Z:398b9971-b996-4a1f-8b45-6ec28b9da30b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:01:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9d425cbc-a3e8-4bb6-80b5-ecf8f074c2fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "d3765a7f-a88b-45a6-81d1-7d9c26cb383d" - ], - "x-ms-correlation-request-id": [ - "d3765a7f-a88b-45a6-81d1-7d9c26cb383d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230116Z:d3765a7f-a88b-45a6-81d1-7d9c26cb383d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:01:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c7d2c803-3ab3-4a02-99f5-5d4ec76f6b4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "4fd1a908-ba20-465a-9685-7191daaf6c27" - ], - "x-ms-correlation-request-id": [ - "4fd1a908-ba20-465a-9685-7191daaf6c27" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230131Z:4fd1a908-ba20-465a-9685-7191daaf6c27" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:01:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "3cfd3bd1-329e-4b41-a884-79710dca53cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "74ca84c0-fd81-4785-ab12-303fd2bc7fbb" - ], - "x-ms-correlation-request-id": [ - "74ca84c0-fd81-4785-ab12-303fd2bc7fbb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230146Z:74ca84c0-fd81-4785-ab12-303fd2bc7fbb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:01:46 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "b39f30b3-6cb7-4f7f-8626-bef3b4aac857" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "40d8dc7b-37ed-417b-9267-5a662efd20af" - ], - "x-ms-correlation-request-id": [ - "40d8dc7b-37ed-417b-9267-5a662efd20af" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230201Z:40d8dc7b-37ed-417b-9267-5a662efd20af" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:02:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "4a7c8dd9-acdc-4116-ab59-4a10f7e164f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "d4bcea78-576f-4940-8fda-e3e19aa131bc" - ], - "x-ms-correlation-request-id": [ - "d4bcea78-576f-4940-8fda-e3e19aa131bc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230216Z:d4bcea78-576f-4940-8fda-e3e19aa131bc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:02:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "948944f9-1f33-4786-9ee6-7b136b601cce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "a611991f-1ca5-4c95-b387-a8d9bcce98c4" - ], - "x-ms-correlation-request-id": [ - "a611991f-1ca5-4c95-b387-a8d9bcce98c4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230232Z:a611991f-1ca5-4c95-b387-a8d9bcce98c4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:02:31 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "170b1df8-637c-41de-9341-1f86dde0aaad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "cb0927b0-facf-45b4-b449-af1e7222a6aa" - ], - "x-ms-correlation-request-id": [ - "cb0927b0-facf-45b4-b449-af1e7222a6aa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230247Z:cb0927b0-facf-45b4-b449-af1e7222a6aa" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:02:46 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e14832ce-81af-493e-8877-f39518e27b44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "e6d8e837-bfd6-421a-aedb-07a694a4b960" - ], - "x-ms-correlation-request-id": [ - "e6d8e837-bfd6-421a-aedb-07a694a4b960" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230302Z:e6d8e837-bfd6-421a-aedb-07a694a4b960" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:03:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "9e20d9db-b469-4f03-bf82-d5c3c706aa93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "c99846c6-25a7-4d0f-bde0-0c34ed1625e3" - ], - "x-ms-correlation-request-id": [ - "c99846c6-25a7-4d0f-bde0-0c34ed1625e3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230317Z:c99846c6-25a7-4d0f-bde0-0c34ed1625e3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:03:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-pool/providers/Microsoft.Batch/batchAccounts/testnewpool/operationResults/c1a960bd-0149-4f22-a0cd-ae51745d036c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXBvb2wvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXdwb29sL29wZXJhdGlvblJlc3VsdHMvYzFhOTYwYmQtMDE0OS00ZjIyLWEwY2QtYWU1MTc0NWQwMzZjP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 09 Mar 2015 23:03:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "c5d3019c-8c56-4aab-bdfe-01aff755f089" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "8c0d8e1a-e2a0-49c7-ad69-38405a901d92" - ], - "x-ms-correlation-request-id": [ - "8c0d8e1a-e2a0-49c7-ad69-38405a901d92" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230332Z:8c0d8e1a-e2a0-49c7-ad69-38405a901d92" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:03:32 GMT" - ], - "ETag": [ - "0x8D228D465A62BA0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-new-pool?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbmV3LXBvb2w/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "a6d43bb1-7470-46c4-9d56-ffac9019de9b" - ], - "x-ms-correlation-request-id": [ - "a6d43bb1-7470-46c4-9d56-ffac9019de9b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230334Z:a6d43bb1-7470-46c4-9d56-ffac9019de9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:03:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVVFOVBUQzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "a10d756b-d625-4ada-8fe3-f5f31220b543" - ], - "x-ms-correlation-request-id": [ - "a10d756b-d625-4ada-8fe3-f5f31220b543" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230334Z:a10d756b-d625-4ada-8fe3-f5f31220b543" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:03:34 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVVFOVBUQzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "82cd9b42-5403-4c65-a72d-9cc965dbbb75" - ], - "x-ms-correlation-request-id": [ - "82cd9b42-5403-4c65-a72d-9cc965dbbb75" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230349Z:82cd9b42-5403-4c65-a72d-9cc965dbbb75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:03:49 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEUE9PTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVVFOVBUQzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "522b4110-0bb1-45cc-9844-be926d8d2329" - ], - "x-ms-correlation-request-id": [ - "522b4110-0bb1-45cc-9844-be926d8d2329" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150309T230404Z:522b4110-0bb1-45cc-9844-be926d8d2329" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Mar 2015 23:04:04 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByName.json index 754948b6ea4c..88ec32a335fb 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "755" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14983" ], "x-ms-request-id": [ - "bf34ea86-69fb-4558-9074-4c7ce4af83e0" + "fa60c10e-6047-40b6-ac85-caa0ecbe0f2b" ], "x-ms-correlation-request-id": [ - "bf34ea86-69fb-4558-9074-4c7ce4af83e0" + "fa60c10e-6047-40b6-ac85-caa0ecbe0f2b" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T210304Z:bf34ea86-69fb-4558-9074-4c7ce4af83e0" + "WESTUS:20150709T210704Z:fa60c10e-6047-40b6-ac85-caa0ecbe0f2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:03:04 GMT" + "Thu, 09 Jul 2015 21:07:04 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "755" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14982" ], "x-ms-request-id": [ - "21aa7543-aa91-41ad-893f-b75ff52b4749" + "ae26f201-8fa9-4c6f-857d-634dd1f7e2ef" ], "x-ms-correlation-request-id": [ - "21aa7543-aa91-41ad-893f-b75ff52b4749" + "ae26f201-8fa9-4c6f-857d-634dd1f7e2ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T210307Z:21aa7543-aa91-41ad-893f-b75ff52b4749" + "WESTUS:20150709T210706Z:ae26f201-8fa9-4c6f-857d-634dd1f7e2ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:03:06 GMT" + "Thu, 09 Jul 2015 21:07:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "329" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 08 Jun 2015 21:03:03 GMT" + "Thu, 09 Jul 2015 21:07:05 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "38e8150a-48ce-4787-95fb-e5fddba00284" + "b034b3b0-37e5-4331-a04c-90de31b030a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14983" ], "x-ms-request-id": [ - "aa7ae0aa-bad0-4348-8b83-e67c0c259baf" + "d76373ca-6f4e-44bd-99f2-fff0eb07553f" ], "x-ms-correlation-request-id": [ - "aa7ae0aa-bad0-4348-8b83-e67c0c259baf" + "d76373ca-6f4e-44bd-99f2-fff0eb07553f" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T210305Z:aa7ae0aa-bad0-4348-8b83-e67c0c259baf" + "WESTUS:20150709T210706Z:d76373ca-6f4e-44bd-99f2-fff0eb07553f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:03:05 GMT" + "Thu, 09 Jul 2015 21:07:05 GMT" ], "ETag": [ - "0x8D27045A4FB5F1B" + "0x8D288A25841C63F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "329" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 08 Jun 2015 21:03:05 GMT" + "Thu, 09 Jul 2015 21:07:06 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c662ae19-a317-438f-a5ad-37ef527b48fa" + "6d1a5433-7ff1-4c6d-b8cb-f55fc8abc744" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14982" ], "x-ms-request-id": [ - "a4436763-8f43-4870-ab9b-55bfaf3a7731" + "e32e4b0a-d07e-4415-b6a6-10b00a73861c" ], "x-ms-correlation-request-id": [ - "a4436763-8f43-4870-ab9b-55bfaf3a7731" + "e32e4b0a-d07e-4415-b6a6-10b00a73861c" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T210307Z:a4436763-8f43-4870-ab9b-55bfaf3a7731" + "WESTUS:20150709T210706Z:e32e4b0a-d07e-4415-b6a6-10b00a73861c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:03:06 GMT" + "Thu, 09 Jul 2015 21:07:06 GMT" ], "ETag": [ - "0x8D27045A5E1BCA5" + "0x8D288A258B69250" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "d94255e6-0664-4eab-9d22-fd0f3c9fff2c" + "2c70408b-fabc-4210-b730-8d2b7bdcd657" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1187" ], "x-ms-request-id": [ - "abbbe168-fa85-4938-8b44-f8737042f5e2" + "4e7be36e-f4af-4e61-a6f0-319f4f76611e" ], "x-ms-correlation-request-id": [ - "abbbe168-fa85-4938-8b44-f8737042f5e2" + "4e7be36e-f4af-4e61-a6f0-319f4f76611e" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T210305Z:abbbe168-fa85-4938-8b44-f8737042f5e2" + "WESTUS:20150709T210706Z:4e7be36e-f4af-4e61-a6f0-319f4f76611e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:03:05 GMT" + "Thu, 09 Jul 2015 21:07:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "19cd0ff1-b7fe-415a-9e3e-77e00bf1f97b" + "25898b35-df97-446a-a8e8-56cba12f350d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1186" ], "x-ms-request-id": [ - "65f032de-d7ea-40ff-9168-9643b4c08b5a" + "4d16babb-edc3-48c2-8477-9c3e7cc8a311" ], "x-ms-correlation-request-id": [ - "65f032de-d7ea-40ff-9168-9643b4c08b5a" + "4d16babb-edc3-48c2-8477-9c3e7cc8a311" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T210307Z:65f032de-d7ea-40ff-9168-9643b4c08b5a" + "WESTUS:20150709T210707Z:4d16babb-edc3-48c2-8477-9c3e7cc8a311" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:03:07 GMT" + "Thu, 09 Jul 2015 21:07:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -346,28 +346,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "01544000-bd3a-40a7-895d-8b240aa4536f" + "ea562a89-a330-4f48-a138-6a0dcb07a71a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 08 Jun 2015 21:03:05 GMT" + "Thu, 09 Jul 2015 21:07:06 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D27043EF8147BE\",\r\n \"lastModified\": \"2015-06-08T20:50:49.6008126Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T20:52:14.2564039Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A24A4581EF\",\r\n \"lastModified\": \"2015-07-09T21:06:42.4809967Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:06:45.2066566Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated TVMs could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 10,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 08 Jun 2015 20:50:49 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "eea5aa93-1b26-42fd-ab7c-0a19e38091e7" + "32b36c8a-ecfa-4533-b83f-7ba84e522d5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,10 +376,10 @@ "3.0" ], "Date": [ - "Mon, 08 Jun 2015 21:03:06 GMT" + "Thu, 09 Jul 2015 21:07:06 GMT" ], "ETag": [ - "0x8D27043EF8147BE" + "0x8D288A24A4581EF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -397,28 +397,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "308c2807-a035-4e97-a2d4-bcab4bc1f01a" + "4835f52c-9bee-460f-84df-b520900b3e53" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 08 Jun 2015 21:03:07 GMT" + "Thu, 09 Jul 2015 21:07:06 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D27043EF8147BE\",\r\n \"lastModified\": \"2015-06-08T20:50:49.6008126Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T20:52:14.2564039Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A24A4581EF\",\r\n \"lastModified\": \"2015-07-09T21:06:42.4809967Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:06:45.2066566Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"resizeError\": {\r\n \"code\": \"ResizeStopped\",\r\n \"message\": \"Desired number of dedicated TVMs could not be allocated due to a StopPoolResize operation\"\r\n },\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 10,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 08 Jun 2015 20:50:49 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b861e6fa-42e8-4732-9e2d-c6624ed217ed" + "bfa3bd31-08de-4439-93aa-c5643e18fcd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,10 +427,10 @@ "3.0" ], "Date": [ - "Mon, 08 Jun 2015 21:03:07 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ], "ETag": [ - "0x8D27043EF8147BE" + "0x8D288A24A4581EF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -448,28 +448,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "fd500f68-3a94-4c1a-957b-04ba17660d3a" + "9a49e98a-b529-4e18-bedf-953466fa643c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 08 Jun 2015 21:03:08 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D27045A7EDA1F0\",\r\n \"lastModified\": \"2015-06-08T21:03:08.5084144Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T21:03:08.5084144Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 08 Jun 2015 21:03:08 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "50d841ce-22f5-4487-a8cb-2a3e35b47d3c" + "6637d20c-5cf6-4b39-85b4-662edb6f832b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -478,10 +478,10 @@ "3.0" ], "Date": [ - "Mon, 08 Jun 2015 21:03:07 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ], "ETag": [ - "0x8D27045A7EDA1F0" + "0x8D288A2595DBBA1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -493,37 +493,37 @@ "RequestUri": "/pools/testPool?resize&api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 5,\r\n \"resizeTimeout\": \"PT5M\"\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 12,\r\n \"resizeTimeout\": \"PT5M\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "50" + "51" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "5f46cc3b-c2f1-4bf7-bee6-8003ea2ce738" + "726b2875-7c96-4f1c-a962-11695bec4f88" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 08 Jun 2015 21:03:07 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 08 Jun 2015 21:03:08 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8aead8f2-ca61-4286-b305-6301619445fa" + "3cac38a9-e730-42bc-a2bc-0b2c5cd6aa3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,13 +532,13 @@ "3.0" ], "DataServiceId": [ - "https://pooltests.batch.core.windows.net/pools/testPool" + "https://pstests.batch.core.windows.net/pools/testPool" ], "Date": [ - "Mon, 08 Jun 2015 21:03:08 GMT" + "Thu, 09 Jul 2015 21:07:08 GMT" ], "ETag": [ - "0x8D27045A7EDA1F0" + "0x8D288A2595DBBA1" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json index eb668099635b..6bb6f23c18aa 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "755" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14985" ], "x-ms-request-id": [ - "4751c9d7-f3f9-4cdc-ac30-c5d3d73ddab1" + "33f21145-2acb-4d6e-ba80-54c5e705704a" ], "x-ms-correlation-request-id": [ - "4751c9d7-f3f9-4cdc-ac30-c5d3d73ddab1" + "33f21145-2acb-4d6e-ba80-54c5e705704a" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T211317Z:4751c9d7-f3f9-4cdc-ac30-c5d3d73ddab1" + "WESTUS:20150709T210408Z:33f21145-2acb-4d6e-ba80-54c5e705704a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:13:16 GMT" + "Thu, 09 Jul 2015 21:04:08 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "755" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-request-id": [ - "b2c77334-751d-43f2-849b-23bf010865dd" + "fe17540f-321a-4bc2-9027-cbaed2aa9b4a" ], "x-ms-correlation-request-id": [ - "b2c77334-751d-43f2-849b-23bf010865dd" + "fe17540f-321a-4bc2-9027-cbaed2aa9b4a" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T211320Z:b2c77334-751d-43f2-849b-23bf010865dd" + "WESTUS:20150709T210411Z:fe17540f-321a-4bc2-9027-cbaed2aa9b4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:13:19 GMT" + "Thu, 09 Jul 2015 21:04:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "329" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Mon, 08 Jun 2015 21:13:16 GMT" + "Thu, 09 Jul 2015 21:04:09 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e69c5669-5379-4312-a8d0-0bed3765d891" + "41fd48e8-a2ef-4dd0-8145-e5d284797ebb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-request-id": [ - "2de8e98a-509f-40e0-8f3b-73eece275700" + "748d5259-6d81-47cf-a414-79567e357482" ], "x-ms-correlation-request-id": [ - "2de8e98a-509f-40e0-8f3b-73eece275700" + "748d5259-6d81-47cf-a414-79567e357482" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T211318Z:2de8e98a-509f-40e0-8f3b-73eece275700" + "WESTUS:20150709T210409Z:748d5259-6d81-47cf-a414-79567e357482" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:13:17 GMT" + "Thu, 09 Jul 2015 21:04:08 GMT" ], "ETag": [ - "0x8D2704712204C85" + "0x8D288A1EF585BC6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "329" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Mon, 08 Jun 2015 21:13:18 GMT" + "Thu, 09 Jul 2015 21:04:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "da9e0fdc-53f4-47d9-8666-30b742820368" + "f9b25f3d-b5a4-42d1-af75-29d2e5e6c9e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "c92f3eea-8837-4a16-a59c-c14939fa13c4" + "5b6e0acd-fdce-45b8-af75-8a41684c544a" ], "x-ms-correlation-request-id": [ - "c92f3eea-8837-4a16-a59c-c14939fa13c4" + "5b6e0acd-fdce-45b8-af75-8a41684c544a" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T211320Z:c92f3eea-8837-4a16-a59c-c14939fa13c4" + "WESTUS:20150709T210411Z:5b6e0acd-fdce-45b8-af75-8a41684c544a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:13:19 GMT" + "Thu, 09 Jul 2015 21:04:10 GMT" ], "ETag": [ - "0x8D270471337A88D" + "0x8D288A1F0362212" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "ac13d324-7ddb-4d33-a690-2b17665db296" + "274c04ee-1b8e-4ed6-9889-1a0eb581ad48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "191168c4-9c52-4193-b4dd-ad568fa56e20" + "40b7f523-a14e-4882-a507-0bf391b00aa1" ], "x-ms-correlation-request-id": [ - "191168c4-9c52-4193-b4dd-ad568fa56e20" + "40b7f523-a14e-4882-a507-0bf391b00aa1" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T211318Z:191168c4-9c52-4193-b4dd-ad568fa56e20" + "WESTUS:20150709T210409Z:40b7f523-a14e-4882-a507-0bf391b00aa1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:13:17 GMT" + "Thu, 09 Jul 2015 21:04:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "8c6ac24f-5047-4d8c-a73b-3e8f4621dde2" + "37ca5668-3f11-438c-bb3c-5df8bd249eb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "09e06675-e3c2-4ce4-99b6-730475fbecb4" + "4c8af082-38b5-4239-b9d9-6781277bfac3" ], "x-ms-correlation-request-id": [ - "09e06675-e3c2-4ce4-99b6-730475fbecb4" + "4c8af082-38b5-4239-b9d9-6781277bfac3" ], "x-ms-routing-request-id": [ - "WESTUS:20150608T211320Z:09e06675-e3c2-4ce4-99b6-730475fbecb4" + "WESTUS:20150709T210411Z:4c8af082-38b5-4239-b9d9-6781277bfac3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 08 Jun 2015 21:13:19 GMT" + "Thu, 09 Jul 2015 21:04:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -346,28 +346,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "97ddbca5-e29e-409a-bbb2-358c0671a931" + "393e0607-ec90-4301-b9fb-3935ca72c24f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 08 Jun 2015 21:13:18 GMT" + "Thu, 09 Jul 2015 21:04:09 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270469CAB83C7\",\r\n \"lastModified\": \"2015-06-08T21:09:59.1168967Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T21:12:16.7860326Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 08 Jun 2015 21:09:59 GMT" + "Thu, 09 Jul 2015 19:01:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a4bf285d-3738-4b08-a8da-1a26ecc5c505" + "f45960b5-46b7-4c86-9377-8168e1e355d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,10 +376,10 @@ "3.0" ], "Date": [ - "Mon, 08 Jun 2015 21:13:19 GMT" + "Thu, 09 Jul 2015 21:04:09 GMT" ], "ETag": [ - "0x8D270469CAB83C7" + "0x8D28890DD2FCEE8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -397,28 +397,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "90da22d3-f512-49ff-afb7-68bc4344b469" + "aa7f6d57-318f-41b5-b10d-7c405658a59f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 08 Jun 2015 21:13:20 GMT" + "Thu, 09 Jul 2015 21:04:11 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270469CAB83C7\",\r\n \"lastModified\": \"2015-06-08T21:09:59.1168967Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T21:12:16.7860326Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 08 Jun 2015 21:09:59 GMT" + "Thu, 09 Jul 2015 19:01:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c7ccb97c-9dd5-4711-91cc-28f986216fc7" + "31688097-26a8-4f3c-8b6c-0bcdc516ce00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,10 +427,10 @@ "3.0" ], "Date": [ - "Mon, 08 Jun 2015 21:13:20 GMT" + "Thu, 09 Jul 2015 21:04:10 GMT" ], "ETag": [ - "0x8D270469CAB83C7" + "0x8D28890DD2FCEE8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -448,28 +448,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "5e457058-44ac-4618-8ab1-f88df93f0ad2" + "8d32d74f-3ce0-486b-bc30-976cd8467608" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 08 Jun 2015 21:13:21 GMT" + "Thu, 09 Jul 2015 21:04:12 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270471550BDC8\",\r\n \"lastModified\": \"2015-06-08T21:13:21.5263176Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T21:13:21.5263176Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Mon, 08 Jun 2015 21:13:21 GMT" + "Thu, 09 Jul 2015 21:04:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1c5614c4-9faa-4ad8-b671-220b1bf3712a" + "1b088666-ae16-4a8d-9ed0-125ae8732fc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -478,10 +478,10 @@ "3.0" ], "Date": [ - "Mon, 08 Jun 2015 21:13:21 GMT" + "Thu, 09 Jul 2015 21:04:12 GMT" ], "ETag": [ - "0x8D270471550BDC8" + "0x8D288A1F0A22D45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -493,7 +493,7 @@ "RequestUri": "/pools/testPool?resize&api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 4,\r\n \"resizeTimeout\": \"PT1H\",\r\n \"tvmDeallocationOption\": \"terminate\"\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 5,\r\n \"resizeTimeout\": \"PT1H\",\r\n \"tvmDeallocationOption\": \"terminate\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" @@ -505,25 +505,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b4a41147-3df9-4c1d-907d-5774d8a5506d" + "4a1b289c-5650-4c75-b704-a1bcb8cac887" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Mon, 08 Jun 2015 21:13:20 GMT" + "Thu, 09 Jul 2015 21:04:11 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Mon, 08 Jun 2015 21:13:21 GMT" + "Thu, 09 Jul 2015 21:04:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "19e53cce-a2c5-4065-9575-550feb92be43" + "e352bd79-8db7-4f07-b931-e1b739009f5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,13 +532,13 @@ "3.0" ], "DataServiceId": [ - "https://pooltests.batch.core.windows.net/pools/testPool" + "https://pstests.batch.core.windows.net/pools/testPool" ], "Date": [ - "Mon, 08 Jun 2015 21:13:19 GMT" + "Thu, 09 Jul 2015 21:04:11 GMT" ], "ETag": [ - "0x8D270471550BDC8" + "0x8D288A1F0A22D45" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByName.json index 8f98c63d236b..5d81d4ce0407 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByName.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "755" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-request-id": [ - "02afebee-d58f-4f85-9c75-ece707aa4f2a" + "ef98f960-6a79-4a04-904b-4218ae9833b7" ], "x-ms-correlation-request-id": [ - "02afebee-d58f-4f85-9c75-ece707aa4f2a" + "ef98f960-6a79-4a04-904b-4218ae9833b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174303Z:02afebee-d58f-4f85-9c75-ece707aa4f2a" + "WESTUS:20150709T210731Z:ef98f960-6a79-4a04-904b-4218ae9833b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:43:03 GMT" + "Thu, 09 Jul 2015 21:07:30 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "755" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-request-id": [ - "0a58af8e-9083-4dac-8a20-4b31b8602dee" + "b059b632-a8ca-4f01-93da-65ef21afe2f8" ], "x-ms-correlation-request-id": [ - "0a58af8e-9083-4dac-8a20-4b31b8602dee" + "b059b632-a8ca-4f01-93da-65ef21afe2f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174307Z:0a58af8e-9083-4dac-8a20-4b31b8602dee" + "WESTUS:20150709T210831Z:b059b632-a8ca-4f01-93da-65ef21afe2f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:43:06 GMT" + "Thu, 09 Jul 2015 21:08:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "329" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2015 17:43:04 GMT" + "Thu, 09 Jul 2015 21:07:32 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "321716eb-6148-45c7-9042-0795c78f7a11" + "ad9ce511-2591-4033-a014-6a27ee64e8ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14981" ], "x-ms-request-id": [ - "6ff9e7c0-1345-44d9-8d2b-15cdf587edb3" + "939d9fce-a82c-4c2f-93fa-8ac012ec8030" ], "x-ms-correlation-request-id": [ - "6ff9e7c0-1345-44d9-8d2b-15cdf587edb3" + "939d9fce-a82c-4c2f-93fa-8ac012ec8030" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174305Z:6ff9e7c0-1345-44d9-8d2b-15cdf587edb3" + "WESTUS:20150709T210732Z:939d9fce-a82c-4c2f-93fa-8ac012ec8030" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:43:04 GMT" + "Thu, 09 Jul 2015 21:07:32 GMT" ], "ETag": [ - "0x8D270F2DF9D334A" + "0x8D288A267D70B45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "329" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2015 17:43:07 GMT" + "Thu, 09 Jul 2015 21:08:32 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "885eacf6-e694-4eed-ba5e-73796b007b02" + "94ba1f8a-f427-42e6-9151-27620b76bd07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14980" ], "x-ms-request-id": [ - "718a3ed4-c3cb-4858-ab9a-881a2fe790b6" + "81301bb2-1827-4d87-9062-a35ee5495b8c" ], "x-ms-correlation-request-id": [ - "718a3ed4-c3cb-4858-ab9a-881a2fe790b6" + "81301bb2-1827-4d87-9062-a35ee5495b8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174307Z:718a3ed4-c3cb-4858-ab9a-881a2fe790b6" + "WESTUS:20150709T210832Z:81301bb2-1827-4d87-9062-a35ee5495b8c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:43:06 GMT" + "Thu, 09 Jul 2015 21:08:31 GMT" ], "ETag": [ - "0x8D270F2E100DF28" + "0x8D288A28B93AB16" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "22236174-428c-43bd-844a-c12801d3849e" + "4507c543-96bb-4d6e-8681-b08df114c310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "947d58ee-c228-42f7-abb1-cc43bc797934" + "90348d74-629f-4665-b446-98432c87bca5" ], "x-ms-correlation-request-id": [ - "947d58ee-c228-42f7-abb1-cc43bc797934" + "90348d74-629f-4665-b446-98432c87bca5" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174305Z:947d58ee-c228-42f7-abb1-cc43bc797934" + "WESTUS:20150709T210732Z:90348d74-629f-4665-b446-98432c87bca5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:43:04 GMT" + "Thu, 09 Jul 2015 21:07:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "764bfa4e-9075-4907-881b-e3c96b71dd47" + "4a3921c8-0475-4081-953d-4fdcbd522921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "856f7b76-c596-4a07-b54c-cbaa794a2ec9" + "5736292c-2c6b-4ac9-b588-ff0313680a41" ], "x-ms-correlation-request-id": [ - "856f7b76-c596-4a07-b54c-cbaa794a2ec9" + "5736292c-2c6b-4ac9-b588-ff0313680a41" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174307Z:856f7b76-c596-4a07-b54c-cbaa794a2ec9" + "WESTUS:20150709T210832Z:5736292c-2c6b-4ac9-b588-ff0313680a41" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:43:06 GMT" + "Thu, 09 Jul 2015 21:08:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -346,28 +346,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4160c52a-e14c-4e29-b4f4-f5408c4836f4" + "25b54834-b082-4283-8f2b-450eec883fe7" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:43:05 GMT" + "Thu, 09 Jul 2015 21:07:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270EBCE342AB9\",\r\n \"lastModified\": \"2015-06-09T16:52:29.1812025Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T16:53:10.5970733Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2015 16:52:29 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b144d033-1ec4-4a8c-ad87-d8d9c5329ebc" + "14b6f6b7-3144-4d3c-be73-df94e76c460a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,10 +376,10 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2015 17:43:05 GMT" + "Thu, 09 Jul 2015 21:07:31 GMT" ], "ETag": [ - "0x8D270EBCE342AB9" + "0x8D288A2595DBBA1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -397,28 +397,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0c80a8ea-1a01-4002-a99e-02f1cc9a21c3" + "da4597f1-eb9d-45c2-a5da-aafc4e4480d6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:43:07 GMT" + "Thu, 09 Jul 2015 21:07:37 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270EBCE342AB9\",\r\n \"lastModified\": \"2015-06-09T16:52:29.1812025Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T16:53:10.5970733Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2015 16:52:29 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6a2d982f-474d-4dbe-b8ee-25c536ec985a" + "24c06ea2-16e7-49d1-91d7-b634b84e72cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,10 +427,10 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2015 17:43:07 GMT" + "Thu, 09 Jul 2015 21:07:36 GMT" ], "ETag": [ - "0x8D270EBCE342AB9" + "0x8D288A2595DBBA1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -448,28 +448,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b54b4f88-9c2b-4239-a5c2-07396a19530c" + "2845bf00-9891-425a-8978-f9a05b674987" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:43:08 GMT" + "Thu, 09 Jul 2015 21:07:42 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270F2E2037B1F\",\r\n \"lastModified\": \"2015-06-09T17:43:08.8936735Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T17:43:08.8936735Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 8,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2015 17:43:08 GMT" + "Thu, 09 Jul 2015 21:07:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a16e30f2-e135-48af-a826-840b2bad30aa" + "866248b2-512c-4043-a0e6-4bea8d5d93e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -478,10 +478,571 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2015 17:43:09 GMT" + "Thu, 09 Jul 2015 21:07:43 GMT" ], "ETag": [ - "0x8D270F2E2037B1F" + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "8df85e4c-5fd0-499d-b8b7-b6eb49705593" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:07:48 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4d300548-583a-4a49-8d22-ffbf72fc2eb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:07:48 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "64388ba1-f861-4aff-aa09-6c67f69fb312" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:07:53 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "28cda19a-b198-4c5d-8356-9c280683c626" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:07:53 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "4186cc12-0f7e-4bd6-9947-04e91044a4d4" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:07:58 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "18d0b45b-c2da-4e66-a842-e58e333ad929" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:07:59 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "84d86f29-e4ba-4b03-a5fe-59a41da9de09" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:08:04 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7391b752-87fd-49fc-b609-4c368ed6b95b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:08:03 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "8ce43eed-7da7-4093-9a33-99c0f69d09bd" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:08:09 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "07e3a753-7895-49a5-a111-cd2d6dd7acbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:08:09 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "5a1e1fc7-a2dc-47ac-bf6c-e48c6d8153f6" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:08:14 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "62455126-bde3-48e2-84e3-b1cf71a9d94d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:08:15 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "587cf50e-ca57-4807-8366-ef6ee297718b" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:08:20 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "e6c7c2c6-0d1e-43ce-b3d6-1228996385db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:08:20 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "b1450099-2d6e-4021-ba94-56d6e53e3e55" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:08:25 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "22d6f673-005b-42cf-9844-d4eb9026ee0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:08:25 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "3a07fd12-ba5e-494e-b021-8ad7036f1e9f" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:08:30 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:08:27.7825858Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 12,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d404ac73-9bb3-452c-9ada-a886853019aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:08:31 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "ea9fc11d-e5a9-4bd4-b9b2-9a0f1cc381c3" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:08:32 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A2595DBBA1\",\r\n \"lastModified\": \"2015-07-09T21:07:07.8055841Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:08:27.7825858Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 12,\r\n \"targetDedicated\": 12,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:07:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b45b0708-6f5b-4690-b5c7-e8cf680bb675" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:08:31 GMT" + ], + "ETag": [ + "0x8D288A2595DBBA1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "095a0590-1943-4499-a995-3a3e03629291" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:08:33 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A28C926AEB\",\r\n \"lastModified\": \"2015-07-09T21:08:33.7146603Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:08:33.7146603Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 12,\r\n \"targetDedicated\": 17,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:08:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "52b23d74-feec-4e37-8e4b-fff7e8d925f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:08:33 GMT" + ], + "ETag": [ + "0x8D288A28C926AEB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -493,37 +1054,37 @@ "RequestUri": "/pools/testPool?resize&api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 8,\r\n \"resizeTimeout\": \"PT5M\"\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 17,\r\n \"resizeTimeout\": \"PT5M\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "50" + "51" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "3989500e-46e2-4e5c-834d-b753d16cf9ce" + "15ed7c71-07d3-414b-8d42-9dab3a5d60b2" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:43:07 GMT" + "Thu, 09 Jul 2015 21:08:32 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 09 Jun 2015 17:43:08 GMT" + "Thu, 09 Jul 2015 21:08:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e94daa9d-034d-4ed4-a9eb-6587b6b44eed" + "21713ee0-cb3a-4754-b0f3-e11533422ef1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,13 +1093,13 @@ "3.0" ], "DataServiceId": [ - "https://pooltests.batch.core.windows.net/pools/testPool" + "https://pstests.batch.core.windows.net/pools/testPool" ], "Date": [ - "Tue, 09 Jun 2015 17:43:07 GMT" + "Thu, 09 Jul 2015 21:08:32 GMT" ], "ETag": [ - "0x8D270F2E1B0516D" + "0x8D288A28C37E86E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -556,25 +1117,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0e1c301b-64d2-496a-a280-d9ff918d7eea" + "1cfc58ed-0f3a-4bf1-a703-600b03bc1e6f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:43:08 GMT" + "Thu, 09 Jul 2015 21:08:33 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 09 Jun 2015 17:43:08 GMT" + "Thu, 09 Jul 2015 21:08:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d69a6623-c928-4d7c-a085-2bd483fca851" + "1f43cafa-9245-4494-b68f-1a76237bb72a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583,13 +1144,13 @@ "3.0" ], "DataServiceId": [ - "https://pooltests.batch.core.windows.net/pools/testPool" + "https://pstests.batch.core.windows.net/pools/testPool" ], "Date": [ - "Tue, 09 Jun 2015 17:43:08 GMT" + "Thu, 09 Jul 2015 21:08:33 GMT" ], "ETag": [ - "0x8D270F2E2037B1F" + "0x8D288A28C926AEB" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json index d7784f681ad0..e5b57bfac1f3 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "755" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14994" ], "x-ms-request-id": [ - "d379e12c-7f06-4028-84ae-6b7ec4111619" + "b6b67dd7-a0f8-485a-9e69-34b439a19113" ], "x-ms-correlation-request-id": [ - "d379e12c-7f06-4028-84ae-6b7ec4111619" + "b6b67dd7-a0f8-485a-9e69-34b439a19113" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174757Z:d379e12c-7f06-4028-84ae-6b7ec4111619" + "WESTUS:20150709T210433Z:b6b67dd7-a0f8-485a-9e69-34b439a19113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:47:57 GMT" + "Thu, 09 Jul 2015 21:04:32 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "755" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14982" ], "x-ms-request-id": [ - "476ecba2-0a39-47e7-9b42-5b5f5ac75d1b" + "9c1053bf-89a7-4661-b04b-09ab1cf26ee3" ], "x-ms-correlation-request-id": [ - "476ecba2-0a39-47e7-9b42-5b5f5ac75d1b" + "9c1053bf-89a7-4661-b04b-09ab1cf26ee3" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174800Z:476ecba2-0a39-47e7-9b42-5b5f5ac75d1b" + "WESTUS:20150709T210637Z:9c1053bf-89a7-4661-b04b-09ab1cf26ee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:48:00 GMT" + "Thu, 09 Jul 2015 21:06:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "329" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2015 17:47:59 GMT" + "Thu, 09 Jul 2015 21:04:33 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "61b3a348-492f-4f02-9852-fa999e067cff" + "5fd3f8c9-ccab-4e4b-8f84-aa9f23b52017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14984" ], "x-ms-request-id": [ - "9c98cc2f-0d25-456a-bcf8-944c154248e8" + "274207e6-91ac-4b62-af12-dfd60c51af5a" ], "x-ms-correlation-request-id": [ - "9c98cc2f-0d25-456a-bcf8-944c154248e8" + "274207e6-91ac-4b62-af12-dfd60c51af5a" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174759Z:9c98cc2f-0d25-456a-bcf8-944c154248e8" + "WESTUS:20150709T210433Z:274207e6-91ac-4b62-af12-dfd60c51af5a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:47:58 GMT" + "Thu, 09 Jul 2015 21:04:33 GMT" ], "ETag": [ - "0x8D270F38F34569A" + "0x8D288A1FD788F52" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "329" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2015 17:48:01 GMT" + "Thu, 09 Jul 2015 21:06:40 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3b28ca2c-ffc8-4e9b-bd4c-a19768f1b550" + "8acec238-c434-4326-83c0-11f592b3964e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "e44ee490-2f76-476e-a873-0ac38fac6145" + "fbe8938d-dc18-40d8-998e-499c12268315" ], "x-ms-correlation-request-id": [ - "e44ee490-2f76-476e-a873-0ac38fac6145" + "fbe8938d-dc18-40d8-998e-499c12268315" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174801Z:e44ee490-2f76-476e-a873-0ac38fac6145" + "WESTUS:20150709T210640Z:fbe8938d-dc18-40d8-998e-499c12268315" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:48:00 GMT" + "Thu, 09 Jul 2015 21:06:40 GMT" ], "ETag": [ - "0x8D270F390338C05" + "0x8D288A248FAA907" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "85a0a5b4-77a7-4084-887b-493787d77b2d" + "2664d331-402b-44a8-9424-9c4622ce2a9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "8f696b21-9796-465c-8ab2-be5f5b13aca6" + "e05d04d9-6e09-4931-a0c6-fa8abb6942bd" ], "x-ms-correlation-request-id": [ - "8f696b21-9796-465c-8ab2-be5f5b13aca6" + "e05d04d9-6e09-4931-a0c6-fa8abb6942bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174759Z:8f696b21-9796-465c-8ab2-be5f5b13aca6" + "WESTUS:20150709T210433Z:e05d04d9-6e09-4931-a0c6-fa8abb6942bd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:47:59 GMT" + "Thu, 09 Jul 2015 21:04:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "request-id": [ - "3555cf4d-0772-4089-904c-dd03667be4c9" + "3c6ce441-82ef-4079-a240-7c3db941fad2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,19 +316,1192 @@ "1197" ], "x-ms-request-id": [ - "d877602f-b239-4c12-8983-039dee2184cf" + "bf764c53-4575-4a44-ac83-36376bdabeb9" ], "x-ms-correlation-request-id": [ - "d877602f-b239-4c12-8983-039dee2184cf" + "bf764c53-4575-4a44-ac83-36376bdabeb9" ], "x-ms-routing-request-id": [ - "WESTUS:20150609T174801Z:d877602f-b239-4c12-8983-039dee2184cf" + "WESTUS:20150709T210641Z:bf764c53-4575-4a44-ac83-36376bdabeb9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 09 Jun 2015 17:48:00 GMT" + "Thu, 09 Jul 2015 21:06:41 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "b123d2bc-9509-40ca-acee-49a81d93945a" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:04:33 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "085cb5d2-2e4d-436c-9d79-884ebbea4181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:04:33 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "e8c2f812-79f6-4d25-b6b1-5182571ed28c" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:04:39 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fa37685d-6b03-4743-8539-715f4c2d368d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:04:38 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "630aaa5a-c406-4a19-a619-a71ff0e3c2b3" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:04:44 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "922adc2f-6ab1-4810-8a35-10ec2246ff37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:04:44 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "5d442799-cb86-40d5-bddf-1542ed8dd818" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:04:49 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4cf0cae8-9a2d-4f93-adca-fbac9a624314" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:04:49 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "9e99adee-bb16-4fb4-9c80-bfdb721c0e45" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:04:55 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "b2e3958f-81ea-4cdf-abb4-13bd8052a970" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:04:55 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "365b5b25-83e9-430b-98b5-96731f62f743" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:00 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "fad15fab-d49b-4850-8ec0-dba29b15079b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:00 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "b8036ef1-cc58-4db9-8dcc-2ca71d7be548" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:05 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "eddfb504-8141-475d-9a45-01b78a4eba5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:06 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "46bf3115-6b34-44b6-8294-3518ace806c8" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:11 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "408c224b-f681-4e58-bc18-d554fb21120d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:11 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "e73b1b46-7900-4dc1-8f35-6c2565e24085" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:16 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "88478b0c-a9f5-45f4-86f0-bb347d3b9377" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:17 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "2184c7c9-56e8-47ff-9aeb-b821af7468d8" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:21 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "04610db0-e902-48d1-8b0d-0cf811d9452a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:22 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "1c9f8bfb-5d23-4b21-a01a-7fd83aafcc7a" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:27 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "11aba06c-7ef8-4abf-9857-29dd296810f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:27 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "a30c68b0-b015-4940-9a25-433455b3951b" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:32 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "2016775b-d2e2-4404-9c97-73d7f3a1db46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:32 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "2f14f4fd-b380-4b6e-8cb4-44b42452df9e" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:37 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "3c763cef-9abf-47f1-8ed6-fb53b42eaf67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:37 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "4055bea1-2ffe-49b9-83dc-541dc6039a15" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:43 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "4c090918-e76a-4a64-ad82-96a6e2dd7312" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:43 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "edffe793-7c69-4d8b-98de-0565fc7d0ff4" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:48 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "1ebb3ac2-eec1-4f16-abfc-112a1d39777d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:48 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "222caf66-6a16-4d58-bfc6-95c9457d8962" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:53 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "6186eaca-ee32-44a6-8186-927f7c069a8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:54 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "d30afa07-b1df-4ac3-aed3-be687f340ac5" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:05:59 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "d07b181b-e97a-49c9-8220-b31fffd8b4b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:05:59 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "8246b5b0-0a56-4092-b960-1a3a8ffd6f63" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:06:04 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "db4d84c6-ac88-4a51-80d9-f72a7dcef631" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:06:04 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "9f161eb4-ead0-47e7-ad5f-eb799428ed20" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:06:09 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "398ecb2e-ecd7-40cd-8a2c-165d1bf5231d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:06:09 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "f83fbad0-9617-4ad1-ac23-1e510aa67ec7" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:06:15 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "0deb77dc-a79b-458d-8b12-dfdba47c3149" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:06:15 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "88cc5116-8089-4721-8d06-7fe0d90e1ee9" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:06:20 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "be3b4746-92fb-431c-a712-e6b5bd79f141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:06:20 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "c0fecf46-ef38-4bed-b49f-9d56cdd5cdee" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:06:26 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "7cb84d9b-9f3a-4c50-84de-be4adade4d92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:06:26 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "3675a15e-8c59-4dad-b23a-c73a8e9980fb" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 21:06:31 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 21:04:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "3b4a0cfd-78ff-4815-8202-cd94a8177963" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 21:06:31 GMT" + ], + "ETag": [ + "0x8D288A1F0A22D45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -346,28 +1519,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bde8b7e5-3015-43fb-9082-0e8e248ff459" + "087bc6d3-7023-468f-922f-fe42e9b83811" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:47:59 GMT" + "Thu, 09 Jul 2015 21:06:36 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270F2FC4FC109\",\r\n \"lastModified\": \"2015-06-09T17:43:53.0142985Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T17:45:33.9589203Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 13,\r\n \"targetDedicated\": 13,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:06:36.484518Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2015 17:43:53 GMT" + "Thu, 09 Jul 2015 21:04:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7a6d3269-71fe-420e-a5f1-1f1a8138b526" + "a1e0cd74-1a0d-44b7-8f66-0cc80ad2cc92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,10 +1549,10 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2015 17:48:00 GMT" + "Thu, 09 Jul 2015 21:06:36 GMT" ], "ETag": [ - "0x8D270F2FC4FC109" + "0x8D288A1F0A22D45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -397,28 +1570,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4ec3e197-a392-46c3-9497-fbe9c4fc328c" + "01a3a5e6-01b8-425e-8d02-7af8a2fbaa8a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:48:01 GMT" + "Thu, 09 Jul 2015 21:06:41 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270F2FC4FC109\",\r\n \"lastModified\": \"2015-06-09T17:43:53.0142985Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T17:45:33.9589203Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 13,\r\n \"targetDedicated\": 13,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A1F0A22D45\",\r\n \"lastModified\": \"2015-07-09T21:04:12.0933701Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:06:36.484518Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2015 17:43:53 GMT" + "Thu, 09 Jul 2015 21:04:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2df6982f-3431-476f-8209-512806f49aa9" + "85585b60-d639-45fc-94d1-5d0c236b7429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,10 +1600,10 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2015 17:48:01 GMT" + "Thu, 09 Jul 2015 21:06:41 GMT" ], "ETag": [ - "0x8D270F2FC4FC109" + "0x8D288A1F0A22D45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -448,28 +1621,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "24fa83b6-efbe-4e11-b2db-b53ea69f714d" + "3e5fe875-7543-4439-ad7e-ae9657832679" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:48:02 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270F3910C256A\",\r\n \"lastModified\": \"2015-06-09T17:48:02.5517418Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T17:48:02.5517418Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 13,\r\n \"targetDedicated\": 18,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D288A24A4581EF\",\r\n \"lastModified\": \"2015-07-09T21:06:42.4809967Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T21:06:42.4809967Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 5,\r\n \"targetDedicated\": 10,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2015 17:48:02 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fe9b5903-c39d-40da-a99e-3a57ee1a3fbb" + "eecca9d8-78ef-4de7-a5c8-d6892cdee766" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -478,10 +1651,10 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2015 17:48:02 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ], "ETag": [ - "0x8D270F3910C256A" + "0x8D288A24A4581EF" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -493,7 +1666,7 @@ "RequestUri": "/pools/testPool?resize&api-version=2014-10-01.1.0", "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetDedicated\": 18,\r\n \"resizeTimeout\": \"PT5M\"\r\n}", + "RequestBody": "{\r\n \"targetDedicated\": 10,\r\n \"resizeTimeout\": \"PT5M\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" @@ -505,25 +1678,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1a11e797-a9de-4fa6-9a37-c44c6bad539c" + "5803df27-9e46-4fea-9e53-e9c64e8c9192" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:48:01 GMT" + "Thu, 09 Jul 2015 21:06:41 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 09 Jun 2015 17:48:02 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "573ea298-1006-41d1-91b6-23b8860ef1b1" + "8f840f5b-91b5-4aa6-b75f-9ef7504c9c8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,13 +1705,13 @@ "3.0" ], "DataServiceId": [ - "https://pooltests.batch.core.windows.net/pools/testPool" + "https://pstests.batch.core.windows.net/pools/testPool" ], "Date": [ - "Tue, 09 Jun 2015 17:48:01 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ], "ETag": [ - "0x8D270F390C6BD91" + "0x8D288A249FD62D1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -556,25 +1729,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bfc7eece-d734-4a3a-b7d9-6bae17c7d7a6" + "75091c39-0aed-4042-9bbf-d784c8bfaa96" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 09 Jun 2015 17:48:02 GMT" + "Thu, 09 Jul 2015 21:06:41 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Tue, 09 Jun 2015 17:48:02 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "520255b4-a5b3-41dc-bccf-9cb0c512f3ff" + "f338b048-d45b-4c92-8de9-18399fa87c89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583,13 +1756,13 @@ "3.0" ], "DataServiceId": [ - "https://pooltests.batch.core.windows.net/pools/testPool" + "https://pstests.batch.core.windows.net/pools/testPool" ], "Date": [ - "Tue, 09 Jun 2015 17:48:01 GMT" + "Thu, 09 Jul 2015 21:06:42 GMT" ], "ETag": [ - "0x8D270F3910C256A" + "0x8D288A24A4581EF" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTask.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTask.json index 7df952d75665..22ec9544d357 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTask.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTask.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-new-task?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbmV3LXRhc2s/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "928c2a53-c06b-41ec-ae6e-76f22959fcf3" + ], + "x-ms-correlation-request-id": [ + "928c2a53-c06b-41ec-ae6e-76f22959fcf3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T203148Z:928c2a53-c06b-41ec-ae6e-76f22959fcf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 20:31:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task\",\r\n \"name\": \"test-new-task\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" ], "x-ms-request-id": [ - "b476a42e-de02-4a6c-8198-0c5ebab8b2a4" + "9c1dd511-90ff-4bc9-b21a-d7a964bd4990" ], "x-ms-correlation-request-id": [ - "b476a42e-de02-4a6c-8198-0c5ebab8b2a4" + "9c1dd511-90ff-4bc9-b21a-d7a964bd4990" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T193541Z:b476a42e-de02-4a6c-8198-0c5ebab8b2a4" + "WESTUS:20150709T203150Z:9c1dd511-90ff-4bc9-b21a-d7a964bd4990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,88 +91,88 @@ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 19:35:40 GMT" + "Thu, 09 Jul 2015 20:31:49 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXd0YXNrP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 20:31:48 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" - ], "request-id": [ - "8e30a0a5-0450-4167-84c3-3a8fff34fdcb" + "c3288e9b-ec9c-4497-80ef-0630751794bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], "x-ms-request-id": [ - "9bb7d09e-0111-4482-81d0-b5ad346f3080" + "436029e1-7c82-4f36-a595-baeec8d8d2a8" ], "x-ms-correlation-request-id": [ - "9bb7d09e-0111-4482-81d0-b5ad346f3080" + "436029e1-7c82-4f36-a595-baeec8d8d2a8" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T193545Z:9bb7d09e-0111-4482-81d0-b5ad346f3080" + "WESTUS:20150709T203148Z:436029e1-7c82-4f36-a595-baeec8d8d2a8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 19:35:44 GMT" + "Thu, 09 Jul 2015 20:31:48 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask/operationResults/8e30a0a5-0450-4167-84c3-3a8fff34fdcb?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889D6A474626" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask/operationResults/8e30a0a5-0450-4167-84c3-3a8fff34fdcb?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXd0YXNrL29wZXJhdGlvblJlc3VsdHMvOGUzMGEwYTUtMDQ1MC00MTY3LTg0YzMtM2E4ZmZmMzRmZGNiP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testnewtask\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testnewtask.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "323" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 19:35:45 GMT" + "Thu, 09 Jul 2015 20:31:50 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "31ee8c53-d4b8-49c0-b581-8686df76d6e9" + "d15071f6-4e3f-4631-a486-1889a30b368c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14990" ], "x-ms-request-id": [ - "55d5417e-57ef-45d9-a31d-8056ef0770bf" + "ecce9b0e-1f01-42d3-ac39-b73f68e29979" ], "x-ms-correlation-request-id": [ - "55d5417e-57ef-45d9-a31d-8056ef0770bf" + "ecce9b0e-1f01-42d3-ac39-b73f68e29979" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T193545Z:55d5417e-57ef-45d9-a31d-8056ef0770bf" + "WESTUS:20150709T203150Z:ecce9b0e-1f01-42d3-ac39-b73f68e29979" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 19:35:45 GMT" + "Thu, 09 Jul 2015 20:31:50 GMT" ], "ETag": [ - "0x8D22592B560E234" + "0x8D2889D6B2AA8AC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXd0YXNrL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testnewtask\",\r\n \"primary\": \"x5PyAEsM6rRDLuWLyCbBFXeXeUj/iF+oWvFx20yKMRCiuzjEiXE1isy3bj/UGlmNQFDC3s2vFcZcX62UYOI9kA==\",\r\n \"secondary\": \"Ixj51cMsiL365a2P0JNF08xcz6IfS7Trz1gbYZdJaIzVu9lMRN2R5MpKhWX77xde9P7V6CnG4qo3/f3lim7OOQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "233" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "3a2a838b-ba28-41c0-833b-9aa19e8cc478" + "e18882d7-0b1f-4cfc-8f6b-a0f98efb5005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-request-id": [ - "9ea17177-216e-49f7-aea8-f248d0362640" + "36cc1814-ba4f-48ec-b24a-44980425bbcb" ], "x-ms-correlation-request-id": [ - "9ea17177-216e-49f7-aea8-f248d0362640" + "36cc1814-ba4f-48ec-b24a-44980425bbcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T193545Z:9ea17177-216e-49f7-aea8-f248d0362640" + "WESTUS:20150709T203148Z:36cc1814-ba4f-48ec-b24a-44980425bbcb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 19:35:45 GMT" + "Thu, 09 Jul 2015 20:31:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXd0YXNrL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testnewtask\",\r\n \"primary\": \"x5PyAEsM6rRDLuWLyCbBFXeXeUj/iF+oWvFx20yKMRCiuzjEiXE1isy3bj/UGlmNQFDC3s2vFcZcX62UYOI9kA==\",\r\n \"secondary\": \"Ixj51cMsiL365a2P0JNF08xcz6IfS7Trz1gbYZdJaIzVu9lMRN2R5MpKhWX77xde9P7V6CnG4qo3/f3lim7OOQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "233" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "6a88fc8f-141b-494c-98f1-d9ec217bad27" + "42489686-4053-43c1-9e7d-a7f73fa1c472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-request-id": [ - "4aaa81ff-26dd-4120-a4e6-0665d0e1500c" + "57a76a50-8b3f-40f1-b492-fcdab8336063" ], "x-ms-correlation-request-id": [ - "4aaa81ff-26dd-4120-a4e6-0665d0e1500c" + "57a76a50-8b3f-40f1-b492-fcdab8336063" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T193636Z:4aaa81ff-26dd-4120-a4e6-0665d0e1500c" + "WESTUS:20150709T203150Z:57a76a50-8b3f-40f1-b492-fcdab8336063" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 19:36:35 GMT" + "Thu, 09 Jul 2015 20:31:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testName\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"createTaskWI\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "164" + "168" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "ccd092c6-8f22-4536-83d9-dba6c254749c" + "acac25b8-b46c-4771-a4fc-804964c6f6ad" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 19:36:33 GMT" + "Thu, 09 Jul 2015 20:31:48 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:32 GMT" + "Thu, 09 Jul 2015 20:31:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "701f3667-897d-4333-b367-c9d03d41e4d8" + "a618cf00-1891-46e7-9f88-585049c16385" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testnewtask.batch.core.windows.net/workitems/testName" + "https://pstests.batch.core.windows.net/workitems/createTaskWI" ], "Date": [ - "Thu, 05 Mar 2015 19:36:33 GMT" + "Thu, 09 Jul 2015 20:31:49 GMT" ], "ETag": [ - "0x8D22592D1EB6ED4" + "0x8D2889D6AD5D834" ], "Location": [ - "https://testnewtask.batch.core.windows.net/workitems/testName" + "https://pstests.batch.core.windows.net/workitems/createTaskWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,8 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/createTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9jcmVhdGVUYXNrV0k/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6181103c-c57c-43da-a365-4e85c5e15728" + "8dad8145-a27e-4cc6-95bb-46085358c754" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 19:36:33 GMT" + "Thu, 09 Jul 2015 20:31:49 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testnewtask.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testName\",\r\n \"url\": \"https://testnewtask.batch.core.windows.net/workitems/testName\",\r\n \"eTag\": \"0x8D22592D1EB6ED4\",\r\n \"lastModified\": \"2015-03-05T19:36:32.9981652Z\",\r\n \"creationTime\": \"2015-03-05T19:36:32.9981652Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T19:36:32.9981652Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testnewtask.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"createTaskWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/createTaskWI\",\r\n \"eTag\": \"0x8D2889D6AD5D834\",\r\n \"lastModified\": \"2015-07-09T20:31:49.6303668Z\",\r\n \"creationTime\": \"2015-07-09T20:31:49.6303668Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:49.6303668Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/createTaskWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:32 GMT" + "Thu, 09 Jul 2015 20:31:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3baff196-b39a-4709-9556-0edfc4b62b9c" + "f1eff898-14bf-4ff6-90b7-8ddca5e83687" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,121 +436,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 19:36:33 GMT" - ], - "ETag": [ - "0x8D22592D1EB6ED4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask\",\r\n \"name\": \"testnewtask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "747" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "6e12a3f1-251d-40ef-bd00-4b1c03fea6a3" - ], - "x-ms-correlation-request-id": [ - "6e12a3f1-251d-40ef-bd00-4b1c03fea6a3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193635Z:6e12a3f1-251d-40ef-bd00-4b1c03fea6a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:36:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXd0YXNrP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testnewtask\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testnewtask.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "323" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "6288b81f-029b-473f-94d6-301016b96580" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "a4c48f3e-a001-435f-8233-77d0b65d114a" - ], - "x-ms-correlation-request-id": [ - "a4c48f3e-a001-435f-8233-77d0b65d114a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193635Z:a4c48f3e-a001-435f-8233-77d0b65d114a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:36:35 GMT" + "Thu, 09 Jul 2015 20:31:49 GMT" ], "ETag": [ - "0x8D22592D345B9CB" + "0x8D2889D6AD5D834" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,8 +448,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testName/jobs/job-0000000001?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZS9qb2JzL2pvYi0wMDAwMDAwMDAxP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/workitems/createTaskWI/jobs/job-0000000001?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9jcmVhdGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -526,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "103f16c5-eb7c-4376-abc3-5db328934576" + "6c260154-dbea-4c51-9f16-5e4be62c7ce7" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 19:36:36 GMT" + "Thu, 09 Jul 2015 20:31:50 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testnewtask.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testnewtask.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D22592D1F54C53\",\r\n \"lastModified\": \"2015-03-05T19:36:33.0628179Z\",\r\n \"creationTime\": \"2015-03-05T19:36:33.0361775Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T19:36:33.0628179Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-05T19:36:33.0628179Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/createTaskWI/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889D6AE0324A\",\r\n \"lastModified\": \"2015-07-09T20:31:49.698209Z\",\r\n \"creationTime\": \"2015-07-09T20:31:49.6773619Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:49.698209Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:49.698209Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:33 GMT" + "Thu, 09 Jul 2015 20:31:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6c5e5051-fc3a-4984-b542-7cfe71f88556" + "496659fa-da00-40a1-a4f7-9e62bb17d27b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,10 +487,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 19:36:35 GMT" + "Thu, 09 Jul 2015 20:31:50 GMT" ], "ETag": [ - "0x8D22592D1F54C53" + "0x8D2889D6AE0324A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -568,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testName/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/workitems/createTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9jcmVhdGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"simple\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", "RequestHeaders": { @@ -583,25 +514,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "12e4a213-d338-4428-bc19-2dbb73123847" + "d3a93c66-382f-4bf8-98a7-5233e0ec1ca5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 19:36:36 GMT" + "Thu, 09 Jul 2015 20:31:50 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:36 GMT" + "Thu, 09 Jul 2015 20:31:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "dc297bed-72f1-431c-a560-cd5fe6a1395f" + "a26b708d-79fd-4ed7-b0ac-5a1904d72817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -610,16 +541,16 @@ "3.0" ], "DataServiceId": [ - "https://testnewtask.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/simple" + "https://pstests.batch.core.windows.net/workitems/createTaskWI/jobs/job-0000000001/tasks/simple" ], "Date": [ - "Thu, 05 Mar 2015 19:36:36 GMT" + "Thu, 09 Jul 2015 20:31:51 GMT" ], "ETag": [ - "0x8D22592D42026BF" + "0x8D2889D6BEB5492" ], "Location": [ - "https://testnewtask.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/simple" + "https://pstests.batch.core.windows.net/workitems/createTaskWI/jobs/job-0000000001/tasks/simple" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -628,8 +559,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testName/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/workitems/createTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9jcmVhdGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"complex\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n }\r\n}", "RequestHeaders": { @@ -643,25 +574,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c068bb7e-9199-466a-8dc4-df3678ac62ba" + "ffb7f498-4dd2-4b97-84a4-04350222da47" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 19:36:37 GMT" + "Thu, 09 Jul 2015 20:31:51 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:38 GMT" + "Thu, 09 Jul 2015 20:31:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3f3e0838-8e72-451c-a6de-03adbfc9b79d" + "d0f3a486-a62d-483c-97d9-63efcf2cca75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,16 +601,16 @@ "3.0" ], "DataServiceId": [ - "https://testnewtask.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/complex" + "https://pstests.batch.core.windows.net/workitems/createTaskWI/jobs/job-0000000001/tasks/complex" ], "Date": [ - "Thu, 05 Mar 2015 19:36:38 GMT" + "Thu, 09 Jul 2015 20:31:52 GMT" ], "ETag": [ - "0x8D22592D4EE5308" + "0x8D2889D6C4EEDB0" ], "Location": [ - "https://testnewtask.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/complex" + "https://pstests.batch.core.windows.net/workitems/createTaskWI/jobs/job-0000000001/tasks/complex" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -688,8 +619,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testName/jobs/job-0000000001/tasks/simple?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzL3NpbXBsZT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/createTaskWI/jobs/job-0000000001/tasks/simple?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9jcmVhdGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcy9zaW1wbGU/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -697,28 +628,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e5be33b1-2c32-4499-9687-eefe45e3316a" + "62a50eef-8734-4e55-b4dc-75a70896773a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 19:36:37 GMT" + "Thu, 09 Jul 2015 20:31:51 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testnewtask.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"simple\",\r\n \"url\": \"https://testnewtask.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/simple\",\r\n \"eTag\": \"0x8D22592D42026BF\",\r\n \"creationTime\": \"2015-03-05T19:36:36.6991039Z\",\r\n \"lastModified\": \"2015-03-05T19:36:36.6991039Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T19:36:36.6991039Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"simple\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/createTaskWI/jobs/job-0000000001/tasks/simple\",\r\n \"eTag\": \"0x8D2889D6BEB5492\",\r\n \"creationTime\": \"2015-07-09T20:31:51.4488978Z\",\r\n \"lastModified\": \"2015-07-09T20:31:51.4488978Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:51.4488978Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:36 GMT" + "Thu, 09 Jul 2015 20:31:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "ca1758bd-137f-4b51-9129-7414d46490ef" + "f17320d7-0531-44a2-877a-c51f2185c09a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,10 +658,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 19:36:37 GMT" + "Thu, 09 Jul 2015 20:31:51 GMT" ], "ETag": [ - "0x8D22592D42026BF" + "0x8D2889D6BEB5492" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -739,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testName/jobs/job-0000000001/tasks/complex?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzL2NvbXBsZXg/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/createTaskWI/jobs/job-0000000001/tasks/complex?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9jcmVhdGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcy9jb21wbGV4P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -748,28 +679,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bc3c6e04-6da3-47bb-880d-381fbf14b113" + "2f0d2a8e-d586-4a13-90c9-fb02a066ab26" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 19:36:38 GMT" + "Thu, 09 Jul 2015 20:31:52 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testnewtask.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"complex\",\r\n \"url\": \"https://testnewtask.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/complex\",\r\n \"eTag\": \"0x8D22592D4EE5308\",\r\n \"creationTime\": \"2015-03-05T19:36:38.0502792Z\",\r\n \"lastModified\": \"2015-03-05T19:36:38.0502792Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T19:36:38.0502792Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"complex\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/createTaskWI/jobs/job-0000000001/tasks/complex\",\r\n \"eTag\": \"0x8D2889D6C4EEDB0\",\r\n \"creationTime\": \"2015-07-09T20:31:52.101624Z\",\r\n \"lastModified\": \"2015-07-09T20:31:52.101624Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:52.101624Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:38 GMT" + "Thu, 09 Jul 2015 20:31:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "58456daa-b258-4a00-b710-8a222fcf3f52" + "636713f6-481b-4d57-8f0f-529ccb2e8cc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,10 +709,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 19:36:37 GMT" + "Thu, 09 Jul 2015 20:31:52 GMT" ], "ETag": [ - "0x8D22592D4EE5308" + "0x8D2889D6C4EEDB0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -790,8 +721,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/createTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9jcmVhdGVUYXNrV0k/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -799,13 +730,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "eecd86e1-6ace-494a-8552-ab0a43426d49" + "a644285a-6927-4a9c-903d-00d211961452" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 19:36:38 GMT" + "Thu, 09 Jul 2015 20:31:52 GMT" ] }, "ResponseBody": "", @@ -814,7 +745,7 @@ "chunked" ], "request-id": [ - "67572541-11aa-47b7-853f-8910490a8a20" + "7df405e2-f695-442b-946b-bae50b50b05a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -823,391 +754,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 19:36:38 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXd0YXNrP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "646da0ab-bfc1-4b9e-ba6e-b87863c62c10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-request-id": [ - "70c307ee-a0dd-46a8-bb2d-4c94539bf759" - ], - "x-ms-correlation-request-id": [ - "70c307ee-a0dd-46a8-bb2d-4c94539bf759" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193640Z:70c307ee-a0dd-46a8-bb2d-4c94539bf759" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:36:39 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask/operationResults/646da0ab-bfc1-4b9e-ba6e-b87863c62c10?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 20:31:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-task/providers/Microsoft.Batch/batchAccounts/testnewtask/operationResults/646da0ab-bfc1-4b9e-ba6e-b87863c62c10?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RuZXd0YXNrL29wZXJhdGlvblJlc3VsdHMvNjQ2ZGEwYWItYmZjMS00YjllLWJhNmUtYjg3ODYzYzYyYzEwP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 19:36:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "29c30395-a07a-48b6-9f9c-64517fd082d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "dd0b27f9-d33e-425f-a6ba-3ac125782ea2" - ], - "x-ms-correlation-request-id": [ - "dd0b27f9-d33e-425f-a6ba-3ac125782ea2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193640Z:dd0b27f9-d33e-425f-a6ba-3ac125782ea2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:36:39 GMT" - ], - "ETag": [ - "0x8D22592D616F5AF" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-new-task?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbmV3LXRhc2s/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "bfb613bf-20b5-452f-b553-81598af9ff07" - ], - "x-ms-correlation-request-id": [ - "bfb613bf-20b5-452f-b553-81598af9ff07" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193641Z:bfb613bf-20b5-452f-b553-81598af9ff07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:36:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVZFRlRTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "810a0925-d167-49f2-910a-94f87e8c0436" - ], - "x-ms-correlation-request-id": [ - "810a0925-d167-49f2-910a-94f87e8c0436" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193641Z:810a0925-d167-49f2-910a-94f87e8c0436" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:36:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVZFRlRTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "971fa88f-03e6-4286-ae5f-237ff4e46a38" - ], - "x-ms-correlation-request-id": [ - "971fa88f-03e6-4286-ae5f-237ff4e46a38" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193656Z:971fa88f-03e6-4286-ae5f-237ff4e46a38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:36:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVZFRlRTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "0c3d111b-8fad-47ab-a791-5ea95cd452b3" - ], - "x-ms-correlation-request-id": [ - "0c3d111b-8fad-47ab-a791-5ea95cd452b3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193712Z:0c3d111b-8fad-47ab-a791-5ea95cd452b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:37:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVZFRlRTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "ace755fe-894c-432d-a387-18da9fc7d558" - ], - "x-ms-correlation-request-id": [ - "ace755fe-894c-432d-a387-18da9fc7d558" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T193727Z:ace755fe-894c-432d-a387-18da9fc7d558" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 19:37:26 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTask.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTask.json index 94262bf8c830..a103a5eea012 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTask.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTask.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-task?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2s/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "cc71b729-4f07-4b80-a736-dc7ff5193394" + ], + "x-ms-correlation-request-id": [ + "cc71b729-4f07-4b80-a736-dc7ff5193394" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T202921Z:cc71b729-4f07-4b80-a736-dc7ff5193394" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 20:29:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task\",\r\n \"name\": \"test-delete-task\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "185" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-request-id": [ - "38c1eaa6-97dc-4282-b456-61f5e513f61f" + "c08eef02-70fd-4145-81e5-a9790296a9ab" ], "x-ms-correlation-request-id": [ - "38c1eaa6-97dc-4282-b456-61f5e513f61f" + "c08eef02-70fd-4145-81e5-a9790296a9ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201033Z:38c1eaa6-97dc-4282-b456-61f5e513f61f" + "WESTUS:20150709T202923Z:c08eef02-70fd-4145-81e5-a9790296a9ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:10:32 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV0YXNrP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 20:29:22 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], "request-id": [ - "2fcaddda-5e9e-4eac-af98-4a4bcfe6ecb1" + "83d95748-1cb1-48ae-8806-e932fd5d115e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], "x-ms-request-id": [ - "1a4af8e8-de8a-49ec-9a33-fcd4849f736f" + "e4ac38c5-b946-4f2a-b4d9-f5ec4afc5da3" ], "x-ms-correlation-request-id": [ - "1a4af8e8-de8a-49ec-9a33-fcd4849f736f" + "e4ac38c5-b946-4f2a-b4d9-f5ec4afc5da3" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201037Z:1a4af8e8-de8a-49ec-9a33-fcd4849f736f" + "WESTUS:20150709T202922Z:e4ac38c5-b946-4f2a-b4d9-f5ec4afc5da3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:10:37 GMT" + "Thu, 09 Jul 2015 20:29:21 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask/operationResults/2fcaddda-5e9e-4eac-af98-4a4bcfe6ecb1?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889D12F7E783" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask/operationResults/2fcaddda-5e9e-4eac-af98-4a4bcfe6ecb1?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV0YXNrL29wZXJhdGlvblJlc3VsdHMvMmZjYWRkZGEtNWU5ZS00ZWFjLWFmOTgtNGE0YmNmZTZlY2IxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletetask\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletetask.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "335" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:10:37 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "3f2c6597-10b1-4c7c-a4df-067b92d42231" + "bc0e5fee-229a-4f9d-b409-bbdf9c8551c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14991" ], "x-ms-request-id": [ - "b5d0eb1a-4530-4458-a303-12b476fc33ad" + "b71bf552-c516-4ff5-8f2b-459596da8006" ], "x-ms-correlation-request-id": [ - "b5d0eb1a-4530-4458-a303-12b476fc33ad" + "b71bf552-c516-4ff5-8f2b-459596da8006" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201038Z:b5d0eb1a-4530-4458-a303-12b476fc33ad" + "WESTUS:20150709T202924Z:b71bf552-c516-4ff5-8f2b-459596da8006" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:10:37 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "ETag": [ - "0x8D2259794B0B743" + "0x8D2889D1400A2CC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV0YXNrL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletetask\",\r\n \"primary\": \"LL/1SvD0K0eV9+P8dwF08dFw/8/MVTxotYV9zYOVBou/KIqFo4KxB+Lp6W5LUhk3CoyYEAbzh0vaxWFvRCK31w==\",\r\n \"secondary\": \"i+xzdo5ezrkuSr80NXiOl90Equci+QjdmJxWzY4Pyyvkz5xWDOY9CLZekyTdj9UPJR0szZvJTRO3Xm2D2zkYlQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "236" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "ea7ff101-8643-4188-af33-898024946d5e" + "224a0255-3b28-45f3-8bb0-f0eae00b8202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-request-id": [ - "3131108c-e333-41a4-aae3-803cc2cc6262" + "3e5a9848-935d-4115-a6c4-85d0f69b29c9" ], "x-ms-correlation-request-id": [ - "3131108c-e333-41a4-aae3-803cc2cc6262" + "3e5a9848-935d-4115-a6c4-85d0f69b29c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201038Z:3131108c-e333-41a4-aae3-803cc2cc6262" + "WESTUS:20150709T202922Z:3e5a9848-935d-4115-a6c4-85d0f69b29c9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:10:37 GMT" + "Thu, 09 Jul 2015 20:29:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV0YXNrL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletetask\",\r\n \"primary\": \"LL/1SvD0K0eV9+P8dwF08dFw/8/MVTxotYV9zYOVBou/KIqFo4KxB+Lp6W5LUhk3CoyYEAbzh0vaxWFvRCK31w==\",\r\n \"secondary\": \"i+xzdo5ezrkuSr80NXiOl90Equci+QjdmJxWzY4Pyyvkz5xWDOY9CLZekyTdj9UPJR0szZvJTRO3Xm2D2zkYlQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "236" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "d3b0ed15-c5a9-4dd4-bbcf-7dd2082d1f01" + "93677cd7-616b-40e4-b9ea-8df189d44cdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1191" ], "x-ms-request-id": [ - "f8bdfeae-8422-4223-906c-662006bed3fc" + "0994331c-7784-474b-903d-609713d0f9e0" ], "x-ms-correlation-request-id": [ - "f8bdfeae-8422-4223-906c-662006bed3fc" + "0994331c-7784-474b-903d-609713d0f9e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201212Z:f8bdfeae-8422-4223-906c-662006bed3fc" + "WESTUS:20150709T202924Z:0994331c-7784-474b-903d-609713d0f9e0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:12:12 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,7 +340,7 @@ "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"deleteTaskWI\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "578998d1-3df7-4f8f-8baf-c3e1f4274d15" + "b544342e-2c4e-46fc-8a2b-53baa1184358" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:12:08 GMT" + "Thu, 09 Jul 2015 20:29:22 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:12:08 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d7143b65-b2c4-4dfe-a7d5-1bcbf8fc8cba" + "759779dc-a34b-4306-868e-713c740f186b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testdeletetask.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/deleteTaskWI" ], "Date": [ - "Thu, 05 Mar 2015 20:12:08 GMT" + "Thu, 09 Jul 2015 20:29:22 GMT" ], "ETag": [ - "0x8D22597CAECBD96" + "0x8D2889D137C614C" ], "Location": [ - "https://testdeletetask.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/deleteTaskWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,8 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/deleteTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrV0k/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cc57c6e4-eff7-4ce5-8cdb-aa77c10c446b" + "16bb60a6-4bf1-476e-b07c-99572dae4d4c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:12:09 GMT" + "Thu, 09 Jul 2015 20:29:22 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletetask.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletetask.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D22597CAECBD96\",\r\n \"lastModified\": \"2015-03-05T20:12:08.7463318Z\",\r\n \"creationTime\": \"2015-03-05T20:12:08.7463318Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:12:08.7463318Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletetask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"deleteTaskWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/deleteTaskWI\",\r\n \"eTag\": \"0x8D2889D137C614C\",\r\n \"lastModified\": \"2015-07-09T20:29:23.0822732Z\",\r\n \"creationTime\": \"2015-07-09T20:29:23.0822732Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:29:23.0822732Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/deleteTaskWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:12:08 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7bf3f6e0-d3ff-4dc1-817d-20169e498699" + "b187b296-78b4-4f32-a0c7-7c01bc310381" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:12:09 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "ETag": [ - "0x8D22597CAECBD96" + "0x8D2889D137C614C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,40 +448,40 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "150" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "915dae2c-13c4-4720-9ddc-f61e87408f46" + "cf83fd57-3af7-44f9-a0cb-048a8875a5fd" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:12:09 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:12:09 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "38d62cc5-e03c-4cac-b3dc-c5b73d2c52eb" + "af5ccbc5-1e1b-486a-9e68-e7238f39e964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://testdeletetask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/deleteTaskWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Thu, 05 Mar 2015 20:12:09 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "ETag": [ - "0x8D22597CB9999BA" + "0x8D2889D13ADB16A" ], "Location": [ - "https://testdeletetask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/deleteTaskWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,119 +508,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask\",\r\n \"name\": \"testdeletetask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "756" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "be8961d3-d9ad-422d-853f-b311b0c78af6" - ], - "x-ms-correlation-request-id": [ - "be8961d3-d9ad-422d-853f-b311b0c78af6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201211Z:be8961d3-d9ad-422d-853f-b311b0c78af6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:12:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV0YXNrP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testdeletetask\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletetask.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "335" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:12:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "cda94ae7-6373-4e7d-84f3-3bad153b2585" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "f470f534-fcd9-4eba-b28e-c681bcd8dcaf" - ], - "x-ms-correlation-request-id": [ - "f470f534-fcd9-4eba-b28e-c681bcd8dcaf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201212Z:f470f534-fcd9-4eba-b28e-c681bcd8dcaf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:12:11 GMT" - ], - "ETag": [ - "0x8D22597CCFB05A6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -586,16 +517,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "8a84d584-b0a6-4374-a0aa-b650e3dd0beb" + "3b48e8ee-9e5c-40b6-aad3-079a8ef2a6d4" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:12:12 GMT" + "Thu, 09 Jul 2015 20:29:24 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletetask.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://testdeletetask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D22597CB9999BA\",\r\n \"creationTime\": \"2015-03-05T20:12:09.8791866Z\",\r\n \"lastModified\": \"2015-03-05T20:12:09.8791866Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:12:09.8791866Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/deleteTaskWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889D13ADB16A\",\r\n \"creationTime\": \"2015-07-09T20:29:23.4054506Z\",\r\n \"lastModified\": \"2015-07-09T20:29:23.4054506Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:29:23.4054506Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -604,7 +535,7 @@ "chunked" ], "request-id": [ - "c5530802-2937-41ec-a1d7-6faea7b2c139" + "212843a1-dd78-4a2f-a7ec-b1b8e26a670f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -613,7 +544,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:12:12 GMT" + "Thu, 09 Jul 2015 20:29:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -622,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -631,16 +562,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9db4e2f4-76d7-478a-832e-5285c3d31312" + "4b044559-8e4e-4873-aac7-0a62d174ae5c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:12:13 GMT" + "Thu, 09 Jul 2015 20:29:24 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletetask.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -649,7 +580,7 @@ "chunked" ], "request-id": [ - "ecaf798e-4da7-4c7a-b9f4-2eab9d96fa47" + "a3160a71-d829-40d3-b19d-3f184d30acba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -658,7 +589,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:12:13 GMT" + "Thu, 09 Jul 2015 20:29:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,8 +598,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskWI/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -676,13 +607,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a3504071-f2c8-4b70-a956-da048629b247" + "ebcb8cb0-5955-4595-896b-25032002269f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:12:13 GMT" + "Thu, 09 Jul 2015 20:29:24 GMT" ] }, "ResponseBody": "", @@ -691,7 +622,7 @@ "chunked" ], "request-id": [ - "49026233-ce85-43e5-8151-8f342ddc43b1" + "38570451-cf9e-4b72-8027-e3919bb5f19a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,7 +631,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:12:11 GMT" + "Thu, 09 Jul 2015 20:29:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -709,8 +640,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/deleteTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrV0k/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -718,13 +649,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4791506b-eaf9-4731-a125-70284e225ec8" + "827fc2fa-5c1c-4658-be76-f28f0a3df022" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:12:13 GMT" + "Thu, 09 Jul 2015 20:29:25 GMT" ] }, "ResponseBody": "", @@ -733,7 +664,7 @@ "chunked" ], "request-id": [ - "dade5354-351f-4a95-9879-edb9cbbb64f8" + "52360da7-2f7e-445c-821f-1f0aae0ae0a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -742,391 +673,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:12:13 GMT" + "Thu, 09 Jul 2015 20:29:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV0YXNrP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "bc662d7f-ad4c-4116-acb8-a95d79d3a42b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" - ], - "x-ms-request-id": [ - "eebd0ba2-c436-471d-be97-11c4d9938869" - ], - "x-ms-correlation-request-id": [ - "eebd0ba2-c436-471d-be97-11c4d9938869" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201216Z:eebd0ba2-c436-471d-be97-11c4d9938869" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:12:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask/operationResults/bc662d7f-ad4c-4116-acb8-a95d79d3a42b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task/providers/Microsoft.Batch/batchAccounts/testdeletetask/operationResults/bc662d7f-ad4c-4116-acb8-a95d79d3a42b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV0YXNrL29wZXJhdGlvblJlc3VsdHMvYmM2NjJkN2YtYWQ0Yy00MTE2LWFjYjgtYTk1ZDc5ZDNhNDJiP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:12:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "e42130f1-8284-442e-9ee3-cd4ba845a295" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "0211f13b-a922-4721-bc8e-c06a4cad733c" - ], - "x-ms-correlation-request-id": [ - "0211f13b-a922-4721-bc8e-c06a4cad733c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201216Z:0211f13b-a922-4721-bc8e-c06a4cad733c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:12:15 GMT" - ], - "ETag": [ - "0x8D22597CF98BB6C" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-task?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2s/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "c3f799ec-7ee2-40b5-b2a7-c4c0e0ffcd7b" - ], - "x-ms-correlation-request-id": [ - "c3f799ec-7ee2-40b5-b2a7-c4c0e0ffcd7b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201218Z:c3f799ec-7ee2-40b5-b2a7-c4c0e0ffcd7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:12:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWRUZUU3kxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "591084bc-16ab-473f-b960-6bf315a3d28f" - ], - "x-ms-correlation-request-id": [ - "591084bc-16ab-473f-b960-6bf315a3d28f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201218Z:591084bc-16ab-473f-b960-6bf315a3d28f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:12:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWRUZUU3kxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "eef64076-3c35-4ac1-8ea2-d79f33952dbc" - ], - "x-ms-correlation-request-id": [ - "eef64076-3c35-4ac1-8ea2-d79f33952dbc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201233Z:eef64076-3c35-4ac1-8ea2-d79f33952dbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:12:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWRUZUU3kxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "1979df3d-d693-49ef-80cd-f915abc51bc1" - ], - "x-ms-correlation-request-id": [ - "1979df3d-d693-49ef-80cd-f915abc51bc1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201248Z:1979df3d-d693-49ef-80cd-f915abc51bc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:12:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWRUZUU3kxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "30fe7bcb-5d9b-418c-9156-0e66055bd9a7" - ], - "x-ms-correlation-request-id": [ - "30fe7bcb-5d9b-418c-9156-0e66055bd9a7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201304Z:30fe7bcb-5d9b-418c-9156-0e66055bd9a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:13:03 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTaskPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTaskPipeline.json index 6b6a8c43c779..40fadc531de8 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTaskPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestDeleteTaskPipeline.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-task-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "db88f4f9-2537-4e13-9e0d-529060312877" + ], + "x-ms-correlation-request-id": [ + "db88f4f9-2537-4e13-9e0d-529060312877" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T202950Z:db88f4f9-2537-4e13-9e0d-529060312877" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 20:29:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe\",\r\n \"name\": \"test-delete-task-pipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "195" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-request-id": [ - "a425e459-0a4a-4362-812d-1e998e86b81e" + "610c42dc-5e7d-48d1-b411-4059eeedfa25" ], "x-ms-correlation-request-id": [ - "a425e459-0a4a-4362-812d-1e998e86b81e" + "610c42dc-5e7d-48d1-b411-4059eeedfa25" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201557Z:a425e459-0a4a-4362-812d-1e998e86b81e" + "WESTUS:20150709T202952Z:610c42dc-5e7d-48d1-b411-4059eeedfa25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:15:56 GMT" + "Thu, 09 Jul 2015 20:29:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZXRhc2twaXBlP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 20:29:51 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], "request-id": [ - "667302fd-0872-4d51-853a-277d8cdc8ffd" + "abe58fe9-7829-451e-9912-f07d8b8ff39a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], "x-ms-request-id": [ - "91d97e6b-c617-40d4-9832-5156eeb5eb2a" + "d1be9893-e8e1-48d9-8183-fe871a63e5d0" ], "x-ms-correlation-request-id": [ - "91d97e6b-c617-40d4-9832-5156eeb5eb2a" + "d1be9893-e8e1-48d9-8183-fe871a63e5d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201601Z:91d97e6b-c617-40d4-9832-5156eeb5eb2a" + "WESTUS:20150709T202951Z:d1be9893-e8e1-48d9-8183-fe871a63e5d0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:16:00 GMT" + "Thu, 09 Jul 2015 20:29:50 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe/operationResults/667302fd-0872-4d51-853a-277d8cdc8ffd?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889D24634DF1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe/operationResults/667302fd-0872-4d51-853a-277d8cdc8ffd?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZXRhc2twaXBlL29wZXJhdGlvblJlc3VsdHMvNjY3MzAyZmQtMDg3Mi00ZDUxLTg1M2EtMjc3ZDhjZGM4ZmZkP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletetaskpipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletetaskpipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "352" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:16:01 GMT" + "Thu, 09 Jul 2015 20:29:53 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "24aa055f-9b47-4c7c-95bf-305cbb77b054" + "e1370354-f811-4565-a6a3-9c1e80799808" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14990" ], "x-ms-request-id": [ - "ad4df563-cd60-43ac-97f9-ec0206f6ad13" + "de7915dc-91a6-43e3-8f60-1ce1091170c8" ], "x-ms-correlation-request-id": [ - "ad4df563-cd60-43ac-97f9-ec0206f6ad13" + "de7915dc-91a6-43e3-8f60-1ce1091170c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201602Z:ad4df563-cd60-43ac-97f9-ec0206f6ad13" + "WESTUS:20150709T202953Z:de7915dc-91a6-43e3-8f60-1ce1091170c8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:16:01 GMT" + "Thu, 09 Jul 2015 20:29:52 GMT" ], "ETag": [ - "0x8D225985578244B" + "0x8D2889D256466ED" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZXRhc2twaXBlL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletetaskpipe\",\r\n \"primary\": \"Shn69pOo65LjWmIeMicIoZhh+tAGeYCc7zFkHeQU73guHpG3nxdshYWcrcZWkemNP8bO49X4WaEnDO5hmzbltg==\",\r\n \"secondary\": \"17Zqg5Q7qcRYhkPMkwKGR15P77qDRmPwDN2YOAi8d5ZmNjaY+myMZR9vRo46RjQzW1SoWVwF13xyciviPUMkQw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "b7bdaa41-9e16-4328-bb52-aaebb76be92d" + "6fc3526a-ac95-45eb-9ca9-c0a828cc159c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "5fd65448-a26a-4551-bdde-dc142e4fec4c" + "7c56e605-6e77-41c1-bfcb-58065b2826c9" ], "x-ms-correlation-request-id": [ - "5fd65448-a26a-4551-bdde-dc142e4fec4c" + "7c56e605-6e77-41c1-bfcb-58065b2826c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201602Z:5fd65448-a26a-4551-bdde-dc142e4fec4c" + "WESTUS:20150709T202951Z:7c56e605-6e77-41c1-bfcb-58065b2826c9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:16:01 GMT" + "Thu, 09 Jul 2015 20:29:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZXRhc2twaXBlL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletetaskpipe\",\r\n \"primary\": \"Shn69pOo65LjWmIeMicIoZhh+tAGeYCc7zFkHeQU73guHpG3nxdshYWcrcZWkemNP8bO49X4WaEnDO5hmzbltg==\",\r\n \"secondary\": \"17Zqg5Q7qcRYhkPMkwKGR15P77qDRmPwDN2YOAi8d5ZmNjaY+myMZR9vRo46RjQzW1SoWVwF13xyciviPUMkQw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,7 +307,7 @@ "no-cache" ], "request-id": [ - "fef92540-5474-4a88-a2a2-3e3be6edf72b" + "bce7eb04-f989-4731-8b5d-657d2d1d83bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -274,19 +316,19 @@ "1194" ], "x-ms-request-id": [ - "62ecf55f-0cb0-4d47-bf35-74ee770fe104" + "d4530209-3cef-48dc-96b6-8c3a83f43a9b" ], "x-ms-correlation-request-id": [ - "62ecf55f-0cb0-4d47-bf35-74ee770fe104" + "d4530209-3cef-48dc-96b6-8c3a83f43a9b" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T201749Z:62ecf55f-0cb0-4d47-bf35-74ee770fe104" + "WESTUS:20150709T202953Z:d4530209-3cef-48dc-96b6-8c3a83f43a9b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:17:49 GMT" + "Thu, 09 Jul 2015 20:29:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"deleteTaskPipeWI\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "168" + "172" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "5bb0de6f-e136-4205-9011-27809848adcc" + "53aaf0ef-5548-437a-bf4a-55be0febbdbf" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:17:45 GMT" + "Thu, 09 Jul 2015 20:29:51 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:17:45 GMT" + "Thu, 09 Jul 2015 20:29:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "300957f1-10e8-40ce-a058-d66d1a6d7a74" + "fd90f2ff-a0ef-44f6-b1e3-80694bd2d453" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testdeletetaskpipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/deleteTaskPipeWI" ], "Date": [ - "Thu, 05 Mar 2015 20:17:45 GMT" + "Thu, 09 Jul 2015 20:29:51 GMT" ], "ETag": [ - "0x8D2259893817E9A" + "0x8D2889D24BF3901" ], "Location": [ - "https://testdeletetaskpipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/deleteTaskPipeWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,8 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/deleteTaskPipeWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrUGlwZVdJP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "be328844-83c5-44e5-81bd-46be576643d7" + "8fbd5b40-0b7f-402b-9ac4-d0ee6b606fd3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:17:45 GMT" + "Thu, 09 Jul 2015 20:29:51 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletetaskpipe.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletetaskpipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2259893817E9A\",\r\n \"lastModified\": \"2015-03-05T20:17:45.2655258Z\",\r\n \"creationTime\": \"2015-03-05T20:17:45.2655258Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:17:45.2655258Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletetaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"deleteTaskPipeWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/deleteTaskPipeWI\",\r\n \"eTag\": \"0x8D2889D24BF3901\",\r\n \"lastModified\": \"2015-07-09T20:29:52.0416001Z\",\r\n \"creationTime\": \"2015-07-09T20:29:52.0416001Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:29:52.0416001Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/deleteTaskPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:17:45 GMT" + "Thu, 09 Jul 2015 20:29:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9ec4082b-c7f6-48cc-a8c4-a161a3e2383b" + "b54bbbf4-0f2d-4592-a6a3-35970656b6cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:17:45 GMT" + "Thu, 09 Jul 2015 20:29:51 GMT" ], "ETag": [ - "0x8D2259893817E9A" + "0x8D2889D24BF3901" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,40 +448,40 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrUGlwZVdJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "150" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "71c64bbb-ba19-4b84-951b-6c937b4d3a32" + "cfda1a50-a4bd-42c9-96e5-133574b41c8c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:17:46 GMT" + "Thu, 09 Jul 2015 20:29:52 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:17:46 GMT" + "Thu, 09 Jul 2015 20:29:50 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "877772e2-a115-4274-8a23-715ed9703fee" + "d8eab740-7df6-486f-81db-71913c4e346b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://testdeletetaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Thu, 05 Mar 2015 20:17:46 GMT" + "Thu, 09 Jul 2015 20:29:50 GMT" ], "ETag": [ - "0x8D225989457B39F" + "0x8D2889D23DA98BA" ], "Location": [ - "https://testdeletetaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,119 +508,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe\",\r\n \"name\": \"testdeletetaskpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "769" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "2cba633f-e8e8-400e-978b-09294e2d9e99" - ], - "x-ms-correlation-request-id": [ - "2cba633f-e8e8-400e-978b-09294e2d9e99" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201748Z:2cba633f-e8e8-400e-978b-09294e2d9e99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:17:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZXRhc2twaXBlP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testdeletetaskpipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletetaskpipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "352" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:17:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "6f65ac60-ca3f-4fd1-a4cf-f58813ae1074" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "d9af8990-9c2f-4797-aff2-4b6c554b2dc0" - ], - "x-ms-correlation-request-id": [ - "d9af8990-9c2f-4797-aff2-4b6c554b2dc0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201749Z:d9af8990-9c2f-4797-aff2-4b6c554b2dc0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:17:49 GMT" - ], - "ETag": [ - "0x8D2259895D5CE98" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrUGlwZVdJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -586,16 +517,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6b1aac30-3f8e-4f52-92c6-f3d019ff4c8c" + "903002f6-abf0-4ff8-9b49-81439a2711ab" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:17:49 GMT" + "Thu, 09 Jul 2015 20:29:52 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletetaskpipe.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://testdeletetaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D225989457B39F\",\r\n \"creationTime\": \"2015-03-05T20:17:46.6693535Z\",\r\n \"lastModified\": \"2015-03-05T20:17:46.6693535Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:17:46.6693535Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889D23DA98BA\",\r\n \"creationTime\": \"2015-07-09T20:29:50.5432762Z\",\r\n \"lastModified\": \"2015-07-09T20:29:50.5432762Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:29:50.5432762Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -604,7 +535,7 @@ "chunked" ], "request-id": [ - "91bc76dd-92d9-4d4d-a245-fe7b5e575586" + "6da55b0c-4da0-44f9-8cfd-fad186f51516" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -613,7 +544,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:17:49 GMT" + "Thu, 09 Jul 2015 20:29:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -622,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrUGlwZVdJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -631,16 +562,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a5754cc4-7158-446c-bb8b-801c08519f47" + "5cf13126-84e5-4af2-b3ab-c04604b83845" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:17:51 GMT" + "Thu, 09 Jul 2015 20:29:54 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletetaskpipe.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -649,7 +580,7 @@ "chunked" ], "request-id": [ - "26524a33-751d-459a-beeb-89a9aaec7a3d" + "61bff277-f581-4f7c-9f64-a04812158f20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -658,7 +589,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:17:51 GMT" + "Thu, 09 Jul 2015 20:29:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,8 +598,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrUGlwZVdJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,28 +607,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b2422480-6182-41c2-87f4-739cf24e52cb" + "cec525dc-dc29-4d4c-949c-59b49bd09819" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:17:50 GMT" + "Thu, 09 Jul 2015 20:29:53 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletetaskpipe.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://testdeletetaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D225989457B39F\",\r\n \"creationTime\": \"2015-03-05T20:17:46.6693535Z\",\r\n \"lastModified\": \"2015-03-05T20:17:46.6693535Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:17:46.6693535Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889D23DA98BA\",\r\n \"creationTime\": \"2015-07-09T20:29:50.5432762Z\",\r\n \"lastModified\": \"2015-07-09T20:29:50.5432762Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:29:50.5432762Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:17:46 GMT" + "Thu, 09 Jul 2015 20:29:50 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2b10273b-1c85-4110-ab62-e8b53ad6e06f" + "9801116e-7549-4040-a912-568b82c71edd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,10 +637,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:17:50 GMT" + "Thu, 09 Jul 2015 20:29:53 GMT" ], "ETag": [ - "0x8D225989457B39F" + "0x8D2889D23DA98BA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -718,8 +649,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/deleteTaskPipeWI/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrUGlwZVdJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,13 +658,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bbe40efb-b9dd-41ae-8bd8-9478b99f03e0" + "8a3a49f0-3bb5-44cd-81b7-c5ed43c4a184" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:17:50 GMT" + "Thu, 09 Jul 2015 20:29:53 GMT" ] }, "ResponseBody": "", @@ -742,7 +673,7 @@ "chunked" ], "request-id": [ - "e4fc88c4-cbb0-4dd2-8358-085e7cd311ee" + "b0928c01-1c96-450d-ac44-43360cb3b4e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -751,7 +682,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:17:50 GMT" + "Thu, 09 Jul 2015 20:29:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -760,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/deleteTaskPipeWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9kZWxldGVUYXNrUGlwZVdJP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -769,13 +700,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cb3d53d4-cfde-4081-8cda-0cc7d93bef4b" + "5fba8ed3-e1e9-48e0-95f1-0284ade4c4ec" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:17:51 GMT" + "Thu, 09 Jul 2015 20:29:54 GMT" ] }, "ResponseBody": "", @@ -784,7 +715,7 @@ "chunked" ], "request-id": [ - "2f364bf7-6dbd-4674-9e2b-66fc13307fe0" + "50a15961-2993-4535-8ec8-357a66da595d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,451 +724,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:17:50 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZXRhc2twaXBlP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "6859ecef-eee5-45c6-bd39-deef8c1239c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "52f64fdf-616f-4f6e-94b0-d8ba66659de6" - ], - "x-ms-correlation-request-id": [ - "52f64fdf-616f-4f6e-94b0-d8ba66659de6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201753Z:52f64fdf-616f-4f6e-94b0-d8ba66659de6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:17:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe/operationResults/6859ecef-eee5-45c6-bd39-deef8c1239c2?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 20:29:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe/operationResults/6859ecef-eee5-45c6-bd39-deef8c1239c2?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZXRhc2twaXBlL29wZXJhdGlvblJlc3VsdHMvNjg1OWVjZWYtZWVlNS00NWM2LWJkMzktZGVlZjhjMTIzOWMyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "37e4bd67-feb6-4477-9aef-2591d7638c39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" - ], - "x-ms-request-id": [ - "973f24dc-1861-49d2-be0a-5d72c54d719e" - ], - "x-ms-correlation-request-id": [ - "973f24dc-1861-49d2-be0a-5d72c54d719e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201754Z:973f24dc-1861-49d2-be0a-5d72c54d719e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:17:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe/operationResults/6859ecef-eee5-45c6-bd39-deef8c1239c2?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-task-pipe/providers/Microsoft.Batch/batchAccounts/testdeletetaskpipe/operationResults/6859ecef-eee5-45c6-bd39-deef8c1239c2?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGRlbGV0ZXRhc2twaXBlL29wZXJhdGlvblJlc3VsdHMvNjg1OWVjZWYtZWVlNS00NWM2LWJkMzktZGVlZjhjMTIzOWMyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:18:08 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "0025aa33-5148-4d4b-a50c-30051244bf1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" - ], - "x-ms-request-id": [ - "71026a0c-0b43-46db-929f-c31528d5c057" - ], - "x-ms-correlation-request-id": [ - "71026a0c-0b43-46db-929f-c31528d5c057" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201809Z:71026a0c-0b43-46db-929f-c31528d5c057" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:18:08 GMT" - ], - "ETag": [ - "0x8D22598A17BA3F5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-task-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXRhc2stcGlwZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "53597a7b-c82b-4012-88d2-e006ae0e3fc1" - ], - "x-ms-correlation-request-id": [ - "53597a7b-c82b-4012-88d2-e006ae0e3fc1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201810Z:53597a7b-c82b-4012-88d2-e006ae0e3fc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:18:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSzoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSzoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWRUZUU3pveVJGQkpVRVV0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "b343c7bb-f295-4637-9fb0-a61d025af365" - ], - "x-ms-correlation-request-id": [ - "b343c7bb-f295-4637-9fb0-a61d025af365" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201810Z:b343c7bb-f295-4637-9fb0-a61d025af365" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:18:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSzoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSzoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWRUZUU3pveVJGQkpVRVV0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "b5c07f0d-005e-48f0-a14a-8143dc9db36c" - ], - "x-ms-correlation-request-id": [ - "b5c07f0d-005e-48f0-a14a-8143dc9db36c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201826Z:b5c07f0d-005e-48f0-a14a-8143dc9db36c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:18:25 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSzoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSzoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWRUZUU3pveVJGQkpVRVV0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "66e81367-9675-4c4a-8b68-51f978bd26c3" - ], - "x-ms-correlation-request-id": [ - "66e81367-9675-4c4a-8b68-51f978bd26c3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201841Z:66e81367-9675-4c4a-8b68-51f978bd26c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:18:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSzoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEVEFTSzoyRFBJUEUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWRUZUU3pveVJGQkpVRVV0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "1a42516e-189d-4e2e-9e75-7564b18e30a6" - ], - "x-ms-correlation-request-id": [ - "1a42516e-189d-4e2e-9e75-7564b18e30a6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T201856Z:1a42516e-189d-4e2e-9e75-7564b18e30a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:18:56 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskByName.json index 0665558a8832..b1d6a80f9334 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskByName.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-task?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LXRhc2s/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "613986f6-1ff7-4a98-9532-61a601a55b2f" + ], + "x-ms-correlation-request-id": [ + "613986f6-1ff7-4a98-9532-61a601a55b2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T202854Z:613986f6-1ff7-4a98-9532-61a601a55b2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 20:28:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task\",\r\n \"name\": \"test-get-task\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-request-id": [ - "0f90f814-a597-4d6c-9d5f-66710f7a9ff0" + "b2ab30fd-89fa-45a8-8bf5-19263e4be877" ], "x-ms-correlation-request-id": [ - "0f90f814-a597-4d6c-9d5f-66710f7a9ff0" + "b2ab30fd-89fa-45a8-8bf5-19263e4be877" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T202233Z:0f90f814-a597-4d6c-9d5f-66710f7a9ff0" + "WESTUS:20150709T202858Z:b2ab30fd-89fa-45a8-8bf5-19263e4be877" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:22:32 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXR0YXNrYnluYW1lP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 20:28:56 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" - ], "request-id": [ - "6d3dafd8-57b0-498f-ab4c-beb4696a3d17" + "02b489a4-a242-4f3f-91db-e30825054e71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], "x-ms-request-id": [ - "7bd8dc8b-1541-421e-8e07-aed7f8c95bbe" + "8f4ccbb0-da80-463e-b74c-464a5b536620" ], "x-ms-correlation-request-id": [ - "7bd8dc8b-1541-421e-8e07-aed7f8c95bbe" + "8f4ccbb0-da80-463e-b74c-464a5b536620" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T202237Z:7bd8dc8b-1541-421e-8e07-aed7f8c95bbe" + "WESTUS:20150709T202856Z:8f4ccbb0-da80-463e-b74c-464a5b536620" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:22:37 GMT" + "Thu, 09 Jul 2015 20:28:55 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname/operationResults/6d3dafd8-57b0-498f-ab4c-beb4696a3d17?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889D03BD4DA0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname/operationResults/6d3dafd8-57b0-498f-ab4c-beb4696a3d17?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXR0YXNrYnluYW1lL29wZXJhdGlvblJlc3VsdHMvNmQzZGFmZDgtNTdiMC00OThmLWFiNGMtYmViNDY5NmEzZDE3P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testgettaskbyname\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgettaskbyname.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "341" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:22:37 GMT" + "Thu, 09 Jul 2015 20:28:58 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "884439f1-2139-4b8b-80de-d33ce359c5e4" + "ca8912d9-52b8-4619-8076-17570b730405" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14992" ], "x-ms-request-id": [ - "376c0471-e755-4a22-ad5e-32bf4cefa0fb" + "d3722bb0-ae1e-4216-8863-bf036df82d19" ], "x-ms-correlation-request-id": [ - "376c0471-e755-4a22-ad5e-32bf4cefa0fb" + "d3722bb0-ae1e-4216-8863-bf036df82d19" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T202238Z:376c0471-e755-4a22-ad5e-32bf4cefa0fb" + "WESTUS:20150709T202858Z:d3722bb0-ae1e-4216-8863-bf036df82d19" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:22:37 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "ETag": [ - "0x8D2259941EC0E38" + "0x8D2889D04D0FC3E" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXR0YXNrYnluYW1lL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testgettaskbyname\",\r\n \"primary\": \"HdqN6AGiOkVP738epeYIUHe0jWsfWYs1ik3sgEzHA1uiSqEvVOWrcY2K2SUlGu5Ry1gDM6Ri5y9NYX/YZnGhOQ==\",\r\n \"secondary\": \"HcqJ5y3sa1jw777C908jIaclf+wbZpNimBl0aPSXVNkv8hXnNq8baZA7GVmDEB7lDA5zkUoF5NUmcVoNB8Y49Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "22b17efa-60f1-4ea2-82d8-0bb425e077a8" + "0d5399e2-9d9a-41c4-b03a-47cdaf03f8de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1197" ], "x-ms-request-id": [ - "c656393d-a7a3-4113-8178-6c8e52856533" + "597d9f41-3337-4c06-ae55-9f595f2b1f4e" ], "x-ms-correlation-request-id": [ - "c656393d-a7a3-4113-8178-6c8e52856533" + "597d9f41-3337-4c06-ae55-9f595f2b1f4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T202238Z:c656393d-a7a3-4113-8178-6c8e52856533" + "WESTUS:20150709T202856Z:597d9f41-3337-4c06-ae55-9f595f2b1f4e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:22:37 GMT" + "Thu, 09 Jul 2015 20:28:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXR0YXNrYnluYW1lL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testgettaskbyname\",\r\n \"primary\": \"HdqN6AGiOkVP738epeYIUHe0jWsfWYs1ik3sgEzHA1uiSqEvVOWrcY2K2SUlGu5Ry1gDM6Ri5y9NYX/YZnGhOQ==\",\r\n \"secondary\": \"HcqJ5y3sa1jw777C908jIaclf+wbZpNimBl0aPSXVNkv8hXnNq8baZA7GVmDEB7lDA5zkUoF5NUmcVoNB8Y49Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "ef481939-14d6-4055-b9ab-728255300d4f" + "a756852f-7e9f-49c5-984d-19b7ff684e2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1196" ], "x-ms-request-id": [ - "3974d765-62d6-46bd-afbc-267daf567340" + "c5c2ad28-ccab-4884-8d3c-1f0b5e5e0985" ], "x-ms-correlation-request-id": [ - "3974d765-62d6-46bd-afbc-267daf567340" + "c5c2ad28-ccab-4884-8d3c-1f0b5e5e0985" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T202346Z:3974d765-62d6-46bd-afbc-267daf567340" + "WESTUS:20150709T202858Z:c5c2ad28-ccab-4884-8d3c-1f0b5e5e0985" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:23:45 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testName\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"getTaskWI\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "164" + "165" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "d3aa5466-7c61-4da2-a6e1-ecdfd9861d29" + "79b62527-b869-42a6-a6c1-6a16d074f7eb" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:23:42 GMT" + "Thu, 09 Jul 2015 20:28:56 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:23:42 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "170165cd-4b06-4f8e-b214-5c60b0337f0c" + "8fa32635-15ab-41b7-bbaa-3a7cd867aca9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testgettaskbyname.batch.core.windows.net/workitems/testName" + "https://pstests.batch.core.windows.net/workitems/getTaskWI" ], "Date": [ - "Thu, 05 Mar 2015 20:23:42 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "ETag": [ - "0x8D2259968439669" + "0x8D2889D0418B8EC" ], "Location": [ - "https://testgettaskbyname.batch.core.windows.net/workitems/testName" + "https://pstests.batch.core.windows.net/workitems/getTaskWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,8 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/getTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9nZXRUYXNrV0k/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b4ba838f-c8c6-42b2-bbe5-cfd4ad1a1824" + "dd6de16c-7cd1-4181-aa06-79c49dcbbe28" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:23:42 GMT" + "Thu, 09 Jul 2015 20:28:56 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testgettaskbyname.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testName\",\r\n \"url\": \"https://testgettaskbyname.batch.core.windows.net/workitems/testName\",\r\n \"eTag\": \"0x8D2259968439669\",\r\n \"lastModified\": \"2015-03-05T20:23:42.2145129Z\",\r\n \"creationTime\": \"2015-03-05T20:23:42.2145129Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:23:42.2145129Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testgettaskbyname.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"getTaskWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/getTaskWI\",\r\n \"eTag\": \"0x8D2889D0418B8EC\",\r\n \"lastModified\": \"2015-07-09T20:28:57.2633324Z\",\r\n \"creationTime\": \"2015-07-09T20:28:57.2633324Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:57.2633324Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/getTaskWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:23:42 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2f652935-fa29-4997-ad0b-b723e05f292b" + "40abfe4d-72b1-4b13-bed4-554a9d8020be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:23:42 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "ETag": [ - "0x8D2259968439669" + "0x8D2889D0418B8EC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,40 +448,40 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testName/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/workitems/getTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9nZXRUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "150" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "0aacdff3-a34f-4911-9425-01b67a84ca09" + "c17d9e06-77bf-4f6b-b0f8-42a242de7b53" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:23:43 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:23:43 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f7bcf5c0-c728-4388-8fdb-067de61b30a4" + "418237e6-526c-490d-b34c-b4c25b01063b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://testgettaskbyname.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/getTaskWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Thu, 05 Mar 2015 20:23:43 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "ETag": [ - "0x8D2259968DCF1C8" + "0x8D2889D046DD090" ], "Location": [ - "https://testgettaskbyname.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/getTaskWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,119 +508,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname\",\r\n \"name\": \"testgettaskbyname\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "759" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "c6803779-59c0-493d-96b6-8d6cd6139214" - ], - "x-ms-correlation-request-id": [ - "c6803779-59c0-493d-96b6-8d6cd6139214" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T202344Z:c6803779-59c0-493d-96b6-8d6cd6139214" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:23:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXR0YXNrYnluYW1lP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testgettaskbyname\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgettaskbyname.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "341" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:23:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "a4f81e2c-bcfe-4efd-bba0-59aaa6930215" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "a6668a89-8916-425e-bd31-eab37da8c9bd" - ], - "x-ms-correlation-request-id": [ - "a6668a89-8916-425e-bd31-eab37da8c9bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T202345Z:a6668a89-8916-425e-bd31-eab37da8c9bd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:23:45 GMT" - ], - "ETag": [ - "0x8D225996A141F26" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testName/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/workitems/getTaskWI/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9nZXRUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -586,28 +517,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1d89a336-d99a-4445-823e-0cf878d7bdd1" + "f1fb5292-1bb4-409f-b1dc-6316d8a5b8b5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:23:46 GMT" + "Thu, 09 Jul 2015 20:28:58 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testgettaskbyname.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://testgettaskbyname.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2259968DCF1C8\",\r\n \"creationTime\": \"2015-03-05T20:23:43.2195528Z\",\r\n \"lastModified\": \"2015-03-05T20:23:43.2195528Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:23:43.2195528Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/getTaskWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889D046DD090\",\r\n \"creationTime\": \"2015-07-09T20:28:57.8209936Z\",\r\n \"lastModified\": \"2015-07-09T20:28:57.8209936Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:58.470558Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:28:57.8209936Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:28:58.470558Z\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:23:43 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "8fdd72a9-1f06-48e0-92ad-a8295a6a1b92" + "4168e96b-3051-42e9-86bd-e48ed8345d30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,10 +547,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:23:46 GMT" + "Thu, 09 Jul 2015 20:28:58 GMT" ], "ETag": [ - "0x8D2259968DCF1C8" + "0x8D2889D046DD090" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -628,8 +559,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testName/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzL3Rlc3RUYXNrP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/workitems/getTaskWI/jobs/job-0000000001/tasks/testTask?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9nZXRUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcy90ZXN0VGFzaz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -637,28 +568,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "aa1fa458-0687-47ba-960f-a2e5d0a2cfdc" + "2ac12349-d465-47bb-8aeb-40e6361b5f3c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:23:46 GMT" + "Thu, 09 Jul 2015 20:28:58 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testgettaskbyname.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://testgettaskbyname.batch.core.windows.net/workitems/testName/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2259968DCF1C8\",\r\n \"creationTime\": \"2015-03-05T20:23:43.2195528Z\",\r\n \"lastModified\": \"2015-03-05T20:23:43.2195528Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:23:43.2195528Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/getTaskWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889D046DD090\",\r\n \"creationTime\": \"2015-07-09T20:28:57.8209936Z\",\r\n \"lastModified\": \"2015-07-09T20:28:57.8209936Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:58.5647702Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:28:58.470558Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:28:58.470558Z\",\r\n \"endTime\": \"2015-07-09T20:28:58.5647702Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:23:43 GMT" + "Thu, 09 Jul 2015 20:28:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3849b162-f4d2-4a0e-9df3-8361d846c5b1" + "2d39f6f6-d041-48b6-8577-fd08113464a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -667,10 +598,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:23:46 GMT" + "Thu, 09 Jul 2015 20:28:58 GMT" ], "ETag": [ - "0x8D2259968DCF1C8" + "0x8D2889D046DD090" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,8 +610,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testName?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/getTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9nZXRUYXNrV0k/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -688,13 +619,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0a4f0615-a53c-4220-bf48-fe21d718cb49" + "b7c8b546-ebda-4c74-81d1-203795364321" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:23:46 GMT" + "Thu, 09 Jul 2015 20:28:58 GMT" ] }, "ResponseBody": "", @@ -703,7 +634,7 @@ "chunked" ], "request-id": [ - "e3f0543f-26d1-4114-8f55-c119000f42a7" + "23d288cd-94bb-44ec-b7ae-fc2512147428" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -712,337 +643,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:23:46 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXR0YXNrYnluYW1lP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "ad3e5487-45c5-4d5c-a79e-06c014473257" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" - ], - "x-ms-request-id": [ - "249c6a67-ca4b-4b9e-829e-1e7cfd408afb" - ], - "x-ms-correlation-request-id": [ - "249c6a67-ca4b-4b9e-829e-1e7cfd408afb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T202349Z:249c6a67-ca4b-4b9e-829e-1e7cfd408afb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:23:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname/operationResults/ad3e5487-45c5-4d5c-a79e-06c014473257?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 20:28:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task/providers/Microsoft.Batch/batchAccounts/testgettaskbyname/operationResults/ad3e5487-45c5-4d5c-a79e-06c014473257?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2svcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RnZXR0YXNrYnluYW1lL29wZXJhdGlvblJlc3VsdHMvYWQzZTU0ODctNDVjNS00ZDVjLWE3OWUtMDZjMDE0NDczMjU3P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:23:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d80d81f5-3065-4521-a393-b4d214565a75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "cb80ad4d-d74f-4669-a065-4f300b24cf06" - ], - "x-ms-correlation-request-id": [ - "cb80ad4d-d74f-4669-a065-4f300b24cf06" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T202349Z:cb80ad4d-d74f-4669-a065-4f300b24cf06" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:23:48 GMT" - ], - "ETag": [ - "0x8D225996C5292DB" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-task?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LXRhc2s/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], - "x-ms-request-id": [ - "efc8dbc3-6863-49c9-932d-c23175f0f314" - ], - "x-ms-correlation-request-id": [ - "efc8dbc3-6863-49c9-932d-c23175f0f314" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T202350Z:efc8dbc3-6863-49c9-932d-c23175f0f314" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:23:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVZFRlRTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "a624feb6-e4ab-4db0-b115-dc4296319edc" - ], - "x-ms-correlation-request-id": [ - "a624feb6-e4ab-4db0-b115-dc4296319edc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T202350Z:a624feb6-e4ab-4db0-b115-dc4296319edc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:23:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVZFRlRTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "d6fe8641-0ce0-46b7-8404-a674048f0b42" - ], - "x-ms-correlation-request-id": [ - "d6fe8641-0ce0-46b7-8404-a674048f0b42" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T202405Z:d6fe8641-0ce0-46b7-8404-a674048f0b42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:24:05 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVZFRlRTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "3ac88a3f-598e-4df1-a8f1-eabd51c5b256" - ], - "x-ms-correlation-request-id": [ - "3ac88a3f-598e-4df1-a8f1-eabd51c5b256" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T202421Z:3ac88a3f-598e-4df1-a8f1-eabd51c5b256" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:24:20 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskRequiredParameters.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskRequiredParameters.json index c9d4a26f9050..ea0417a8c021 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskRequiredParameters.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestGetTaskRequiredParameters.json @@ -1,299 +1,5 @@ { "Entries": [ - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-task-params?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params\",\r\n \"name\": \"test-get-task-params\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "193" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "6166e568-b90a-4289-beb1-209f3544722e" - ], - "x-ms-correlation-request-id": [ - "6166e568-b90a-4289-beb1-209f3544722e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231205Z:6166e568-b90a-4289-beb1-209f3544722e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:12:04 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0dGFza3BhcmFtcz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "request-id": [ - "33261626-a13c-40df-864e-b0bd54b917b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "ffafe8da-6e46-4486-9605-ee1d672d91dc" - ], - "x-ms-correlation-request-id": [ - "ffafe8da-6e46-4486-9605-ee1d672d91dc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231209Z:ffafe8da-6e46-4486-9605-ee1d672d91dc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:12:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams/operationResults/33261626-a13c-40df-864e-b0bd54b917b0?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams/operationResults/33261626-a13c-40df-864e-b0bd54b917b0?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0dGFza3BhcmFtcy9vcGVyYXRpb25SZXN1bHRzLzMzMjYxNjI2LWExM2MtNDBkZi04NjRlLWIwYmQ1NGI5MTdiMD9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testgettaskparams\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgettaskparams.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 23 Feb 2015 23:12:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "979635ef-4604-4166-98ae-cc81128d0c35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" - ], - "x-ms-request-id": [ - "7ffe540c-7fab-4013-a18e-b018b269ca0d" - ], - "x-ms-correlation-request-id": [ - "7ffe540c-7fab-4013-a18e-b018b269ca0d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231209Z:7ffe540c-7fab-4013-a18e-b018b269ca0d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:12:09 GMT" - ], - "ETag": [ - "0x8D21DD548753975" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0dGFza3BhcmFtcy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"accountName\": \"testgettaskparams\",\r\n \"primary\": \"+vjxeNo87hlv92Z8TKxkjjnA6Tk8gaEtGrt/aSpXP+QRCyC9mJlxnJvaozyiZoq8Qovy3tOIRNM+w6xCwpI7rQ==\",\r\n \"secondary\": \"J/iuBgdlBPkS0mCFOtiI2V3AksuP/k+W+6Ho/uYuohWKCEpxu+23m3VcUkoo4ir2T1HAZeo1DNNxolraahjReA==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "239" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "85f75be2-f0ce-467c-bcf1-2cd925e3a060" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "b4633aec-baf6-4e6e-a7c2-11f561eadd8c" - ], - "x-ms-correlation-request-id": [ - "b4633aec-baf6-4e6e-a7c2-11f561eadd8c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231209Z:b4633aec-baf6-4e6e-a7c2-11f561eadd8c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:12:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0dGFza3BhcmFtcy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"accountName\": \"testgettaskparams\",\r\n \"primary\": \"+vjxeNo87hlv92Z8TKxkjjnA6Tk8gaEtGrt/aSpXP+QRCyC9mJlxnJvaozyiZoq8Qovy3tOIRNM+w6xCwpI7rQ==\",\r\n \"secondary\": \"J/iuBgdlBPkS0mCFOtiI2V3AksuP/k+W+6Ho/uYuohWKCEpxu+23m3VcUkoo4ir2T1HAZeo1DNNxolraahjReA==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "239" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "1db9da43-faeb-4496-aa88-03af958517fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "0660943d-9b9d-4a6a-964c-3fa1f9be40e2" - ], - "x-ms-correlation-request-id": [ - "0660943d-9b9d-4a6a-964c-3fa1f9be40e2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231251Z:0660943d-9b9d-4a6a-964c-3fa1f9be40e2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:12:51 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", @@ -304,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams\",\r\n \"name\": \"testgettaskparams\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "766" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14999" ], "x-ms-request-id": [ - "9e59af3e-8cc0-4f85-a041-b5dc87758161" + "d8617d52-1795-44b7-ac55-0d1b99f487dc" ], "x-ms-correlation-request-id": [ - "9e59af3e-8cc0-4f85-a041-b5dc87758161" + "d8617d52-1795-44b7-ac55-0d1b99f487dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150223T231250Z:9e59af3e-8cc0-4f85-a041-b5dc87758161" + "WESTUS:20150709T203014Z:d8617d52-1795-44b7-ac55-0d1b99f487dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,28 +43,28 @@ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 23:12:50 GMT" + "Thu, 09 Jul 2015 20:30:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0dGFza3BhcmFtcz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testgettaskparams\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgettaskparams.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Mon, 23 Feb 2015 23:12:50 GMT" + "Thu, 09 Jul 2015 20:30:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "19154c61-406f-41da-9607-c2d463c96507" + "527a88f0-ef44-4533-b2bc-f0fa7deaad7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14997" ], "x-ms-request-id": [ - "2a088a4a-6b91-4580-ac93-8f1a69aca2e1" + "838be0c7-a8ea-4267-9e7f-0fa41b68c878" ], "x-ms-correlation-request-id": [ - "2a088a4a-6b91-4580-ac93-8f1a69aca2e1" + "838be0c7-a8ea-4267-9e7f-0fa41b68c878" ], "x-ms-routing-request-id": [ - "WESTUS:20150223T231251Z:2a088a4a-6b91-4580-ac93-8f1a69aca2e1" + "WESTUS:20150709T203015Z:838be0c7-a8ea-4267-9e7f-0fa41b68c878" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 23:12:51 GMT" + "Thu, 09 Jul 2015 20:30:14 GMT" ], "ETag": [ - "0x8D21DD5611C8B86" + "0x8D2889D32CB922D" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,382 +112,61 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0dGFza3BhcmFtcz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "343cd905-5954-4f7b-b447-f056c0ec661a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "0f4ac380-0f2a-41d7-927d-0cc1a42e41ff" - ], - "x-ms-correlation-request-id": [ - "0f4ac380-0f2a-41d7-927d-0cc1a42e41ff" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231253Z:0f4ac380-0f2a-41d7-927d-0cc1a42e41ff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:12:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams/operationResults/343cd905-5954-4f7b-b447-f056c0ec661a?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-task-params/providers/Microsoft.Batch/batchAccounts/testgettaskparams/operationResults/343cd905-5954-4f7b-b447-f056c0ec661a?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0dGFza3BhcmFtcy9vcGVyYXRpb25SZXN1bHRzLzM0M2NkOTA1LTU5NTQtNGY3Yi1iNDQ3LWYwNTZjMGVjNjYxYT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Last-Modified": [ - "Mon, 23 Feb 2015 23:12:53 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "84f6674a-e661-4b84-8d13-37071aa61087" + "2dbb11a7-923d-40be-b1bc-8e3de6286fb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "b6914ae2-6d60-486a-92e8-e6f3a301be5d" + "3ea1f6e7-b76f-4857-8bd9-aba652707004" ], "x-ms-correlation-request-id": [ - "b6914ae2-6d60-486a-92e8-e6f3a301be5d" + "3ea1f6e7-b76f-4857-8bd9-aba652707004" ], "x-ms-routing-request-id": [ - "WESTUS:20150223T231254Z:b6914ae2-6d60-486a-92e8-e6f3a301be5d" + "WESTUS:20150709T203015Z:3ea1f6e7-b76f-4857-8bd9-aba652707004" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 23:12:53 GMT" - ], - "ETag": [ - "0x8D21DD562D9F8D6" + "Thu, 09 Jul 2015 20:30:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-task-params?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LXRhc2stcGFyYW1zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "a266380f-6cd1-49a1-9969-f437d9160283" - ], - "x-ms-correlation-request-id": [ - "a266380f-6cd1-49a1-9969-f437d9160283" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231254Z:a266380f-6cd1-49a1-9969-f437d9160283" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:12:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSzoyRFBBUkFNUy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSzoyRFBBUkFNUy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVZFRlRTem95UkZCQlVrRk5VeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "d07fb6c8-0a98-4e02-9bb6-b8a8df7bc43b" - ], - "x-ms-correlation-request-id": [ - "d07fb6c8-0a98-4e02-9bb6-b8a8df7bc43b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231255Z:d07fb6c8-0a98-4e02-9bb6-b8a8df7bc43b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:12:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSzoyRFBBUkFNUy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSzoyRFBBUkFNUy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVZFRlRTem95UkZCQlVrRk5VeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "1d53ac74-0b74-4f21-b7f2-96f831b3e449" - ], - "x-ms-correlation-request-id": [ - "1d53ac74-0b74-4f21-b7f2-96f831b3e449" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231310Z:1d53ac74-0b74-4f21-b7f2-96f831b3e449" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:13:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSzoyRFBBUkFNUy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSzoyRFBBUkFNUy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVZFRlRTem95UkZCQlVrRk5VeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "dc98dcff-5881-4d49-8155-04c31a82c8b6" - ], - "x-ms-correlation-request-id": [ - "dc98dcff-5881-4d49-8155-04c31a82c8b6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231325Z:dc98dcff-5881-4d49-8155-04c31a82c8b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:13:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSzoyRFBBUkFNUy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEVEFTSzoyRFBBUkFNUy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVZFRlRTem95UkZCQlVrRk5VeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "76c5f147-95b4-4bbd-b2ef-83164cb0bff0" - ], - "x-ms-correlation-request-id": [ - "76c5f147-95b4-4bbd-b2ef-83164cb0bff0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150223T231340Z:76c5f147-95b4-4bbd-b2ef-83164cb0bff0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 23:13:40 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllTasks.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllTasks.json index d4b235e109d0..464b2ca488df 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllTasks.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllTasks.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-task?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC10YXNrP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "5d098772-2cdf-4e4c-8221-314110373333" + ], + "x-ms-correlation-request-id": [ + "5d098772-2cdf-4e4c-8221-314110373333" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T203124Z:5d098772-2cdf-4e4c-8221-314110373333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 20:31:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task\",\r\n \"name\": \"test-list-task\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "181" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-request-id": [ - "795c7f2b-3548-409b-a98a-8b440fb90f26" + "f59cc1b0-36ea-4161-b8e1-25d02081592b" ], "x-ms-correlation-request-id": [ - "795c7f2b-3548-409b-a98a-8b440fb90f26" + "f59cc1b0-36ea-4161-b8e1-25d02081592b" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203210Z:795c7f2b-3548-409b-a98a-8b440fb90f26" + "WESTUS:20150709T203127Z:f59cc1b0-36ea-4161-b8e1-25d02081592b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:32:10 GMT" + "Thu, 09 Jul 2015 20:31:27 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2s/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 20:31:24 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], "request-id": [ - "54fdaa0e-6ed1-4121-8840-f686dca8e6cf" + "f85b61af-4063-4e73-8e62-41a943428f28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], "x-ms-request-id": [ - "32b928dd-e8dc-4037-927c-65e23ba58687" + "0f2a4acc-40c8-415b-8e30-547eff6f8975" ], "x-ms-correlation-request-id": [ - "32b928dd-e8dc-4037-927c-65e23ba58687" + "0f2a4acc-40c8-415b-8e30-547eff6f8975" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203214Z:32b928dd-e8dc-4037-927c-65e23ba58687" + "WESTUS:20150709T203124Z:0f2a4acc-40c8-415b-8e30-547eff6f8975" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:32:14 GMT" + "Thu, 09 Jul 2015 20:31:24 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask/operationResults/54fdaa0e-6ed1-4121-8840-f686dca8e6cf?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889D5C0928F3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask/operationResults/54fdaa0e-6ed1-4121-8840-f686dca8e6cf?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2svb3BlcmF0aW9uUmVzdWx0cy81NGZkYWEwZS02ZWQxLTQxMjEtODg0MC1mNjg2ZGNhOGU2Y2Y/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlisttask\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlisttask.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "327" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:32:14 GMT" + "Thu, 09 Jul 2015 20:31:27 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4a9d0797-5244-4d29-9df4-169d963d17a9" + "d5fa1076-9ab6-4d28-93a5-e6765c155e44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14992" ], "x-ms-request-id": [ - "fdfa9a97-e20e-4502-9cdc-0bf56593151c" + "8260e05b-adde-4d0e-965d-699a77f1b6e9" ], "x-ms-correlation-request-id": [ - "fdfa9a97-e20e-4502-9cdc-0bf56593151c" + "8260e05b-adde-4d0e-965d-699a77f1b6e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203214Z:fdfa9a97-e20e-4502-9cdc-0bf56593151c" + "WESTUS:20150709T203127Z:8260e05b-adde-4d0e-965d-699a77f1b6e9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:32:14 GMT" + "Thu, 09 Jul 2015 20:31:26 GMT" ], "ETag": [ - "0x8D2259A99755C29" + "0x8D2889D5DAC6D57" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2svbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlisttask\",\r\n \"primary\": \"WpXWGd9sMuf11zu9mTOiypx6/8acYScnzRIqgzgouJE2ZXVm58X1+4i9/Y3KrJl36CaY5/Up0TlszG1j/kKV+A==\",\r\n \"secondary\": \"QmPzSpxi9p/PapC7nxmrrbkWeuA5HnyV+Rz1A/cGdsTEiLdDymTU/G2YZNH65WYNshSFZpUph/qKUERwo2HO2g==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,7 +250,7 @@ "no-cache" ], "request-id": [ - "8b04a805-b4ee-4ada-9429-be123510a79b" + "94829b68-cbbb-4f8a-9539-2867af0a72a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -217,19 +259,19 @@ "1193" ], "x-ms-request-id": [ - "aa0565f0-a597-4ba1-8901-097c2f10076f" + "cb19c44f-70d9-40ea-b80d-1a1f250e1b70" ], "x-ms-correlation-request-id": [ - "aa0565f0-a597-4ba1-8901-097c2f10076f" + "cb19c44f-70d9-40ea-b80d-1a1f250e1b70" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203214Z:aa0565f0-a597-4ba1-8901-097c2f10076f" + "WESTUS:20150709T203125Z:cb19c44f-70d9-40ea-b80d-1a1f250e1b70" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:32:14 GMT" + "Thu, 09 Jul 2015 20:31:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2svbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlisttask\",\r\n \"primary\": \"WpXWGd9sMuf11zu9mTOiypx6/8acYScnzRIqgzgouJE2ZXVm58X1+4i9/Y3KrJl36CaY5/Up0TlszG1j/kKV+A==\",\r\n \"secondary\": \"QmPzSpxi9p/PapC7nxmrrbkWeuA5HnyV+Rz1A/cGdsTEiLdDymTU/G2YZNH65WYNshSFZpUph/qKUERwo2HO2g==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,7 +307,7 @@ "no-cache" ], "request-id": [ - "9f2d1c7a-0e02-4950-bb71-ab4ad84be9c1" + "80a78bcd-c9b6-4f5c-b12d-c45cda8da22f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -274,19 +316,19 @@ "1192" ], "x-ms-request-id": [ - "f22e1ad1-d4fa-44c4-accf-7baaff31347e" + "0299edd3-6a3d-423c-8ae6-b2f04f1b3fe4" ], "x-ms-correlation-request-id": [ - "f22e1ad1-d4fa-44c4-accf-7baaff31347e" + "0299edd3-6a3d-423c-8ae6-b2f04f1b3fe4" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203630Z:f22e1ad1-d4fa-44c4-accf-7baaff31347e" + "WESTUS:20150709T203127Z:0299edd3-6a3d-423c-8ae6-b2f04f1b3fe4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:36:30 GMT" + "Thu, 09 Jul 2015 20:31:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"listTaskWI\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "168" + "166" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "36be3486-b6e7-463d-8fcd-7186e124b06f" + "f08022e1-923f-4978-8642-e15718297f14" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:24 GMT" + "Thu, 09 Jul 2015 20:31:24 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:36:24 GMT" + "Thu, 09 Jul 2015 20:31:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1efc8aa0-7fcc-4e20-b1fd-eee64fb96ed0" + "fb01bb5a-8677-4f02-97a9-ff7b9e72d178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttask.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/listTaskWI" ], "Date": [ - "Thu, 05 Mar 2015 20:36:24 GMT" + "Thu, 09 Jul 2015 20:31:23 GMT" ], "ETag": [ - "0x8D2259B2ECEC7BA" + "0x8D2889D5C8DAAC1" ], "Location": [ - "https://testlisttask.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/listTaskWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,8 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/listTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1dJP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f88f638f-26ae-4b67-916c-7af68e12789b" + "bcb73c26-0c76-47e9-9a0b-39829dcc7cad" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:25 GMT" + "Thu, 09 Jul 2015 20:31:25 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttask.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2259B2ECEC7BA\",\r\n \"lastModified\": \"2015-03-05T20:36:24.8123322Z\",\r\n \"creationTime\": \"2015-03-05T20:36:24.8123322Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:36:24.8123322Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"listTaskWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI\",\r\n \"eTag\": \"0x8D2889D5C8DAAC1\",\r\n \"lastModified\": \"2015-07-09T20:31:25.6692417Z\",\r\n \"creationTime\": \"2015-07-09T20:31:25.6692417Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:25.6692417Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:36:24 GMT" + "Thu, 09 Jul 2015 20:31:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "cb848c02-c7b5-4b49-8ac1-f98d1d09a358" + "6da43618-7466-4bc8-92b3-99609d2094ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:36:25 GMT" + "Thu, 09 Jul 2015 20:31:25 GMT" ], "ETag": [ - "0x8D2259B2ECEC7BA" + "0x8D2889D5C8DAAC1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,40 +448,40 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1dJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "151" + "150" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "2f82d45d-ccbd-409c-8ab4-5fd80d041614" + "c55975c0-c149-4474-ae62-4dbeaaf8dbc8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:25 GMT" + "Thu, 09 Jul 2015 20:31:25 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:36:25 GMT" + "Thu, 09 Jul 2015 20:31:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e73d3b7c-c528-46e0-a25f-56808d75b76f" + "55c52e2a-6155-4602-a56b-e9424a4d4f71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1" + "https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask1" ], "Date": [ - "Thu, 05 Mar 2015 20:36:25 GMT" + "Thu, 09 Jul 2015 20:31:25 GMT" ], "ETag": [ - "0x8D2259B2F7247A3" + "0x8D2889D5CEDDBDE" ], "Location": [ - "https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1" + "https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,40 +508,40 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1dJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "151" + "150" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "de0f9b4c-905c-4526-8db2-e06accc6865a" + "e22e94e8-9002-4856-867d-aa442cfd49e9" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:26 GMT" + "Thu, 09 Jul 2015 20:31:26 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:36:26 GMT" + "Thu, 09 Jul 2015 20:31:26 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "78a4af9c-932b-4768-bb8b-cc0e78b5b281" + "5950d1e3-5e61-42c1-8a73-2bb2ccc8b260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,16 +550,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2" + "https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask2" ], "Date": [ - "Thu, 05 Mar 2015 20:36:26 GMT" + "Thu, 09 Jul 2015 20:31:26 GMT" ], "ETag": [ - "0x8D2259B2FE25902" + "0x8D2889D5D0061FD" ], "Location": [ - "https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2" + "https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -526,40 +568,40 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1dJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask3\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask3\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "151" + "150" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "0d2b866b-5f57-4b82-b7ca-2e2ba78bd8e4" + "7770c178-e727-4a4d-9b45-d88d3a176ad1" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:26 GMT" + "Thu, 09 Jul 2015 20:31:26 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:36:27 GMT" + "Thu, 09 Jul 2015 20:31:27 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a6130550-a7c6-46ab-a72a-5780dcbabcf5" + "5847880e-8961-478b-af53-143337e87884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -568,16 +610,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask3" + "https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask3" ], "Date": [ - "Thu, 05 Mar 2015 20:36:26 GMT" + "Thu, 09 Jul 2015 20:31:26 GMT" ], "ETag": [ - "0x8D2259B3050AB93" + "0x8D2889D5D90135D" ], "Location": [ - "https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask3" + "https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -586,119 +628,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask\",\r\n \"name\": \"testlisttask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "750" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "2d7b8836-9604-448b-ac08-d4dc9f147aa7" - ], - "x-ms-correlation-request-id": [ - "2d7b8836-9604-448b-ac08-d4dc9f147aa7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203629Z:2d7b8836-9604-448b-ac08-d4dc9f147aa7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:36:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2s/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlisttask\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlisttask.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "327" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:36:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d10d59a6-7ae5-44ef-a78b-01d4b0ff5de4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "0b7d4a5b-1751-427c-9f2f-d7c805b7ed46" - ], - "x-ms-correlation-request-id": [ - "0b7d4a5b-1751-427c-9f2f-d7c805b7ed46" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203630Z:0b7d4a5b-1751-427c-9f2f-d7c805b7ed46" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:36:30 GMT" - ], - "ETag": [ - "0x8D2259B31D089A2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1dJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -706,16 +637,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0cd3a568-2e1f-49a4-b6ce-12185c6c64aa" + "e4a8d069-8d85-42f8-9c9b-8c100ef3ee70" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:30 GMT" + "Thu, 09 Jul 2015 20:31:27 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttask.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2259B2F7247A3\",\r\n \"creationTime\": \"2015-03-05T20:36:25.8838435Z\",\r\n \"lastModified\": \"2015-03-05T20:36:25.8838435Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:36:25.8838435Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2259B2FE25902\",\r\n \"creationTime\": \"2015-03-05T20:36:26.6182914Z\",\r\n \"lastModified\": \"2015-03-05T20:36:26.6182914Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:36:26.6182914Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask3\",\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask3\",\r\n \"eTag\": \"0x8D2259B3050AB93\",\r\n \"creationTime\": \"2015-03-05T20:36:27.3413011Z\",\r\n \"lastModified\": \"2015-03-05T20:36:27.3413011Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:36:27.3413011Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2889D5CEDDBDE\",\r\n \"creationTime\": \"2015-07-09T20:31:26.2996446Z\",\r\n \"lastModified\": \"2015-07-09T20:31:26.2996446Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:26.2996446Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2889D5D0061FD\",\r\n \"creationTime\": \"2015-07-09T20:31:26.4210429Z\",\r\n \"lastModified\": \"2015-07-09T20:31:26.4210429Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:26.4210429Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask3\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask3\",\r\n \"eTag\": \"0x8D2889D5D90135D\",\r\n \"creationTime\": \"2015-07-09T20:31:27.3627485Z\",\r\n \"lastModified\": \"2015-07-09T20:31:27.3627485Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:27.3627485Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -724,7 +655,7 @@ "chunked" ], "request-id": [ - "99592f7c-74b9-4ea0-ad04-eb2ade0a3a5e" + "c1a5b68e-d8cd-44d5-93c3-e76bcc3e41e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,7 +664,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:36:30 GMT" + "Thu, 09 Jul 2015 20:31:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -742,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1dJL2pvYnMvam9iLTAwMDAwMDAwMDEvdGFza3M/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -751,16 +682,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f7f3c72a-5771-44b0-8cc3-8c8b1f58ac90" + "52bfae3f-f673-470c-996f-4f71b0701b1d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:31 GMT" + "Thu, 09 Jul 2015 20:31:28 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttask.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2259B2F7247A3\",\r\n \"creationTime\": \"2015-03-05T20:36:25.8838435Z\",\r\n \"lastModified\": \"2015-03-05T20:36:25.8838435Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:36:25.8838435Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2259B2FE25902\",\r\n \"creationTime\": \"2015-03-05T20:36:26.6182914Z\",\r\n \"lastModified\": \"2015-03-05T20:36:26.6182914Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:36:26.6182914Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask3\",\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask3\",\r\n \"eTag\": \"0x8D2259B3050AB93\",\r\n \"creationTime\": \"2015-03-05T20:36:27.3413011Z\",\r\n \"lastModified\": \"2015-03-05T20:36:27.3413011Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:36:27.3413011Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2889D5CEDDBDE\",\r\n \"creationTime\": \"2015-07-09T20:31:26.2996446Z\",\r\n \"lastModified\": \"2015-07-09T20:31:26.2996446Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:28.2718868Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:31:28.1728852Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:28.1728852Z\",\r\n \"endTime\": \"2015-07-09T20:31:28.2718868Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_3-20150709t190321z\"\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2889D5D0061FD\",\r\n \"creationTime\": \"2015-07-09T20:31:26.4210429Z\",\r\n \"lastModified\": \"2015-07-09T20:31:26.4210429Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:28.1956099Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:31:28.1053945Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:28.1053945Z\",\r\n \"endTime\": \"2015-07-09T20:31:28.1956099Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n },\r\n {\r\n \"name\": \"testTask3\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001/tasks/testTask3\",\r\n \"eTag\": \"0x8D2889D5D90135D\",\r\n \"creationTime\": \"2015-07-09T20:31:27.3627485Z\",\r\n \"lastModified\": \"2015-07-09T20:31:27.3627485Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:28.5199504Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:31:28.4324061Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:28.4324061Z\",\r\n \"endTime\": \"2015-07-09T20:31:28.5199504Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_2-20150709t190321z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -769,7 +700,7 @@ "chunked" ], "request-id": [ - "2b7758b3-c802-49cc-a8bd-33d7e654a13d" + "532b0dcd-2acd-43ce-a10b-2053a0b486ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,7 +709,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:36:31 GMT" + "Thu, 09 Jul 2015 20:31:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -787,8 +718,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskWI/jobs/job-0000000001?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1dJL2pvYnMvam9iLTAwMDAwMDAwMDE/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -796,28 +727,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "19f08697-b9f4-4421-aaf8-c5e3b721b5e5" + "d00f50a6-77a2-4d38-9c60-8c405b4226cb" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:31 GMT" + "Thu, 09 Jul 2015 20:31:27 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttask.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlisttask.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2259B2ED6B69B\",\r\n \"lastModified\": \"2015-03-05T20:36:24.8643227Z\",\r\n \"creationTime\": \"2015-03-05T20:36:24.8473393Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:36:24.8643227Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-05T20:36:24.8643227Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskWI/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889D5C97E3BA\",\r\n \"lastModified\": \"2015-07-09T20:31:25.7362362Z\",\r\n \"creationTime\": \"2015-07-09T20:31:25.7192319Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:25.7362362Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:25.7362362Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:36:24 GMT" + "Thu, 09 Jul 2015 20:31:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3dba64b4-5df1-4fd3-8d85-e215e78eda65" + "6d09a5c6-17ca-4e9a-b3a3-fd6ff7d61350" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,10 +757,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:36:30 GMT" + "Thu, 09 Jul 2015 20:31:28 GMT" ], "ETag": [ - "0x8D2259B2ED6B69B" + "0x8D2889D5C97E3BA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -838,8 +769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/listTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1dJP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -847,13 +778,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "dc26efc6-3b07-4710-bccc-4a016e1a9d22" + "150904c8-c78f-4682-8a4e-faf0acd18a1d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:36:31 GMT" + "Thu, 09 Jul 2015 20:31:28 GMT" ] }, "ResponseBody": "", @@ -862,7 +793,7 @@ "chunked" ], "request-id": [ - "4f9d9842-e5a7-44b9-93c8-d689cc0bc157" + "537d6360-7aba-4103-9362-7e99760302a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -871,451 +802,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:36:31 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2s/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "50cfdd97-4dfe-4dd0-9a33-816ba0f7d5f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" - ], - "x-ms-request-id": [ - "aaf0726c-8b58-4bd0-aee6-73c742a388b6" - ], - "x-ms-correlation-request-id": [ - "aaf0726c-8b58-4bd0-aee6-73c742a388b6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203634Z:aaf0726c-8b58-4bd0-aee6-73c742a388b6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:36:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask/operationResults/50cfdd97-4dfe-4dd0-9a33-816ba0f7d5f9?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask/operationResults/50cfdd97-4dfe-4dd0-9a33-816ba0f7d5f9?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2svb3BlcmF0aW9uUmVzdWx0cy81MGNmZGQ5Ny00ZGZlLTRkZDAtOWEzMy04MTZiYTBmN2Q1Zjk/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "7e5100dd-2f3c-42d5-968d-5360efb0c0c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "bf60b83c-a6a0-4ea9-a117-6bfc92d89bc5" - ], - "x-ms-correlation-request-id": [ - "bf60b83c-a6a0-4ea9-a117-6bfc92d89bc5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203634Z:bf60b83c-a6a0-4ea9-a117-6bfc92d89bc5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:36:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask/operationResults/50cfdd97-4dfe-4dd0-9a33-816ba0f7d5f9?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task/providers/Microsoft.Batch/batchAccounts/testlisttask/operationResults/50cfdd97-4dfe-4dd0-9a33-816ba0f7d5f9?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2svb3BlcmF0aW9uUmVzdWx0cy81MGNmZGQ5Ny00ZGZlLTRkZDAtOWEzMy04MTZiYTBmN2Q1Zjk/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:36:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "561e9acf-537b-405c-bc80-325924280079" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "1c8bae0a-e1a0-4407-8ead-c6bbba3ca5c3" - ], - "x-ms-correlation-request-id": [ - "1c8bae0a-e1a0-4407-8ead-c6bbba3ca5c3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203649Z:1c8bae0a-e1a0-4407-8ead-c6bbba3ca5c3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:36:49 GMT" - ], - "ETag": [ - "0x8D2259B3D396C1F" + "Thu, 09 Jul 2015 20:31:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-task?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC10YXNrP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" - ], - "x-ms-request-id": [ - "60e110d4-0307-4384-a824-e526348b6f83" - ], - "x-ms-correlation-request-id": [ - "60e110d4-0307-4384-a824-e526348b6f83" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203651Z:60e110d4-0307-4384-a824-e526348b6f83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:36:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0stRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0stRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHN0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "c81b9bdb-19f6-4fb8-93e2-bcb70ad8c7f0" - ], - "x-ms-correlation-request-id": [ - "c81b9bdb-19f6-4fb8-93e2-bcb70ad8c7f0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203651Z:c81b9bdb-19f6-4fb8-93e2-bcb70ad8c7f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:36:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0stRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0stRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHN0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "5a32efee-52bc-4093-92fb-ce39b6289b9c" - ], - "x-ms-correlation-request-id": [ - "5a32efee-52bc-4093-92fb-ce39b6289b9c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203707Z:5a32efee-52bc-4093-92fb-ce39b6289b9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:37:07 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0stRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0stRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHN0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "56886280-c5f0-479b-a040-0deb45c28324" - ], - "x-ms-correlation-request-id": [ - "56886280-c5f0-479b-a040-0deb45c28324" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203722Z:56886280-c5f0-479b-a040-0deb45c28324" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:37:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0stRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0stRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHN0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "fdb714f2-4375-4719-a732-8042bf8bb5ab" - ], - "x-ms-correlation-request-id": [ - "fdb714f2-4375-4719-a732-8042bf8bb5ab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203737Z:fdb714f2-4375-4719-a732-8042bf8bb5ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:37:37 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTaskPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTaskPipeline.json index 69933d36f0d0..2596b62faee3 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTaskPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTaskPipeline.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-task-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "9d37f079-e5a5-4c2e-bdc7-6db918deba71" + ], + "x-ms-correlation-request-id": [ + "9d37f079-e5a5-4c2e-bdc7-6db918deba71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T202829Z:9d37f079-e5a5-4c2e-bdc7-6db918deba71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 20:28:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe\",\r\n \"name\": \"test-list-task-pipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], "x-ms-request-id": [ - "aed8e9dd-6198-418e-9ee2-20fa5ef20613" + "93366a9c-f809-41ec-8732-9840f2ba6ba2" ], "x-ms-correlation-request-id": [ - "aed8e9dd-6198-418e-9ee2-20fa5ef20613" + "93366a9c-f809-41ec-8732-9840f2ba6ba2" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203827Z:aed8e9dd-6198-418e-9ee2-20fa5ef20613" + "WESTUS:20150709T202833Z:93366a9c-f809-41ec-8732-9840f2ba6ba2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:38:27 GMT" + "Thu, 09 Jul 2015 20:28:33 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0dGFza3BpcGU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 20:28:30 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], "request-id": [ - "781a6edc-c16c-4bc1-8680-e9a8fbdb68b7" + "1b922ea6-c970-4402-b0e5-61942a70cecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], "x-ms-request-id": [ - "435e9e4c-5c26-4e41-b68d-5dc0876c21f7" + "c7d8383f-32b3-4144-88eb-de64e4ca5a23" ], "x-ms-correlation-request-id": [ - "435e9e4c-5c26-4e41-b68d-5dc0876c21f7" + "c7d8383f-32b3-4144-88eb-de64e4ca5a23" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203832Z:435e9e4c-5c26-4e41-b68d-5dc0876c21f7" + "WESTUS:20150709T202830Z:c7d8383f-32b3-4144-88eb-de64e4ca5a23" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:38:32 GMT" + "Thu, 09 Jul 2015 20:28:29 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe/operationResults/781a6edc-c16c-4bc1-8680-e9a8fbdb68b7?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889CF41A202B" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe/operationResults/781a6edc-c16c-4bc1-8680-e9a8fbdb68b7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0dGFza3BpcGUvb3BlcmF0aW9uUmVzdWx0cy83ODFhNmVkYy1jMTZjLTRiYzEtODY4MC1lOWE4ZmJkYjY4Yjc/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlisttaskpipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlisttaskpipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "344" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:38:33 GMT" + "Thu, 09 Jul 2015 20:28:33 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "f908410f-f952-4010-b040-3fc01f92c3ed" + "c8dce45a-7697-4423-b9eb-2a549888f3fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14994" ], "x-ms-request-id": [ - "12c907fd-7552-484e-a2f4-dcfa111af415" + "8a76b7df-3aea-4563-b499-c6387ca28526" ], "x-ms-correlation-request-id": [ - "12c907fd-7552-484e-a2f4-dcfa111af415" + "8a76b7df-3aea-4563-b499-c6387ca28526" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203833Z:12c907fd-7552-484e-a2f4-dcfa111af415" + "WESTUS:20150709T202833Z:8a76b7df-3aea-4563-b499-c6387ca28526" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:38:33 GMT" + "Thu, 09 Jul 2015 20:28:33 GMT" ], "ETag": [ - "0x8D2259B7B7AA2B0" + "0x8D2889CF5FAE3C9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0dGFza3BpcGUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlisttaskpipe\",\r\n \"primary\": \"+d7kICjjdMJWM1txbLqQOu5vEqPJ8vRAdKBf5iv6v3i+N9svMm5+a+jyg5UeBvciys/YDn0eUkgrytNMxUwOoQ==\",\r\n \"secondary\": \"PfpuEXWeeYIUUn74fJ/xL797sc59n7QfK2xfszQUb6U3rn8l4/lAmFClJgoomc7d06gCHbagNYPA1CLMxvc9rg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "238" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "dfee2572-3325-45df-832d-7d5e7c7c8a8b" + "a5986038-19e8-44d5-9d29-37040b391d9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-request-id": [ - "74e7af0b-fd34-4c58-aaac-bd0651f8d071" + "3fc426d8-daf1-4cac-885a-f48d17d11cb0" ], "x-ms-correlation-request-id": [ - "74e7af0b-fd34-4c58-aaac-bd0651f8d071" + "3fc426d8-daf1-4cac-885a-f48d17d11cb0" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203833Z:74e7af0b-fd34-4c58-aaac-bd0651f8d071" + "WESTUS:20150709T202830Z:3fc426d8-daf1-4cac-885a-f48d17d11cb0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:38:33 GMT" + "Thu, 09 Jul 2015 20:28:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0dGFza3BpcGUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlisttaskpipe\",\r\n \"primary\": \"+d7kICjjdMJWM1txbLqQOu5vEqPJ8vRAdKBf5iv6v3i+N9svMm5+a+jyg5UeBvciys/YDn0eUkgrytNMxUwOoQ==\",\r\n \"secondary\": \"PfpuEXWeeYIUUn74fJ/xL797sc59n7QfK2xfszQUb6U3rn8l4/lAmFClJgoomc7d06gCHbagNYPA1CLMxvc9rg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "238" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "9f767b48-9a52-4ec7-84ba-884e5c215bed" + "35d95fa7-9bf6-4876-be3d-c0711b1c927f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-request-id": [ - "788f5123-ed84-4590-b806-7736fba648a6" + "858e0643-7568-4cf6-8f70-5060c5b3cf51" ], "x-ms-correlation-request-id": [ - "788f5123-ed84-4590-b806-7736fba648a6" + "858e0643-7568-4cf6-8f70-5060c5b3cf51" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T203949Z:788f5123-ed84-4590-b806-7736fba648a6" + "WESTUS:20150709T202833Z:858e0643-7568-4cf6-8f70-5060c5b3cf51" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:39:48 GMT" + "Thu, 09 Jul 2015 20:28:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"listTaskPipeWI\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "168" + "170" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "abaa9cc1-324a-4e6a-83a2-3694456f62a4" + "a133c634-75ad-4c58-b211-cbbed9d30e2b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:45 GMT" + "Thu, 09 Jul 2015 20:28:31 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:39:45 GMT" + "Thu, 09 Jul 2015 20:28:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6c4780c7-881a-47ee-a2cb-3722774fbb91" + "e4fae2e5-13ac-40d1-ab34-062096ff80c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/listTaskPipeWI" ], "Date": [ - "Thu, 05 Mar 2015 20:39:45 GMT" + "Thu, 09 Jul 2015 20:28:31 GMT" ], "ETag": [ - "0x8D2259BA69C3205" + "0x8D2889CF4F710D9" ], "Location": [ - "https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/listTaskPipeWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,8 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/listTaskPipeWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1BpcGVXST9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e61d7cc1-cdad-4ed3-ba4d-6c3f8d263d58" + "3d51e0ad-0afe-4803-a83f-47cb49a1f2ef" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:46 GMT" + "Thu, 09 Jul 2015 20:28:31 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskpipe.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2259BA69C3205\",\r\n \"lastModified\": \"2015-03-05T20:39:45.8074117Z\",\r\n \"creationTime\": \"2015-03-05T20:39:45.8074117Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:39:45.8074117Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"listTaskPipeWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskPipeWI\",\r\n \"eTag\": \"0x8D2889CF4F710D9\",\r\n \"lastModified\": \"2015-07-09T20:28:31.8769369Z\",\r\n \"creationTime\": \"2015-07-09T20:28:31.8769369Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:31.8769369Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:39:45 GMT" + "Thu, 09 Jul 2015 20:28:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a257cc16-111c-4f91-af51-44f2241d7b15" + "7a3b767a-a96a-4054-aa38-7f3b1003e706" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:39:46 GMT" + "Thu, 09 Jul 2015 20:28:30 GMT" ], "ETag": [ - "0x8D2259BA69C3205" + "0x8D2889CF4F710D9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,8 +448,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/listTaskPipeWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1BpcGVXST9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -415,28 +457,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0fec40d4-791e-4017-919c-ff07d8eb9154" + "c7552cbb-80f1-4f95-80cc-81a1b2793fd2" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:50 GMT" + "Thu, 09 Jul 2015 20:28:34 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskpipe.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2259BA69C3205\",\r\n \"lastModified\": \"2015-03-05T20:39:45.8074117Z\",\r\n \"creationTime\": \"2015-03-05T20:39:45.8074117Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:39:45.8074117Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"listTaskPipeWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskPipeWI\",\r\n \"eTag\": \"0x8D2889CF4F710D9\",\r\n \"lastModified\": \"2015-07-09T20:28:31.8769369Z\",\r\n \"creationTime\": \"2015-07-09T20:28:31.8769369Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:31.8769369Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskPipeWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:39:45 GMT" + "Thu, 09 Jul 2015 20:28:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "83cc13e4-2086-4f92-9e14-8aa2d953f24c" + "03ee1f25-334e-4512-87cf-1749a6507424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,10 +487,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:39:50 GMT" + "Thu, 09 Jul 2015 20:28:34 GMT" ], "ETag": [ - "0x8D2259BA69C3205" + "0x8D2889CF4F710D9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -457,40 +499,40 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskPipeWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1BpcGVXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "150" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "1a7a6108-0d94-49ef-8299-6f8140950ba6" + "c20d9601-3e0d-4f79-8d6d-841b10dfe16c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:46 GMT" + "Thu, 09 Jul 2015 20:28:32 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:39:46 GMT" + "Thu, 09 Jul 2015 20:28:32 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "32d2e69b-9662-4a7c-9ad3-2b1a8c38c3ef" + "88db60ea-d45c-46fb-b7d9-cb410ec71438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,16 +541,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/listTaskPipeWI/jobs/job-0000000001/tasks/testTask" ], "Date": [ - "Thu, 05 Mar 2015 20:39:46 GMT" + "Thu, 09 Jul 2015 20:28:32 GMT" ], "ETag": [ - "0x8D2259BA749E487" + "0x8D2889CF55BDCB9" ], "Location": [ - "https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask" + "https://pstests.batch.core.windows.net/workitems/listTaskPipeWI/jobs/job-0000000001/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -517,119 +559,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe\",\r\n \"name\": \"testlisttaskpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "763" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "e05d56c5-b689-4568-a7bc-9008cf287d91" - ], - "x-ms-correlation-request-id": [ - "e05d56c5-b689-4568-a7bc-9008cf287d91" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203948Z:e05d56c5-b689-4568-a7bc-9008cf287d91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:39:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0dGFza3BpcGU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlisttaskpipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlisttaskpipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "344" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:39:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "b99d0d62-0f8b-4a12-af19-299824a0001d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "0a259c9b-7ce6-4c81-b3a7-dc2b35326e6f" - ], - "x-ms-correlation-request-id": [ - "0a259c9b-7ce6-4c81-b3a7-dc2b35326e6f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203949Z:0a259c9b-7ce6-4c81-b3a7-dc2b35326e6f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:39:48 GMT" - ], - "ETag": [ - "0x8D2259BA8479F1C" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskPipeWI/jobs/job-0000000001?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1BpcGVXSS9qb2JzL2pvYi0wMDAwMDAwMDAxP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -637,28 +568,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e9bc6607-bd03-4dd9-be43-798e42c93d41" + "1f17bbde-91d7-47b7-a9e1-19db899d2865" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:49 GMT" + "Thu, 09 Jul 2015 20:28:33 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskpipe.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2259BA6A5733C\",\r\n \"lastModified\": \"2015-03-05T20:39:45.8680636Z\",\r\n \"creationTime\": \"2015-03-05T20:39:45.8520551Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:39:45.8680636Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-05T20:39:45.8680636Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskPipeWI/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889CF51FC2A6\",\r\n \"lastModified\": \"2015-07-09T20:28:32.1436326Z\",\r\n \"creationTime\": \"2015-07-09T20:28:32.122633Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:32.1436326Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:28:32.1436326Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:39:45 GMT" + "Thu, 09 Jul 2015 20:28:32 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "170d18f7-b1fb-48dd-88c2-128949e7033c" + "4b16d608-b52f-4197-9929-61d0a39198d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -667,10 +598,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:39:49 GMT" + "Thu, 09 Jul 2015 20:28:33 GMT" ], "ETag": [ - "0x8D2259BA6A5733C" + "0x8D2889CF51FC2A6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,8 +610,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskPipeWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1BpcGVXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,16 +619,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "94498d1d-5c86-45ab-9c64-9cae145ef629" + "ff22e7cf-3730-4e10-8b2a-0f44c6d3afbc" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:49 GMT" + "Thu, 09 Jul 2015 20:28:34 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskpipe.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2259BA749E487\",\r\n \"creationTime\": \"2015-03-05T20:39:46.9457543Z\",\r\n \"lastModified\": \"2015-03-05T20:39:46.9457543Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:39:46.9457543Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889CF55BDCB9\",\r\n \"creationTime\": \"2015-07-09T20:28:32.5375161Z\",\r\n \"lastModified\": \"2015-07-09T20:28:32.5375161Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:33.6037648Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:28:33.4927759Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:28:33.4927759Z\",\r\n \"endTime\": \"2015-07-09T20:28:33.6037648Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -706,7 +637,7 @@ "chunked" ], "request-id": [ - "624a13c2-54dc-44c6-a670-3efb47c39643" + "38661d72-e49c-480f-a8f6-7ae8355b0245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -715,7 +646,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:39:49 GMT" + "Thu, 09 Jul 2015 20:28:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -724,8 +655,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskPipeWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1BpcGVXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -733,16 +664,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ac556ddb-4d6c-4fa8-8e09-5b7bd78a6e79" + "35c9a942-639a-4f6e-9952-c861b79e3676" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:50 GMT" + "Thu, 09 Jul 2015 20:28:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskpipe.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2259BA749E487\",\r\n \"creationTime\": \"2015-03-05T20:39:46.9457543Z\",\r\n \"lastModified\": \"2015-03-05T20:39:46.9457543Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:39:46.9457543Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskPipeWI/jobs/job-0000000001/tasks/testTask\",\r\n \"eTag\": \"0x8D2889CF55BDCB9\",\r\n \"creationTime\": \"2015-07-09T20:28:32.5375161Z\",\r\n \"lastModified\": \"2015-07-09T20:28:32.5375161Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:33.6037648Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:28:33.4927759Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:28:33.4927759Z\",\r\n \"endTime\": \"2015-07-09T20:28:33.6037648Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -751,7 +682,7 @@ "chunked" ], "request-id": [ - "e5f1f2b3-23d7-4315-8a4e-15644e66fc75" + "e3b519de-0edf-450b-821b-83ddfd0be4fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -760,7 +691,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:39:50 GMT" + "Thu, 09 Jul 2015 20:28:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -769,8 +700,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/listTaskPipeWI/jobs?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1BpcGVXSS9qb2JzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -778,16 +709,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0f9d3c6d-7a2a-475b-946d-82a8940eeaab" + "aaad5b6f-5aec-4ee3-abc0-2a516b21a223" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:50 GMT" + "Thu, 09 Jul 2015 20:28:34 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskpipe.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlisttaskpipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2259BA6A5733C\",\r\n \"lastModified\": \"2015-03-05T20:39:45.8680636Z\",\r\n \"creationTime\": \"2015-03-05T20:39:45.8520551Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:39:45.8680636Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-05T20:39:45.8680636Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/listTaskPipeWI/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889CF51FC2A6\",\r\n \"lastModified\": \"2015-07-09T20:28:32.1436326Z\",\r\n \"creationTime\": \"2015-07-09T20:28:32.122633Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:28:32.1436326Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:28:32.1436326Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -796,7 +727,7 @@ "chunked" ], "request-id": [ - "f872ea3a-e746-40f2-a0d2-49f2c52e1bc6" + "8d8bb9d2-2888-4c01-a666-a76504bb4376" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -805,7 +736,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:39:50 GMT" + "Thu, 09 Jul 2015 20:28:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -814,8 +745,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/listTaskPipeWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9saXN0VGFza1BpcGVXST9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -823,13 +754,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0a594e4c-dcac-47c2-ad3f-5654af1611a4" + "7ff5edfd-f176-4e3a-9826-384e2103dd6e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:39:51 GMT" + "Thu, 09 Jul 2015 20:28:35 GMT" ] }, "ResponseBody": "", @@ -838,7 +769,7 @@ "chunked" ], "request-id": [ - "22ce5661-29a4-48e0-baf8-a728a85ca780" + "115c32d1-fcdf-46ef-abba-bb2b70ae2cc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,451 +778,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:39:50 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0dGFza3BpcGU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a8c07ee7-12ae-4d45-bc35-fbeef41be27b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" - ], - "x-ms-request-id": [ - "565568b2-a44b-40a7-a3f1-775f763f4b72" - ], - "x-ms-correlation-request-id": [ - "565568b2-a44b-40a7-a3f1-775f763f4b72" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203953Z:565568b2-a44b-40a7-a3f1-775f763f4b72" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:39:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe/operationResults/a8c07ee7-12ae-4d45-bc35-fbeef41be27b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe/operationResults/a8c07ee7-12ae-4d45-bc35-fbeef41be27b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0dGFza3BpcGUvb3BlcmF0aW9uUmVzdWx0cy9hOGMwN2VlNy0xMmFlLTRkNDUtYmMzNS1mYmVlZjQxYmUyN2I/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "fb1416f9-4f18-4f5c-8b81-f44f6a726077" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "8f123b00-9eb5-4f54-b1e2-43befedc6b90" - ], - "x-ms-correlation-request-id": [ - "8f123b00-9eb5-4f54-b1e2-43befedc6b90" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T203953Z:8f123b00-9eb5-4f54-b1e2-43befedc6b90" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:39:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe/operationResults/a8c07ee7-12ae-4d45-bc35-fbeef41be27b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-pipe/providers/Microsoft.Batch/batchAccounts/testlisttaskpipe/operationResults/a8c07ee7-12ae-4d45-bc35-fbeef41be27b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0dGFza3BpcGUvb3BlcmF0aW9uUmVzdWx0cy9hOGMwN2VlNy0xMmFlLTRkNDUtYmMzNS1mYmVlZjQxYmUyN2I/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:40:08 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "1150cf27-f448-4c65-aa4c-f54be68741d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "56930c91-d785-43e4-8f20-70e84d69688f" - ], - "x-ms-correlation-request-id": [ - "56930c91-d785-43e4-8f20-70e84d69688f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204009Z:56930c91-d785-43e4-8f20-70e84d69688f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:40:08 GMT" - ], - "ETag": [ - "0x8D2259BB450314E" + "Thu, 09 Jul 2015 20:28:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-task-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC10YXNrLXBpcGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], - "x-ms-request-id": [ - "3c97b0c3-c73a-4f24-ba4c-93f8c3816ddf" - ], - "x-ms-correlation-request-id": [ - "3c97b0c3-c73a-4f24-ba4c-93f8c3816ddf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204010Z:3c97b0c3-c73a-4f24-ba4c-93f8c3816ddf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:40:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSUVNWQkZMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "abbb0e80-a701-4db3-904f-504afb1e0f40" - ], - "x-ms-correlation-request-id": [ - "abbb0e80-a701-4db3-904f-504afb1e0f40" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204011Z:abbb0e80-a701-4db3-904f-504afb1e0f40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:40:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSUVNWQkZMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "df0ce5c9-d96c-4274-903a-e8a8d3bc410b" - ], - "x-ms-correlation-request-id": [ - "df0ce5c9-d96c-4274-903a-e8a8d3bc410b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204026Z:df0ce5c9-d96c-4274-903a-e8a8d3bc410b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:40:25 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSUVNWQkZMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "de7dda61-ab93-4179-92e0-bc30f3b829d9" - ], - "x-ms-correlation-request-id": [ - "de7dda61-ab93-4179-92e0-bc30f3b829d9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204041Z:de7dda61-ab93-4179-92e0-bc30f3b829d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:40:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSUVNWQkZMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "14d4e794-954b-486e-ba1a-ec6603e9878e" - ], - "x-ms-correlation-request-id": [ - "14d4e794-954b-486e-ba1a-ec6603e9878e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204056Z:14d4e794-954b-486e-ba1a-ec6603e9878e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:40:56 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksByFilter.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksByFilter.json index 0bf64f363ebc..479730a8b56f 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksByFilter.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksByFilter.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-task-filter?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "bb28882b-7d0c-46cd-b5ac-12c804411363" + ], + "x-ms-correlation-request-id": [ + "bb28882b-7d0c-46cd-b5ac-12c804411363" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T203100Z:bb28882b-7d0c-46cd-b5ac-12c804411363" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 20:30:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter\",\r\n \"name\": \"test-list-task-filter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "195" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-request-id": [ - "a38403c5-1a41-4b31-8649-5fafffdc223f" + "436727f0-d3d3-4f7d-a407-3dbf7e287f67" ], "x-ms-correlation-request-id": [ - "a38403c5-1a41-4b31-8649-5fafffdc223f" + "436727f0-d3d3-4f7d-a407-3dbf7e287f67" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204139Z:a38403c5-1a41-4b31-8649-5fafffdc223f" + "WESTUS:20150709T203103Z:436727f0-d3d3-4f7d-a407-3dbf7e287f67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:41:39 GMT" + "Thu, 09 Jul 2015 20:31:03 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R0YXNrZmlsdGVyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 20:31:01 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" - ], "request-id": [ - "4a4de9d8-c4e8-4bfc-b2ad-9aa837029071" + "762ec4e7-eb1f-4a35-8e85-acd937f695a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], "x-ms-request-id": [ - "f1060c84-2635-4ad0-8aa7-a6057848a101" + "7facbbd3-be6b-4a0f-88d7-59fd96cad644" ], "x-ms-correlation-request-id": [ - "f1060c84-2635-4ad0-8aa7-a6057848a101" + "7facbbd3-be6b-4a0f-88d7-59fd96cad644" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204143Z:f1060c84-2635-4ad0-8aa7-a6057848a101" + "WESTUS:20150709T203101Z:7facbbd3-be6b-4a0f-88d7-59fd96cad644" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:41:43 GMT" + "Thu, 09 Jul 2015 20:31:01 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter/operationResults/4a4de9d8-c4e8-4bfc-b2ad-9aa837029071?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889D4E00A1DD" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter/operationResults/4a4de9d8-c4e8-4bfc-b2ad-9aa837029071?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R0YXNrZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvNGE0ZGU5ZDgtYzRlOC00YmZjLWIyYWQtOWFhODM3MDI5MDcxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlisttaskfilter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlisttaskfilter.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "352" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:41:43 GMT" + "Thu, 09 Jul 2015 20:31:03 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "18030b0d-43a8-4163-90ee-e2f27978bb45" + "9a279890-1809-42b9-a1c5-b2bc70e373f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14994" ], "x-ms-request-id": [ - "c928ae98-0169-43e8-9f0d-a6e4aa913781" + "5025acc7-a66c-403c-86b4-7df784f4e26e" ], "x-ms-correlation-request-id": [ - "c928ae98-0169-43e8-9f0d-a6e4aa913781" + "5025acc7-a66c-403c-86b4-7df784f4e26e" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204144Z:c928ae98-0169-43e8-9f0d-a6e4aa913781" + "WESTUS:20150709T203103Z:5025acc7-a66c-403c-86b4-7df784f4e26e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:41:43 GMT" + "Thu, 09 Jul 2015 20:31:03 GMT" ], "ETag": [ - "0x8D2259BECFB68C0" + "0x8D2889D4F8D06EE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R0YXNrZmlsdGVyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlisttaskfilter\",\r\n \"primary\": \"jDYM3bnf+YSS+iw9bg2Dvl6OPxJ+FPzH5MfwMnK+7Eelrtwr/ppjuN664L5TYn3hDiRK4uqFg8t6yX8in1Cxpw==\",\r\n \"secondary\": \"fjqaASSKJDjx7/JMW3S7+YCt9Fa3xXgVi+xhMPgZzAQMRQbUBc5FVFVL1OFRFn6koGMkIsz/yFYhNtcvcmQCjw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "d36bdc1c-1ab2-4aa0-9e04-349e5d6ba76c" + "fadc14a9-3353-40c4-ab70-6e060570539f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-request-id": [ - "f08e8fc2-774a-48c9-b730-5e83dce17877" + "608a6837-e3ea-4e7d-b1ea-b851cb9e44a4" ], "x-ms-correlation-request-id": [ - "f08e8fc2-774a-48c9-b730-5e83dce17877" + "608a6837-e3ea-4e7d-b1ea-b851cb9e44a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204144Z:f08e8fc2-774a-48c9-b730-5e83dce17877" + "WESTUS:20150709T203101Z:608a6837-e3ea-4e7d-b1ea-b851cb9e44a4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:41:43 GMT" + "Thu, 09 Jul 2015 20:31:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R0YXNrZmlsdGVyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlisttaskfilter\",\r\n \"primary\": \"jDYM3bnf+YSS+iw9bg2Dvl6OPxJ+FPzH5MfwMnK+7Eelrtwr/ppjuN664L5TYn3hDiRK4uqFg8t6yX8in1Cxpw==\",\r\n \"secondary\": \"fjqaASSKJDjx7/JMW3S7+YCt9Fa3xXgVi+xhMPgZzAQMRQbUBc5FVFVL1OFRFn6koGMkIsz/yFYhNtcvcmQCjw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "e95bfba1-6021-4e72-971a-2bd78674b6c1" + "628be8a0-4fb9-4405-a2fe-51f4fd8e7527" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1194" ], "x-ms-request-id": [ - "41b1f4df-f197-4e2d-bd6f-9e558c1254ae" + "a5ae7b6a-8a98-421a-94a2-1324210f9e40" ], "x-ms-correlation-request-id": [ - "41b1f4df-f197-4e2d-bd6f-9e558c1254ae" + "a5ae7b6a-8a98-421a-94a2-1324210f9e40" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204255Z:41b1f4df-f197-4e2d-bd6f-9e558c1254ae" + "WESTUS:20150709T203104Z:a5ae7b6a-8a98-421a-94a2-1324210f9e40" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:42:54 GMT" + "Thu, 09 Jul 2015 20:31:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,7 +340,7 @@ "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"filterTaskWI\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4ac65709-dcae-41da-9ce5-83f8045adaa6" + "9e47221f-7619-42bd-bd6a-bdc069e3acd7" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:49 GMT" + "Thu, 09 Jul 2015 20:31:01 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:42:49 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a53cb5cf-0199-41bf-b618-6f8eb390816a" + "cd7f67ee-fa19-4297-b276-d7dfbc09af63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/filterTaskWI" ], "Date": [ - "Thu, 05 Mar 2015 20:42:49 GMT" + "Thu, 09 Jul 2015 20:31:01 GMT" ], "ETag": [ - "0x8D2259C143F8CE4" + "0x8D2889D4E727911" ], "Location": [ - "https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/filterTaskWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,8 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/filterTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9maWx0ZXJUYXNrV0k/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e57ccf33-b906-4777-a348-9955250ee15d" + "77c8ff01-794f-48d9-adbf-2a98980ce63d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:50 GMT" + "Thu, 09 Jul 2015 20:31:01 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskfilter.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2259C143F8CE4\",\r\n \"lastModified\": \"2015-03-05T20:42:49.7496292Z\",\r\n \"creationTime\": \"2015-03-05T20:42:49.7496292Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:42:49.7496292Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"filterTaskWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/filterTaskWI\",\r\n \"eTag\": \"0x8D2889D4E727911\",\r\n \"lastModified\": \"2015-07-09T20:31:02.0029201Z\",\r\n \"creationTime\": \"2015-07-09T20:31:02.0029201Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:02.0029201Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:42:49 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3aa37414-126f-43d4-8e5f-da71b55ecd08" + "c8f9465f-c4f1-4ce5-a08a-45492e2b6dd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:42:50 GMT" + "Thu, 09 Jul 2015 20:31:01 GMT" ], "ETag": [ - "0x8D2259C143F8CE4" + "0x8D2889D4E727911" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,40 +448,40 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/filterTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9maWx0ZXJUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "151" + "150" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "5af5fbba-a228-4946-9517-f5b40ffdffa9" + "7531911d-b311-4e74-9a9e-6b12f1f67850" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:50 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:42:50 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "83ce83c9-bd96-43d3-a078-8aea29f81f7b" + "b583a060-9774-44a1-bfd5-77de1ff4cb44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1" + "https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/testTask1" ], "Date": [ - "Thu, 05 Mar 2015 20:42:50 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ], "ETag": [ - "0x8D2259C14EC21DB" + "0x8D2889D4EF67028" ], "Location": [ - "https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1" + "https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/testTask1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,40 +508,40 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/filterTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9maWx0ZXJUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "151" + "150" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "8a480fe0-5804-4a28-816f-de01afa9d1af" + "62e6990b-b004-4aed-bbc3-83f5907ba7f8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:51 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:42:51 GMT" + "Thu, 09 Jul 2015 20:31:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "884fbe8b-6c0d-49b2-b844-0a773daa24bf" + "09be30de-9bf3-4593-8311-242c50876e5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,16 +550,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2" + "https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/testTask2" ], "Date": [ - "Thu, 05 Mar 2015 20:42:51 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ], "ETag": [ - "0x8D2259C1556C3A4" + "0x8D2889D4F13A6DF" ], "Location": [ - "https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2" + "https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/testTask2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -526,40 +568,40 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/filterTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9maWx0ZXJUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"thirdTestTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"thirdTestTask\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "155" + "154" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "58cfcf15-ec80-4073-a66f-c67802a2352d" + "e8a76cec-1799-4a36-b439-6739254d69e3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:51 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:42:51 GMT" + "Thu, 09 Jul 2015 20:31:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "886035b2-161e-49e0-b8e3-4d38734836b1" + "d312829d-fc1a-40fc-9585-3bfb02b0d253" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -568,16 +610,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/thirdTestTask" + "https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/thirdTestTask" ], "Date": [ - "Thu, 05 Mar 2015 20:42:51 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ], "ETag": [ - "0x8D2259C1589FF79" + "0x8D2889D4F735F80" ], "Location": [ - "https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/thirdTestTask" + "https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/thirdTestTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -586,119 +628,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter\",\r\n \"name\": \"testlisttaskfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "769" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "cb252ab6-cbf1-4169-b074-8d4fe6c827c3" - ], - "x-ms-correlation-request-id": [ - "cb252ab6-cbf1-4169-b074-8d4fe6c827c3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204253Z:cb252ab6-cbf1-4169-b074-8d4fe6c827c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:42:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R0YXNrZmlsdGVyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlisttaskfilter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlisttaskfilter.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "352" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:42:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "2ddfd9e8-9b72-4764-80cd-c02c266bb7c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "6c3304a3-603a-4340-a291-a10067118753" - ], - "x-ms-correlation-request-id": [ - "6c3304a3-603a-4340-a291-a10067118753" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204254Z:6c3304a3-603a-4340-a291-a10067118753" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:42:53 GMT" - ], - "ETag": [ - "0x8D2259C16BE01AF" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$filter=startswith(name%2C'testTask')", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMCYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3dGVzdFRhc2slMjclMjk=", + "RequestUri": "/workitems/filterTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$filter=startswith(name%2C'testTask')", + "EncodedRequestUri": "L3dvcmtpdGVtcy9maWx0ZXJUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMCYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3dGVzdFRhc2slMjclMjk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -706,16 +637,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "77a3e7fe-6bd4-45cb-bc60-318c8b40a3bb" + "f8f595a2-664e-4f88-803a-0208e50f0a20" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:55 GMT" + "Thu, 09 Jul 2015 20:31:03 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskfilter.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2259C14EC21DB\",\r\n \"creationTime\": \"2015-03-05T20:42:50.8806619Z\",\r\n \"lastModified\": \"2015-03-05T20:42:50.8806619Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:42:50.8806619Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2259C1556C3A4\",\r\n \"creationTime\": \"2015-03-05T20:42:51.5794852Z\",\r\n \"lastModified\": \"2015-03-05T20:42:51.5794852Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:42:51.5794852Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2889D4EF67028\",\r\n \"creationTime\": \"2015-07-09T20:31:02.8677672Z\",\r\n \"lastModified\": \"2015-07-09T20:31:02.8677672Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:03.112854Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:31:03.0178621Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:03.0178621Z\",\r\n \"endTime\": \"2015-07-09T20:31:03.112854Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2889D4F13A6DF\",\r\n \"creationTime\": \"2015-07-09T20:31:03.0592223Z\",\r\n \"lastModified\": \"2015-07-09T20:31:03.0592223Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:04.1557396Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:31:03.0592223Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:04.1557396Z\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_2-20150709t190321z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -724,7 +655,7 @@ "chunked" ], "request-id": [ - "5cbe33b3-e1bf-4fe6-94de-b178d61fb394" + "9ee36ac6-05b5-49c1-9a60-a12108ae8bd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,7 +664,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:42:55 GMT" + "Thu, 09 Jul 2015 20:31:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -742,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$filter=startswith(name%2C'testTask')", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMCYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3dGVzdFRhc2slMjclMjk=", + "RequestUri": "/workitems/filterTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0&$filter=startswith(name%2C'testTask')", + "EncodedRequestUri": "L3dvcmtpdGVtcy9maWx0ZXJUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMCYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3dGVzdFRhc2slMjclMjk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -751,16 +682,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b78cbd4a-5c4d-4f0a-a9c0-d4f30b040bb1" + "39cb0cf8-4b58-4b56-8a2d-505836f8dd35" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:56 GMT" + "Thu, 09 Jul 2015 20:31:04 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskfilter.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2259C14EC21DB\",\r\n \"creationTime\": \"2015-03-05T20:42:50.8806619Z\",\r\n \"lastModified\": \"2015-03-05T20:42:50.8806619Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:42:50.8806619Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2259C1556C3A4\",\r\n \"creationTime\": \"2015-03-05T20:42:51.5794852Z\",\r\n \"lastModified\": \"2015-03-05T20:42:51.5794852Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:42:51.5794852Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2889D4EF67028\",\r\n \"creationTime\": \"2015-07-09T20:31:02.8677672Z\",\r\n \"lastModified\": \"2015-07-09T20:31:02.8677672Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:03.112854Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:31:03.0178621Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:03.0178621Z\",\r\n \"endTime\": \"2015-07-09T20:31:03.112854Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2889D4F13A6DF\",\r\n \"creationTime\": \"2015-07-09T20:31:03.0592223Z\",\r\n \"lastModified\": \"2015-07-09T20:31:03.0592223Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:04.2510444Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:31:04.1557396Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:04.1557396Z\",\r\n \"endTime\": \"2015-07-09T20:31:04.2510444Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_2-20150709t190321z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -769,7 +700,7 @@ "chunked" ], "request-id": [ - "3c2f0cb9-3e16-42c3-9a99-1b71a8669e30" + "bf788674-1604-4729-ba36-cfc414bf3d52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,7 +709,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:42:56 GMT" + "Thu, 09 Jul 2015 20:31:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -787,8 +718,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/filterTaskWI/jobs/job-0000000001?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9maWx0ZXJUYXNrV0kvam9icy9qb2ItMDAwMDAwMDAwMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -796,28 +727,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4bb106cc-2af7-46d3-bdf3-a67f3caedd09" + "1c83e7e6-beba-4455-86cb-198c8d21e742" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:55 GMT" + "Thu, 09 Jul 2015 20:31:04 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskfilter.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlisttaskfilter.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2259C1446DEA0\",\r\n \"lastModified\": \"2015-03-05T20:42:49.7975968Z\",\r\n \"creationTime\": \"2015-03-05T20:42:49.7816404Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:42:49.7975968Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-05T20:42:49.7975968Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/filterTaskWI/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889D4E7CBA66\",\r\n \"lastModified\": \"2015-07-09T20:31:02.0701286Z\",\r\n \"creationTime\": \"2015-07-09T20:31:02.0501208Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:31:02.0701286Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:31:02.0701286Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:42:49 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "f1bf9251-4b14-4ade-9d6e-735496532fad" + "f59c7d36-63ef-48fe-8a89-d9e7fc161255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,10 +757,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:42:56 GMT" + "Thu, 09 Jul 2015 20:31:02 GMT" ], "ETag": [ - "0x8D2259C1446DEA0" + "0x8D2889D4E7CBA66" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -838,8 +769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/filterTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9maWx0ZXJUYXNrV0k/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -847,13 +778,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "781534aa-dde8-4af7-ae82-989bac881167" + "44b2ae1b-1051-481c-80c9-0ac76cdb59b6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:42:56 GMT" + "Thu, 09 Jul 2015 20:31:04 GMT" ] }, "ResponseBody": "", @@ -862,7 +793,7 @@ "chunked" ], "request-id": [ - "97b2b2ac-e2f2-4c5a-9aa7-3b2c78c9a8ea" + "6ad9fcff-6d05-48a1-81cb-48be83e35138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -871,391 +802,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:42:56 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R0YXNrZmlsdGVyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "be93b609-7b85-486b-bb2f-5e4c6dc9c9a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-request-id": [ - "7cf1fe81-3ab4-44c4-a768-f0c262689ff4" - ], - "x-ms-correlation-request-id": [ - "7cf1fe81-3ab4-44c4-a768-f0c262689ff4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204259Z:7cf1fe81-3ab4-44c4-a768-f0c262689ff4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:42:59 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter/operationResults/be93b609-7b85-486b-bb2f-5e4c6dc9c9a2?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 20:31:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-filter/providers/Microsoft.Batch/batchAccounts/testlisttaskfilter/operationResults/be93b609-7b85-486b-bb2f-5e4c6dc9c9a2?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlci9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R0YXNrZmlsdGVyL29wZXJhdGlvblJlc3VsdHMvYmU5M2I2MDktN2I4NS00ODZiLWJiMmYtNWU0YzZkYzljOWEyP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:42:59 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "8550d4ec-61ee-4ee5-8bbd-291b8e680d88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "6aecd22e-d1aa-4ab9-b2a5-0ae61252ef0b" - ], - "x-ms-correlation-request-id": [ - "6aecd22e-d1aa-4ab9-b2a5-0ae61252ef0b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204259Z:6aecd22e-d1aa-4ab9-b2a5-0ae61252ef0b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:42:59 GMT" - ], - "ETag": [ - "0x8D2259C19ED6124" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-task-filter?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC10YXNrLWZpbHRlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-request-id": [ - "da47a7ad-97ca-4733-a7f4-6b18bad88091" - ], - "x-ms-correlation-request-id": [ - "da47a7ad-97ca-4733-a7f4-6b18bad88091" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204301Z:da47a7ad-97ca-4733-a7f4-6b18bad88091" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:43:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSR1NVeFVSVkl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "e2d3a8b9-2c53-4006-b5ba-4c8bd00a062b" - ], - "x-ms-correlation-request-id": [ - "e2d3a8b9-2c53-4006-b5ba-4c8bd00a062b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204301Z:e2d3a8b9-2c53-4006-b5ba-4c8bd00a062b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:43:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSR1NVeFVSVkl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "e84dfdbd-aa08-4617-a389-aa4a2e4a0739" - ], - "x-ms-correlation-request-id": [ - "e84dfdbd-aa08-4617-a389-aa4a2e4a0739" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204316Z:e84dfdbd-aa08-4617-a389-aa4a2e4a0739" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:43:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSR1NVeFVSVkl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" - ], - "x-ms-request-id": [ - "187979ae-e591-450f-93e3-8eaa811d6a19" - ], - "x-ms-correlation-request-id": [ - "187979ae-e591-450f-93e3-8eaa811d6a19" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204331Z:187979ae-e591-450f-93e3-8eaa811d6a19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:43:31 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRGSUxURVItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSR1NVeFVSVkl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" - ], - "x-ms-request-id": [ - "4a03a1f6-8fc6-4826-9b38-64f851189f09" - ], - "x-ms-correlation-request-id": [ - "4a03a1f6-8fc6-4826-9b38-64f851189f09" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204347Z:4a03a1f6-8fc6-4826-9b38-64f851189f09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:43:46 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksWithMaxCount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksWithMaxCount.json index db2628de030b..ab0ca5cb3bd7 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksWithMaxCount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListTasksWithMaxCount.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-task-maxcount?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "d5e01203-a70a-4167-af98-684b83cff6f8" + ], + "x-ms-correlation-request-id": [ + "d5e01203-a70a-4167-af98-684b83cff6f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T203036Z:d5e01203-a70a-4167-af98-684b83cff6f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 20:30:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount\",\r\n \"name\": \"test-list-task-maxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "199" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-request-id": [ - "78138db8-0cf2-444d-8918-074e796a3157" + "e8d8700c-baf2-471a-9a42-1204d17a44f3" ], "x-ms-correlation-request-id": [ - "78138db8-0cf2-444d-8918-074e796a3157" + "e8d8700c-baf2-471a-9a42-1204d17a44f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204432Z:78138db8-0cf2-444d-8918-074e796a3157" + "WESTUS:20150709T203039Z:e8d8700c-baf2-471a-9a42-1204d17a44f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:44:31 GMT" + "Thu, 09 Jul 2015 20:30:39 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2ttYXhjb3VudD9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 20:30:37 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" - ], "request-id": [ - "db6d1178-ce54-4d3b-a5f9-73885c17afa7" + "fe2c1615-1953-47c8-b199-b491b19880ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], "x-ms-request-id": [ - "7feb8d2d-110c-40d2-a6a1-d19a4c047049" + "cb721a7e-f0c7-4ea7-b85f-eafef94b23cb" ], "x-ms-correlation-request-id": [ - "7feb8d2d-110c-40d2-a6a1-d19a4c047049" + "cb721a7e-f0c7-4ea7-b85f-eafef94b23cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204436Z:7feb8d2d-110c-40d2-a6a1-d19a4c047049" + "WESTUS:20150709T203037Z:cb721a7e-f0c7-4ea7-b85f-eafef94b23cb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:44:36 GMT" + "Thu, 09 Jul 2015 20:30:36 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount/operationResults/db6d1178-ce54-4d3b-a5f9-73885c17afa7?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D2889D3FD0F764" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount/operationResults/db6d1178-ce54-4d3b-a5f9-73885c17afa7?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2ttYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzL2RiNmQxMTc4LWNlNTQtNGQzYi1hNWY5LTczODg1YzE3YWZhNz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlisttaskmaxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlisttaskmaxcount.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "360" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:44:36 GMT" + "Thu, 09 Jul 2015 20:30:40 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7c8f7793-aa0e-4e7f-860c-094fe48c15ab" + "106a6c3e-60d0-475d-b78b-a2cc721ffc28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14995" ], "x-ms-request-id": [ - "61de2649-b4c4-4791-a404-0955dc0ff560" + "5040e28f-f4b4-45c1-bff0-46deae6c74db" ], "x-ms-correlation-request-id": [ - "61de2649-b4c4-4791-a404-0955dc0ff560" + "5040e28f-f4b4-45c1-bff0-46deae6c74db" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204436Z:61de2649-b4c4-4791-a404-0955dc0ff560" + "WESTUS:20150709T203040Z:5040e28f-f4b4-45c1-bff0-46deae6c74db" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:44:36 GMT" + "Thu, 09 Jul 2015 20:30:39 GMT" ], "ETag": [ - "0x8D2259C53A44CA6" + "0x8D2889D41919241" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2ttYXhjb3VudC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlisttaskmaxcount\",\r\n \"primary\": \"rUCnQFx3s1W/N2Ampy1W9BxmmQIlDdqRX9ZDzBzj8rL9nlUMGbw+MVQWeLj0RTEqgbmXPCq1cfFQ1Slqqcd/8w==\",\r\n \"secondary\": \"8QRaPfNcPISpXHxCaIhkdsvoVTSkG5v3FEZIriRMQ8Ro66U9ARdFuzOlChG8ilDp6QH+m8ouMKmHBuoffd3RLg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "242" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "b4175cd0-1452-4110-af9e-7baac5684976" + "742be8d3-e673-4d35-a80e-eca2e159186c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1198" ], "x-ms-request-id": [ - "60155b69-18bf-4051-97a0-ccc8b82c5c91" + "4f267b53-2d7f-47ce-b29f-427a5c30795f" ], "x-ms-correlation-request-id": [ - "60155b69-18bf-4051-97a0-ccc8b82c5c91" + "4f267b53-2d7f-47ce-b29f-427a5c30795f" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204436Z:60155b69-18bf-4051-97a0-ccc8b82c5c91" + "WESTUS:20150709T203037Z:4f267b53-2d7f-47ce-b29f-427a5c30795f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:44:36 GMT" + "Thu, 09 Jul 2015 20:30:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2ttYXhjb3VudC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlisttaskmaxcount\",\r\n \"primary\": \"rUCnQFx3s1W/N2Ampy1W9BxmmQIlDdqRX9ZDzBzj8rL9nlUMGbw+MVQWeLj0RTEqgbmXPCq1cfFQ1Slqqcd/8w==\",\r\n \"secondary\": \"8QRaPfNcPISpXHxCaIhkdsvoVTSkG5v3FEZIriRMQ8Ro66U9ARdFuzOlChG8ilDp6QH+m8ouMKmHBuoffd3RLg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "242" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "971df685-47b3-4095-a696-b434ce8308a3" + "ab8bf0c3-3c70-4d63-bb6f-421082dd2fc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1197" ], "x-ms-request-id": [ - "d48911db-3091-4730-bf9b-f8ae98cff111" + "a5bad35d-f175-493c-b08e-b08480f60ffb" ], "x-ms-correlation-request-id": [ - "d48911db-3091-4730-bf9b-f8ae98cff111" + "a5bad35d-f175-493c-b08e-b08480f60ffb" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T204538Z:d48911db-3091-4730-bf9b-f8ae98cff111" + "WESTUS:20150709T203040Z:a5bad35d-f175-493c-b08e-b08480f60ffb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 20:45:38 GMT" + "Thu, 09 Jul 2015 20:30:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -298,37 +340,37 @@ "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"maxCountTaskWI\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "168" + "170" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "293c4cb3-9553-4c05-8bb4-ba44c4b9a709" + "075ea8a9-fb2d-47c9-9009-a77e6b7059da" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:33 GMT" + "Thu, 09 Jul 2015 20:30:37 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:45:34 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "28ecf87c-9eac-4ebf-b79b-4baf5a0f79b7" + "0c50cc4d-b5d7-41af-87e2-f6c47bf5de2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/maxCountTaskWI" ], "Date": [ - "Thu, 05 Mar 2015 20:45:33 GMT" + "Thu, 09 Jul 2015 20:30:37 GMT" ], "ETag": [ - "0x8D2259C762E653C" + "0x8D2889D404467BE" ], "Location": [ - "https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/maxCountTaskWI" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -355,8 +397,8 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/maxCountTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9tYXhDb3VudFRhc2tXST9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "d09c763d-f02e-49b0-b2e4-4305922647b1" + "18645d9e-00d0-4108-8960-d715b44f737c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:34 GMT" + "Thu, 09 Jul 2015 20:30:37 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskmaxcount.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D2259C762E653C\",\r\n \"lastModified\": \"2015-03-05T20:45:34.0539196Z\",\r\n \"creationTime\": \"2015-03-05T20:45:34.0539196Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:45:34.0539196Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"maxCountTaskWI\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI\",\r\n \"eTag\": \"0x8D2889D404467BE\",\r\n \"lastModified\": \"2015-07-09T20:30:38.2129086Z\",\r\n \"creationTime\": \"2015-07-09T20:30:38.2129086Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:30:38.2129086Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:45:34 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "e8587773-0d38-4c17-9ee3-04e0667e8ba0" + "82407b76-62ec-4717-9be4-48d34030f8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,10 +436,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:45:34 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ], "ETag": [ - "0x8D2259C762E653C" + "0x8D2889D404467BE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -406,40 +448,40 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/maxCountTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9tYXhDb3VudFRhc2tXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "151" + "150" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "89cb9d7a-c291-4f38-99f1-769443b76a14" + "fa373617-d6a8-4044-b4dc-0aacb4fa253a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:35 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:45:35 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "76a09101-2a06-4139-b502-4b5bf0720a10" + "73429d0a-ef81-46bf-a140-72e91e691f85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +490,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1" + "https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask1" ], "Date": [ - "Thu, 05 Mar 2015 20:45:35 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ], "ETag": [ - "0x8D2259C76DA7936" + "0x8D2889D4097C7D3" ], "Location": [ - "https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1" + "https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -466,40 +508,40 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/maxCountTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9tYXhDb3VudFRhc2tXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask2\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "151" + "150" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "d6b857b2-3c9f-416f-9664-bf27dbaf8dd6" + "85067206-3f4b-4158-90cc-c206e4ff8156" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:35 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:45:35 GMT" + "Thu, 09 Jul 2015 20:30:39 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9af2572d-6656-4f03-b1d0-86e2c5196839" + "cfe20a06-dab2-4a2c-9418-521916cde66f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,16 +550,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2" + "https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask2" ], "Date": [ - "Thu, 05 Mar 2015 20:45:35 GMT" + "Thu, 09 Jul 2015 20:30:39 GMT" ], "ETag": [ - "0x8D2259C772EF914" + "0x8D2889D40F836B0" ], "Location": [ - "https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2" + "https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -526,40 +568,40 @@ "StatusCode": 201 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/maxCountTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9tYXhDb3VudFRhc2tXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask3\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#tasks/@Element\",\r\n \"name\": \"testTask3\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "151" + "150" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "e67498a4-8de4-49d6-8fa0-4d7389d98246" + "d0abbfbc-2187-46ef-91c9-b85684ff3aa8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:36 GMT" + "Thu, 09 Jul 2015 20:30:39 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 20:45:36 GMT" + "Thu, 09 Jul 2015 20:30:39 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b10797e4-652c-4f09-8b3f-b93d24e15b36" + "07f3b44c-9dc1-4b49-8702-0962d0303424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -568,16 +610,16 @@ "3.0" ], "DataServiceId": [ - "https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask3" + "https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask3" ], "Date": [ - "Thu, 05 Mar 2015 20:45:36 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ], "ETag": [ - "0x8D2259C7763F252" + "0x8D2889D4101A6EA" ], "Location": [ - "https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask3" + "https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -586,119 +628,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount\",\r\n \"name\": \"testlisttaskmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "775" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "882ae14c-c594-40b6-9645-d8f08b30e509" - ], - "x-ms-correlation-request-id": [ - "882ae14c-c594-40b6-9645-d8f08b30e509" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204537Z:882ae14c-c594-40b6-9645-d8f08b30e509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:45:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2ttYXhjb3VudD9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlisttaskmaxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlisttaskmaxcount.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "360" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:45:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "ceef29cb-fcc9-4489-849c-e257bb127566" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "2a894961-7d10-40d5-98a7-b10d96f051fe" - ], - "x-ms-correlation-request-id": [ - "2a894961-7d10-40d5-98a7-b10d96f051fe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204538Z:2a894961-7d10-40d5-98a7-b10d96f051fe" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:45:38 GMT" - ], - "ETag": [ - "0x8D2259C786DF080" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/maxCountTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9tYXhDb3VudFRhc2tXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -706,16 +637,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0e5c0338-f404-45a8-9f7d-aa548415fe86" + "e42b396d-3b35-4c8d-beef-e1ddd61c7e99" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:38 GMT" + "Thu, 09 Jul 2015 20:30:40 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskmaxcount.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2259C76DA7936\",\r\n \"creationTime\": \"2015-03-05T20:45:35.1816502Z\",\r\n \"lastModified\": \"2015-03-05T20:45:35.1816502Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:45:35.1816502Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2259C772EF914\",\r\n \"creationTime\": \"2015-03-05T20:45:35.735426Z\",\r\n \"lastModified\": \"2015-03-05T20:45:35.735426Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:45:35.735426Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask3\",\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask3\",\r\n \"eTag\": \"0x8D2259C7763F252\",\r\n \"creationTime\": \"2015-03-05T20:45:36.0825938Z\",\r\n \"lastModified\": \"2015-03-05T20:45:36.0825938Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:45:36.0825938Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2889D4097C7D3\",\r\n \"creationTime\": \"2015-07-09T20:30:38.7593171Z\",\r\n \"lastModified\": \"2015-07-09T20:30:38.7593171Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:30:40.1688401Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:30:40.0568397Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:30:40.0568397Z\",\r\n \"endTime\": \"2015-07-09T20:30:40.1688401Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_2-20150709t190321z\"\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2889D40F836B0\",\r\n \"creationTime\": \"2015-07-09T20:30:39.3913008Z\",\r\n \"lastModified\": \"2015-07-09T20:30:39.3913008Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:30:39.8857452Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:30:39.784387Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:30:39.784387Z\",\r\n \"endTime\": \"2015-07-09T20:30:39.8857452Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n },\r\n {\r\n \"name\": \"testTask3\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask3\",\r\n \"eTag\": \"0x8D2889D4101A6EA\",\r\n \"creationTime\": \"2015-07-09T20:30:39.4531562Z\",\r\n \"lastModified\": \"2015-07-09T20:30:39.4531562Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:30:39.4531562Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -724,7 +655,7 @@ "chunked" ], "request-id": [ - "ff7086fe-7d99-49f3-925a-49d8995a764b" + "083fe641-6962-4e04-b33a-2d61bc9104ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,7 +664,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:45:38 GMT" + "Thu, 09 Jul 2015 20:30:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -742,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMS90YXNrcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/maxCountTaskWI/jobs/job-0000000001/tasks?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9tYXhDb3VudFRhc2tXSS9qb2JzL2pvYi0wMDAwMDAwMDAxL3Rhc2tzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -751,16 +682,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0a33a63f-ff46-4404-b6b3-b4f185db303c" + "cad9acca-7d54-4a1b-a253-1b6152f4c305" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:39 GMT" + "Thu, 09 Jul 2015 20:30:40 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskmaxcount.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2259C76DA7936\",\r\n \"creationTime\": \"2015-03-05T20:45:35.1816502Z\",\r\n \"lastModified\": \"2015-03-05T20:45:35.1816502Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:45:35.1816502Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2259C772EF914\",\r\n \"creationTime\": \"2015-03-05T20:45:35.735426Z\",\r\n \"lastModified\": \"2015-03-05T20:45:35.735426Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:45:35.735426Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"testTask3\",\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001/tasks/testTask3\",\r\n \"eTag\": \"0x8D2259C7763F252\",\r\n \"creationTime\": \"2015-03-05T20:45:36.0825938Z\",\r\n \"lastModified\": \"2015-03-05T20:45:36.0825938Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:45:36.0825938Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"name\": \"testTask1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask1\",\r\n \"eTag\": \"0x8D2889D4097C7D3\",\r\n \"creationTime\": \"2015-07-09T20:30:38.7593171Z\",\r\n \"lastModified\": \"2015-07-09T20:30:38.7593171Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:30:40.1688401Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:30:40.0568397Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:30:40.0568397Z\",\r\n \"endTime\": \"2015-07-09T20:30:40.1688401Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_2-20150709t190321z\"\r\n }\r\n },\r\n {\r\n \"name\": \"testTask2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask2\",\r\n \"eTag\": \"0x8D2889D40F836B0\",\r\n \"creationTime\": \"2015-07-09T20:30:39.3913008Z\",\r\n \"lastModified\": \"2015-07-09T20:30:39.3913008Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:30:39.8857452Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:30:39.784387Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:30:39.784387Z\",\r\n \"endTime\": \"2015-07-09T20:30:39.8857452Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_1-20150709t190321z\"\r\n }\r\n },\r\n {\r\n \"name\": \"testTask3\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001/tasks/testTask3\",\r\n \"eTag\": \"0x8D2889D4101A6EA\",\r\n \"creationTime\": \"2015-07-09T20:30:39.4531562Z\",\r\n \"lastModified\": \"2015-07-09T20:30:39.4531562Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2015-07-09T20:30:40.9634Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2015-07-09T20:30:40.8714001Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": true,\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:30:40.8714001Z\",\r\n \"endTime\": \"2015-07-09T20:30:40.9634Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"tvmInfo\": {\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmUrl\": \"https://pstests.batch.core.windows.net/pools/testpool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"poolName\": \"testpool\",\r\n \"tvmName\": \"tvm-4155946844_3-20150709t190321z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -769,7 +700,7 @@ "chunked" ], "request-id": [ - "a24296c3-a28c-4ee7-a6dc-817f27321900" + "7743c2a5-57a0-4d88-a552-e355bf3b7635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,7 +709,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:45:39 GMT" + "Thu, 09 Jul 2015 20:30:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -787,8 +718,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem/jobs/job-0000000001?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0vam9icy9qb2ItMDAwMDAwMDAwMT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/workitems/maxCountTaskWI/jobs/job-0000000001?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9tYXhDb3VudFRhc2tXSS9qb2JzL2pvYi0wMDAwMDAwMDAxP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -796,28 +727,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "fa863c60-8d6f-4dfb-b392-f8051a496fdb" + "5e10f887-978e-444d-b286-eef486b7fc3c" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:38 GMT" + "Thu, 09 Jul 2015 20:30:40 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlisttaskmaxcount.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://testlisttaskmaxcount.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2259C76389252\",\r\n \"lastModified\": \"2015-03-05T20:45:34.1206098Z\",\r\n \"creationTime\": \"2015-03-05T20:45:34.0919229Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T20:45:34.1206098Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-03-05T20:45:34.1206098Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#jobs/@Element\",\r\n \"name\": \"job-0000000001\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/maxCountTaskWI/jobs/job-0000000001\",\r\n \"eTag\": \"0x8D2889D404D19EB\",\r\n \"lastModified\": \"2015-07-09T20:30:38.2698987Z\",\r\n \"creationTime\": \"2015-07-09T20:30:38.2508984Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T20:30:38.2698987Z\",\r\n \"poolName\": \"testPool\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2015-07-09T20:30:38.2698987Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 20:45:34 GMT" + "Thu, 09 Jul 2015 20:30:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c52bcf93-1ae9-4eae-b266-e6899b872a40" + "65b31e3d-1929-4de4-adc8-345d58f6ca7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,10 +757,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:45:39 GMT" + "Thu, 09 Jul 2015 20:30:41 GMT" ], "ETag": [ - "0x8D2259C76389252" + "0x8D2889D404D19EB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -838,8 +769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/workitems/maxCountTaskWI?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcy9tYXhDb3VudFRhc2tXST9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -847,13 +778,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "eacc168c-f3cf-4128-8b7d-9ce9133760e9" + "36ddfe56-c02f-40cf-943f-908b0aaf52a3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 20:45:39 GMT" + "Thu, 09 Jul 2015 20:30:41 GMT" ] }, "ResponseBody": "", @@ -862,7 +793,7 @@ "chunked" ], "request-id": [ - "10403c25-c838-4e6a-801c-55f3e6c31aa7" + "db6e4f9f-25cd-4df7-97e0-7dcb32c7cb44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -871,391 +802,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 20:45:39 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2ttYXhjb3VudD9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "bebf8ffb-b0ad-4f1b-aa94-f3fcf4063f86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" - ], - "x-ms-request-id": [ - "d25e7b57-4d5d-4b05-9e17-3b9ff23168bd" - ], - "x-ms-correlation-request-id": [ - "d25e7b57-4d5d-4b05-9e17-3b9ff23168bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204542Z:d25e7b57-4d5d-4b05-9e17-3b9ff23168bd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:45:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount/operationResults/bebf8ffb-b0ad-4f1b-aa94-f3fcf4063f86?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 20:30:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-task-maxcount/providers/Microsoft.Batch/batchAccounts/testlisttaskmaxcount/operationResults/bebf8ffb-b0ad-4f1b-aa94-f3fcf4063f86?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bGlzdHRhc2ttYXhjb3VudC9vcGVyYXRpb25SZXN1bHRzL2JlYmY4ZmZiLWIwYWQtNGYxYi1hYTk0LWYzZmNmNDA2M2Y4Nj9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 20:45:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "4d178681-8326-48ee-a547-8f220f208064" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "36b42149-dc8a-4341-8996-88e7f8060441" - ], - "x-ms-correlation-request-id": [ - "36b42149-dc8a-4341-8996-88e7f8060441" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204542Z:36b42149-dc8a-4341-8996-88e7f8060441" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:45:42 GMT" - ], - "ETag": [ - "0x8D2259C7B0307A3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-task-maxcount?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC10YXNrLW1heGNvdW50P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-request-id": [ - "5131e64f-8a97-4167-9e92-10fd982aa24a" - ], - "x-ms-correlation-request-id": [ - "5131e64f-8a97-4167-9e92-10fd982aa24a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204544Z:5131e64f-8a97-4167-9e92-10fd982aa24a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:45:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSTlFWaERUMVZPVkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "3b358d7f-49fe-4fe3-a6cf-8c347130c02a" - ], - "x-ms-correlation-request-id": [ - "3b358d7f-49fe-4fe3-a6cf-8c347130c02a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204544Z:3b358d7f-49fe-4fe3-a6cf-8c347130c02a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:45:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSTlFWaERUMVZPVkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "d613005a-a1c6-4b30-8803-65986d08d046" - ], - "x-ms-correlation-request-id": [ - "d613005a-a1c6-4b30-8803-65986d08d046" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204559Z:d613005a-a1c6-4b30-8803-65986d08d046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:45:59 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSTlFWaERUMVZPVkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "3678ba96-be2a-442b-89bd-e8c6d2f0a848" - ], - "x-ms-correlation-request-id": [ - "3678ba96-be2a-442b-89bd-e8c6d2f0a848" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204615Z:3678ba96-be2a-442b-89bd-e8c6d2f0a848" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:46:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFRBU0s6MkRNQVhDT1VOVC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGUkJVMHM2TWtSTlFWaERUMVZPVkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "6392a3e4-5ae1-4332-8e79-2391b1a20d37" - ], - "x-ms-correlation-request-id": [ - "6392a3e4-5ae1-4332-8e79-2391b1a20d37" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T204630Z:6392a3e4-5ae1-4332-8e79-2391b1a20d37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 20:46:30 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestGetVMByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestGetVMByName.json index 944563a78a0e..e7460e406cd4 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestGetVMByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestGetVMByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "484" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14951" ], "x-ms-request-id": [ - "0c632656-5de8-4a0c-b19c-e4cbbde9596a" + "37ebaa47-114e-4f88-9aa2-491f1068f5de" ], "x-ms-correlation-request-id": [ - "0c632656-5de8-4a0c-b19c-e4cbbde9596a" + "37ebaa47-114e-4f88-9aa2-491f1068f5de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184326Z:0c632656-5de8-4a0c-b19c-e4cbbde9596a" + "WESTUS:20150709T190819Z:37ebaa47-114e-4f88-9aa2-491f1068f5de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:43:26 GMT" + "Thu, 09 Jul 2015 19:08:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vmtests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"vmtests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "307" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 18:43:28 GMT" + "Thu, 09 Jul 2015 19:08:20 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "02216872-3be5-495b-894a-da9792b5cd64" + "2edd5d36-b5ff-467e-bf91-631e5fb84de6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14959" ], "x-ms-request-id": [ - "53319c9f-1a92-48be-b844-ef4bbfd7448b" + "350511a5-336f-40df-8bfd-5f176a7d1f0a" ], "x-ms-correlation-request-id": [ - "53319c9f-1a92-48be-b844-ef4bbfd7448b" + "350511a5-336f-40df-8bfd-5f176a7d1f0a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184328Z:53319c9f-1a92-48be-b844-ef4bbfd7448b" + "WESTUS:20150709T190820Z:350511a5-336f-40df-8bfd-5f176a7d1f0a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:43:28 GMT" + "Thu, 09 Jul 2015 19:08:20 GMT" ], "ETag": [ - "0x8D239F9B69C4735" + "0x8D28891C15000DE" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,19 +112,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"vmtests\",\r\n \"primary\": \"Q3qH/tNRG6f8IWCxnJnlOt/RWKp6IxlULHwHuT0Dpjrj5Q3JbIfh35ilSKLO9goKaG9ML2Xl//xyg5dAyjPwXQ==\",\r\n \"secondary\": \"C4qco6CRJmOtPm+NZuJ1mejaE60cRvWiczMiI5YkVP0W7ZAeV/jh0vHzd6YF7MZCirT4lKUwIi7RVeN7ZxX3TQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "8a3ee255-3b8b-4202-88c2-335e79fd101d" + "4332177e-52d2-4abb-b788-102aa73ff1a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1183" ], "x-ms-request-id": [ - "bedb498b-58d5-4285-963d-f4c27b5bcc52" + "4fdf3936-f0da-4a93-83c7-0d845b830394" ], "x-ms-correlation-request-id": [ - "bedb498b-58d5-4285-963d-f4c27b5bcc52" + "4fdf3936-f0da-4a93-83c7-0d845b830394" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184328Z:bedb498b-58d5-4285-963d-f4c27b5bcc52" + "WESTUS:20150709T190820Z:4fdf3936-f0da-4a93-83c7-0d845b830394" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:43:28 GMT" + "Thu, 09 Jul 2015 19:08:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "f22ed3a8-2a53-463c-a6ae-9ca463d960ca" + "d5be800b-24db-4234-b09b-bbf0977bd792" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:43:29 GMT" + "Thu, 09 Jul 2015 19:08:20 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_2-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_2-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:06:59.524712Z\",\r\n \"lastBootTime\": \"2015-03-31T18:06:59.3577122Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.162.115\",\r\n \"affinityId\": \"TVM:tvm-1900272697_2-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_3-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_3-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:00.7874676Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:00.3784638Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.110.48\",\r\n \"affinityId\": \"TVM:tvm-1900272697_3-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:05:21.2458155Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_2-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.7418843Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.6548918Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.16.79\",\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.773026Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6520273Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_3-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.6824444Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.603148Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.12.86\",\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.7094503Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6014509Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "ddf2f4d4-a86b-431a-b7ea-22f6545c0e16" + "74dad808-e5e3-4808-bff1-07e84061c6b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:43:30 GMT" + "Thu, 09 Jul 2015 19:08:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -214,8 +214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQxODAxNTV6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a7f22400-cb88-400d-b99d-9cdcf2e3d061" + "c00bd743-93e0-4aa2-9b9f-edbf2da5494e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:43:30 GMT" + "Thu, 09 Jul 2015 19:08:20 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:05:21.2458155Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "3e80fd45-1a0a-4531-9141-f04a409a6301" + "8608dfaa-764a-4cca-be0a-7bdab55510fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:43:30 GMT" + "Thu, 09 Jul 2015 19:08:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -259,8 +259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDMzMXQxODAxNTV6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -268,16 +268,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "002b5b82-2e93-4392-984a-ffb4d0b06a64" + "4725604f-4244-4bcc-8df6-c0e45a80c1c9" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:43:30 GMT" + "Thu, 09 Jul 2015 19:08:21 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:05:21.2458155Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -286,7 +286,7 @@ "chunked" ], "request-id": [ - "c925a5a3-be0d-4b2f-9c0c-c404e163454a" + "8ecc8735-dffb-4cd1-ace5-1b4a0a1e8ad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,7 +295,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:43:31 GMT" + "Thu, 09 Jul 2015 19:08:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,6 +306,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListAllVMs.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListAllVMs.json index ebb4d41cd6cb..8bd3d2ccb06c 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListAllVMs.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListAllVMs.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14950" ], "x-ms-request-id": [ - "28421aaa-fd03-48bd-9722-55c267658fcf" + "e57f1fde-8ccc-4be2-9753-298a593360d9" ], "x-ms-correlation-request-id": [ - "28421aaa-fd03-48bd-9722-55c267658fcf" + "e57f1fde-8ccc-4be2-9753-298a593360d9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T200127Z:28421aaa-fd03-48bd-9722-55c267658fcf" + "WESTUS:20150709T190903Z:e57f1fde-8ccc-4be2-9753-298a593360d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,139 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 20:01:26 GMT" + "Thu, 09 Jul 2015 19:09:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "6020337e-cf49-43ef-821b-9815cce4de45" + ], + "x-ms-correlation-request-id": [ + "6020337e-cf49-43ef-821b-9815cce4de45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190904Z:6020337e-cf49-43ef-821b-9815cce4de45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:09:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:09:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "4b86429d-7ea5-48d8-bcb0-404e7e754e64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "db1f05fa-3f1b-44cf-a1f4-b955c1b07a55" + ], + "x-ms-correlation-request-id": [ + "db1f05fa-3f1b-44cf-a1f4-b955c1b07a55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190904Z:db1f05fa-3f1b-44cf-a1f4-b955c1b07a55" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:09:03 GMT" + ], + "ETag": [ + "0x8D28891DB3CA1AE" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vmtests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"vmtests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "307" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 20:01:29 GMT" + "Thu, 09 Jul 2015 19:09:04 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "24a0b64b-ea24-41eb-8141-dccfdf229e9c" + "f38a5644-fd26-4fd4-b07c-71e5c1fb7a30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14957" ], "x-ms-request-id": [ - "5cef78aa-5fab-4fbf-b365-c595a69b6863" + "f73adf44-facc-4f94-9663-eb111cd794de" ], "x-ms-correlation-request-id": [ - "5cef78aa-5fab-4fbf-b365-c595a69b6863" + "f73adf44-facc-4f94-9663-eb111cd794de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T200129Z:5cef78aa-5fab-4fbf-b365-c595a69b6863" + "WESTUS:20150709T190904Z:f73adf44-facc-4f94-9663-eb111cd794de" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 20:01:28 GMT" + "Thu, 09 Jul 2015 19:09:04 GMT" ], "ETag": [ - "0x8D23A049C8F5080" + "0x8D28891DBAE7FDA" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,19 +223,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"vmtests\",\r\n \"primary\": \"Q3qH/tNRG6f8IWCxnJnlOt/RWKp6IxlULHwHuT0Dpjrj5Q3JbIfh35ilSKLO9goKaG9ML2Xl//xyg5dAyjPwXQ==\",\r\n \"secondary\": \"C4qco6CRJmOtPm+NZuJ1mejaE60cRvWiczMiI5YkVP0W7ZAeV/jh0vHzd6YF7MZCirT4lKUwIi7RVeN7ZxX3TQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -139,28 +250,28 @@ "no-cache" ], "request-id": [ - "4a68b025-f849-43ae-8783-36c2448fc17c" + "88c94ee6-0af7-4521-a3e3-efec66ab662e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1182" ], "x-ms-request-id": [ - "0633b2cb-6a7f-41c7-9617-364f9132ead5" + "565a500b-17d3-4e3c-9cb1-097ec98d773b" ], "x-ms-correlation-request-id": [ - "0633b2cb-6a7f-41c7-9617-364f9132ead5" + "565a500b-17d3-4e3c-9cb1-097ec98d773b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T200129Z:0633b2cb-6a7f-41c7-9617-364f9132ead5" + "WESTUS:20150709T190904Z:565a500b-17d3-4e3c-9cb1-097ec98d773b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 20:01:29 GMT" + "Thu, 09 Jul 2015 19:09:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +280,116 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXM/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "eb52cceb-b758-4bf5-b701-c037fc87e575" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-request-id": [ + "d1b9bd61-9ecf-4055-9217-6d83d9301203" + ], + "x-ms-correlation-request-id": [ + "d1b9bd61-9ecf-4055-9217-6d83d9301203" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190905Z:d1b9bd61-9ecf-4055-9217-6d83d9301203" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:09:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "b1737f96-c506-408f-86ca-ece96afbd241" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 19:09:04 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:01:58 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "351d1226-36e7-4499-9d0d-c9c869564ad2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 19:09:03 GMT" + ], + "ETag": [ + "0x8D28890DD2FCEE8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,25 +397,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c99b515d-4bd9-4547-b47f-1232d3a4001b" + "0813ace2-1a30-4a5c-9f76-51b3628ee713" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 20:01:29 GMT" + "Thu, 09 Jul 2015 19:09:05 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_2-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_2-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:06:59.524712Z\",\r\n \"lastBootTime\": \"2015-03-31T18:06:59.3577122Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.162.115\",\r\n \"affinityId\": \"TVM:tvm-1900272697_2-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_3-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_3-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:00.7874676Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:00.3784638Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.110.48\",\r\n \"affinityId\": \"TVM:tvm-1900272697_3-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:01:58 GMT" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6f3e234a-820e-476e-8462-a77ff4dc5893" + "d47033ba-ed58-4130-b44a-476f319eb332" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +427,10 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 20:01:32 GMT" + "Thu, 09 Jul 2015 19:09:05 GMT" + ], + "ETag": [ + "0x8D28890DD2FCEE8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,16 +448,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9dcd5cc7-d0d0-4643-bf18-8ecb356cf21f" + "97c5a71a-20ed-41a7-b8cc-1b81da0b1e90" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 20:01:31 GMT" + "Thu, 09 Jul 2015 19:09:04 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_2-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_2-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:06:59.524712Z\",\r\n \"lastBootTime\": \"2015-03-31T18:06:59.3577122Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.162.115\",\r\n \"affinityId\": \"TVM:tvm-1900272697_2-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_3-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_3-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:00.7874676Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:00.3784638Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.110.48\",\r\n \"affinityId\": \"TVM:tvm-1900272697_3-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_2-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.7418843Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.6548918Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.16.79\",\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.773026Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6520273Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_3-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.6824444Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.603148Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.12.86\",\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.7094503Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6014509Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +466,7 @@ "chunked" ], "request-id": [ - "218f489f-935c-471a-9c33-f3cb7a62bad6" + "b8dc375a-d6a4-4485-a395-79de12725d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +475,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 20:01:31 GMT" + "Thu, 09 Jul 2015 19:09:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -259,8 +484,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXM/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -268,28 +493,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9762a015-f135-4b98-a520-5e565e7ed812" + "cc4b156b-c680-4bab-a958-f7059f651fda" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 20:01:30 GMT" + "Thu, 09 Jul 2015 19:09:05 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool\",\r\n \"eTag\": \"0x8D239F3C1ACE69C\",\r\n \"lastModified\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"creationTime\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-03-31T18:01:54.9119282Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_2-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.7418843Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.6548918Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.16.79\",\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.773026Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6520273Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_3-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.6824444Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.603148Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.12.86\",\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.7094503Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6014509Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 31 Mar 2015 18:00:50 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2a373398-ddbe-4b69-8f16-8ee0cb9bca87" + "fd2ebc3e-c897-4765-ba15-ba8bae0131c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -298,10 +520,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 20:01:31 GMT" - ], - "ETag": [ - "0x8D239F3C1ACE69C" + "Thu, 09 Jul 2015 19:09:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,6 +531,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMPipeline.json index 788cdd865be2..1ace6daeadb3 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMPipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "484" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14954" ], "x-ms-request-id": [ - "2119547b-dd77-47b8-ac73-3b767df562c1" + "a106087c-b1ec-4530-b6af-0c052e3fd143" ], "x-ms-correlation-request-id": [ - "2119547b-dd77-47b8-ac73-3b767df562c1" + "a106087c-b1ec-4530-b6af-0c052e3fd143" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T195612Z:2119547b-dd77-47b8-ac73-3b767df562c1" + "WESTUS:20150709T190729Z:a106087c-b1ec-4530-b6af-0c052e3fd143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,139 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 19:56:12 GMT" + "Thu, 09 Jul 2015 19:07:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "293a7fd2-0f70-4d62-8c27-2ba515e64d17" + ], + "x-ms-correlation-request-id": [ + "293a7fd2-0f70-4d62-8c27-2ba515e64d17" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190733Z:293a7fd2-0f70-4d62-8c27-2ba515e64d17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:07:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:07:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "0ff03895-8f2d-4b46-878c-5bb89277249c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "3e35ef54-65f9-4204-a8c9-18599316680c" + ], + "x-ms-correlation-request-id": [ + "3e35ef54-65f9-4204-a8c9-18599316680c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190730Z:3e35ef54-65f9-4204-a8c9-18599316680c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:07:30 GMT" + ], + "ETag": [ + "0x8D28891A380988E" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vmtests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"vmtests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "307" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +184,94 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 19:56:14 GMT" + "Thu, 09 Jul 2015 19:07:33 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e08a48ff-375f-4451-929b-d9384d0e8d00" + "9bf0cf37-c0c6-4d56-8838-51b373d10166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14961" ], "x-ms-request-id": [ - "6004b6c8-11fa-4aa0-9838-fc6662526fd4" + "d525eb99-e8d2-4b4f-adc0-ec3384306759" ], "x-ms-correlation-request-id": [ - "6004b6c8-11fa-4aa0-9838-fc6662526fd4" + "d525eb99-e8d2-4b4f-adc0-ec3384306759" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T195614Z:6004b6c8-11fa-4aa0-9838-fc6662526fd4" + "WESTUS:20150709T190733Z:d525eb99-e8d2-4b4f-adc0-ec3384306759" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 19:56:13 GMT" + "Thu, 09 Jul 2015 19:07:32 GMT" ], "ETag": [ - "0x8D23A03E0C6A4B2" + "0x8D28891A50F8DB7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "3841bd00-bce1-4021-adfb-81c12e9ef677" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "eb060db8-de4b-4d03-8638-53a9bb76ef54" + ], + "x-ms-correlation-request-id": [ + "eb060db8-de4b-4d03-8638-53a9bb76ef54" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190730Z:eb060db8-de4b-4d03-8638-53a9bb76ef54" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:07:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,19 +280,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"vmtests\",\r\n \"primary\": \"Q3qH/tNRG6f8IWCxnJnlOt/RWKp6IxlULHwHuT0Dpjrj5Q3JbIfh35ilSKLO9goKaG9ML2Xl//xyg5dAyjPwXQ==\",\r\n \"secondary\": \"C4qco6CRJmOtPm+NZuJ1mejaE60cRvWiczMiI5YkVP0W7ZAeV/jh0vHzd6YF7MZCirT4lKUwIi7RVeN7ZxX3TQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -139,28 +307,79 @@ "no-cache" ], "request-id": [ - "7347dec3-7770-4784-96fc-2d5cd8c6b2ab" + "e1fda8a4-e7cf-4b23-bd35-73cdd46c9767" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1185" ], "x-ms-request-id": [ - "7746b4b8-c977-4e52-b01e-10edfbfc93a8" + "7eac1d07-baee-47e8-97ad-cbd22d763461" ], "x-ms-correlation-request-id": [ - "7746b4b8-c977-4e52-b01e-10edfbfc93a8" + "7eac1d07-baee-47e8-97ad-cbd22d763461" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T195614Z:7746b4b8-c977-4e52-b01e-10edfbfc93a8" + "WESTUS:20150709T190733Z:7eac1d07-baee-47e8-97ad-cbd22d763461" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 19:56:13 GMT" + "Thu, 09 Jul 2015 19:07:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "cf37fb7b-dd22-4721-bc45-39f2bf684bd7" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 19:07:31 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:01:58 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "ac314e79-c95d-442f-bdbc-d0656ff1fd58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 19:07:31 GMT" + ], + "ETag": [ + "0x8D28890DD2FCEE8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -178,28 +397,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "08c4a290-f70d-444c-ac08-b16ee221abbb" + "7c86d485-aa55-427d-8ba8-3c38d25d36b9" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 19:56:14 GMT" + "Thu, 09 Jul 2015 19:07:33 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool\",\r\n \"eTag\": \"0x8D239F3C1ACE69C\",\r\n \"lastModified\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"creationTime\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-03-31T18:01:54.9119282Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 31 Mar 2015 18:00:50 GMT" + "Thu, 09 Jul 2015 19:01:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7d2b16cf-043b-431e-b94d-892ece3a0f57" + "56986e1a-0e85-4000-9a18-b180c499bb37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,10 +427,10 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 19:56:15 GMT" + "Thu, 09 Jul 2015 19:07:32 GMT" ], "ETag": [ - "0x8D239F3C1ACE69C" + "0x8D28890DD2FCEE8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -229,16 +448,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cca17ee0-6349-41e3-bf42-78a8cde0120e" + "0f245589-8cb1-4aa0-a1fb-7877b136b772" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 19:56:15 GMT" + "Thu, 09 Jul 2015 19:07:33 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_2-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_2-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:06:59.524712Z\",\r\n \"lastBootTime\": \"2015-03-31T18:06:59.3577122Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.162.115\",\r\n \"affinityId\": \"TVM:tvm-1900272697_2-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_3-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_3-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:00.7874676Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:00.3784638Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.110.48\",\r\n \"affinityId\": \"TVM:tvm-1900272697_3-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:05:21.2458155Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_2-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:04:51.2463856Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.16.79\",\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_3-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:04:51.299389Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.12.86\",\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -247,7 +466,7 @@ "chunked" ], "request-id": [ - "9dfcb13e-6dbf-4fbe-8d8c-dd35da216b77" + "21f8f86c-159e-4ce3-b83a-cceaad6521f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,7 +475,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 19:56:15 GMT" + "Thu, 09 Jul 2015 19:07:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -267,6 +486,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMsByFilter.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMsByFilter.json index 21eecacfd5d2..d5ad9ffed953 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMsByFilter.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMsByFilter.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "484" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14972" ], "x-ms-request-id": [ - "4cc6b28a-714a-4687-95fe-9a73680cb643" + "ae6591a9-b6e8-4f2e-8d14-70ef6a9bc06a" ], "x-ms-correlation-request-id": [ - "4cc6b28a-714a-4687-95fe-9a73680cb643" + "ae6591a9-b6e8-4f2e-8d14-70ef6a9bc06a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184647Z:4cc6b28a-714a-4687-95fe-9a73680cb643" + "WESTUS:20150709T190841Z:ae6591a9-b6e8-4f2e-8d14-70ef6a9bc06a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,139 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:46:47 GMT" + "Thu, 09 Jul 2015 19:08:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "dd79a1df-d588-42ae-a48a-c8eecbc33041" + ], + "x-ms-correlation-request-id": [ + "dd79a1df-d588-42ae-a48a-c8eecbc33041" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190843Z:dd79a1df-d588-42ae-a48a-c8eecbc33041" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:08:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:08:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "4bb6d8c1-fee6-4b30-9286-8ac5770e57a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "29d7a57e-38c5-4b06-81f0-bbf3103799dc" + ], + "x-ms-correlation-request-id": [ + "29d7a57e-38c5-4b06-81f0-bbf3103799dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190843Z:29d7a57e-38c5-4b06-81f0-bbf3103799dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:08:42 GMT" + ], + "ETag": [ + "0x8D28891CECB69E5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vmtests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"vmtests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "307" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 18:46:49 GMT" + "Thu, 09 Jul 2015 19:08:44 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "66263c80-a975-4d4b-8785-9c8d9f41bdc0" + "8e16aa74-87d2-4197-83e0-d7ba2dc112fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14947" ], "x-ms-request-id": [ - "a6aa2d40-ce64-48c1-90e8-0f2294f1c3c8" + "61d8ec4d-6904-4528-94fa-4794fffd3a33" ], "x-ms-correlation-request-id": [ - "a6aa2d40-ce64-48c1-90e8-0f2294f1c3c8" + "61d8ec4d-6904-4528-94fa-4794fffd3a33" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184649Z:a6aa2d40-ce64-48c1-90e8-0f2294f1c3c8" + "WESTUS:20150709T190844Z:61d8ec4d-6904-4528-94fa-4794fffd3a33" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:46:49 GMT" + "Thu, 09 Jul 2015 19:08:43 GMT" ], "ETag": [ - "0x8D239FA2E75F6E6" + "0x8D28891CF45279F" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,19 +223,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"vmtests\",\r\n \"primary\": \"Q3qH/tNRG6f8IWCxnJnlOt/RWKp6IxlULHwHuT0Dpjrj5Q3JbIfh35ilSKLO9goKaG9ML2Xl//xyg5dAyjPwXQ==\",\r\n \"secondary\": \"C4qco6CRJmOtPm+NZuJ1mejaE60cRvWiczMiI5YkVP0W7ZAeV/jh0vHzd6YF7MZCirT4lKUwIi7RVeN7ZxX3TQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -139,28 +250,28 @@ "no-cache" ], "request-id": [ - "bf78b918-1749-413f-9429-bc94cc608994" + "22e8be9e-751f-4305-ad02-54498386ee47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1185" ], "x-ms-request-id": [ - "048a9684-d6d7-4e60-865e-3e3f549839bf" + "e494cb09-e0ad-44e1-8525-3c0d01dbcc6a" ], "x-ms-correlation-request-id": [ - "048a9684-d6d7-4e60-865e-3e3f549839bf" + "e494cb09-e0ad-44e1-8525-3c0d01dbcc6a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184649Z:048a9684-d6d7-4e60-865e-3e3f549839bf" + "WESTUS:20150709T190843Z:e494cb09-e0ad-44e1-8525-3c0d01dbcc6a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:46:49 GMT" + "Thu, 09 Jul 2015 19:08:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,8 +280,116 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms?api-version=2014-10-01.1.0&$filter=state%20eq%20'idle'", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXM/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjAmJGZpbHRlcj1zdGF0ZSUyMGVxJTIwJTI3aWRsZSUyNw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "f577dcdb-8d7f-489e-97a0-6de3878b03fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-request-id": [ + "ba4551a3-cb71-447f-aa7a-55fbd0619809" + ], + "x-ms-correlation-request-id": [ + "ba4551a3-cb71-447f-aa7a-55fbd0619809" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T190844Z:ba4551a3-cb71-447f-aa7a-55fbd0619809" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:08:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "WA-Batch/1.0" + ], + "client-request-id": [ + "f7ea52c0-0ec6-4aab-bd13-244339caf803" + ], + "return-client-request-id": [ + "False" + ], + "ocp-date": [ + "Thu, 09 Jul 2015 19:08:43 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:01:58 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "request-id": [ + "f8623cd2-7b3d-44cb-aa9b-49db19da35ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Thu, 09 Jul 2015 19:08:42 GMT" + ], + "ETag": [ + "0x8D28890DD2FCEE8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,25 +397,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "43bc9c23-d2fd-4510-ab47-d360c7d6579b" + "0638c8ae-9bc0-4eae-a1b5-71b630e50d30" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:46:50 GMT" + "Thu, 09 Jul 2015 19:08:44 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_2-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_2-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:06:59.524712Z\",\r\n \"lastBootTime\": \"2015-03-31T18:06:59.3577122Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.162.115\",\r\n \"affinityId\": \"TVM:tvm-1900272697_2-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_3-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_3-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:00.7874676Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:00.3784638Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.110.48\",\r\n \"affinityId\": \"TVM:tvm-1900272697_3-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:01:58 GMT" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "a4a342aa-8cd0-4cab-9202-16b88e0e729d" + "462fafa6-ce2e-436b-ad97-bd74b7c25041" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +427,10 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:46:51 GMT" + "Thu, 09 Jul 2015 19:08:44 GMT" + ], + "ETag": [ + "0x8D28890DD2FCEE8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,16 +448,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "3bd9a720-99c6-4a0a-a1c4-62d4d1155fda" + "cee3aae2-7202-4d63-994f-1e078bdcfe4f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:46:52 GMT" + "Thu, 09 Jul 2015 19:08:43 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_2-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_2-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:06:59.524712Z\",\r\n \"lastBootTime\": \"2015-03-31T18:06:59.3577122Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.162.115\",\r\n \"affinityId\": \"TVM:tvm-1900272697_2-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_3-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_3-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:00.7874676Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:00.3784638Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.110.48\",\r\n \"affinityId\": \"TVM:tvm-1900272697_3-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_2-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.7418843Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.6548918Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.16.79\",\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.773026Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6520273Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_3-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.6824444Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.603148Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.12.86\",\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.7094503Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6014509Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +466,7 @@ "chunked" ], "request-id": [ - "baa887aa-d0b4-4981-8ea9-7b1118029bc7" + "1a689dc3-1cbe-4a2f-ba38-7917e568baf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +475,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:46:53 GMT" + "Thu, 09 Jul 2015 19:08:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -259,8 +484,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms?api-version=2014-10-01.1.0&$filter=state%20eq%20'idle'", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXM/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjAmJGZpbHRlcj1zdGF0ZSUyMGVxJTIwJTI3aWRsZSUyNw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -268,28 +493,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0b222f20-7f2f-42a1-a03a-6371b42d1454" + "9aea07bd-00a1-4095-8084-24e36f0e19f8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:46:51 GMT" + "Thu, 09 Jul 2015 19:08:44 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool\",\r\n \"eTag\": \"0x8D239F3C1ACE69C\",\r\n \"lastModified\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"creationTime\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-03-31T18:01:54.9119282Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_2-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.7418843Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.6548918Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.16.79\",\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.773026Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6520273Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_3-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:05.6824444Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:05.603148Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.12.86\",\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:05.7094503Z\",\r\n \"endTime\": \"2015-07-09T19:08:06.6014509Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], - "Last-Modified": [ - "Tue, 31 Mar 2015 18:00:50 GMT" - ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7eb559c7-1327-4cc9-9027-5338bc680fae" + "a2327881-6635-4618-afc5-58e3873926d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -298,10 +520,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:46:51 GMT" - ], - "ETag": [ - "0x8D239F3C1ACE69C" + "Thu, 09 Jul 2015 19:08:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,6 +531,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMsWithMaxCount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMsWithMaxCount.json index 0b578615f692..40ddbfe4f7c0 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMsWithMaxCount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMTests/TestListVMsWithMaxCount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "484" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14952" ], "x-ms-request-id": [ - "ddfe301a-7621-4bef-af88-dfe50b7f9632" + "b1cf458a-6d2a-4b62-b665-bbabc096bdfc" ], "x-ms-correlation-request-id": [ - "ddfe301a-7621-4bef-af88-dfe50b7f9632" + "b1cf458a-6d2a-4b62-b665-bbabc096bdfc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184853Z:ddfe301a-7621-4bef-af88-dfe50b7f9632" + "WESTUS:20150709T190754Z:b1cf458a-6d2a-4b62-b665-bbabc096bdfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,28 +43,28 @@ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:48:52 GMT" + "Thu, 09 Jul 2015 19:07:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vmtests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"vmtests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "307" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,37 +73,37 @@ "-1" ], "Last-Modified": [ - "Tue, 31 Mar 2015 18:48:55 GMT" + "Thu, 09 Jul 2015 19:07:55 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "ae4f90c4-e525-450c-9066-06ffa1426d68" + "62f33c15-25d7-454b-bcfa-5a96da77c33f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14960" ], "x-ms-request-id": [ - "122d4e95-1c4a-451d-b5cf-42e53689e81d" + "786a6e4b-abe1-49bc-b28a-1ea7bca9ef81" ], "x-ms-correlation-request-id": [ - "122d4e95-1c4a-451d-b5cf-42e53689e81d" + "786a6e4b-abe1-49bc-b28a-1ea7bca9ef81" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184855Z:122d4e95-1c4a-451d-b5cf-42e53689e81d" + "WESTUS:20150709T190754Z:786a6e4b-abe1-49bc-b28a-1ea7bca9ef81" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:48:54 GMT" + "Thu, 09 Jul 2015 19:07:54 GMT" ], "ETag": [ - "0x8D239FA79759302" + "0x8D28891B20D255A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -112,19 +112,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy92bXRlc3RzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"vmtests\",\r\n \"primary\": \"Q3qH/tNRG6f8IWCxnJnlOt/RWKp6IxlULHwHuT0Dpjrj5Q3JbIfh35ilSKLO9goKaG9ML2Xl//xyg5dAyjPwXQ==\",\r\n \"secondary\": \"C4qco6CRJmOtPm+NZuJ1mejaE60cRvWiczMiI5YkVP0W7ZAeV/jh0vHzd6YF7MZCirT4lKUwIi7RVeN7ZxX3TQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "229" @@ -139,28 +139,28 @@ "no-cache" ], "request-id": [ - "31bf9729-ffbf-4d1d-ac5e-f1971de83a3c" + "dfb717f9-052b-4fd8-a338-6dec4f60cbbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1184" ], "x-ms-request-id": [ - "292a06e2-7a25-4650-b0a5-8174c2f9a38c" + "ca8bd2b4-3423-43a1-931b-3a98f72bd631" ], "x-ms-correlation-request-id": [ - "292a06e2-7a25-4650-b0a5-8174c2f9a38c" + "ca8bd2b4-3423-43a1-931b-3a98f72bd631" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150331T184855Z:292a06e2-7a25-4650-b0a5-8174c2f9a38c" + "WESTUS:20150709T190755Z:ca8bd2b4-3423-43a1-931b-3a98f72bd631" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 31 Mar 2015 18:48:55 GMT" + "Thu, 09 Jul 2015 19:07:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -178,16 +178,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "00c74354-4562-4666-a38d-90717fa1711f" + "b1a34319-302f-4dfd-b9e2-a133ce0b5904" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:48:55 GMT" + "Thu, 09 Jul 2015 19:07:54 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_2-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_2-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:06:59.524712Z\",\r\n \"lastBootTime\": \"2015-03-31T18:06:59.3577122Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.162.115\",\r\n \"affinityId\": \"TVM:tvm-1900272697_2-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_3-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_3-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:00.7874676Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:00.3784638Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.110.48\",\r\n \"affinityId\": \"TVM:tvm-1900272697_3-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:05:21.2458155Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_2-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:04:51.2463856Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.16.79\",\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_3-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:04:51.299389Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.12.86\",\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -196,7 +196,7 @@ "chunked" ], "request-id": [ - "e5acb192-36b1-46b4-b49c-176af106d958" + "2e120e66-7dfd-4f2e-b67a-200b834d07bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:48:57 GMT" + "Thu, 09 Jul 2015 19:07:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,16 +223,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "62ff97f3-7358-4130-8e67-a2321c37ced9" + "328ad2c5-7e1a-4331-a970-8bb95ed82ec3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:48:57 GMT" + "Thu, 09 Jul 2015 19:07:55 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-1900272697_1-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:20.6560023Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:20.513005Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.118.52\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_2-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_2-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:06:59.524712Z\",\r\n \"lastBootTime\": \"2015-03-31T18:06:59.3577122Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.162.115\",\r\n \"affinityId\": \"TVM:tvm-1900272697_2-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-1900272697_3-20150331t180155z\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_3-20150331t180155z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-03-31T18:08:00.7874676Z\",\r\n \"lastBootTime\": \"2015-03-31T18:08:00.3784638Z\",\r\n \"tvmAllocationTime\": \"2015-03-31T18:01:55.4609252Z\",\r\n \"ipAddress\": \"10.78.110.48\",\r\n \"affinityId\": \"TVM:tvm-1900272697_3-20150331t180155z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms\",\r\n \"value\": [\r\n {\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:05:21.2458155Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_2-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_2-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:04:51.2463856Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.16.79\",\r\n \"affinityId\": \"TVM:tvm-4155946844_2-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n },\r\n {\r\n \"name\": \"tvm-4155946844_3-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_3-20150709t190321z\",\r\n \"state\": \"starting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:04:51.299389Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.12.86\",\r\n \"affinityId\": \"TVM:tvm-4155946844_3-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -241,7 +241,7 @@ "chunked" ], "request-id": [ - "6c5fa1c5-a510-4cd9-8a45-2abcaeb5ac9b" + "9c45ec26-b7f9-435c-8a76-3c0c24a91d90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:48:58 GMT" + "Thu, 09 Jul 2015 19:07:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -268,28 +268,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "618c4dc8-808a-4f02-8423-bf6cffc2399e" + "c57fdb9a-ca29-4cc6-a015-602633b2216f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 31 Mar 2015 18:48:56 GMT" + "Thu, 09 Jul 2015 19:07:55 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://vmtests.batch-test.windows-int.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://vmtests.batch-test.windows-int.net/pools/testPool\",\r\n \"eTag\": \"0x8D239F3C1ACE69C\",\r\n \"lastModified\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"creationTime\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-31T18:00:50.1831324Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-03-31T18:01:54.9119282Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D28890DD2FCEE8\",\r\n \"lastModified\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"creationTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:01:58.0227304Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-07-09T19:03:22.4082136Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 31 Mar 2015 18:00:50 GMT" + "Thu, 09 Jul 2015 19:01:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "655ed8c0-8482-465b-9f44-988a5ac6f342" + "f486b117-f6f9-4791-90ff-2ab374f11163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -298,10 +298,10 @@ "3.0" ], "Date": [ - "Tue, 31 Mar 2015 18:48:57 GMT" + "Thu, 09 Jul 2015 19:07:54 GMT" ], "ETag": [ - "0x8D239F3C1ACE69C" + "0x8D28890DD2FCEE8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,6 +312,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestCreateUser.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestCreateUser.json index 05d6336ff61b..2639bea7b030 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestCreateUser.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestCreateUser.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"name\": \"usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "904" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14942" ], "x-ms-request-id": [ - "6cf41e2b-efd9-4746-b6da-514d941f0e33" + "83528e31-a25c-4788-8ae5-dc54985efcf0" ], "x-ms-correlation-request-id": [ - "6cf41e2b-efd9-4746-b6da-514d941f0e33" + "83528e31-a25c-4788-8ae5-dc54985efcf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205415Z:6cf41e2b-efd9-4746-b6da-514d941f0e33" + "WESTUS:20150709T191256Z:83528e31-a25c-4788-8ae5-dc54985efcf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:54:14 GMT" + "Thu, 09 Jul 2015 19:12:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"name\": \"usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "904" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14941" ], "x-ms-request-id": [ - "0974daaa-ed68-4a4e-91a9-5ca1b6dd8511" + "a7c638ff-068b-45dc-a4ad-02befdc0b92f" ], "x-ms-correlation-request-id": [ - "0974daaa-ed68-4a4e-91a9-5ca1b6dd8511" + "a7c638ff-068b-45dc-a4ad-02befdc0b92f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205418Z:0974daaa-ed68-4a4e-91a9-5ca1b6dd8511" + "WESTUS:20150709T191259Z:a7c638ff-068b-45dc-a4ad-02befdc0b92f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:54:18 GMT" + "Thu, 09 Jul 2015 19:12:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"usertests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"usertests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 07 Apr 2015 20:54:16 GMT" + "Thu, 09 Jul 2015 19:12:58 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6d44e23b-4743-449e-861b-ea5de6803be2" + "043ed543-4758-4a7a-b20a-5aa16c9ad629" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14984" ], "x-ms-request-id": [ - "5e6ccbb5-1258-437b-96d2-d503bcf7150d" + "ca419151-4f3e-451b-8952-b9dfc78d35a8" ], "x-ms-correlation-request-id": [ - "5e6ccbb5-1258-437b-96d2-d503bcf7150d" + "ca419151-4f3e-451b-8952-b9dfc78d35a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205415Z:5e6ccbb5-1258-437b-96d2-d503bcf7150d" + "WESTUS:20150709T191257Z:ca419151-4f3e-451b-8952-b9dfc78d35a8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:54:14 GMT" + "Thu, 09 Jul 2015 19:12:56 GMT" ], "ETag": [ - "0x8D23F8C25256258" + "0x8D288926693216B" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"usertests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"usertests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 07 Apr 2015 20:54:19 GMT" + "Thu, 09 Jul 2015 19:12:59 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "98eba386-33c1-49cf-b139-23cda79f6297" + "6bf50b9c-611b-4a49-ad5d-e6c59d65d67f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14983" ], "x-ms-request-id": [ - "2ea9d970-1701-4e9b-8c68-78d19a859b73" + "39921995-8cfd-47a2-89df-e87840d398c1" ], "x-ms-correlation-request-id": [ - "2ea9d970-1701-4e9b-8c68-78d19a859b73" + "39921995-8cfd-47a2-89df-e87840d398c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205419Z:2ea9d970-1701-4e9b-8c68-78d19a859b73" + "WESTUS:20150709T191259Z:39921995-8cfd-47a2-89df-e87840d398c1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:54:18 GMT" + "Thu, 09 Jul 2015 19:12:58 GMT" ], "ETag": [ - "0x8D23F8C2738FD74" + "0x8D2889267BB7501" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"usertests\",\r\n \"primary\": \"ZwKYqE/etpYU+5I6sHBT/JU0iFYjhQy5o7u/t0VadKp9/LHVZVL61mEz2b6nZ+5qX9UR1eyEKc5SfLlhtX0i9Q==\",\r\n \"secondary\": \"C227ETQSsRIVdDE1wj+L7LGFvtem8Km9yLxxe9ZQ6z6uVFfy1WqFinA/nR4BVeEqZKrFFdjF4+U9aKayXqi7dA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "31b83f0c-8bc6-4e0a-823f-26adb000a361" + "eaff5378-586b-4db9-9cae-e67af36b457e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-request-id": [ - "198ec1f1-98b9-4532-9d45-0c6253f9aa4c" + "9abb4380-6add-4320-abc5-afcbcc97c0bf" ], "x-ms-correlation-request-id": [ - "198ec1f1-98b9-4532-9d45-0c6253f9aa4c" + "9abb4380-6add-4320-abc5-afcbcc97c0bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205416Z:198ec1f1-98b9-4532-9d45-0c6253f9aa4c" + "WESTUS:20150709T191258Z:9abb4380-6add-4320-abc5-afcbcc97c0bf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:54:16 GMT" + "Thu, 09 Jul 2015 19:12:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"usertests\",\r\n \"primary\": \"ZwKYqE/etpYU+5I6sHBT/JU0iFYjhQy5o7u/t0VadKp9/LHVZVL61mEz2b6nZ+5qX9UR1eyEKc5SfLlhtX0i9Q==\",\r\n \"secondary\": \"C227ETQSsRIVdDE1wj+L7LGFvtem8Km9yLxxe9ZQ6z6uVFfy1WqFinA/nR4BVeEqZKrFFdjF4+U9aKayXqi7dA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "04df20ad-30ba-4c95-9cdb-6a6bfdd8f779" + "663616d1-af7a-4f1f-ae9f-ffc90fb60827" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-request-id": [ - "29b83899-daf3-4a1c-a18e-0d1c3d272d19" + "5f53135c-1f1d-4b4b-8d99-565fa3f142a1" ], "x-ms-correlation-request-id": [ - "29b83899-daf3-4a1c-a18e-0d1c3d272d19" + "5f53135c-1f1d-4b4b-8d99-565fa3f142a1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205419Z:29b83899-daf3-4a1c-a18e-0d1c3d272d19" + "WESTUS:20150709T191259Z:5f53135c-1f1d-4b4b-8d99-565fa3f142a1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:54:19 GMT" + "Thu, 09 Jul 2015 19:12:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,28 +337,28 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch-test.windows-int.net/$metadata#users/@Element\",\r\n \"name\": \"testCreateUser\",\r\n \"isAdmin\": false,\r\n \"password\": \"Password1234!\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#users/@Element\",\r\n \"name\": \"testCreateUser\",\r\n \"isAdmin\": false,\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "153" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "078391b0-7b7a-4298-857a-eb411261090b" + "7ba22d11-4475-4eee-9176-175156c8cf24" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:54:16 GMT" + "Thu, 09 Jul 2015 19:12:57 GMT" ] }, "ResponseBody": "", @@ -367,7 +367,7 @@ "chunked" ], "request-id": [ - "53029d9e-4f23-4857-bd6e-6cbc7f3aad08" + "4abef40e-1ad4-4a79-95f1-72f3f3f9e9c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,13 +376,13 @@ "3.0" ], "DataServiceId": [ - "https://usertests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testCreateUser" + "https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testCreateUser" ], "Date": [ - "Tue, 07 Apr 2015 20:54:17 GMT" + "Thu, 09 Jul 2015 19:12:59 GMT" ], "Location": [ - "https://usertests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testCreateUser" + "https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testCreateUser" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -391,40 +391,40 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch-test.windows-int.net/$metadata#users/@Element\",\r\n \"name\": \"testCreateUser\",\r\n \"isAdmin\": false,\r\n \"password\": \"Password1234!\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#users/@Element\",\r\n \"name\": \"testCreateUser\",\r\n \"isAdmin\": false,\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "153" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "14bd4ace-84c2-4f01-9920-2cf2fd62bd93" + "8eb8bf84-4867-4a0c-909e-577a836d7822" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:54:17 GMT" + "Thu, 09 Jul 2015 19:12:58 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://usertests.batch-test.windows-int.net/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"TVMUserExists\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified TVM user already exists.\\nRequestId:8c3a49c8-5081-41c5-9b83-f75cd66eac02\\nTime:2015-04-07T20:54:18.3545138Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"TVMUserExists\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified TVM user already exists.\\nRequestId:20530430-7c5c-43b9-a775-963acfe15619\\nTime:2015-07-09T19:12:59.7706581Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "339" + "333" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "request-id": [ - "8c3a49c8-5081-41c5-9b83-f75cd66eac02" + "20530430-7c5c-43b9-a775-963acfe15619" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -433,7 +433,7 @@ "3.0" ], "Date": [ - "Tue, 07 Apr 2015 20:54:18 GMT" + "Thu, 09 Jul 2015 19:12:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -442,8 +442,8 @@ "StatusCode": 409 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testCreateUser?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzL3Rlc3RDcmVhdGVVc2VyP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testCreateUser?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3VzZXJzL3Rlc3RDcmVhdGVVc2VyP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -451,13 +451,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "dd87baaa-9046-455a-a308-3a8ed71c1332" + "cc050c73-f9b6-4c35-95c4-d8fa65da442e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:54:19 GMT" + "Thu, 09 Jul 2015 19:12:59 GMT" ] }, "ResponseBody": "", @@ -466,7 +466,7 @@ "chunked" ], "request-id": [ - "b0aadf5e-32c8-4084-9711-da3f5bbd9c65" + "8e790db7-cc8a-42a1-a07e-edfe740da515" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -475,7 +475,7 @@ "3.0" ], "Date": [ - "Tue, 07 Apr 2015 20:54:20 GMT" + "Thu, 09 Jul 2015 19:12:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -486,6 +486,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestCreateUserPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestCreateUserPipeline.json index 0ac8a29877fb..6b4d5a5ecc1c 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestCreateUserPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestCreateUserPipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"name\": \"usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "904" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14940" ], "x-ms-request-id": [ - "2b8c7775-bf36-4a70-b69e-1e1cf1bd4222" + "c242e5b2-be99-4205-90b8-dea526eaeafa" ], "x-ms-correlation-request-id": [ - "2b8c7775-bf36-4a70-b69e-1e1cf1bd4222" + "c242e5b2-be99-4205-90b8-dea526eaeafa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205330Z:2b8c7775-bf36-4a70-b69e-1e1cf1bd4222" + "WESTUS:20150709T191343Z:c242e5b2-be99-4205-90b8-dea526eaeafa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:53:30 GMT" + "Thu, 09 Jul 2015 19:13:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"name\": \"usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "904" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14939" ], "x-ms-request-id": [ - "48ac8475-e734-49a5-9968-384a094a7a06" + "1fb5558b-af75-4506-8361-3d44f89adbfd" ], "x-ms-correlation-request-id": [ - "48ac8475-e734-49a5-9968-384a094a7a06" + "1fb5558b-af75-4506-8361-3d44f89adbfd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205339Z:48ac8475-e734-49a5-9968-384a094a7a06" + "WESTUS:20150709T191346Z:1fb5558b-af75-4506-8361-3d44f89adbfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:53:38 GMT" + "Thu, 09 Jul 2015 19:13:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"usertests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"usertests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 07 Apr 2015 20:53:33 GMT" + "Thu, 09 Jul 2015 19:13:43 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2c198d09-b493-4da6-88bf-d1fd05735229" + "64249f21-2a12-4632-9451-8f2dbe09b11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14980" ], "x-ms-request-id": [ - "8328d2d0-a2c9-45e8-9f82-c360177b7f1f" + "931cf84a-ac1c-44e6-a89b-4f7ef9686634" ], "x-ms-correlation-request-id": [ - "8328d2d0-a2c9-45e8-9f82-c360177b7f1f" + "931cf84a-ac1c-44e6-a89b-4f7ef9686634" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205332Z:8328d2d0-a2c9-45e8-9f82-c360177b7f1f" + "WESTUS:20150709T191343Z:931cf84a-ac1c-44e6-a89b-4f7ef9686634" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:53:31 GMT" + "Thu, 09 Jul 2015 19:13:43 GMT" ], "ETag": [ - "0x8D23F8C0B60A74B" + "0x8D2889281F83F30" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"usertests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"usertests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 07 Apr 2015 20:53:40 GMT" + "Thu, 09 Jul 2015 19:13:46 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "693f8a27-8bac-47ef-bd53-479457e3a5cf" + "0622491c-cbb3-4c41-899d-7bee064c6975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14979" ], "x-ms-request-id": [ - "76677735-26d2-4ac6-a2f3-b2c3fd10aa4c" + "1020b287-2b60-47b1-b176-76baba5da4b8" ], "x-ms-correlation-request-id": [ - "76677735-26d2-4ac6-a2f3-b2c3fd10aa4c" + "1020b287-2b60-47b1-b176-76baba5da4b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205339Z:76677735-26d2-4ac6-a2f3-b2c3fd10aa4c" + "WESTUS:20150709T191346Z:1020b287-2b60-47b1-b176-76baba5da4b8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:53:39 GMT" + "Thu, 09 Jul 2015 19:13:45 GMT" ], "ETag": [ - "0x8D23F8C0FA2BA33" + "0x8D28892836F5A83" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"usertests\",\r\n \"primary\": \"ZwKYqE/etpYU+5I6sHBT/JU0iFYjhQy5o7u/t0VadKp9/LHVZVL61mEz2b6nZ+5qX9UR1eyEKc5SfLlhtX0i9Q==\",\r\n \"secondary\": \"C227ETQSsRIVdDE1wj+L7LGFvtem8Km9yLxxe9ZQ6z6uVFfy1WqFinA/nR4BVeEqZKrFFdjF4+U9aKayXqi7dA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "f608f7e2-c2a7-478d-bdee-a93440818db1" + "e4e43540-818a-4782-b6a2-c6c67eb2de9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-request-id": [ - "faf3d073-5e67-4ae5-9c2e-427217c9b310" + "2de704c3-d109-4b72-a4d0-616218b838a3" ], "x-ms-correlation-request-id": [ - "faf3d073-5e67-4ae5-9c2e-427217c9b310" + "2de704c3-d109-4b72-a4d0-616218b838a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205332Z:faf3d073-5e67-4ae5-9c2e-427217c9b310" + "WESTUS:20150709T191343Z:2de704c3-d109-4b72-a4d0-616218b838a3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:53:32 GMT" + "Thu, 09 Jul 2015 19:13:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"usertests\",\r\n \"primary\": \"ZwKYqE/etpYU+5I6sHBT/JU0iFYjhQy5o7u/t0VadKp9/LHVZVL61mEz2b6nZ+5qX9UR1eyEKc5SfLlhtX0i9Q==\",\r\n \"secondary\": \"C227ETQSsRIVdDE1wj+L7LGFvtem8Km9yLxxe9ZQ6z6uVFfy1WqFinA/nR4BVeEqZKrFFdjF4+U9aKayXqi7dA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "d797d0c9-780f-417b-bb06-177e7b15ed04" + "82f0a5fa-c5e9-4dce-986f-e1e2be5bd47f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1193" ], "x-ms-request-id": [ - "8431165b-60b3-4783-a44f-8b08786f32fe" + "95d49206-c522-4eff-bf2a-9009bd14d17c" ], "x-ms-correlation-request-id": [ - "8431165b-60b3-4783-a44f-8b08786f32fe" + "95d49206-c522-4eff-bf2a-9009bd14d17c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205339Z:8431165b-60b3-4783-a44f-8b08786f32fe" + "WESTUS:20150709T191346Z:95d49206-c522-4eff-bf2a-9009bd14d17c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:53:39 GMT" + "Thu, 09 Jul 2015 19:13:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,8 +337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6P2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -346,16 +346,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "04dee933-ae70-49bf-b346-f94a66ee83f5" + "45067313-4d20-49e4-8b2e-66cf085a3840" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:53:32 GMT" + "Thu, 09 Jul 2015 19:13:43 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://usertests.batch-test.windows-int.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-1900272697_1-20150407t180708z\",\r\n \"url\": \"https://usertests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-04-07T18:11:41.08236Z\",\r\n \"lastBootTime\": \"2015-04-07T18:11:40.9903631Z\",\r\n \"tvmAllocationTime\": \"2015-04-07T18:07:08.0116698Z\",\r\n \"ipAddress\": \"100.76.208.53\",\r\n \"affinityId\": \"TVM:tvm-1900272697_1-20150407t180708z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 0\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#tvms/@Element\",\r\n \"name\": \"tvm-4155946844_1-20150709t190321z\",\r\n \"url\": \"https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z\",\r\n \"state\": \"idle\",\r\n \"stateTransitionTime\": \"2015-07-09T19:08:35.5466164Z\",\r\n \"lastBootTime\": \"2015-07-09T19:08:35.4786184Z\",\r\n \"tvmAllocationTime\": \"2015-07-09T19:03:21.1746171Z\",\r\n \"ipAddress\": \"10.76.28.116\",\r\n \"affinityId\": \"TVM:tvm-4155946844_1-20150709t190321z\",\r\n \"tvmSize\": \"small\",\r\n \"totalTasksRun\": 6,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2015-07-09T19:08:35.5776188Z\",\r\n \"endTime\": \"2015-07-09T19:08:36.4942084Z\",\r\n \"exitCode\": 0,\r\n \"retryCount\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -364,7 +364,7 @@ "chunked" ], "request-id": [ - "ebca18c2-c886-42c5-af5c-130cfeab61f2" + "da4cd283-cf0f-4a1f-b6e4-b291ad5cc43d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,7 +373,7 @@ "3.0" ], "Date": [ - "Tue, 07 Apr 2015 20:53:33 GMT" + "Thu, 09 Jul 2015 19:13:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -382,28 +382,28 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch-test.windows-int.net/$metadata#users/@Element\",\r\n \"name\": \"testCreateUserPipe\",\r\n \"isAdmin\": true,\r\n \"expiryTime\": \"2015-04-12T13:53:32.6341253-07:00\",\r\n \"password\": \"Password1234!\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#users/@Element\",\r\n \"name\": \"testCreateUserPipe\",\r\n \"isAdmin\": true,\r\n \"expiryTime\": \"2015-07-14T12:13:43.8552601-07:00\",\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "205" + "201" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "779caebf-7a66-49ed-9704-51f7f98cba7c" + "e1814419-7f23-4a86-b9c3-37cd7a78a016" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:53:33 GMT" + "Thu, 09 Jul 2015 19:13:44 GMT" ] }, "ResponseBody": "", @@ -412,7 +412,7 @@ "chunked" ], "request-id": [ - "c90fca31-d0f4-46ff-af36-39c047bb043e" + "7bb27e99-78bc-4066-99f6-c5564ce8f0c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -421,13 +421,13 @@ "3.0" ], "DataServiceId": [ - "https://usertests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testCreateUserPipe" + "https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testCreateUserPipe" ], "Date": [ - "Tue, 07 Apr 2015 20:53:35 GMT" + "Thu, 09 Jul 2015 19:13:44 GMT" ], "Location": [ - "https://usertests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testCreateUserPipe" + "https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testCreateUserPipe" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -436,40 +436,40 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch-test.windows-int.net/$metadata#users/@Element\",\r\n \"name\": \"testCreateUserPipe\",\r\n \"isAdmin\": false,\r\n \"password\": \"Password1234!\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#users/@Element\",\r\n \"name\": \"testCreateUserPipe\",\r\n \"isAdmin\": false,\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "157" + "153" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "5703850f-d30c-4e66-8a9c-285a3749a66c" + "4a1bd4c2-3d0d-462d-948f-56838f21ad00" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:53:35 GMT" + "Thu, 09 Jul 2015 19:13:45 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://usertests.batch-test.windows-int.net/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"TVMUserExists\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified TVM user already exists.\\nRequestId:c02e151f-6b8f-4880-a5bc-4104d9f043b9\\nTime:2015-04-07T20:53:38.2587510Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"TVMUserExists\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified TVM user already exists.\\nRequestId:45c16cc4-1412-4b84-aae4-22216cb4a3fd\\nTime:2015-07-09T19:13:46.1877610Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "339" + "333" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "request-id": [ - "c02e151f-6b8f-4880-a5bc-4104d9f043b9" + "45c16cc4-1412-4b84-aae4-22216cb4a3fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -478,7 +478,7 @@ "3.0" ], "Date": [ - "Tue, 07 Apr 2015 20:53:38 GMT" + "Thu, 09 Jul 2015 19:13:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -487,8 +487,8 @@ "StatusCode": 409 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testCreateUserPipe?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzL3Rlc3RDcmVhdGVVc2VyUGlwZT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testCreateUserPipe?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3VzZXJzL3Rlc3RDcmVhdGVVc2VyUGlwZT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -496,13 +496,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ad1bcd71-f533-4c44-905c-c061961f8867" + "e66e0c6f-7cf0-42b3-85c3-da7b1d2df3cf" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:53:39 GMT" + "Thu, 09 Jul 2015 19:13:46 GMT" ] }, "ResponseBody": "", @@ -511,7 +511,7 @@ "chunked" ], "request-id": [ - "f9fe0ad2-af79-44e8-9a73-2d3c7e183411" + "c9b438b8-5f1a-4993-9194-54d41cc392df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,7 +520,7 @@ "3.0" ], "Date": [ - "Tue, 07 Apr 2015 20:53:42 GMT" + "Thu, 09 Jul 2015 19:13:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -531,6 +531,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestDeleteUser.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestDeleteUser.json index 086ee2792a52..bfc5fbfaa53b 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestDeleteUser.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.VMUserTests/TestDeleteUser.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"name\": \"usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "904" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14982" ], "x-ms-request-id": [ - "4370728e-480f-4cf3-8f40-cf5fdbe3d746" + "de1fe9c8-f14b-44a3-8d8c-882d31c49054" ], "x-ms-correlation-request-id": [ - "4370728e-480f-4cf3-8f40-cf5fdbe3d746" + "de1fe9c8-f14b-44a3-8d8c-882d31c49054" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205505Z:4370728e-480f-4cf3-8f40-cf5fdbe3d746" + "WESTUS:20150709T191319Z:de1fe9c8-f14b-44a3-8d8c-882d31c49054" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:55:05 GMT" + "Thu, 09 Jul 2015 19:13:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/cmdletexample/providers/Microsoft.Batch/batchAccounts/cmdletexample\",\r\n \"name\": \"cmdletexample\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/filetests\",\r\n \"name\": \"filetests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"name\": \"usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/vmtests\",\r\n \"name\": \"vmtests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "904" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14981" ], "x-ms-request-id": [ - "f3b05266-2c89-49bd-ba32-b4a89f50ed77" + "6df812cb-a393-4b6b-b76c-e0c8c4e5e970" ], "x-ms-correlation-request-id": [ - "f3b05266-2c89-49bd-ba32-b4a89f50ed77" + "6df812cb-a393-4b6b-b76c-e0c8c4e5e970" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205509Z:f3b05266-2c89-49bd-ba32-b4a89f50ed77" + "WESTUS:20150709T191321Z:6df812cb-a393-4b6b-b76c-e0c8c4e5e970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +91,28 @@ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:55:08 GMT" + "Thu, 09 Jul 2015 19:13:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"usertests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"usertests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Tue, 07 Apr 2015 20:55:07 GMT" + "Thu, 09 Jul 2015 19:13:20 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4fc6e93f-353f-4936-9083-7588469efb69" + "dbab0f8e-9df7-4214-abbf-2212d9e138c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14945" ], "x-ms-request-id": [ - "e2e2f4f5-2db3-4c91-b7c4-57b2f0684a8e" + "64250a4d-e318-40f3-91b6-5a4acea9d14d" ], "x-ms-correlation-request-id": [ - "e2e2f4f5-2db3-4c91-b7c4-57b2f0684a8e" + "64250a4d-e318-40f3-91b6-5a4acea9d14d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205507Z:e2e2f4f5-2db3-4c91-b7c4-57b2f0684a8e" + "WESTUS:20150709T191320Z:64250a4d-e318-40f3-91b6-5a4acea9d14d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:55:06 GMT" + "Thu, 09 Jul 2015 19:13:19 GMT" ], "ETag": [ - "0x8D23F8C43C2E924" + "0x8D2889273C645D7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -160,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"usertests\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"usertests.batch-test.windows-int.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Tue, 07 Apr 2015 20:55:10 GMT" + "Thu, 09 Jul 2015 19:13:21 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "0ee575e3-c223-4d07-a949-6b349fd9dcbd" + "d355e46a-8f25-4f48-9477-8c6a6c7503e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14944" ], "x-ms-request-id": [ - "740c69f6-56a6-4c5f-b73a-c3422e1550f2" + "9569ca94-d142-447c-97a7-d337f3815708" ], "x-ms-correlation-request-id": [ - "740c69f6-56a6-4c5f-b73a-c3422e1550f2" + "9569ca94-d142-447c-97a7-d337f3815708" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205509Z:740c69f6-56a6-4c5f-b73a-c3422e1550f2" + "WESTUS:20150709T191321Z:9569ca94-d142-447c-97a7-d337f3815708" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:55:09 GMT" + "Thu, 09 Jul 2015 19:13:20 GMT" ], "ETag": [ - "0x8D23F8C4537FB16" + "0x8D288927497083A" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -223,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"usertests\",\r\n \"primary\": \"ZwKYqE/etpYU+5I6sHBT/JU0iFYjhQy5o7u/t0VadKp9/LHVZVL61mEz2b6nZ+5qX9UR1eyEKc5SfLlhtX0i9Q==\",\r\n \"secondary\": \"C227ETQSsRIVdDE1wj+L7LGFvtem8Km9yLxxe9ZQ6z6uVFfy1WqFinA/nR4BVeEqZKrFFdjF4+U9aKayXqi7dA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,28 +250,28 @@ "no-cache" ], "request-id": [ - "66bc0696-d24b-4902-b0b6-9f5fd68285b8" + "c3daada0-46b6-402c-8d31-f5f311d5274f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1190" ], "x-ms-request-id": [ - "f6520c7c-25d9-4f27-a586-ab03af28f72f" + "360ad7ca-c9c8-4e64-a404-b9edf58489d9" ], "x-ms-correlation-request-id": [ - "f6520c7c-25d9-4f27-a586-ab03af28f72f" + "360ad7ca-c9c8-4e64-a404-b9edf58489d9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205507Z:f6520c7c-25d9-4f27-a586-ab03af28f72f" + "WESTUS:20150709T191320Z:360ad7ca-c9c8-4e64-a404-b9edf58489d9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:55:07 GMT" + "Thu, 09 Jul 2015 19:13:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -280,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/22e614a1-bbb9-4692-acc9-e5c8e9b22b7e/resourceGroups/tests/providers/Microsoft.Batch/batchAccounts/usertests/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjJlNjE0YTEtYmJiOS00NjkyLWFjYzktZTVjOGU5YjIyYjdlL3Jlc291cmNlR3JvdXBzL3Rlc3RzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy91c2VydGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"usertests\",\r\n \"primary\": \"ZwKYqE/etpYU+5I6sHBT/JU0iFYjhQy5o7u/t0VadKp9/LHVZVL61mEz2b6nZ+5qX9UR1eyEKc5SfLlhtX0i9Q==\",\r\n \"secondary\": \"C227ETQSsRIVdDE1wj+L7LGFvtem8Km9yLxxe9ZQ6z6uVFfy1WqFinA/nR4BVeEqZKrFFdjF4+U9aKayXqi7dA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,28 +307,28 @@ "no-cache" ], "request-id": [ - "719faf34-1bff-43a4-82d1-b91b6aabcf35" + "10a9d81d-b27e-480d-b7fe-0b9a3baedd86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1189" ], "x-ms-request-id": [ - "41913a4a-4374-455f-adbe-049271664114" + "95b81fe6-f3f0-4d13-90b8-f73228060f1b" ], "x-ms-correlation-request-id": [ - "41913a4a-4374-455f-adbe-049271664114" + "95b81fe6-f3f0-4d13-90b8-f73228060f1b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150407T205509Z:41913a4a-4374-455f-adbe-049271664114" + "WESTUS:20150709T191322Z:95b81fe6-f3f0-4d13-90b8-f73228060f1b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 07 Apr 2015 20:55:09 GMT" + "Thu, 09 Jul 2015 19:13:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -337,28 +337,28 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3VzZXJzP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch-test.windows-int.net/$metadata#users/@Element\",\r\n \"name\": \"testDeleteUser\",\r\n \"isAdmin\": false,\r\n \"password\": \"Password1234!\"\r\n}", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#users/@Element\",\r\n \"name\": \"testDeleteUser\",\r\n \"isAdmin\": false,\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json;odata=minimalmetadata" ], "Content-Length": [ - "153" + "149" ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "65e7e56d-c9cb-4a67-8b89-2b987ff71e6c" + "2f02c8fe-daf0-4b77-9e13-c5ad7b893310" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:55:07 GMT" + "Thu, 09 Jul 2015 19:13:20 GMT" ] }, "ResponseBody": "", @@ -367,7 +367,7 @@ "chunked" ], "request-id": [ - "033072f5-a417-413d-8a8b-767ff5dc84b7" + "5f69b7bc-a083-475d-b932-486b08965cba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,13 +376,13 @@ "3.0" ], "DataServiceId": [ - "https://usertests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testDeleteUser" + "https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testDeleteUser" ], "Date": [ - "Tue, 07 Apr 2015 20:55:08 GMT" + "Thu, 09 Jul 2015 19:13:20 GMT" ], "Location": [ - "https://usertests.batch-test.windows-int.net/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testDeleteUser" + "https://pstests.batch.core.windows.net/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testDeleteUser" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -391,8 +391,8 @@ "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testDeleteUser?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzL3Rlc3REZWxldGVVc2VyP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", + "RequestUri": "/pools/testPool/tvms/tvm-4155946844_1-20150709t190321z/users/testDeleteUser?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTQxNTU5NDY4NDRfMS0yMDE1MDcwOXQxOTAzMjF6L3VzZXJzL3Rlc3REZWxldGVVc2VyP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -400,13 +400,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bdf8b466-dd05-4c02-a49d-8ca88e224437" + "099bd034-8204-4d1b-8126-00ff790cdf87" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Tue, 07 Apr 2015 20:55:09 GMT" + "Thu, 09 Jul 2015 19:13:21 GMT" ] }, "ResponseBody": "", @@ -415,7 +415,7 @@ "chunked" ], "request-id": [ - "516138c5-95b5-478f-8705-938fec1d7909" + "9b670f90-66f3-4b16-8e49-e47277f86974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -424,62 +424,17 @@ "3.0" ], "Date": [ - "Tue, 07 Apr 2015 20:55:10 GMT" + "Thu, 09 Jul 2015 19:13:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 - }, - { - "RequestUri": "/pools/testPool/tvms/tvm-1900272697_1-20150407t180708z/users/testDeleteUser?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL3R2bXMvdHZtLTE5MDAyNzI2OTdfMS0yMDE1MDQwN3QxODA3MDh6L3VzZXJzL3Rlc3REZWxldGVVc2VyP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "WA-Batch/1.0" - ], - "client-request-id": [ - "a0085412-42fa-4804-814d-8f388b638e2e" - ], - "return-client-request-id": [ - "False" - ], - "ocp-date": [ - "Tue, 07 Apr 2015 20:55:10 GMT" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://usertests.batch-test.windows-int.net/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"TVMUserNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified TVM user does not exist.\\nRequestId:9d453475-23f1-4c5d-8ddb-1fb551273bd6\\nTime:2015-04-07T20:55:11.5700599Z\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "341" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "request-id": [ - "9d453475-23f1-4c5d-8ddb-1fb551273bd6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 07 Apr 2015 20:55:11 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 404 } ], "Names": {}, "Variables": { - "SubscriptionId": "22e614a1-bbb9-4692-acc9-e5c8e9b22b7e" + "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b" } } \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestDeleteWorkItem.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestDeleteWorkItem.json index 13624a5b37b6..bc0edc8ec973 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestDeleteWorkItem.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestDeleteWorkItem.json @@ -1,25 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-wi?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXdpP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi\",\r\n \"name\": \"test-delete-wi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "181" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" ], "x-ms-request-id": [ - "c00985e2-b295-443b-ab78-325b93b02940" + "ad2d38ee-27af-49b6-a6a6-c2d86bf3986f" ], "x-ms-correlation-request-id": [ - "c00985e2-b295-443b-ab78-325b93b02940" + "ad2d38ee-27af-49b6-a6a6-c2d86bf3986f" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T223545Z:c00985e2-b295-443b-ab78-325b93b02940" + "WESTUS:20150709T192144Z:ad2d38ee-27af-49b6-a6a6-c2d86bf3986f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,31 +43,28 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:35:45 GMT" + "Thu, 09 Jul 2015 19:21:44 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRld2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -81,59 +72,47 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "request-id": [ - "1a0b5f96-8483-4a6f-921d-5a286b22970e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" ], "x-ms-request-id": [ - "9dcd823e-85ad-42e7-88b4-7f9185b9ed83" + "26a3cf5c-7164-4bb6-a0ec-f3608ce7c5a4" ], "x-ms-correlation-request-id": [ - "9dcd823e-85ad-42e7-88b4-7f9185b9ed83" + "26a3cf5c-7164-4bb6-a0ec-f3608ce7c5a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T223552Z:9dcd823e-85ad-42e7-88b4-7f9185b9ed83" + "WESTUS:20150709T192146Z:26a3cf5c-7164-4bb6-a0ec-f3608ce7c5a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:35:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi/operationResults/1a0b5f96-8483-4a6f-921d-5a286b22970e?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 09 Jul 2015 19:21:46 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi/operationResults/1a0b5f96-8483-4a6f-921d-5a286b22970e?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRld2kvb3BlcmF0aW9uUmVzdWx0cy8xYTBiNWY5Ni04NDgzLTRhNmYtOTIxZC01YTI4NmIyMjk3MGU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletewi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletewi.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "327" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +121,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:35:51 GMT" + "Thu, 09 Jul 2015 19:21:45 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e3d46f87-650b-4625-af2d-e628343fc531" + "ce3458f9-c3b5-4efc-a718-e8cf00128d00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14935" ], "x-ms-request-id": [ - "5a40dedc-14ae-4273-8f8f-f67030c0d228" + "9757d2fc-f063-4d57-9ae9-4423bf6880b0" ], "x-ms-correlation-request-id": [ - "5a40dedc-14ae-4273-8f8f-f67030c0d228" + "9757d2fc-f063-4d57-9ae9-4423bf6880b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T223552Z:5a40dedc-14ae-4273-8f8f-f67030c0d228" + "WESTUS:20150709T192145Z:9757d2fc-f063-4d57-9ae9-4423bf6880b0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:35:52 GMT" + "Thu, 09 Jul 2015 19:21:45 GMT" ], "ETag": [ - "0x8D224E2B44E9190" + "0x8D28893A122A157" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +160,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRld2kvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletewi\",\r\n \"primary\": \"ZzUH+hSBd8mWKs84XakcD61+u87smZlzDDdkXQ9Jt8JxCQssER+GSVIaaXuPP+GCP2YNP54+JXcG9A+Nqy3FXg==\",\r\n \"secondary\": \"HfZ3cWd9DF2DY3VTjsnu3u2b7YdHd16jCqYUp7WzzxyN4RohrmWqD4JOEqzziTxfaz2r0K/u/o80EyI+2n6CKw==\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,32 +183,38 @@ "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:21:46 GMT" + ], "Pragma": [ "no-cache" ], "request-id": [ - "6256a2e2-6664-4096-82e6-b9aea40ecc98" + "c2c2fba8-f3c7-4b0d-b83c-772d03d624ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" ], "x-ms-request-id": [ - "56391321-1177-432c-9dee-d72aac21737d" + "976094c4-8515-4173-ab05-2a39763c160e" ], "x-ms-correlation-request-id": [ - "56391321-1177-432c-9dee-d72aac21737d" + "976094c4-8515-4173-ab05-2a39763c160e" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T223552Z:56391321-1177-432c-9dee-d72aac21737d" + "WESTUS:20150709T192146Z:976094c4-8515-4173-ab05-2a39763c160e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:35:52 GMT" + "Thu, 09 Jul 2015 19:21:46 GMT" + ], + "ETag": [ + "0x8D28893A1C6EF56" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRld2kvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletewi\",\r\n \"primary\": \"ZzUH+hSBd8mWKs84XakcD61+u87smZlzDDdkXQ9Jt8JxCQssER+GSVIaaXuPP+GCP2YNP54+JXcG9A+Nqy3FXg==\",\r\n \"secondary\": \"HfZ3cWd9DF2DY3VTjsnu3u2b7YdHd16jCqYUp7WzzxyN4RohrmWqD4JOEqzziTxfaz2r0K/u/o80EyI+2n6CKw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +250,28 @@ "no-cache" ], "request-id": [ - "47d746b2-14dd-4e4c-af13-34ad0e08d384" + "f9830db4-de43-475f-a89b-990decb7258f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1165" ], "x-ms-request-id": [ - "711aca3f-a9ce-44b7-bbac-7802230a59d8" + "59a9eb8c-ea15-4dc2-9807-022ee1888b57" ], "x-ms-correlation-request-id": [ - "711aca3f-a9ce-44b7-bbac-7802230a59d8" + "59a9eb8c-ea15-4dc2-9807-022ee1888b57" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T223657Z:711aca3f-a9ce-44b7-bbac-7802230a59d8" + "WESTUS:20150709T192146Z:59a9eb8c-ea15-4dc2-9807-022ee1888b57" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:36:56 GMT" + "Thu, 09 Jul 2015 19:21:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -295,130 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Content-Length": [ - "168" - ], - "User-Agent": [ - "WA-Batch/1.0" - ], - "client-request-id": [ - "215c8196-31b3-4710-97e7-2078d995f9fa" - ], - "return-client-request-id": [ - "False" - ], - "ocp-date": [ - "Wed, 04 Mar 2015 22:36:54 GMT" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Last-Modified": [ - "Wed, 04 Mar 2015 22:36:53 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "8e8b0ed7-8338-4583-bdf5-fbabbca0d6ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "DataServiceVersion": [ - "3.0" - ], - "DataServiceId": [ - "https://testdeletewi.batch.core.windows.net/workitems/testWorkItem" - ], - "Date": [ - "Wed, 04 Mar 2015 22:36:54 GMT" - ], - "ETag": [ - "0x8D224E2D952ACA8" - ], - "Location": [ - "https://testdeletewi.batch.core.windows.net/workitems/testWorkItem" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi\",\r\n \"name\": \"testdeletewi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "750" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "1dea7f4d-7cbf-49a2-ba90-288bcce67dae" - ], - "x-ms-correlation-request-id": [ - "1dea7f4d-7cbf-49a2-ba90-288bcce67dae" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T223656Z:1dea7f4d-7cbf-49a2-ba90-288bcce67dae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:36:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRld2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletewi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletewi.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "327" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,38 +303,32 @@ "Expires": [ "-1" ], - "Last-Modified": [ - "Wed, 04 Mar 2015 22:36:56 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "8f049e9c-b4de-464e-85bd-94707aa76e55" + "2ab05e4d-3cd1-410e-9b1b-7382ea36057b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1164" ], "x-ms-request-id": [ - "55ae9aed-7b1f-457e-9af5-904342920ee2" + "b8249d27-5e46-426f-ac6b-d399f6266c16" ], "x-ms-correlation-request-id": [ - "55ae9aed-7b1f-457e-9af5-904342920ee2" + "b8249d27-5e46-426f-ac6b-d399f6266c16" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T223657Z:55ae9aed-7b1f-457e-9af5-904342920ee2" + "WESTUS:20150709T192147Z:b8249d27-5e46-426f-ac6b-d399f6266c16" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:36:56 GMT" - ], - "ETag": [ - "0x8D224E2DAF53055" + "Thu, 09 Jul 2015 19:21:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -468,32 +339,38 @@ { "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"odata.metadata\": \"https://batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "Content-Length": [ + "168" + ], "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "93122a4b-80ac-4015-af5c-fb11ace70aef" + "6b6a5cd8-c986-427c-9502-245d8057b5c5" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:36:57 GMT" + "Thu, 09 Jul 2015 19:21:46 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletewi.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletewi.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E2D952ACA8\",\r\n \"lastModified\": \"2015-03-04T22:36:53.9944104Z\",\r\n \"creationTime\": \"2015-03-04T22:36:53.9944104Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:36:53.9944104Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletewi.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata" + "Last-Modified": [ + "Thu, 09 Jul 2015 19:21:46 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d4805b7b-2593-4dc0-a480-21b3c486a704" + "fe46b6e2-fe16-4c67-bae2-3cecc87a4c9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,14 +378,23 @@ "DataServiceVersion": [ "3.0" ], + "DataServiceId": [ + "https://pstests.batch.core.windows.net/workitems/testWorkItem" + ], "Date": [ - "Wed, 04 Mar 2015 22:36:57 GMT" + "Thu, 09 Jul 2015 19:21:45 GMT" + ], + "ETag": [ + "0x8D28893A1CA0CF7" + ], + "Location": [ + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { "RequestUri": "/workitems?api-version=2014-10-01.1.0", @@ -520,16 +406,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "cac4063a-6259-451d-a103-bb0de4f67f04" + "b72982b1-e33b-404f-af0a-7277f9eea080" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:36:58 GMT" + "Thu, 09 Jul 2015 19:21:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletewi.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletewi.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E2D952ACA8\",\r\n \"lastModified\": \"2015-03-04T22:36:53.9944104Z\",\r\n \"creationTime\": \"2015-03-04T22:36:53.9944104Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-03-04T22:36:57.8970391Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-03-04T22:36:53.9944104Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletewi.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28893A1CA0CF7\",\r\n \"lastModified\": \"2015-07-09T19:21:46.8604663Z\",\r\n \"creationTime\": \"2015-07-09T19:21:46.8604663Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:21:46.8604663Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -538,7 +424,7 @@ "chunked" ], "request-id": [ - "516e5dc6-98b7-446a-a2a1-1585094fc332" + "aa1ec397-eb26-4d79-bd69-05f8fa99256f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,7 +433,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:36:58 GMT" + "Thu, 09 Jul 2015 19:21:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -556,31 +442,34 @@ "StatusCode": 200 }, { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", - "RequestMethod": "DELETE", + "RequestUri": "/workitems?api-version=2014-10-01.1.0", + "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "WA-Batch/1.0" ], "client-request-id": [ - "2b6dc39f-6571-4865-87aa-9752f51d8ac4" + "29f48353-e048-4e8a-aa78-706a950a6ab2" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:36:58 GMT" + "Thu, 09 Jul 2015 19:21:48 GMT" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28893A1CA0CF7\",\r\n \"lastModified\": \"2015-07-09T19:21:46.8604663Z\",\r\n \"creationTime\": \"2015-07-09T19:21:46.8604663Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:21:48.7260097Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:21:46.8604663Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata" + ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1b5facf3-6862-49b5-80d1-97f55c0a8d30" + "4ba6ee85-c674-4fb8-bb53-180cc9efa44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,13 +478,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:36:57 GMT" + "Thu, 09 Jul 2015 19:21:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", @@ -607,25 +496,22 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1d46722e-e95b-4d5c-8fd8-3de01342650d" + "366e78c0-2640-448d-9a8f-7a7c2e619898" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:36:59 GMT" + "Thu, 09 Jul 2015 19:21:48 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletewi.batch.core.windows.net/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"WorkItemBeingDeleted\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified workitem has been marked for deletion and is being reclaimed.\\nRequestId:18885d14-8254-4359-aca7-253d45e94b99\\nTime:2015-03-04T22:36:58.9834844Z\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "382" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata" + "Transfer-Encoding": [ + "chunked" ], "request-id": [ - "18885d14-8254-4359-aca7-253d45e94b99" + "50bbb297-3a32-4e54-a73e-43dadb402d51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -634,391 +520,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:36:58 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 409 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRld2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "5a474a82-5295-41da-aa8f-77af0f02b831" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "0a601b32-2398-4638-b218-ebaee9f12574" - ], - "x-ms-correlation-request-id": [ - "0a601b32-2398-4638-b218-ebaee9f12574" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T223701Z:0a601b32-2398-4638-b218-ebaee9f12574" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:37:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi/operationResults/5a474a82-5295-41da-aa8f-77af0f02b831?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:21:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi/providers/Microsoft.Batch/batchAccounts/testdeletewi/operationResults/5a474a82-5295-41da-aa8f-77af0f02b831?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0ZGVsZXRld2kvb3BlcmF0aW9uUmVzdWx0cy81YTQ3NGE4Mi01Mjk1LTQxZGEtYWE4Zi03N2FmMGYwMmI4MzE/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 22:37:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "711910ac-fff0-4076-9e04-63686e2b067c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "d537351b-9c68-4ee9-a3bf-13382aa49207" - ], - "x-ms-correlation-request-id": [ - "d537351b-9c68-4ee9-a3bf-13382aa49207" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T223701Z:d537351b-9c68-4ee9-a3bf-13382aa49207" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:37:01 GMT" - ], - "ETag": [ - "0x8D224E2DD6AB7D5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-wi?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXdpP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "3fb46ebb-c321-49a6-b059-d85eb84a473a" - ], - "x-ms-correlation-request-id": [ - "3fb46ebb-c321-49a6-b059-d85eb84a473a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T223703Z:3fb46ebb-c321-49a6-b059-d85eb84a473a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:37:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWMGt0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "5ea7b1d2-a562-4aac-89e7-087c93c0e5a6" - ], - "x-ms-correlation-request-id": [ - "5ea7b1d2-a562-4aac-89e7-087c93c0e5a6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T223703Z:5ea7b1d2-a562-4aac-89e7-087c93c0e5a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:37:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWMGt0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "a766082a-f570-4065-ab4b-4c06f53c856b" - ], - "x-ms-correlation-request-id": [ - "a766082a-f570-4065-ab4b-4c06f53c856b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T223718Z:a766082a-f570-4065-ab4b-4c06f53c856b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:37:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWMGt0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "0d5d8433-b528-406f-ad3e-0432aebdb914" - ], - "x-ms-correlation-request-id": [ - "0d5d8433-b528-406f-ad3e-0432aebdb914" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T223734Z:0d5d8433-b528-406f-ad3e-0432aebdb914" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:37:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWMGt0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "657fb9d0-26d5-4de4-b39f-602893c84807" - ], - "x-ms-correlation-request-id": [ - "657fb9d0-26d5-4de4-b39f-602893c84807" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T223749Z:657fb9d0-26d5-4de4-b39f-602893c84807" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:37:49 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestDeleteWorkItemPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestDeleteWorkItemPipeline.json index 723a06248252..d6f2d1001f26 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestDeleteWorkItemPipeline.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestDeleteWorkItemPipeline.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-wi-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "8b36dfad-d06e-45e2-bd44-5b1bfef56d30" + ], + "x-ms-correlation-request-id": [ + "8b36dfad-d06e-45e2-bd44-5b1bfef56d30" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192335Z:8b36dfad-d06e-45e2-bd44-5b1bfef56d30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe\",\r\n \"name\": \"test-delete-wi-pipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" ], "x-ms-request-id": [ - "1877eedc-6e31-41e9-bb35-64feec57779d" + "4cd8d825-56d9-4aa8-a7f9-9beb0dfc9cbf" ], "x-ms-correlation-request-id": [ - "1877eedc-6e31-41e9-bb35-64feec57779d" + "4cd8d825-56d9-4aa8-a7f9-9beb0dfc9cbf" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224106Z:1877eedc-6e31-41e9-bb35-64feec57779d" + "WESTUS:20150709T192337Z:4cd8d825-56d9-4aa8-a7f9-9beb0dfc9cbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:41:06 GMT" + "Thu, 09 Jul 2015 19:23:36 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV3aXBpcGU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:23:36 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], "request-id": [ - "8a5f6c65-b45d-4785-be9b-9866047c09ed" + "c3553244-89bd-4d9b-9f5b-db3ddf7db394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], "x-ms-request-id": [ - "bb4684e1-6fdd-41f7-b781-cbf20bc4e31c" + "374de562-7a11-4371-96a8-4738fda719be" ], "x-ms-correlation-request-id": [ - "bb4684e1-6fdd-41f7-b781-cbf20bc4e31c" + "374de562-7a11-4371-96a8-4738fda719be" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224110Z:bb4684e1-6fdd-41f7-b781-cbf20bc4e31c" + "WESTUS:20150709T192336Z:374de562-7a11-4371-96a8-4738fda719be" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:41:10 GMT" + "Thu, 09 Jul 2015 19:23:35 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe/operationResults/8a5f6c65-b45d-4785-be9b-9866047c09ed?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28893E3591E71" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe/operationResults/8a5f6c65-b45d-4785-be9b-9866047c09ed?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV3aXBpcGUvb3BlcmF0aW9uUmVzdWx0cy84YTVmNmM2NS1iNDVkLTQ3ODUtYmU5Yi05ODY2MDQ3YzA5ZWQ/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testdeletewipipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletewipipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "344" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:41:10 GMT" + "Thu, 09 Jul 2015 19:23:37 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e23ade32-f1b3-40cf-8264-12c416a162a9" + "0329ff33-9c75-4d6a-a337-ea8f8110082a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14932" ], "x-ms-request-id": [ - "311b0d88-b000-4478-827c-fdc98beee562" + "ef23c3bb-4dfb-4ff9-8975-72ef0a2d7540" ], "x-ms-correlation-request-id": [ - "311b0d88-b000-4478-827c-fdc98beee562" + "ef23c3bb-4dfb-4ff9-8975-72ef0a2d7540" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224110Z:311b0d88-b000-4478-827c-fdc98beee562" + "WESTUS:20150709T192337Z:ef23c3bb-4dfb-4ff9-8975-72ef0a2d7540" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:41:10 GMT" + "Thu, 09 Jul 2015 19:23:36 GMT" ], "ETag": [ - "0x8D224E37227205B" + "0x8D28893E40573C8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV3aXBpcGUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletewipipe\",\r\n \"primary\": \"ADflbJ0jUvngLLaDya3j4kw4WBdj510KBq6dcF/XYhDWhTnG+pIyhQ2wBh/v209cYjbUbheVey2MWAPHRWXFgA==\",\r\n \"secondary\": \"CJ/ZJnXN+HmywP4kGJDA/pJrMqPUtrEPFy2MFPxte9BkaYKdt8FGjYMZ4eV0zfe+fCLhk8OFS7ayZUVAyuJrCg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "238" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "f4afd0d4-800c-469b-ab80-e1d5258ab824" + "65f9808c-0228-4ca2-8375-04ac3b7cd85c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1163" ], "x-ms-request-id": [ - "7a974afe-9ce1-4d63-ad01-c88174bd045c" + "ed7cfdbf-88bc-4340-8ad5-b95e1f709c51" ], "x-ms-correlation-request-id": [ - "7a974afe-9ce1-4d63-ad01-c88174bd045c" + "ed7cfdbf-88bc-4340-8ad5-b95e1f709c51" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224111Z:7a974afe-9ce1-4d63-ad01-c88174bd045c" + "WESTUS:20150709T192336Z:ed7cfdbf-88bc-4340-8ad5-b95e1f709c51" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:41:10 GMT" + "Thu, 09 Jul 2015 19:23:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV3aXBpcGUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testdeletewipipe\",\r\n \"primary\": \"ADflbJ0jUvngLLaDya3j4kw4WBdj510KBq6dcF/XYhDWhTnG+pIyhQ2wBh/v209cYjbUbheVey2MWAPHRWXFgA==\",\r\n \"secondary\": \"CJ/ZJnXN+HmywP4kGJDA/pJrMqPUtrEPFy2MFPxte9BkaYKdt8FGjYMZ4eV0zfe+fCLhk8OFS7ayZUVAyuJrCg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "238" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "6656c788-9391-414d-b5f3-3e6055952d57" + "2a2d3500-80f4-4f81-97b0-878dc16425c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1162" ], "x-ms-request-id": [ - "b8230664-f883-4dfb-980a-b594a3b8ab37" + "d2f61fca-5dd5-4edf-97aa-f3b5c5345d70" ], "x-ms-correlation-request-id": [ - "b8230664-f883-4dfb-980a-b594a3b8ab37" + "d2f61fca-5dd5-4edf-97aa-f3b5c5345d70" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T224150Z:b8230664-f883-4dfb-980a-b594a3b8ab37" + "WESTUS:20150709T192337Z:d2f61fca-5dd5-4edf-97aa-f3b5c5345d70" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 22:41:49 GMT" + "Thu, 09 Jul 2015 19:23:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "4c6abbc4-4e64-4aef-acf3-0d38a8f84b0b" + "8b304b47-1989-4e1f-b539-b806ecc1f96d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:41:47 GMT" + "Thu, 09 Jul 2015 19:23:36 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 22:41:47 GMT" + "Thu, 09 Jul 2015 19:23:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5f4370e7-5651-4ae0-8ba5-f7a38b0f1422" + "4bdfbe39-af3a-4826-853d-93f182a1729c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testdeletewipipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Date": [ - "Wed, 04 Mar 2015 22:41:46 GMT" + "Thu, 09 Jul 2015 19:23:36 GMT" ], "ETag": [ - "0x8D224E3883374FF" + "0x8D28893E3B38210" ], "Location": [ - "https://testdeletewipipe.batch.core.windows.net/workitems/testWorkItem" + "https://pstests.batch.core.windows.net/workitems/testWorkItem" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -354,117 +396,6 @@ }, "StatusCode": 201 }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe\",\r\n \"name\": \"testdeletewipipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "763" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" - ], - "x-ms-request-id": [ - "931eb749-9941-4e60-8dc4-efcb2e3fcf71" - ], - "x-ms-correlation-request-id": [ - "931eb749-9941-4e60-8dc4-efcb2e3fcf71" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224150Z:931eb749-9941-4e60-8dc4-efcb2e3fcf71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:41:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV3aXBpcGU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testdeletewipipe\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testdeletewipipe.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "344" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 22:41:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "2a9d5242-5003-4440-8f7f-4dce8a1821bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "330ce081-cb45-4257-91c2-34750e9075e5" - ], - "x-ms-correlation-request-id": [ - "330ce081-cb45-4257-91c2-34750e9075e5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224150Z:330ce081-cb45-4257-91c2-34750e9075e5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:41:49 GMT" - ], - "ETag": [ - "0x8D224E389862150" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", @@ -475,16 +406,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c3cf68ee-6444-4909-8457-4e168c2cd126" + "a4949563-31e0-4941-983a-ed432e83b116" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:41:50 GMT" + "Thu, 09 Jul 2015 19:23:37 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletewipipe.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletewipipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E3883374FF\",\r\n \"lastModified\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"creationTime\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletewipipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28893E3B38210\",\r\n \"lastModified\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"creationTime\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -493,7 +424,7 @@ "chunked" ], "request-id": [ - "4227a533-8777-45f4-a582-7a1fe86e6cd7" + "86e8310c-5d1a-4cf5-a3c5-b68884523acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,7 +433,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:41:49 GMT" + "Thu, 09 Jul 2015 19:23:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -520,16 +451,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ff876498-b8bd-4efe-b110-cd01668b9592" + "6e9825f3-ceb2-4ce4-b073-1f4dcc7a253f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:41:51 GMT" + "Thu, 09 Jul 2015 19:23:38 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletewipipe.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletewipipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E3883374FF\",\r\n \"lastModified\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"creationTime\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-03-04T22:41:50.9049876Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletewipipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28893E3B38210\",\r\n \"lastModified\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"creationTime\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2015-07-09T19:23:39.1485788Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -538,7 +469,7 @@ "chunked" ], "request-id": [ - "afbf7756-6bb1-4330-8f95-914fbbdb4db0" + "d715d146-390b-438e-8413-ab93fbad8a2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,7 +478,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:41:51 GMT" + "Thu, 09 Jul 2015 19:23:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -565,28 +496,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "d2e2e2a6-234f-4781-9882-f65cb920a172" + "bf1946e5-c632-445d-a357-4b98f7c6b163" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:41:50 GMT" + "Thu, 09 Jul 2015 19:23:38 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletewipipe.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://testdeletewipipe.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D224E3883374FF\",\r\n \"lastModified\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"creationTime\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T22:41:47.3911039Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testdeletewipipe.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testWorkItem\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem\",\r\n \"eTag\": \"0x8D28893E3B38210\",\r\n \"lastModified\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"creationTime\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:23:37.4423568Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testWorkItem/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 22:41:47 GMT" + "Thu, 09 Jul 2015 19:23:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "c89288a4-1a54-42a0-887a-3670671db459" + "7d712550-57cb-4cc4-a94c-5e04c4b7da61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,10 +526,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:41:51 GMT" + "Thu, 09 Jul 2015 19:23:37 GMT" ], "ETag": [ - "0x8D224E3883374FF" + "0x8D28893E3B38210" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -616,13 +547,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "0580ee67-a041-4689-a232-a0c76eb050d9" + "4e3d9ba7-2778-4762-9d0a-a2a77c50d548" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 22:41:51 GMT" + "Thu, 09 Jul 2015 19:23:38 GMT" ] }, "ResponseBody": "", @@ -631,7 +562,7 @@ "chunked" ], "request-id": [ - "ffb1fb8c-2f40-4456-aefb-4fce81f41301" + "b0f61d35-43e2-4c25-9a2b-38720ac9366b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,382 +571,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 22:41:51 GMT" + "Thu, 09 Jul 2015 19:23:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/workitems/testWorkItem?api-version=2014-10-01.1.0", - "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0V29ya0l0ZW0/YXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "WA-Batch/1.0" - ], - "client-request-id": [ - "5ddfeba8-52dc-47f3-9691-ca2f879363b5" - ], - "return-client-request-id": [ - "False" - ], - "ocp-date": [ - "Wed, 04 Mar 2015 22:41:51 GMT" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testdeletewipipe.batch.core.windows.net/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"WorkItemBeingDeleted\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified workitem has been marked for deletion and is being reclaimed.\\nRequestId:0c43d085-b498-4649-842a-aa60df95f9e0\\nTime:2015-03-04T22:41:51.9177974Z\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "386" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata" - ], - "request-id": [ - "0c43d085-b498-4649-842a-aa60df95f9e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Wed, 04 Mar 2015 22:41:51 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 409 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV3aXBpcGU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "cf027f64-5928-46d6-b21e-ff3397b03f78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], - "x-ms-request-id": [ - "d086478d-45ed-41c5-a1cc-6ba2e2d2ad7c" - ], - "x-ms-correlation-request-id": [ - "d086478d-45ed-41c5-a1cc-6ba2e2d2ad7c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224153Z:d086478d-45ed-41c5-a1cc-6ba2e2d2ad7c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:41:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe/operationResults/cf027f64-5928-46d6-b21e-ff3397b03f78?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-delete-wi-pipe/providers/Microsoft.Batch/batchAccounts/testdeletewipipe/operationResults/cf027f64-5928-46d6-b21e-ff3397b03f78?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RkZWxldGV3aXBpcGUvb3BlcmF0aW9uUmVzdWx0cy9jZjAyN2Y2NC01OTI4LTQ2ZDYtYjIxZS1mZjMzOTdiMDNmNzg/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 22:41:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "45d4d4d6-5336-41c1-bc17-01fd1284b6e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "c317ba51-0538-46b6-9169-fe33e61fe01e" - ], - "x-ms-correlation-request-id": [ - "c317ba51-0538-46b6-9169-fe33e61fe01e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224154Z:c317ba51-0538-46b6-9169-fe33e61fe01e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:41:53 GMT" - ], - "ETag": [ - "0x8D224E38BE04537" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-delete-wi-pipe?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZGVsZXRlLXdpLXBpcGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "df7cfc03-e64d-4946-9b0d-54be6f014f83" - ], - "x-ms-correlation-request-id": [ - "df7cfc03-e64d-4946-9b0d-54be6f014f83" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224155Z:df7cfc03-e64d-4946-9b0d-54be6f014f83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:41:55 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0k6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0k6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWMGs2TWtSUVNWQkZMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "df7a52bb-a5bb-4c8a-8283-3735feaf3ae9" - ], - "x-ms-correlation-request-id": [ - "df7a52bb-a5bb-4c8a-8283-3735feaf3ae9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224155Z:df7a52bb-a5bb-4c8a-8283-3735feaf3ae9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:41:55 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0k6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0k6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWMGs2TWtSUVNWQkZMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "e53260d1-f6a7-405e-b5fe-047af22bb79a" - ], - "x-ms-correlation-request-id": [ - "e53260d1-f6a7-405e-b5fe-047af22bb79a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224211Z:e53260d1-f6a7-405e-b5fe-047af22bb79a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:42:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0k6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJEREVMRVRFOjJEV0k6MkRQSVBFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSRVZNUlZSRk9qSkVWMGs2TWtSUVNWQkZMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "d975684f-8d6b-4759-b478-7cc2cf86ad49" - ], - "x-ms-correlation-request-id": [ - "d975684f-8d6b-4759-b478-7cc2cf86ad49" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T224226Z:d975684f-8d6b-4759-b478-7cc2cf86ad49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 22:42:25 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestGetWorkItemByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestGetWorkItemByName.json index 55bcd095280f..82052cef65ac 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestGetWorkItemByName.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestGetWorkItemByName.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-wi?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LXdpP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "ab2b7a27-1d39-4018-a0fb-bcf35e2a15c3" + ], + "x-ms-correlation-request-id": [ + "ab2b7a27-1d39-4018-a0fb-bcf35e2a15c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192401Z:ab2b7a27-1d39-4018-a0fb-bcf35e2a15c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 19:24:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi\",\r\n \"name\": \"test-get-wi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" ], "x-ms-request-id": [ - "ae162263-6c4f-4869-b822-a9ae75c2df46" + "d8ae00ea-55e9-468b-84ff-24cc85a46266" ], "x-ms-correlation-request-id": [ - "ae162263-6c4f-4869-b822-a9ae75c2df46" + "d8ae00ea-55e9-468b-84ff-24cc85a46266" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T182235Z:ae162263-6c4f-4869-b822-a9ae75c2df46" + "WESTUS:20150709T192403Z:d8ae00ea-55e9-468b-84ff-24cc85a46266" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 18:22:35 GMT" + "Thu, 09 Jul 2015 19:24:02 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0d2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:24:02 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "request-id": [ - "baa1a64e-9503-475e-9210-8562bcac0ab6" + "d136c656-3198-4e5f-953c-1c3ffda46082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], "x-ms-request-id": [ - "71404d6d-8b47-430a-b974-81c563262f04" + "9edbc6df-66c0-42f3-8acf-8358f291f419" ], "x-ms-correlation-request-id": [ - "71404d6d-8b47-430a-b974-81c563262f04" + "9edbc6df-66c0-42f3-8acf-8358f291f419" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T182240Z:71404d6d-8b47-430a-b974-81c563262f04" + "WESTUS:20150709T192402Z:9edbc6df-66c0-42f3-8acf-8358f291f419" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 18:22:39 GMT" + "Thu, 09 Jul 2015 19:24:01 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi/operationResults/baa1a64e-9503-475e-9210-8562bcac0ab6?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28893F2BE9DAA" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi/operationResults/baa1a64e-9503-475e-9210-8562bcac0ab6?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0d2kvb3BlcmF0aW9uUmVzdWx0cy9iYWExYTY0ZS05NTAzLTQ3NWUtOTIxMC04NTYyYmNhYzBhYjY/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testgetwi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgetwi.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "315" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 18:22:40 GMT" + "Thu, 09 Jul 2015 19:24:03 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "e94e792b-7a02-4b46-ac07-e10c4c55c8d5" + "18260b9a-b4ee-4ee0-bbb7-291876a4d9b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14963" ], "x-ms-request-id": [ - "d97310e3-6c75-48a2-ba83-2d683d966479" + "6ca5abfe-20c9-489f-814b-c5cb2fdc21c6" ], "x-ms-correlation-request-id": [ - "d97310e3-6c75-48a2-ba83-2d683d966479" + "6ca5abfe-20c9-489f-814b-c5cb2fdc21c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T182240Z:d97310e3-6c75-48a2-ba83-2d683d966479" + "WESTUS:20150709T192403Z:6ca5abfe-20c9-489f-814b-c5cb2fdc21c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 18:22:40 GMT" + "Thu, 09 Jul 2015 19:24:02 GMT" ], "ETag": [ - "0x8D224BF555AC3F1" + "0x8D28893F34B98A3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0d2kvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testgetwi\",\r\n \"primary\": \"SeNAv1wlmltYz8yYEi+Cxmh8RhLIksewfyLtHgZsBlPr1GRM8X4CC03awlOgoqaos2a60SVeOOA9Sj6vSoJ4Vg==\",\r\n \"secondary\": \"a+zhQ5dBRoZzapvWetbg7M+7N5isfWq5GdOEUiF6COTBu5PW61LLEi8BgI00EU4pYZ1UjIb8AfDORVkqAIucJw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "b460ed19-af55-4dfb-b724-98be1f7fe89f" + "e082be09-d4e5-4a45-b8a6-be18cfda0605" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1180" ], "x-ms-request-id": [ - "6028024a-fe06-433d-9887-c9a8df6ee37a" + "065caafa-644f-4a88-9123-8a48249869dc" ], "x-ms-correlation-request-id": [ - "6028024a-fe06-433d-9887-c9a8df6ee37a" + "065caafa-644f-4a88-9123-8a48249869dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T182240Z:6028024a-fe06-433d-9887-c9a8df6ee37a" + "WESTUS:20150709T192402Z:065caafa-644f-4a88-9123-8a48249869dc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 18:22:40 GMT" + "Thu, 09 Jul 2015 19:24:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0d2kvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testgetwi\",\r\n \"primary\": \"SeNAv1wlmltYz8yYEi+Cxmh8RhLIksewfyLtHgZsBlPr1GRM8X4CC03awlOgoqaos2a60SVeOOA9Sj6vSoJ4Vg==\",\r\n \"secondary\": \"a+zhQ5dBRoZzapvWetbg7M+7N5isfWq5GdOEUiF6COTBu5PW61LLEi8BgI00EU4pYZ1UjIb8AfDORVkqAIucJw==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "ba0c3544-a0e9-49bc-a506-95502f569170" + "73e346e8-587c-4665-a3c2-f29143d46ea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1179" ], "x-ms-request-id": [ - "e77aa8d4-5816-4a54-967b-ce396f4e6020" + "3b6550cf-cf04-4299-a271-539f48617877" ], "x-ms-correlation-request-id": [ - "e77aa8d4-5816-4a54-967b-ce396f4e6020" + "3b6550cf-cf04-4299-a271-539f48617877" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T182316Z:e77aa8d4-5816-4a54-967b-ce396f4e6020" + "WESTUS:20150709T192403Z:3b6550cf-cf04-4299-a271-539f48617877" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 18:23:15 GMT" + "Thu, 09 Jul 2015 19:24:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "372429d8-2b49-4080-82cf-af5cdb0036da" + "c8f706b4-6c6b-4603-b6c2-49e8fee76024" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 18:23:06 GMT" + "Thu, 09 Jul 2015 19:24:02 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 18:23:10 GMT" + "Thu, 09 Jul 2015 19:24:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4376ef27-ddfd-4fbd-b7f1-2b84fd82450e" + "96b75d79-e24b-4ce2-8ecb-bfbc3a9b2e47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testgetwi.batch.core.windows.net/workitems/testName" + "https://pstests.batch.core.windows.net/workitems/testName" ], "Date": [ - "Wed, 04 Mar 2015 18:23:10 GMT" + "Thu, 09 Jul 2015 19:24:02 GMT" ], "ETag": [ - "0x8D224BF6736368E" + "0x8D28893F34B82CB" ], "Location": [ - "https://testgetwi.batch.core.windows.net/workitems/testName" + "https://pstests.batch.core.windows.net/workitems/testName" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -354,117 +396,6 @@ }, "StatusCode": 201 }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi\",\r\n \"name\": \"testgetwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "741" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "3179d022-f9c1-41b5-9ecf-b543c72bd602" - ], - "x-ms-correlation-request-id": [ - "3179d022-f9c1-41b5-9ecf-b543c72bd602" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182315Z:3179d022-f9c1-41b5-9ecf-b543c72bd602" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:23:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0d2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testgetwi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testgetwi.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "315" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 18:23:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "f3683e1a-85b9-4234-9a18-53d2ed920af0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "63a7dd82-4aea-4c8f-b37e-45d89c005cf3" - ], - "x-ms-correlation-request-id": [ - "63a7dd82-4aea-4c8f-b37e-45d89c005cf3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182316Z:63a7dd82-4aea-4c8f-b37e-45d89c005cf3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:23:15 GMT" - ], - "ETag": [ - "0x8D224BF6A6997F9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/workitems/testName?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcy90ZXN0TmFtZT9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", @@ -475,28 +406,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "3a36ebd0-120b-4793-b73d-d53b14eb4504" + "58ef7c15-c7a3-4201-a024-7ef5b3071cfd" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 18:23:17 GMT" + "Thu, 09 Jul 2015 19:24:03 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testgetwi.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testName\",\r\n \"url\": \"https://testgetwi.batch.core.windows.net/workitems/testName\",\r\n \"eTag\": \"0x8D224BF6736368E\",\r\n \"lastModified\": \"2015-03-04T18:23:10.1620878Z\",\r\n \"creationTime\": \"2015-03-04T18:23:10.1620878Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T18:23:10.1620878Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testgetwi.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"testName\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName\",\r\n \"eTag\": \"0x8D28893F34B82CB\",\r\n \"lastModified\": \"2015-07-09T19:24:03.6043467Z\",\r\n \"creationTime\": \"2015-07-09T19:24:03.6043467Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:24:03.6043467Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Wed, 04 Mar 2015 18:23:10 GMT" + "Thu, 09 Jul 2015 19:24:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "9fddc1e4-c76c-4c5d-87fb-645f37be51f8" + "fc2c02d4-518f-4680-b4f9-e894befaae65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,10 +436,10 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 18:23:18 GMT" + "Thu, 09 Jul 2015 19:24:02 GMT" ], "ETag": [ - "0x8D224BF6736368E" + "0x8D28893F34B82CB" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -526,13 +457,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "e64ef93f-18d6-4b2b-bd35-7aa639b6bd7a" + "fea07d52-e5d5-499c-a279-70a0d2a54a12" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 18:23:23 GMT" + "Thu, 09 Jul 2015 19:24:04 GMT" ] }, "ResponseBody": "", @@ -541,7 +472,7 @@ "chunked" ], "request-id": [ - "e6bbf250-9b12-46eb-b538-ee33437a8bee" + "a82627ed-3a14-40d4-9ed6-f896be825345" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,391 +481,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 18:23:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0d2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "2597dd86-0605-4b6a-b05b-6ebb858f5ffe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "fc3a9d92-443c-4eff-b4cd-d66747318af9" - ], - "x-ms-correlation-request-id": [ - "fc3a9d92-443c-4eff-b4cd-d66747318af9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182339Z:fc3a9d92-443c-4eff-b4cd-d66747318af9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:23:38 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi/operationResults/2597dd86-0605-4b6a-b05b-6ebb858f5ffe?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:24:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-get-wi/providers/Microsoft.Batch/batchAccounts/testgetwi/operationResults/2597dd86-0605-4b6a-b05b-6ebb858f5ffe?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ2V0LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0Z2V0d2kvb3BlcmF0aW9uUmVzdWx0cy8yNTk3ZGQ4Ni0wNjA1LTRiNmEtYjA1Yi02ZWJiODU4ZjVmZmU/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 18:23:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "5ffab5c3-b26b-4355-9ce4-dabe41ee6be1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "0fd44d16-1227-449c-9df3-76fb75fbfd5d" - ], - "x-ms-correlation-request-id": [ - "0fd44d16-1227-449c-9df3-76fb75fbfd5d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182339Z:0fd44d16-1227-449c-9df3-76fb75fbfd5d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:23:38 GMT" - ], - "ETag": [ - "0x8D224BF78777C24" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-get-wi?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtZ2V0LXdpP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "0ab6ed49-36b1-4f31-b67c-d76f5621c320" - ], - "x-ms-correlation-request-id": [ - "0ab6ed49-36b1-4f31-b67c-d76f5621c320" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182341Z:0ab6ed49-36b1-4f31-b67c-d76f5621c320" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:23:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVYwa3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "81fc8699-2b0e-43f8-9bbc-be44fba57d9c" - ], - "x-ms-correlation-request-id": [ - "81fc8699-2b0e-43f8-9bbc-be44fba57d9c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182341Z:81fc8699-2b0e-43f8-9bbc-be44fba57d9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:23:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVYwa3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "ecaa79c7-c5ac-40e8-82c2-ab91b842fcdb" - ], - "x-ms-correlation-request-id": [ - "ecaa79c7-c5ac-40e8-82c2-ab91b842fcdb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182356Z:ecaa79c7-c5ac-40e8-82c2-ab91b842fcdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:23:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVYwa3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "d2788fa4-ace0-4ca4-9da4-b11963d0bc36" - ], - "x-ms-correlation-request-id": [ - "d2788fa4-ace0-4ca4-9da4-b11963d0bc36" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182411Z:d2788fa4-ace0-4ca4-9da4-b11963d0bc36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:24:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJER0VUOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVSMFZVT2pKRVYwa3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "fb1c6568-9095-4b24-a23b-8a6dfadb41ec" - ], - "x-ms-correlation-request-id": [ - "fb1c6568-9095-4b24-a23b-8a6dfadb41ec" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T182427Z:fb1c6568-9095-4b24-a23b-8a6dfadb41ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 18:24:26 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListAllWorkItems.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListAllWorkItems.json index bc30370c2a5f..f5efcec9ea52 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListAllWorkItems.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListAllWorkItems.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-wi?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC13aT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "64b1cf18-3086-4a38-807d-b2ec03c544bd" + ], + "x-ms-correlation-request-id": [ + "64b1cf18-3086-4a38-807d-b2ec03c544bd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192212Z:64b1cf18-3086-4a38-807d-b2ec03c544bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:22:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi\",\r\n \"name\": \"test-list-wi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" ], "x-ms-request-id": [ - "8ffcba56-7a4a-47ae-91a8-dd6c01718126" + "850f46a7-a7ed-4f43-a521-f3abeb506340" ], "x-ms-correlation-request-id": [ - "8ffcba56-7a4a-47ae-91a8-dd6c01718126" + "850f46a7-a7ed-4f43-a521-f3abeb506340" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230236Z:8ffcba56-7a4a-47ae-91a8-dd6c01718126" + "WESTUS:20150709T192215Z:850f46a7-a7ed-4f43-a521-f3abeb506340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:02:36 GMT" + "Thu, 09 Jul 2015 19:22:14 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:22:13 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" - ], "request-id": [ - "fc9420a2-95fb-41a5-b5f4-425dce82979c" + "0711d5a5-3727-4ad9-ac0e-c45166ecc6a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], "x-ms-request-id": [ - "4fb6c446-46db-4211-a59c-4c55574e5593" + "f153ee6f-e544-4244-be86-cd8a37bcdb65" ], "x-ms-correlation-request-id": [ - "4fb6c446-46db-4211-a59c-4c55574e5593" + "f153ee6f-e544-4244-be86-cd8a37bcdb65" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230240Z:4fb6c446-46db-4211-a59c-4c55574e5593" + "WESTUS:20150709T192213Z:f153ee6f-e544-4244-be86-cd8a37bcdb65" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:02:39 GMT" + "Thu, 09 Jul 2015 19:22:13 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi/operationResults/fc9420a2-95fb-41a5-b5f4-425dce82979c?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28893B1CB03EC" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi/operationResults/fc9420a2-95fb-41a5-b5f4-425dce82979c?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aS9vcGVyYXRpb25SZXN1bHRzL2ZjOTQyMGEyLTk1ZmItNDFhNS1iNWY0LTQyNWRjZTgyOTc5Yz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistwi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistwi.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "319" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:02:40 GMT" + "Thu, 09 Jul 2015 19:22:15 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "7efb4206-0798-4824-8f28-498c21feefee" + "32a48dc3-53b9-4ba0-9778-e9e1ac301435" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14933" ], "x-ms-request-id": [ - "e9799880-174f-468f-b97d-263d84b6278f" + "3e109a7b-cbf0-4dad-87aa-f90ad5adfbd8" ], "x-ms-correlation-request-id": [ - "e9799880-174f-468f-b97d-263d84b6278f" + "3e109a7b-cbf0-4dad-87aa-f90ad5adfbd8" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230240Z:e9799880-174f-468f-b97d-263d84b6278f" + "WESTUS:20150709T192215Z:3e109a7b-cbf0-4dad-87aa-f90ad5adfbd8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:02:40 GMT" + "Thu, 09 Jul 2015 19:22:15 GMT" ], "ETag": [ - "0x8D224E672D89E3C" + "0x8D28893B2F91576" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistwi\",\r\n \"primary\": \"gbtagaKwBVVyl/8/sDaLg0JvJQM9o1LU9X+U7G/JUy3e6o46S/St6TjxFUIf037mdnIWbCKAQ1xcvWUdUYpT8Q==\",\r\n \"secondary\": \"MBaReIT3somEmXtiLWsq0fhksubS3hB8sqNxWUVfU0BYzExs0aqTZMZKUnCkUSau1ibrzt1/8VFZjIkX5Vl1sg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "b76b4416-cc8e-4129-8019-89c5e41c9043" + "8871fcaf-d09e-477e-8614-f04f5d91d14e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1176" ], "x-ms-request-id": [ - "b745c234-df7f-435d-986a-d41ad67f4f89" + "b5eec1de-2f0b-46cb-bad4-eca86e4d51e3" ], "x-ms-correlation-request-id": [ - "b745c234-df7f-435d-986a-d41ad67f4f89" + "b5eec1de-2f0b-46cb-bad4-eca86e4d51e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230240Z:b745c234-df7f-435d-986a-d41ad67f4f89" + "WESTUS:20150709T192213Z:b5eec1de-2f0b-46cb-bad4-eca86e4d51e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:02:40 GMT" + "Thu, 09 Jul 2015 19:22:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistwi\",\r\n \"primary\": \"gbtagaKwBVVyl/8/sDaLg0JvJQM9o1LU9X+U7G/JUy3e6o46S/St6TjxFUIf037mdnIWbCKAQ1xcvWUdUYpT8Q==\",\r\n \"secondary\": \"MBaReIT3somEmXtiLWsq0fhksubS3hB8sqNxWUVfU0BYzExs0aqTZMZKUnCkUSau1ibrzt1/8VFZjIkX5Vl1sg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "54064d7a-a5a0-466a-af87-f44ebf7993fa" + "c93950a6-1d29-4737-b4c7-9b7647473699" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1175" ], "x-ms-request-id": [ - "e88c9254-fa88-4ea1-bb07-f61fe2694d3b" + "0d09eba6-ff02-4e22-9ec8-cdfbfa1a631c" ], "x-ms-correlation-request-id": [ - "e88c9254-fa88-4ea1-bb07-f61fe2694d3b" + "0d09eba6-ff02-4e22-9ec8-cdfbfa1a631c" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T230352Z:e88c9254-fa88-4ea1-bb07-f61fe2694d3b" + "WESTUS:20150709T192215Z:0d09eba6-ff02-4e22-9ec8-cdfbfa1a631c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:03:51 GMT" + "Thu, 09 Jul 2015 19:22:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "61110719-f05f-4328-945d-8ede4c9b63b4" + "a0aba07e-eec0-4ba3-ba0c-227ac72a92ab" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:03:16 GMT" + "Thu, 09 Jul 2015 19:22:13 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:03:15 GMT" + "Thu, 09 Jul 2015 19:22:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "3ea507d4-7ad5-4e49-83e7-cf973bf43709" + "eb6d0878-2131-489b-94ea-b3eaba377a13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwi.batch.core.windows.net/workitems/testName1" + "https://pstests.batch.core.windows.net/workitems/testName1" ], "Date": [ - "Wed, 04 Mar 2015 23:03:16 GMT" + "Thu, 09 Jul 2015 19:22:13 GMT" ], "ETag": [ - "0x8D224E68828920D" + "0x8D28893B23ABC4F" ], "Location": [ - "https://testlistwi.batch.core.windows.net/workitems/testName1" + "https://pstests.batch.core.windows.net/workitems/testName1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -370,25 +412,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9cfcdc71-cb8b-453f-b8da-e15fb049ce65" + "40ba9866-b8bb-4ff7-b0bd-6ffed8e65e7a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:03:43 GMT" + "Thu, 09 Jul 2015 19:22:14 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:03:43 GMT" + "Thu, 09 Jul 2015 19:22:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "5009469b-e25a-4270-9406-86435e866fba" + "9005ef78-e671-43b1-a618-2f03d0daba5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,16 +439,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwi.batch.core.windows.net/workitems/testName2" + "https://pstests.batch.core.windows.net/workitems/testName2" ], "Date": [ - "Wed, 04 Mar 2015 23:03:43 GMT" + "Thu, 09 Jul 2015 19:22:14 GMT" ], "ETag": [ - "0x8D224E6985D7232" + "0x8D28893B2815B95" ], "Location": [ - "https://testlistwi.batch.core.windows.net/workitems/testName2" + "https://pstests.batch.core.windows.net/workitems/testName2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -430,25 +472,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "915a992e-b04e-4e00-9c49-0df098d41c70" + "ab5e4454-23e6-47cf-8afc-28dbdf8b7f93" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:03:49 GMT" + "Thu, 09 Jul 2015 19:22:14 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:03:49 GMT" + "Thu, 09 Jul 2015 19:22:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "7d2e1d36-e606-4df3-806d-61e09ed06420" + "15df7af5-6dee-4157-a471-058273a36592" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,16 +499,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwi.batch.core.windows.net/workitems/thirdtestName" + "https://pstests.batch.core.windows.net/workitems/thirdtestName" ], "Date": [ - "Wed, 04 Mar 2015 23:03:49 GMT" + "Thu, 09 Jul 2015 19:22:14 GMT" ], "ETag": [ - "0x8D224E69C485FAD" + "0x8D28893B2C871DD" ], "Location": [ - "https://testlistwi.batch.core.windows.net/workitems/thirdtestName" + "https://pstests.batch.core.windows.net/workitems/thirdtestName" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -474,117 +516,6 @@ }, "StatusCode": 201 }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi\",\r\n \"name\": \"testlistwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "744" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "3cb72a00-316f-4def-ace7-f34d8be63417" - ], - "x-ms-correlation-request-id": [ - "3cb72a00-316f-4def-ace7-f34d8be63417" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230351Z:3cb72a00-316f-4def-ace7-f34d8be63417" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:03:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlistwi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistwi.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "319" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:03:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d3b10968-23ab-4e29-97c3-326d7b74ca9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "a1258311-0fdf-4977-ba18-9299ffcd94f5" - ], - "x-ms-correlation-request-id": [ - "a1258311-0fdf-4977-ba18-9299ffcd94f5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230352Z:a1258311-0fdf-4977-ba18-9299ffcd94f5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:03:51 GMT" - ], - "ETag": [ - "0x8D224E69DD7E79B" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", @@ -595,16 +526,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ee74c99d-bd40-4866-a032-dc8ccde4e6e6" + "d54ae8c4-6f37-457e-994a-adbce6c7c1f2" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:03:52 GMT" + "Thu, 09 Jul 2015 19:22:15 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistwi.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://testlistwi.batch.core.windows.net/workitems/testName1\",\r\n \"eTag\": \"0x8D224E68828920D\",\r\n \"lastModified\": \"2015-03-04T23:03:15.8099469Z\",\r\n \"creationTime\": \"2015-03-04T23:03:15.8099469Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:03:15.8099469Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistwi.batch.core.windows.net/workitems/testName1/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://testlistwi.batch.core.windows.net/workitems/testName2\",\r\n \"eTag\": \"0x8D224E6985D7232\",\r\n \"lastModified\": \"2015-03-04T23:03:43.0000178Z\",\r\n \"creationTime\": \"2015-03-04T23:03:43.0000178Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:03:43.0000178Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistwi.batch.core.windows.net/workitems/testName2/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"thirdtestName\",\r\n \"url\": \"https://testlistwi.batch.core.windows.net/workitems/thirdtestName\",\r\n \"eTag\": \"0x8D224E69C485FAD\",\r\n \"lastModified\": \"2015-03-04T23:03:49.5728045Z\",\r\n \"creationTime\": \"2015-03-04T23:03:49.5728045Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:03:49.5728045Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistwi.batch.core.windows.net/workitems/thirdtestName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName1\",\r\n \"eTag\": \"0x8D28893B23ABC4F\",\r\n \"lastModified\": \"2015-07-09T19:22:14.4425039Z\",\r\n \"creationTime\": \"2015-07-09T19:22:14.4425039Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:22:14.4425039Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName1/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName2\",\r\n \"eTag\": \"0x8D28893B2815B95\",\r\n \"lastModified\": \"2015-07-09T19:22:14.9053333Z\",\r\n \"creationTime\": \"2015-07-09T19:22:14.9053333Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:22:14.9053333Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName2/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"thirdtestName\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/thirdtestName\",\r\n \"eTag\": \"0x8D28893B2C871DD\",\r\n \"lastModified\": \"2015-07-09T19:22:15.3712093Z\",\r\n \"creationTime\": \"2015-07-09T19:22:15.3712093Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:22:15.3712093Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/thirdtestName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -613,7 +544,7 @@ "chunked" ], "request-id": [ - "24e691f2-9e3e-48e0-8c07-6b0585e0dabf" + "6ec50637-82f5-429c-be56-57d91850ec44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,7 +553,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:03:53 GMT" + "Thu, 09 Jul 2015 19:22:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -640,13 +571,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "349cc30a-632f-437c-967c-10863dce06cd" + "42cfd3bd-7340-43cd-92d6-6829167e8327" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:03:53 GMT" + "Thu, 09 Jul 2015 19:22:15 GMT" ] }, "ResponseBody": "", @@ -655,7 +586,7 @@ "chunked" ], "request-id": [ - "ecbbcbb5-aaf7-4efb-8568-6dcf1c2ff8c2" + "e9c86bd8-4f5b-46fd-96db-9dea5479ab4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,7 +595,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:03:53 GMT" + "Thu, 09 Jul 2015 19:22:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -682,13 +613,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "26b803fc-87a2-4b71-91fb-cfb8b80b1d1c" + "a8dca19e-1bf1-4d17-a4d5-4bbdc16b47ff" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:03:53 GMT" + "Thu, 09 Jul 2015 19:22:16 GMT" ] }, "ResponseBody": "", @@ -697,7 +628,7 @@ "chunked" ], "request-id": [ - "3ad3b511-8d04-47e4-8aba-c93758704154" + "d9d068cd-a1f2-4f03-aa81-f13d59a6f3a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,7 +637,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:03:53 GMT" + "Thu, 09 Jul 2015 19:22:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -724,13 +655,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "7baaa37f-31a3-4ccf-8b1d-1819cd095c78" + "215d0902-0f1d-47aa-b22a-402a69b5d849" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:03:54 GMT" + "Thu, 09 Jul 2015 19:22:16 GMT" ] }, "ResponseBody": "", @@ -739,7 +670,7 @@ "chunked" ], "request-id": [ - "30aad50f-3b3e-4026-ac29-fb343002655b" + "abe91020-ad39-4c04-9b38-214e7b7b123f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,337 +679,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:03:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aT9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "5ccc558c-c1c1-4720-850a-0cf173c7bf63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" - ], - "x-ms-request-id": [ - "ea2a1bda-22e5-49be-b37f-e2f65e69ae06" - ], - "x-ms-correlation-request-id": [ - "ea2a1bda-22e5-49be-b37f-e2f65e69ae06" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230356Z:ea2a1bda-22e5-49be-b37f-e2f65e69ae06" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:03:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi/operationResults/5ccc558c-c1c1-4720-850a-0cf173c7bf63?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:22:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi/providers/Microsoft.Batch/batchAccounts/testlistwi/operationResults/5ccc558c-c1c1-4720-850a-0cf173c7bf63?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aS9vcGVyYXRpb25SZXN1bHRzLzVjY2M1NThjLWMxYzEtNDcyMC04NTBhLTBjZjE3M2M3YmY2Mz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:03:56 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d8edaa97-2508-44c9-8117-96aa0d298b51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "3ed40113-f28b-4627-94aa-6be755e726cb" - ], - "x-ms-correlation-request-id": [ - "3ed40113-f28b-4627-94aa-6be755e726cb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230356Z:3ed40113-f28b-4627-94aa-6be755e726cb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:03:56 GMT" - ], - "ETag": [ - "0x8D224E6A055FBDD" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-wi?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC13aT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" - ], - "x-ms-request-id": [ - "46b6dbbb-edd9-4220-95d5-bbfaa792b844" - ], - "x-ms-correlation-request-id": [ - "46b6dbbb-edd9-4220-95d5-bbfaa792b844" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230358Z:46b6dbbb-edd9-4220-95d5-bbfaa792b844" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:03:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" - ], - "x-ms-request-id": [ - "ddbef1d2-204d-42c8-ae7a-b4134f88bee8" - ], - "x-ms-correlation-request-id": [ - "ddbef1d2-204d-42c8-ae7a-b4134f88bee8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230358Z:ddbef1d2-204d-42c8-ae7a-b4134f88bee8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:03:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "cae44e2a-b8f7-4919-a642-f1940961caba" - ], - "x-ms-correlation-request-id": [ - "cae44e2a-b8f7-4919-a642-f1940961caba" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230413Z:cae44e2a-b8f7-4919-a642-f1940961caba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:04:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "23c6e519-3b0f-41a0-9fd0-2ae528f102fa" - ], - "x-ms-correlation-request-id": [ - "23c6e519-3b0f-41a0-9fd0-2ae528f102fa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T230428Z:23c6e519-3b0f-41a0-9fd0-2ae528f102fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:04:28 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListWorkItemsByFilter.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListWorkItemsByFilter.json index 361fa1eb984d..48f9c54c4478 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListWorkItemsByFilter.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListWorkItemsByFilter.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-wi-filter?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "f8ed737c-cfb8-4b04-8743-0082cb4a429e" + ], + "x-ms-correlation-request-id": [ + "f8ed737c-cfb8-4b04-8743-0082cb4a429e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192305Z:f8ed737c-cfb8-4b04-8743-0082cb4a429e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 19:23:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter\",\r\n \"name\": \"test-list-wi-filter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" ], "x-ms-request-id": [ - "7738bddc-6b91-436d-bab5-55ff261c172f" + "70d4328c-4c25-4f24-8861-8f940869fa65" ], "x-ms-correlation-request-id": [ - "7738bddc-6b91-436d-bab5-55ff261c172f" + "70d4328c-4c25-4f24-8861-8f940869fa65" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232552Z:7738bddc-6b91-436d-bab5-55ff261c172f" + "WESTUS:20150709T192311Z:70d4328c-4c25-4f24-8861-8f940869fa65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:25:51 GMT" + "Thu, 09 Jul 2015 19:23:10 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0d2lmaWx0ZXI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:23:06 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" - ], "request-id": [ - "e783ae49-8f15-4464-9cd7-4ab8dcbd54e8" + "67746449-ebad-46fd-91a3-39617fb3f8c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], "x-ms-request-id": [ - "803064c8-b2e5-43a9-b7a6-16d54755dfa7" + "8dc29d13-1287-4735-8bce-a7ff622fc81f" ], "x-ms-correlation-request-id": [ - "803064c8-b2e5-43a9-b7a6-16d54755dfa7" + "8dc29d13-1287-4735-8bce-a7ff622fc81f" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232555Z:803064c8-b2e5-43a9-b7a6-16d54755dfa7" + "WESTUS:20150709T192306Z:8dc29d13-1287-4735-8bce-a7ff622fc81f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:25:55 GMT" + "Thu, 09 Jul 2015 19:23:05 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter/operationResults/e783ae49-8f15-4464-9cd7-4ab8dcbd54e8?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28893D11D0E9F" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter/operationResults/e783ae49-8f15-4464-9cd7-4ab8dcbd54e8?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0d2lmaWx0ZXIvb3BlcmF0aW9uUmVzdWx0cy9lNzgzYWU0OS04ZjE1LTQ0NjQtOWNkNy00YWI4ZGNiZDU0ZTg/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistwifilter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistwifilter.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "344" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:25:54 GMT" + "Thu, 09 Jul 2015 19:23:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "931278d9-23dd-4285-bf26-1db5ecc348ce" + "cecbe199-9c95-4adf-8b87-4938e9e1cbbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "14972" ], "x-ms-request-id": [ - "b0679061-011c-4634-897f-6a3f138d3c72" + "3283a55b-97f8-4181-92fb-fc1dc2be5bca" ], "x-ms-correlation-request-id": [ - "b0679061-011c-4634-897f-6a3f138d3c72" + "3283a55b-97f8-4181-92fb-fc1dc2be5bca" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232555Z:b0679061-011c-4634-897f-6a3f138d3c72" + "WESTUS:20150709T192311Z:3283a55b-97f8-4181-92fb-fc1dc2be5bca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:25:55 GMT" + "Thu, 09 Jul 2015 19:23:11 GMT" ], "ETag": [ - "0x8D224E9B2417DA3" + "0x8D28893D431F9D2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0d2lmaWx0ZXIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistwifilter\",\r\n \"primary\": \"yPVHi0NSXsOdTzs3d4H9/PrGLJtOU2WcS0VbuV7u4tsPTqPzIWx2VQ6UiQCcALBIU3/P5LGUOiSpjr1Tv+zsQw==\",\r\n \"secondary\": \"p71eRBTped1vu/ItYOLG6fnRCUaT+GgNjMZlowFkkjUwhRXDj6ABxsKfYfc6m8m7uUqoLsExdIAz4LH2ot8VyA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "238" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "494fa71f-5df2-4ee9-91ea-deb2dee35ebd" + "c623e7c4-9bae-42b7-9d70-58fb458132aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1188" ], "x-ms-request-id": [ - "fde018f4-f1c5-43bd-a965-369fb3303ecd" + "dde96591-d0e2-4d30-a446-ba9d63975c56" ], "x-ms-correlation-request-id": [ - "fde018f4-f1c5-43bd-a965-369fb3303ecd" + "dde96591-d0e2-4d30-a446-ba9d63975c56" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232556Z:fde018f4-f1c5-43bd-a965-369fb3303ecd" + "WESTUS:20150709T192306Z:dde96591-d0e2-4d30-a446-ba9d63975c56" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:25:55 GMT" + "Thu, 09 Jul 2015 19:23:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0d2lmaWx0ZXIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistwifilter\",\r\n \"primary\": \"yPVHi0NSXsOdTzs3d4H9/PrGLJtOU2WcS0VbuV7u4tsPTqPzIWx2VQ6UiQCcALBIU3/P5LGUOiSpjr1Tv+zsQw==\",\r\n \"secondary\": \"p71eRBTped1vu/ItYOLG6fnRCUaT+GgNjMZlowFkkjUwhRXDj6ABxsKfYfc6m8m7uUqoLsExdIAz4LH2ot8VyA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "238" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "0f90bfc8-2f2d-4533-a31c-41d85a67c2ab" + "ce92fc3f-8f3a-4a0b-9936-65648ad40287" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1187" ], "x-ms-request-id": [ - "4041a884-18ff-4d4c-8446-8c09bb5ef0a4" + "f15c7d3d-2dd4-44b9-9451-8e25284ee857" ], "x-ms-correlation-request-id": [ - "4041a884-18ff-4d4c-8446-8c09bb5ef0a4" + "f15c7d3d-2dd4-44b9-9451-8e25284ee857" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232715Z:4041a884-18ff-4d4c-8446-8c09bb5ef0a4" + "WESTUS:20150709T192311Z:f15c7d3d-2dd4-44b9-9451-8e25284ee857" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:27:15 GMT" + "Thu, 09 Jul 2015 19:23:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "2ba495ea-12f8-49aa-bfbb-3c7e00098047" + "bbb2bbf2-cecd-43a3-bf4d-1d02b338bda8" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:27:06 GMT" + "Thu, 09 Jul 2015 19:23:06 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:27:06 GMT" + "Thu, 09 Jul 2015 19:23:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "fbac9026-79fa-4a58-ba1c-d61f16506f06" + "c2cf056c-65d2-4886-96b9-36667928e2c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwifilter.batch.core.windows.net/workitems/testName1" + "https://pstests.batch.core.windows.net/workitems/testName1" ], "Date": [ - "Wed, 04 Mar 2015 23:27:06 GMT" + "Thu, 09 Jul 2015 19:23:06 GMT" ], "ETag": [ - "0x8D224E9DCA4C2C7" + "0x8D28893D1CF08D9" ], "Location": [ - "https://testlistwifilter.batch.core.windows.net/workitems/testName1" + "https://pstests.batch.core.windows.net/workitems/testName1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -370,25 +412,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "2125e4a2-9358-418b-bc26-a5379f869769" + "d915b401-d816-4101-9c29-3c7b01bbf849" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:27:11 GMT" + "Thu, 09 Jul 2015 19:23:07 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:27:11 GMT" + "Thu, 09 Jul 2015 19:23:07 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4d563918-8ed6-463c-9849-f8dcd67c204c" + "59db8b18-60d0-4159-8d05-d88d031c6f43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,16 +439,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwifilter.batch.core.windows.net/workitems/testName2" + "https://pstests.batch.core.windows.net/workitems/testName2" ], "Date": [ - "Wed, 04 Mar 2015 23:27:12 GMT" + "Thu, 09 Jul 2015 19:23:07 GMT" ], "ETag": [ - "0x8D224E9DFC10AE2" + "0x8D28893D21D52B9" ], "Location": [ - "https://testlistwifilter.batch.core.windows.net/workitems/testName2" + "https://pstests.batch.core.windows.net/workitems/testName2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -430,25 +472,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "9eb6e266-9951-474e-8573-fde57932da02" + "ccff526c-531e-48b3-8db4-8699d813bc45" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:27:12 GMT" + "Thu, 09 Jul 2015 19:23:07 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:27:12 GMT" + "Thu, 09 Jul 2015 19:23:11 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "b6480850-b813-4762-b978-b6ad6cfa60ff" + "4955c4e8-771c-41a8-9d2c-eac453321076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,16 +499,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwifilter.batch.core.windows.net/workitems/thirdtestName" + "https://pstests.batch.core.windows.net/workitems/thirdtestName" ], "Date": [ - "Wed, 04 Mar 2015 23:27:12 GMT" + "Thu, 09 Jul 2015 19:23:10 GMT" ], "ETag": [ - "0x8D224E9E05C7F7B" + "0x8D28893D432B858" ], "Location": [ - "https://testlistwifilter.batch.core.windows.net/workitems/thirdtestName" + "https://pstests.batch.core.windows.net/workitems/thirdtestName" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -474,117 +516,6 @@ }, "StatusCode": 201 }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter\",\r\n \"name\": \"testlistwifilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "763" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "af2f9469-4eb6-4568-9aaf-5fe372c8aaca" - ], - "x-ms-correlation-request-id": [ - "af2f9469-4eb6-4568-9aaf-5fe372c8aaca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232714Z:af2f9469-4eb6-4568-9aaf-5fe372c8aaca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:27:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0d2lmaWx0ZXI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlistwifilter\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistwifilter.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "344" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:27:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "be10b5b2-2c25-4867-a103-0a112675a9d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" - ], - "x-ms-request-id": [ - "feb070de-7299-4209-993c-4e182f72e97b" - ], - "x-ms-correlation-request-id": [ - "feb070de-7299-4209-993c-4e182f72e97b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232715Z:feb070de-7299-4209-993c-4e182f72e97b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:27:15 GMT" - ], - "ETag": [ - "0x8D224E9E1D23DE6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/workitems?api-version=2014-10-01.1.0&$filter=startswith(name%2C'testName')", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMCYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3dGVzdE5hbWUlMjclMjk=", @@ -595,16 +526,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6e359b7a-6d5f-494e-a9e3-516f5b0ad054" + "5edb69b1-7c32-47e1-9967-c111c3dfe9c6" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:27:15 GMT" + "Thu, 09 Jul 2015 19:23:11 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistwifilter.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://testlistwifilter.batch.core.windows.net/workitems/testName1\",\r\n \"eTag\": \"0x8D224E9DCA4C2C7\",\r\n \"lastModified\": \"2015-03-04T23:27:06.0426439Z\",\r\n \"creationTime\": \"2015-03-04T23:27:06.0426439Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:27:06.0426439Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistwifilter.batch.core.windows.net/workitems/testName1/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://testlistwifilter.batch.core.windows.net/workitems/testName2\",\r\n \"eTag\": \"0x8D224E9DFC10AE2\",\r\n \"lastModified\": \"2015-03-04T23:27:11.2611554Z\",\r\n \"creationTime\": \"2015-03-04T23:27:11.2611554Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:27:11.2611554Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistwifilter.batch.core.windows.net/workitems/testName2/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName1\",\r\n \"eTag\": \"0x8D28893D1CF08D9\",\r\n \"lastModified\": \"2015-07-09T19:23:07.4237657Z\",\r\n \"creationTime\": \"2015-07-09T19:23:07.4237657Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:23:07.4237657Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName1/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName2\",\r\n \"eTag\": \"0x8D28893D21D52B9\",\r\n \"lastModified\": \"2015-07-09T19:23:07.9368377Z\",\r\n \"creationTime\": \"2015-07-09T19:23:07.9368377Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:23:07.9368377Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName2/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -613,7 +544,7 @@ "chunked" ], "request-id": [ - "b0a4be09-2619-440c-a3bf-f4cf27a5de1a" + "3c501bf5-2d05-463a-95f1-fb560af3afa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,7 +553,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:27:14 GMT" + "Thu, 09 Jul 2015 19:23:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -640,13 +571,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "bc92f703-f288-4a11-a50a-32a1967f9f4a" + "a57ec9b4-0986-4f40-b1ac-9fd4c16f5ef4" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:27:16 GMT" + "Thu, 09 Jul 2015 19:23:11 GMT" ] }, "ResponseBody": "", @@ -655,7 +586,7 @@ "chunked" ], "request-id": [ - "0ecc4766-05d5-4376-89dd-45fbd21fa11b" + "75b700ab-6920-4a58-b96a-71ce6952124b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,7 +595,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:27:16 GMT" + "Thu, 09 Jul 2015 19:23:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -682,13 +613,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "70c1904d-4959-4cbb-91a9-5a56a6ba7fda" + "f19fff49-aa12-4dac-94b8-a893a80ff249" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:27:16 GMT" + "Thu, 09 Jul 2015 19:23:12 GMT" ] }, "ResponseBody": "", @@ -697,7 +628,7 @@ "chunked" ], "request-id": [ - "74cd6485-5f51-4fe7-97fa-d64357a1d1c9" + "63e73104-ce2c-4885-a137-b1cd2f0f6d86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,7 +637,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:27:16 GMT" + "Thu, 09 Jul 2015 19:23:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -724,13 +655,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "64c9a37b-7a8e-437d-9799-09e5c18636b6" + "24d9d038-b508-4ff8-83a8-b531be1f980f" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:27:16 GMT" + "Thu, 09 Jul 2015 19:23:12 GMT" ] }, "ResponseBody": "", @@ -739,7 +670,7 @@ "chunked" ], "request-id": [ - "7a52a986-28f2-4e63-8747-482a33bb2c7e" + "c339f605-4b5b-4415-aa16-9b3faf61c7e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,391 +679,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:27:16 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0d2lmaWx0ZXI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "f0f0bce1-03f1-44fd-a8a7-9cd6adb40a21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" - ], - "x-ms-request-id": [ - "639f0c5e-105c-4ae3-9b23-113b61020a17" - ], - "x-ms-correlation-request-id": [ - "639f0c5e-105c-4ae3-9b23-113b61020a17" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232719Z:639f0c5e-105c-4ae3-9b23-113b61020a17" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:27:19 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter/operationResults/f0f0bce1-03f1-44fd-a8a7-9cd6adb40a21?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:23:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-filter/providers/Microsoft.Batch/batchAccounts/testlistwifilter/operationResults/f0f0bce1-03f1-44fd-a8a7-9cd6adb40a21?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Rlc3RsaXN0d2lmaWx0ZXIvb3BlcmF0aW9uUmVzdWx0cy9mMGYwYmNlMS0wM2YxLTQ0ZmQtYThhNy05Y2Q2YWRiNDBhMjE/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:27:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "41a703bc-d1be-41fa-ac46-9ab174500d12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" - ], - "x-ms-request-id": [ - "6ccd3ffe-a217-41dd-a361-ae65b31264c8" - ], - "x-ms-correlation-request-id": [ - "6ccd3ffe-a217-41dd-a361-ae65b31264c8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232719Z:6ccd3ffe-a217-41dd-a361-ae65b31264c8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:27:19 GMT" - ], - "ETag": [ - "0x8D224E9E45DF6CA" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-wi-filter?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC13aS1maWx0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" - ], - "x-ms-request-id": [ - "f01ac0d6-fa97-460d-8450-cf9c0197044b" - ], - "x-ms-correlation-request-id": [ - "f01ac0d6-fa97-460d-8450-cf9c0197044b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232721Z:f01ac0d6-fa97-460d-8450-cf9c0197044b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:27:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJERklMVEVSLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJERklMVEVSLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpPakpFUmtsTVZFVlNMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "edb56f03-d22f-461a-b609-e00a91e6c502" - ], - "x-ms-correlation-request-id": [ - "edb56f03-d22f-461a-b609-e00a91e6c502" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232721Z:edb56f03-d22f-461a-b609-e00a91e6c502" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:27:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJERklMVEVSLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJERklMVEVSLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpPakpFUmtsTVZFVlNMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" - ], - "x-ms-request-id": [ - "99ab544d-326b-458d-8eee-489b0c08b922" - ], - "x-ms-correlation-request-id": [ - "99ab544d-326b-458d-8eee-489b0c08b922" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232736Z:99ab544d-326b-458d-8eee-489b0c08b922" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:27:35 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJERklMVEVSLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJERklMVEVSLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpPakpFUmtsTVZFVlNMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" - ], - "x-ms-request-id": [ - "bc9f60ef-791b-4592-be74-304528d2de53" - ], - "x-ms-correlation-request-id": [ - "bc9f60ef-791b-4592-be74-304528d2de53" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232751Z:bc9f60ef-791b-4592-be74-304528d2de53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:27:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJERklMVEVSLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJERklMVEVSLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpPakpFUmtsTVZFVlNMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" - ], - "x-ms-request-id": [ - "797a8428-6119-4ffb-9ff6-bc8189ac947f" - ], - "x-ms-correlation-request-id": [ - "797a8428-6119-4ffb-9ff6-bc8189ac947f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T232807Z:797a8428-6119-4ffb-9ff6-bc8189ac947f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:28:07 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListWorkItemsWithMaxCount.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListWorkItemsWithMaxCount.json index e1af93176c00..cead71493503 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListWorkItemsWithMaxCount.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestListWorkItemsWithMaxCount.json @@ -1,25 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-wi-maxcount?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "237" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "28" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "b27d0f5c-bb19-44cf-83fb-51e5842baca4" + ], + "x-ms-correlation-request-id": [ + "b27d0f5c-bb19-44cf-83fb-51e5842baca4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T192237Z:b27d0f5c-bb19-44cf-83fb-51e5842baca4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Thu, 09 Jul 2015 19:22:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount\",\r\n \"name\": \"test-list-wi-maxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "195" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,17 +72,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" ], "x-ms-request-id": [ - "8592acf1-55ce-4058-8371-26368e4c89d8" + "e0f3dbdc-b134-4288-9d30-f0c0218436cc" ], "x-ms-correlation-request-id": [ - "8592acf1-55ce-4058-8371-26368e4c89d8" + "e0f3dbdc-b134-4288-9d30-f0c0218436cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232938Z:8592acf1-55ce-4058-8371-26368e4c89d8" + "WESTUS:20150709T192240Z:e0f3dbdc-b134-4288-9d30-f0c0218436cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,91 +91,91 @@ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:29:38 GMT" + "Thu, 09 Jul 2015 19:22:40 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aW1heGNvdW50P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" + "x-ms-version": [ + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Last-Modified": [ + "Thu, 09 Jul 2015 19:22:38 GMT" + ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" - ], "request-id": [ - "2a013a93-d32c-4b68-bfdc-50a227c13f96" + "e3706c93-bb5f-4149-aa7b-2df8806bed1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], "x-ms-request-id": [ - "9db96026-6976-47b1-b1d7-7fed938e4b96" + "33f4407e-a07e-4761-b0c3-6c79a2d7304b" ], "x-ms-correlation-request-id": [ - "9db96026-6976-47b1-b1d7-7fed938e4b96" + "33f4407e-a07e-4761-b0c3-6c79a2d7304b" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232943Z:9db96026-6976-47b1-b1d7-7fed938e4b96" + "WESTUS:20150709T192238Z:33f4407e-a07e-4761-b0c3-6c79a2d7304b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:29:43 GMT" + "Thu, 09 Jul 2015 19:22:37 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount/operationResults/2a013a93-d32c-4b68-bfdc-50a227c13f96?api-version=2014-05-01-privatepreview" + "ETag": [ + "0x8D28893C0ADE5FA" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount/operationResults/2a013a93-d32c-4b68-bfdc-50a227c13f96?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aW1heGNvdW50L29wZXJhdGlvblJlc3VsdHMvMmEwMTNhOTMtZDMyYy00YjY4LWJmZGMtNTBhMjI3YzEzZjk2P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testlistwimaxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistwimaxcount.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "352" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,37 +184,37 @@ "-1" ], "Last-Modified": [ - "Wed, 04 Mar 2015 23:29:43 GMT" + "Thu, 09 Jul 2015 19:22:40 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "5b82eb48-a703-476a-8385-55a1813a0b6e" + "61b402f9-8438-4073-a746-d1011388ee31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14929" ], "x-ms-request-id": [ - "b9fb040d-56e2-4167-b2b6-ae692c7396a7" + "752a71f7-9657-4eed-ba91-540be5b9cc30" ], "x-ms-correlation-request-id": [ - "b9fb040d-56e2-4167-b2b6-ae692c7396a7" + "752a71f7-9657-4eed-ba91-540be5b9cc30" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232943Z:b9fb040d-56e2-4167-b2b6-ae692c7396a7" + "WESTUS:20150709T192240Z:752a71f7-9657-4eed-ba91-540be5b9cc30" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:29:43 GMT" + "Thu, 09 Jul 2015 19:22:39 GMT" ], "ETag": [ - "0x8D224EA3A43595D" + "0x8D28893C1D5C64C" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,22 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aW1heGNvdW50L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistwimaxcount\",\r\n \"primary\": \"EvnLq0kKLF25720fBSTyDxFz5CdO7LL+t9rnqy767QMvptQQZNnHWKqjazh+l30U+n8yK19b2igP/O1fNcBf7g==\",\r\n \"secondary\": \"Cvs2jyiGxv0IU/MxX6WwegiFYlHc0wyB7eIWwVT5KBYfr3Psk8SBTUwDzyswIqX1YQO+IiZRfFU5g7Iwpv04ww==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,28 +250,28 @@ "no-cache" ], "request-id": [ - "bf597ef8-4e7d-4542-a303-2d3dcc69fcdd" + "0929295c-e864-4be0-931f-9ff50afa939b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1186" ], "x-ms-request-id": [ - "d298af81-7d84-41e0-a0dc-9e8dc43f1a6c" + "248104e8-f762-4173-8fb3-ac082057d02a" ], "x-ms-correlation-request-id": [ - "d298af81-7d84-41e0-a0dc-9e8dc43f1a6c" + "248104e8-f762-4173-8fb3-ac082057d02a" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T232943Z:d298af81-7d84-41e0-a0dc-9e8dc43f1a6c" + "WESTUS:20150709T192238Z:248104e8-f762-4173-8fb3-ac082057d02a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:29:43 GMT" + "Thu, 09 Jul 2015 19:22:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aW1heGNvdW50L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testlistwimaxcount\",\r\n \"primary\": \"EvnLq0kKLF25720fBSTyDxFz5CdO7LL+t9rnqy767QMvptQQZNnHWKqjazh+l30U+n8yK19b2igP/O1fNcBf7g==\",\r\n \"secondary\": \"Cvs2jyiGxv0IU/MxX6WwegiFYlHc0wyB7eIWwVT5KBYfr3Psk8SBTUwDzyswIqX1YQO+IiZRfFU5g7Iwpv04ww==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,28 +307,28 @@ "no-cache" ], "request-id": [ - "3f10ac30-6a58-4772-be6b-18bba48bd24e" + "d0b0180a-ef20-4b97-9ef0-1f566b71dab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1185" ], "x-ms-request-id": [ - "c0a04a43-541e-470b-8aa7-c509f1eb6f44" + "df4ae73d-5c57-4ca7-8c7c-294b60e8c216" ], "x-ms-correlation-request-id": [ - "c0a04a43-541e-470b-8aa7-c509f1eb6f44" + "df4ae73d-5c57-4ca7-8c7c-294b60e8c216" ], "x-ms-routing-request-id": [ - "WESTUS:20150304T233046Z:c0a04a43-541e-470b-8aa7-c509f1eb6f44" + "WESTUS:20150709T192240Z:df4ae73d-5c57-4ca7-8c7c-294b60e8c216" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 04 Mar 2015 23:30:46 GMT" + "Thu, 09 Jul 2015 19:22:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -310,25 +352,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ea161e06-12c8-44e8-9e34-030c3579e36d" + "18109fd5-5a0f-4472-80db-7a6ae67d7b97" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:30:41 GMT" + "Thu, 09 Jul 2015 19:22:38 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:30:40 GMT" + "Thu, 09 Jul 2015 19:22:39 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "4e1a508b-3e49-4d71-8f9d-384468186bed" + "28b38f30-c765-4cde-9a79-dc2541716708" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,16 +379,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwimaxcount.batch.core.windows.net/workitems/testName1" + "https://pstests.batch.core.windows.net/workitems/testName1" ], "Date": [ - "Wed, 04 Mar 2015 23:30:41 GMT" + "Thu, 09 Jul 2015 19:22:38 GMT" ], "ETag": [ - "0x8D224EA5CBB1E48" + "0x8D28893C10F4674" ], "Location": [ - "https://testlistwimaxcount.batch.core.windows.net/workitems/testName1" + "https://pstests.batch.core.windows.net/workitems/testName1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -370,25 +412,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "3ba4b7cc-3429-4452-b691-6ddccd2bdf7b" + "063bcaec-fec9-476b-a61f-4c42bbc9af0e" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:30:42 GMT" + "Thu, 09 Jul 2015 19:22:38 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:30:42 GMT" + "Thu, 09 Jul 2015 19:22:39 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "d05103a6-df32-4200-9656-1b75a519f3ad" + "3b825040-8f79-4c95-92e5-55d68432d6f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,16 +439,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwimaxcount.batch.core.windows.net/workitems/testName2" + "https://pstests.batch.core.windows.net/workitems/testName2" ], "Date": [ - "Wed, 04 Mar 2015 23:30:41 GMT" + "Thu, 09 Jul 2015 19:22:39 GMT" ], "ETag": [ - "0x8D224EA5D616882" + "0x8D28893C1539300" ], "Location": [ - "https://testlistwimaxcount.batch.core.windows.net/workitems/testName2" + "https://pstests.batch.core.windows.net/workitems/testName2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -430,25 +472,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "a5240fee-67c5-4e8d-97a7-7592db386ffb" + "0018ab4b-cf95-47a9-bb9a-b0ffd03864e7" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:30:43 GMT" + "Thu, 09 Jul 2015 19:22:39 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Wed, 04 Mar 2015 23:30:42 GMT" + "Thu, 09 Jul 2015 19:22:40 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "372539f8-636a-489a-a7b1-30a7a77a98c8" + "7e4d2883-f55d-4160-b85a-ac86158f293f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,16 +499,16 @@ "3.0" ], "DataServiceId": [ - "https://testlistwimaxcount.batch.core.windows.net/workitems/thirdtestName" + "https://pstests.batch.core.windows.net/workitems/thirdtestName" ], "Date": [ - "Wed, 04 Mar 2015 23:30:42 GMT" + "Thu, 09 Jul 2015 19:22:40 GMT" ], "ETag": [ - "0x8D224EA5DED1FC8" + "0x8D28893C19D21A3" ], "Location": [ - "https://testlistwimaxcount.batch.core.windows.net/workitems/thirdtestName" + "https://pstests.batch.core.windows.net/workitems/thirdtestName" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -474,117 +516,6 @@ }, "StatusCode": 201 }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount\",\r\n \"name\": \"testlistwimaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "769" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "fb394d67-7c65-43c5-bb0a-b9c85282fe5b" - ], - "x-ms-correlation-request-id": [ - "fb394d67-7c65-43c5-bb0a-b9c85282fe5b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233045Z:fb394d67-7c65-43c5-bb0a-b9c85282fe5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:30:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aW1heGNvdW50P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testlistwimaxcount\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testlistwimaxcount.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "352" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:30:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "bb164c00-375a-42ff-915a-5006f5571710" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "0d2aeadc-77db-42b4-8c3a-fc9f632ea01c" - ], - "x-ms-correlation-request-id": [ - "0d2aeadc-77db-42b4-8c3a-fc9f632ea01c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233046Z:0d2aeadc-77db-42b4-8c3a-fc9f632ea01c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:30:46 GMT" - ], - "ETag": [ - "0x8D224EA5F548531" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/workitems?api-version=2014-10-01.1.0", "EncodedRequestUri": "L3dvcmtpdGVtcz9hcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==", @@ -595,16 +526,16 @@ "WA-Batch/1.0" ], "client-request-id": [ - "b24f9872-be4f-439c-83d3-d1d4509ad54b" + "6cd8fb94-f10a-4a6a-9adf-ec0eecc05c2b" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:30:46 GMT" + "Thu, 09 Jul 2015 19:22:40 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testlistwimaxcount.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://testlistwimaxcount.batch.core.windows.net/workitems/testName1\",\r\n \"eTag\": \"0x8D224EA5CBB1E48\",\r\n \"lastModified\": \"2015-03-04T23:30:40.9375304Z\",\r\n \"creationTime\": \"2015-03-04T23:30:40.9375304Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:30:40.9375304Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistwimaxcount.batch.core.windows.net/workitems/testName1/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://testlistwimaxcount.batch.core.windows.net/workitems/testName2\",\r\n \"eTag\": \"0x8D224EA5D616882\",\r\n \"lastModified\": \"2015-03-04T23:30:42.0273282Z\",\r\n \"creationTime\": \"2015-03-04T23:30:42.0273282Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:30:42.0273282Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistwimaxcount.batch.core.windows.net/workitems/testName2/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"thirdtestName\",\r\n \"url\": \"https://testlistwimaxcount.batch.core.windows.net/workitems/thirdtestName\",\r\n \"eTag\": \"0x8D224EA5DED1FC8\",\r\n \"lastModified\": \"2015-03-04T23:30:42.9429704Z\",\r\n \"creationTime\": \"2015-03-04T23:30:42.9429704Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-04T23:30:42.9429704Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testlistwimaxcount.batch.core.windows.net/workitems/thirdtestName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems\",\r\n \"value\": [\r\n {\r\n \"name\": \"testName1\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName1\",\r\n \"eTag\": \"0x8D28893C10F4674\",\r\n \"lastModified\": \"2015-07-09T19:22:39.323506Z\",\r\n \"creationTime\": \"2015-07-09T19:22:39.323506Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:22:39.323506Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName1/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName2\",\r\n \"eTag\": \"0x8D28893C1539300\",\r\n \"lastModified\": \"2015-07-09T19:22:39.7711104Z\",\r\n \"creationTime\": \"2015-07-09T19:22:39.7711104Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:22:39.7711104Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/testName2/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"thirdtestName\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/thirdtestName\",\r\n \"eTag\": \"0x8D28893C19D21A3\",\r\n \"lastModified\": \"2015-07-09T19:22:40.2531747Z\",\r\n \"creationTime\": \"2015-07-09T19:22:40.2531747Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:22:40.2531747Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/thirdtestName/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" @@ -613,7 +544,7 @@ "chunked" ], "request-id": [ - "a8c7caf0-724a-4d9e-827f-98b8c86c24d5" + "abbdd8e1-d4d6-4b2a-83b7-4775a78e5894" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,7 +553,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:30:45 GMT" + "Thu, 09 Jul 2015 19:22:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -640,13 +571,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "c9e38bfd-3189-4d6f-8cae-ce3b1dccd68f" + "c99e488c-8f2f-475c-ab41-af3dc1b51211" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:30:46 GMT" + "Thu, 09 Jul 2015 19:22:40 GMT" ] }, "ResponseBody": "", @@ -655,7 +586,7 @@ "chunked" ], "request-id": [ - "d9076bee-a498-4331-8654-6be57a449ed0" + "4aec3197-5237-4e30-9fa8-4dfb7589663c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,7 +595,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:30:46 GMT" + "Thu, 09 Jul 2015 19:22:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -682,13 +613,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "90e9a75f-dd00-44eb-b5cb-6e1ea471f5aa" + "3a8c8d07-e787-4e19-8ca1-5af6f0b666fe" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:30:47 GMT" + "Thu, 09 Jul 2015 19:22:41 GMT" ] }, "ResponseBody": "", @@ -697,7 +628,7 @@ "chunked" ], "request-id": [ - "85ed5f9f-b474-4006-9dbd-c202cba4cc4e" + "e6fdc79e-3c13-4290-bb74-789334f99792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,7 +637,7 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:30:47 GMT" + "Thu, 09 Jul 2015 19:22:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -724,13 +655,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "5f897965-9465-4ee9-a89e-ca182965ec78" + "1aadb4eb-4625-4a92-9dcc-30845274a917" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Wed, 04 Mar 2015 23:30:47 GMT" + "Thu, 09 Jul 2015 19:22:41 GMT" ] }, "ResponseBody": "", @@ -739,7 +670,7 @@ "chunked" ], "request-id": [ - "ad0c3f2c-a3d5-467a-a62b-9f501b958642" + "3faa55bb-bed3-4afc-adf7-ee4ae29a5f5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,391 +679,13 @@ "3.0" ], "Date": [ - "Wed, 04 Mar 2015 23:30:46 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aW1heGNvdW50P2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "5c8886c9-0896-4a8e-a7d4-56dc242e5c01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-request-id": [ - "85e83970-fa8f-4a10-84fb-1973beb015a2" - ], - "x-ms-correlation-request-id": [ - "85e83970-fa8f-4a10-84fb-1973beb015a2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233050Z:85e83970-fa8f-4a10-84fb-1973beb015a2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:30:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount/operationResults/5c8886c9-0896-4a8e-a7d4-56dc242e5c01?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:22:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-list-wi-maxcount/providers/Microsoft.Batch/batchAccounts/testlistwimaxcount/operationResults/5c8886c9-0896-4a8e-a7d4-56dc242e5c01?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvdGVzdGxpc3R3aW1heGNvdW50L29wZXJhdGlvblJlc3VsdHMvNWM4ODg2YzktMDg5Ni00YThlLWE3ZDQtNTZkYzI0MmU1YzAxP2FwaS12ZXJzaW9uPTIwMTQtMDUtMDEtcHJpdmF0ZXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Wed, 04 Mar 2015 23:30:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "088bbce9-39f2-413f-8c39-27776f5e66ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "c98d8c68-a028-4a2a-9b54-f6602e8753ba" - ], - "x-ms-correlation-request-id": [ - "c98d8c68-a028-4a2a-9b54-f6602e8753ba" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233050Z:c98d8c68-a028-4a2a-9b54-f6602e8753ba" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:30:50 GMT" - ], - "ETag": [ - "0x8D224EA621693F3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-list-wi-maxcount?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbGlzdC13aS1tYXhjb3VudD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-request-id": [ - "e7323a1c-4319-44de-95c7-75017bca237e" - ], - "x-ms-correlation-request-id": [ - "e7323a1c-4319-44de-95c7-75017bca237e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233052Z:e7323a1c-4319-44de-95c7-75017bca237e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:30:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJETUFYQ09VTlQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJETUFYQ09VTlQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpPakpFVFVGWVEwOVZUbFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "fe1bd52e-9c12-4581-afe8-5156e23f108e" - ], - "x-ms-correlation-request-id": [ - "fe1bd52e-9c12-4581-afe8-5156e23f108e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233052Z:fe1bd52e-9c12-4581-afe8-5156e23f108e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:30:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJETUFYQ09VTlQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJETUFYQ09VTlQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpPakpFVFVGWVEwOVZUbFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "17217407-007c-40e8-8b81-3959c0d420a4" - ], - "x-ms-correlation-request-id": [ - "17217407-007c-40e8-8b81-3959c0d420a4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233107Z:17217407-007c-40e8-8b81-3959c0d420a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:31:07 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJETUFYQ09VTlQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJETUFYQ09VTlQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpPakpFVFVGWVEwOVZUbFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "44e63247-591f-43a7-aacc-1b551b18084a" - ], - "x-ms-correlation-request-id": [ - "44e63247-591f-43a7-aacc-1b551b18084a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233123Z:44e63247-591f-43a7-aacc-1b551b18084a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:31:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJETUFYQ09VTlQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETElTVDoyRFdJOjJETUFYQ09VTlQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVURWxUVkRveVJGZEpPakpFVFVGWVEwOVZUbFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "5dedc4ae-9168-4f4f-9319-3cddbd9f1009" - ], - "x-ms-correlation-request-id": [ - "5dedc4ae-9168-4f4f-9319-3cddbd9f1009" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150304T233138Z:5dedc4ae-9168-4f4f-9319-3cddbd9f1009" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 04 Mar 2015 23:31:37 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestNewWorkItem.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestNewWorkItem.json index 8fdeaa7836de..7320535bbd3f 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestNewWorkItem.json +++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.WorkItemTests/TestNewWorkItem.json @@ -1,25 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-new-wi?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbmV3LXdpP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi\",\r\n \"name\": \"test-new-wi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"name\": \"pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,110 +24,47 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" ], "x-ms-request-id": [ - "abe3aba2-5e64-4e2a-bcdc-e8d471406a0c" + "5aa72508-5cb7-4085-a258-511b45051b02" ], "x-ms-correlation-request-id": [ - "abe3aba2-5e64-4e2a-bcdc-e8d471406a0c" + "5aa72508-5cb7-4085-a258-511b45051b02" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T183533Z:abe3aba2-5e64-4e2a-bcdc-e8d471406a0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:35:33 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "request-id": [ - "ef2a4985-40c2-4d30-b310-32032b947ce1" + "WESTUS:20150709T192122Z:5aa72508-5cb7-4085-a258-511b45051b02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "e0c48dc5-8060-406d-9635-8fdaa5f21b17" - ], - "x-ms-correlation-request-id": [ - "e0c48dc5-8060-406d-9635-8fdaa5f21b17" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183537Z:e0c48dc5-8060-406d-9635-8fdaa5f21b17" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 18:35:37 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/ef2a4985-40c2-4d30-b310-32032b947ce1?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 09 Jul 2015 19:21:22 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/ef2a4985-40c2-4d30-b310-32032b947ce1?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9lZjJhNDk4NS00MGMyLTRkMzAtYjMxMC0zMjAzMmI5NDdjZTE/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"testnewwi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testnewwi.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pstests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "315" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,94 +73,37 @@ "-1" ], "Last-Modified": [ - "Thu, 05 Mar 2015 18:35:37 GMT" + "Thu, 09 Jul 2015 19:21:23 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "1bade2db-39f3-4ae5-a662-0b602c71d305" + "cbb4f25d-0560-4c7a-980c-1265af10bef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14964" ], "x-ms-request-id": [ - "411dcd1c-f20d-423d-afa7-603e31f7fa6d" + "fea9b4f8-891c-45df-b380-c32b2ba02dda" ], "x-ms-correlation-request-id": [ - "411dcd1c-f20d-423d-afa7-603e31f7fa6d" + "fea9b4f8-891c-45df-b380-c32b2ba02dda" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T183537Z:411dcd1c-f20d-423d-afa7-603e31f7fa6d" + "WESTUS:20150709T192123Z:fea9b4f8-891c-45df-b380-c32b2ba02dda" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 18:35:37 GMT" + "Thu, 09 Jul 2015 19:21:22 GMT" ], "ETag": [ - "0x8D2258A4F1D38A7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"accountName\": \"testnewwi\",\r\n \"primary\": \"PqST+g+B/BrA6/za611CiPZXtTLJ9MdHoDzUEpMEc13SS3r4jFNVFlPCXxKcAf0g66ctsYFFpG+tBICPOBlYNw==\",\r\n \"secondary\": \"3aUnOZ/JDkWqpqcHfqRXXtXb3a3SR3nU5XItvLqTTjO332rBi/OZ62h50Lim0VYj+3gIgRApdTSN8Gia9iZ2Gg==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "231" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "81c69780-ab87-41de-a662-10e689f5db57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "fcc3a226-c530-467a-a228-c6cef26b4ac4" - ], - "x-ms-correlation-request-id": [ - "fcc3a226-c530-467a-a228-c6cef26b4ac4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183538Z:fcc3a226-c530-467a-a228-c6cef26b4ac4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:35:37 GMT" + "0x8D2889393964D76" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -238,22 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/listKeys?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", + "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pstests/listKeys?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzdGVzdHMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-05-01-privatepreview" + "2015-07-01" ], "User-Agent": [ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"accountName\": \"testnewwi\",\r\n \"primary\": \"PqST+g+B/BrA6/za611CiPZXtTLJ9MdHoDzUEpMEc13SS3r4jFNVFlPCXxKcAf0g66ctsYFFpG+tBICPOBlYNw==\",\r\n \"secondary\": \"3aUnOZ/JDkWqpqcHfqRXXtXb3a3SR3nU5XItvLqTTjO332rBi/OZ62h50Lim0VYj+3gIgRApdTSN8Gia9iZ2Gg==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"pstests\",\r\n \"primary\": \"LvTRVrhrb0mV/DvM55d7NT36RpCLXka/hrZSZQnNKlfV8nxzU0ChDAxrILper4n3AndEtMgyxW404JKkGodXFA==\",\r\n \"secondary\": \"Lc37R3wawurI2u8oLu6pblhfYBW7S6770vbeqnUQJX87kT7R5hEFq2IlEfowvQ+rO3K0frlfFNlyiL/rkaYnFw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "231" + "229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,139 +139,28 @@ "no-cache" ], "request-id": [ - "5054108e-2c51-4f2d-a20b-34c361f4b755" + "387dc801-f5f5-4b95-8d45-63cfc7fc410b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "9e3a080f-779e-4acc-aca6-4f993d2d3062" - ], - "x-ms-correlation-request-id": [ - "9e3a080f-779e-4acc-aca6-4f993d2d3062" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183625Z:9e3a080f-779e-4acc-aca6-4f993d2d3062" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:36:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi\",\r\n \"name\": \"testnewwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "741" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" - ], - "x-ms-request-id": [ - "bec5c13e-c087-4aff-a420-725845532c99" - ], - "x-ms-correlation-request-id": [ - "bec5c13e-c087-4aff-a420-725845532c99" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183625Z:bec5c13e-c087-4aff-a420-725845532c99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:36:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"testnewwi\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"testnewwi.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "315" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Thu, 05 Mar 2015 18:36:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "request-id": [ - "d5fad6a9-b643-4a4e-b333-592b29543d32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "1181" ], "x-ms-request-id": [ - "e26f16de-fb76-421b-a7ba-68939fa9481e" + "2623c11f-c401-4d52-9712-4290c4974bc9" ], "x-ms-correlation-request-id": [ - "e26f16de-fb76-421b-a7ba-68939fa9481e" + "2623c11f-c401-4d52-9712-4290c4974bc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150305T183625Z:e26f16de-fb76-421b-a7ba-68939fa9481e" + "WESTUS:20150709T192123Z:2623c11f-c401-4d52-9712-4290c4974bc9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 05 Mar 2015 18:36:25 GMT" - ], - "ETag": [ - "0x8D2258A6B78B625" + "Thu, 09 Jul 2015 19:21:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -421,25 +184,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "97061b06-9bca-4ab9-be71-fa2f74c07063" + "731130d9-24a3-43aa-b1f7-d61209bd5436" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 18:36:25 GMT" + "Thu, 09 Jul 2015 19:21:23 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 18:36:25 GMT" + "Thu, 09 Jul 2015 19:21:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "6871a487-2912-4ba0-a1e9-44088a72b3f2" + "bdbcc2ea-7369-46ce-ba2f-fd50e56e2770" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +211,16 @@ "3.0" ], "DataServiceId": [ - "https://testnewwi.batch.core.windows.net/workitems/simple" + "https://pstests.batch.core.windows.net/workitems/simple" ], "Date": [ - "Thu, 05 Mar 2015 18:36:26 GMT" + "Thu, 09 Jul 2015 19:21:23 GMT" ], "ETag": [ - "0x8D2258A6BF5C56F" + "0x8D2889394330ACC" ], "Location": [ - "https://testnewwi.batch.core.windows.net/workitems/simple" + "https://pstests.batch.core.windows.net/workitems/simple" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -481,25 +244,25 @@ "WA-Batch/1.0" ], "client-request-id": [ - "6e8c36ea-edb3-4e4d-97df-596092e4a6dd" + "6ad0a090-7476-445a-a867-0d87e71a8e5d" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 18:36:27 GMT" + "Thu, 09 Jul 2015 19:21:24 GMT" ] }, "ResponseBody": "", "ResponseHeaders": { "Last-Modified": [ - "Thu, 05 Mar 2015 18:36:27 GMT" + "Thu, 09 Jul 2015 19:21:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "1b22c573-4752-4850-986e-db38aa3b22db" + "8fff92c5-959d-42f2-8599-6e8b99955a62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,16 +271,16 @@ "3.0" ], "DataServiceId": [ - "https://testnewwi.batch.core.windows.net/workitems/complex" + "https://pstests.batch.core.windows.net/workitems/complex" ], "Date": [ - "Thu, 05 Mar 2015 18:36:27 GMT" + "Thu, 09 Jul 2015 19:21:24 GMT" ], "ETag": [ - "0x8D2258A6CAE84EB" + "0x8D2889394CDC6F3" ], "Location": [ - "https://testnewwi.batch.core.windows.net/workitems/complex" + "https://pstests.batch.core.windows.net/workitems/complex" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -535,28 +298,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "58f90002-6f6b-4898-94fd-2cd014d52848" + "a2e8441f-21cf-4c8e-a196-6f3c88f9562a" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 18:36:26 GMT" + "Thu, 09 Jul 2015 19:21:23 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testnewwi.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"simple\",\r\n \"url\": \"https://testnewwi.batch.core.windows.net/workitems/simple\",\r\n \"eTag\": \"0x8D2258A6BF5C56F\",\r\n \"lastModified\": \"2015-03-05T18:36:25.9644783Z\",\r\n \"creationTime\": \"2015-03-05T18:36:25.9644783Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T18:36:25.9644783Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://testnewwi.batch.core.windows.net/workitems/simple/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"simple\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/simple\",\r\n \"eTag\": \"0x8D2889394330ACC\",\r\n \"lastModified\": \"2015-07-09T19:21:24.0604364Z\",\r\n \"creationTime\": \"2015-07-09T19:21:24.0604364Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:21:24.0604364Z\",\r\n \"jobExecutionEnvironment\": {\r\n \"poolName\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/simple/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 18:36:25 GMT" + "Thu, 09 Jul 2015 19:21:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "2c60e95c-c526-433d-ab42-e6d7a5616c78" + "56efddfc-268f-40b9-8f90-3eba656d84b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,10 +328,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 18:36:26 GMT" + "Thu, 09 Jul 2015 19:21:23 GMT" ], "ETag": [ - "0x8D2258A6BF5C56F" + "0x8D2889394330ACC" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -586,28 +349,28 @@ "WA-Batch/1.0" ], "client-request-id": [ - "ca3ebc55-b15e-4081-b9e4-2d47fe33c3b7" + "382370a9-2b4c-4cb1-a514-c60fb1149c35" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 18:36:27 GMT" + "Thu, 09 Jul 2015 19:21:24 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://testnewwi.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"complex\",\r\n \"url\": \"https://testnewwi.batch.core.windows.net/workitems/complex\",\r\n \"eTag\": \"0x8D2258A6CAE84EB\",\r\n \"lastModified\": \"2015-03-05T18:36:27.1752427Z\",\r\n \"creationTime\": \"2015-03-05T18:36:27.1752427Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-03-05T18:36:27.1752427Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"P1D\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"jobConstraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManager\": {\r\n \"name\": \"jobManager\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"runExclusive\": true,\r\n \"killJobOnCompletion\": false\r\n }\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolNamePrefix\": \"TestSpecPrefix\",\r\n \"poolLifeTimeOption\": \"workitem\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n },\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789abcdef\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-03-06T18:36:27.1752427Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://testnewwi.batch.core.windows.net/workitems/complex/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://pstests.batch.core.windows.net/$metadata#workitems/@Element\",\r\n \"name\": \"complex\",\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/complex\",\r\n \"eTag\": \"0x8D2889394CDC6F3\",\r\n \"lastModified\": \"2015-07-09T19:21:25.0745075Z\",\r\n \"creationTime\": \"2015-07-09T19:21:25.0745075Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-07-09T19:21:25.0745075Z\",\r\n \"schedule\": {\r\n \"recurrenceInterval\": \"P1D\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"jobConstraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"jobManager\": {\r\n \"name\": \"jobManager\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"taskConstraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"runElevated\": false,\r\n \"runExclusive\": true,\r\n \"killJobOnCompletion\": false\r\n }\r\n },\r\n \"jobExecutionEnvironment\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolNamePrefix\": \"TestSpecPrefix\",\r\n \"poolLifeTimeOption\": \"workitem\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n },\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"runElevated\": false,\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"0123456789abcdef\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"certStore\",\r\n \"visibility\": \"starttask\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2015-07-10T19:21:25.0745075Z\",\r\n \"recentJob\": {\r\n \"url\": \"https://pstests.batch.core.windows.net/workitems/complex/jobs/job-0000000001\",\r\n \"name\": \"job-0000000001\"\r\n }\r\n },\r\n \"metadata\": [\r\n {\r\n \"name\": \"meta2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"meta1\",\r\n \"value\": \"value1\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Thu, 05 Mar 2015 18:36:27 GMT" + "Thu, 09 Jul 2015 19:21:25 GMT" ], "Transfer-Encoding": [ "chunked" ], "request-id": [ - "64195582-0144-4988-bf7e-42156a4ad2f3" + "9ef71ee0-b596-4dd1-9a53-a44ea804958f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,10 +379,10 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 18:36:27 GMT" + "Thu, 09 Jul 2015 19:21:24 GMT" ], "ETag": [ - "0x8D2258A6CAE84EB" + "0x8D2889394CDC6F3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -637,13 +400,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "1a7a65ad-743d-41ef-93f2-f9b50bb64ef0" + "51758e3c-4543-4dbb-a2bd-445306b5e7fb" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 18:36:28 GMT" + "Thu, 09 Jul 2015 19:21:25 GMT" ] }, "ResponseBody": "", @@ -652,7 +415,7 @@ "chunked" ], "request-id": [ - "d4e47367-ce56-46c4-9fca-b8860232221a" + "c389e7e7-9840-4376-afb1-3f5fb7d27bc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -661,7 +424,7 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 18:36:28 GMT" + "Thu, 09 Jul 2015 19:21:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -679,13 +442,13 @@ "WA-Batch/1.0" ], "client-request-id": [ - "5108501a-7f0c-4871-bd94-23939aa7465d" + "ec3e3fee-1878-407f-a8fa-4e909b866fc3" ], "return-client-request-id": [ "False" ], "ocp-date": [ - "Thu, 05 Mar 2015 18:36:28 GMT" + "Thu, 09 Jul 2015 19:21:25 GMT" ] }, "ResponseBody": "", @@ -694,7 +457,7 @@ "chunked" ], "request-id": [ - "c86ee797-0161-43a0-a865-7fdde60b5a04" + "294f673a-aea6-42f0-8961-198bfe7b26a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -703,1699 +466,13 @@ "3.0" ], "Date": [ - "Thu, 05 Mar 2015 18:36:28 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2k/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a81dc9d1-2159-49ba-a8df-450a89e8b51b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "4fddeb7c-2b80-4441-a4c6-c945b4d9b801" - ], - "x-ms-correlation-request-id": [ - "4fddeb7c-2b80-4441-a4c6-c945b4d9b801" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183631Z:4fddeb7c-2b80-4441-a4c6-c945b4d9b801" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:36:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" + "Thu, 09 Jul 2015 19:21:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "ef20484d-c27f-493e-bd04-ed2805e7a4c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "7bc874e7-7aa4-422a-b49b-93a968a189b1" - ], - "x-ms-correlation-request-id": [ - "7bc874e7-7aa4-422a-b49b-93a968a189b1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183631Z:7bc874e7-7aa4-422a-b49b-93a968a189b1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:36:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "5a8964af-f890-4111-b048-dae0ee9518ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "8106060e-3923-49fe-89dc-b20e2f43ee3c" - ], - "x-ms-correlation-request-id": [ - "8106060e-3923-49fe-89dc-b20e2f43ee3c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183646Z:8106060e-3923-49fe-89dc-b20e2f43ee3c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:36:46 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c707e78e-ef93-450c-8bda-c945bda26c86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "8adc3a51-f186-4580-98c0-bdbed9d87dfe" - ], - "x-ms-correlation-request-id": [ - "8adc3a51-f186-4580-98c0-bdbed9d87dfe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183701Z:8adc3a51-f186-4580-98c0-bdbed9d87dfe" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:37:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "5f706c61-1210-4977-b8b7-efc0bcb36c7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "790f5689-646d-4638-9e48-b9c6bf875b5b" - ], - "x-ms-correlation-request-id": [ - "790f5689-646d-4638-9e48-b9c6bf875b5b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183717Z:790f5689-646d-4638-9e48-b9c6bf875b5b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:37:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "6bcf216c-aa81-4e93-9b1c-48ba0824d84a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "808db2bd-143d-4a92-b1f0-28e15ba6990e" - ], - "x-ms-correlation-request-id": [ - "808db2bd-143d-4a92-b1f0-28e15ba6990e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183732Z:808db2bd-143d-4a92-b1f0-28e15ba6990e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:37:31 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "fe8fab2d-1250-4c95-b241-66bf1bbd065a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "228bdc86-fba7-43c6-b1cd-d520a266971f" - ], - "x-ms-correlation-request-id": [ - "228bdc86-fba7-43c6-b1cd-d520a266971f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183747Z:228bdc86-fba7-43c6-b1cd-d520a266971f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:37:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "8ae7a951-fdb8-4142-9691-320d9b414085" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "b76cb87a-9721-4647-851f-e2b80bd9cc46" - ], - "x-ms-correlation-request-id": [ - "b76cb87a-9721-4647-851f-e2b80bd9cc46" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183802Z:b76cb87a-9721-4647-851f-e2b80bd9cc46" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:38:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "2d035656-cf55-48e6-9701-aeb8e33a5f49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "ce381edf-afcf-4c30-adf3-5e55dd9938e4" - ], - "x-ms-correlation-request-id": [ - "ce381edf-afcf-4c30-adf3-5e55dd9938e4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183817Z:ce381edf-afcf-4c30-adf3-5e55dd9938e4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:38:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e42f3847-bdcd-419f-b89a-846ea1886c35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "874dcf78-261c-4698-9ce0-4444c652d23e" - ], - "x-ms-correlation-request-id": [ - "874dcf78-261c-4698-9ce0-4444c652d23e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183832Z:874dcf78-261c-4698-9ce0-4444c652d23e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:38:32 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "14ca0db6-5a51-4e32-a18c-86dc7874eb79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "62093f9d-a296-4841-9a05-7c2c99df79f5" - ], - "x-ms-correlation-request-id": [ - "62093f9d-a296-4841-9a05-7c2c99df79f5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183847Z:62093f9d-a296-4841-9a05-7c2c99df79f5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:38:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "8daef84c-9a8b-48f8-8c6b-905ae45d9eb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "a7d96ae3-6c7a-4267-ba4f-30f992952c91" - ], - "x-ms-correlation-request-id": [ - "a7d96ae3-6c7a-4267-ba4f-30f992952c91" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183903Z:a7d96ae3-6c7a-4267-ba4f-30f992952c91" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:39:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a266dd08-df16-40b4-9e85-225831996d61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "b5f393d3-2cf9-46f0-a2c1-a11484a8d55d" - ], - "x-ms-correlation-request-id": [ - "b5f393d3-2cf9-46f0-a2c1-a11484a8d55d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183918Z:b5f393d3-2cf9-46f0-a2c1-a11484a8d55d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:39:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "c99bde5d-fd74-4cce-873e-8cc1f888c0bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "f55830ab-4f72-4e65-a25d-cf1d3188805c" - ], - "x-ms-correlation-request-id": [ - "f55830ab-4f72-4e65-a25d-cf1d3188805c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183934Z:f55830ab-4f72-4e65-a25d-cf1d3188805c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:39:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "fdd9d93c-4e98-4a22-b718-861ec5f9a1e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "a27e635e-cb43-4b9c-8551-2d662e93d406" - ], - "x-ms-correlation-request-id": [ - "a27e635e-cb43-4b9c-8551-2d662e93d406" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T183949Z:a27e635e-cb43-4b9c-8551-2d662e93d406" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:39:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "082ae0a0-afbd-4e8d-b7bc-f440239b8e06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "59bf7ec4-0a44-4a70-87d1-8519ab261e94" - ], - "x-ms-correlation-request-id": [ - "59bf7ec4-0a44-4a70-87d1-8519ab261e94" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184004Z:59bf7ec4-0a44-4a70-87d1-8519ab261e94" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:40:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a292563b-8f22-4423-809a-59e835370435" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "b206380e-aaa3-4dd5-8c68-d019e0affd4d" - ], - "x-ms-correlation-request-id": [ - "b206380e-aaa3-4dd5-8c68-d019e0affd4d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184019Z:b206380e-aaa3-4dd5-8c68-d019e0affd4d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:40:19 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "2be63031-3ab2-47da-b381-b21e888fd39c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "2ec6fc41-f8d4-4824-a9ec-b2ca7bf1317e" - ], - "x-ms-correlation-request-id": [ - "2ec6fc41-f8d4-4824-a9ec-b2ca7bf1317e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184034Z:2ec6fc41-f8d4-4824-a9ec-b2ca7bf1317e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:40:34 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "69c6448d-2b5a-41cf-82b2-0de60e5b540c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "f04c7378-554c-4666-95c8-00e1fcb69caf" - ], - "x-ms-correlation-request-id": [ - "f04c7378-554c-4666-95c8-00e1fcb69caf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184050Z:f04c7378-554c-4666-95c8-00e1fcb69caf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:40:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "a4ec3c87-7ff9-46d3-901c-775bc2a66a77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "4ef725f8-eae9-4dea-96d5-0c4062b30c60" - ], - "x-ms-correlation-request-id": [ - "4ef725f8-eae9-4dea-96d5-0c4062b30c60" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184105Z:4ef725f8-eae9-4dea-96d5-0c4062b30c60" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:41:05 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e5c797f8-e65f-4ae8-b968-0becd42f90e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "a50798a8-7a2d-4271-870f-657424ca6fd3" - ], - "x-ms-correlation-request-id": [ - "a50798a8-7a2d-4271-870f-657424ca6fd3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184120Z:a50798a8-7a2d-4271-870f-657424ca6fd3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:41:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "e05e6f5e-7762-42dc-b369-498fa016e41e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-request-id": [ - "e0802d23-a264-42bb-8ef9-7be0ddd27c5b" - ], - "x-ms-correlation-request-id": [ - "e0802d23-a264-42bb-8ef9-7be0ddd27c5b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184136Z:e0802d23-a264-42bb-8ef9-7be0ddd27c5b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:41:35 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "request-id": [ - "afb53273-f2ea-4000-94f4-4e004d7d73ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" - ], - "x-ms-request-id": [ - "492bca56-7c24-4cae-88b7-f939f86f4198" - ], - "x-ms-correlation-request-id": [ - "492bca56-7c24-4cae-88b7-f939f86f4198" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184151Z:492bca56-7c24-4cae-88b7-f939f86f4198" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:41:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/test-new-wi/providers/Microsoft.Batch/batchAccounts/testnewwi/operationResults/a81dc9d1-2159-49ba-a8df-450a89e8b51b?api-version=2014-05-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL3Rlc3QtbmV3LXdpL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy90ZXN0bmV3d2kvb3BlcmF0aW9uUmVzdWx0cy9hODFkYzlkMS0yMTU5LTQ5YmEtYThkZi00NTBhODllOGI1MWI/YXBpLXZlcnNpb249MjAxNC0wNS0wMS1wcml2YXRlcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-05-01-privatepreview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "69" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a0bfa67e-ef85-49ba-a66b-a137d322421e" - ], - "x-ms-correlation-request-id": [ - "a0bfa67e-ef85-49ba-a66b-a137d322421e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184207Z:a0bfa67e-ef85-49ba-a66b-a137d322421e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:42:06 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourcegroups/test-new-wi?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlZ3JvdXBzL3Rlc3QtbmV3LXdpP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "202df253-2e4f-4d34-a401-ea2e8c4dafe3" - ], - "x-ms-correlation-request-id": [ - "202df253-2e4f-4d34-a401-ea2e8c4dafe3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184210Z:202df253-2e4f-4d34-a401-ea2e8c4dafe3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:42:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVYwa3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" - ], - "x-ms-request-id": [ - "471ac8dd-0a19-43f6-93f9-378f28fe99a4" - ], - "x-ms-correlation-request-id": [ - "471ac8dd-0a19-43f6-93f9-378f28fe99a4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184210Z:471ac8dd-0a19-43f6-93f9-378f28fe99a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:42:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVYwa3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" - ], - "x-ms-request-id": [ - "b01d1311-28f0-4742-a1ac-75813889e896" - ], - "x-ms-correlation-request-id": [ - "b01d1311-28f0-4742-a1ac-75813889e896" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184225Z:b01d1311-28f0-4742-a1ac-75813889e896" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:42:25 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVYwa3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" - ], - "x-ms-request-id": [ - "33a281d7-1f95-4598-ba76-1f382f5ee622" - ], - "x-ms-correlation-request-id": [ - "33a281d7-1f95-4598-ba76-1f382f5ee622" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184240Z:33a281d7-1f95-4598-ba76-1f382f5ee622" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:42:39 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjJETkVXOjJEV0ktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFVUlZOVU9qSkVUa1ZYT2pKRVYwa3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" - ], - "x-ms-request-id": [ - "f7825e8c-b1ae-417e-9203-fa7b156a2df7" - ], - "x-ms-correlation-request-id": [ - "f7825e8c-b1ae-417e-9203-fa7b156a2df7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150305T184255Z:f7825e8c-b1ae-417e-9203-fa7b156a2df7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 05 Mar 2015 18:42:55 GMT" - ] - }, - "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/packages.config b/src/ResourceManager/Batch/Commands.Batch.Test/packages.config index 5eefb3a77ea5..bf5070a575a6 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/packages.config +++ b/src/ResourceManager/Batch/Commands.Batch.Test/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj b/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj index 37cde4d10696..ed022b705a9e 100644 --- a/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj +++ b/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj @@ -60,7 +60,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.Batch.1.3.0-preview\lib\net40\Microsoft.Azure.Management.Batch.dll + ..\..\..\packages\Microsoft.Azure.Management.Batch.1.4.0\lib\net40\Microsoft.Azure.Management.Batch.dll False diff --git a/src/ResourceManager/Batch/Commands.Batch/packages.config b/src/ResourceManager/Batch/Commands.Batch/packages.config index 3a3d0f1b97a4..cf849be05771 100644 --- a/src/ResourceManager/Batch/Commands.Batch/packages.config +++ b/src/ResourceManager/Batch/Commands.Batch/packages.config @@ -5,7 +5,7 @@ - + diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj index c3bac58960c1..964bc5bedbc6 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -71,15 +71,16 @@ True - ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.3-preview\lib\net40\Microsoft.Azure.Management.Network.dll - True + False + ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.9-preview\lib\net40\Microsoft.Azure.Management.Network.dll ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll True - + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + True ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config index e0feff01e0e0..6eec781ecb3b 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config @@ -8,7 +8,7 @@ - + diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 7050f681bac1..8ef60d6acfe3 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -82,16 +82,16 @@ True - ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.3-preview\lib\net40\Microsoft.Azure.Management.Network.dll - True + False + ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.9-preview\lib\net40\Microsoft.Azure.Management.Network.dll ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll True - False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + True False @@ -123,6 +123,7 @@ + @@ -160,6 +161,18 @@ + + + + + + + + + + + + @@ -245,6 +258,10 @@ {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources + + {a50ab133-5c04-4a17-9054-f8343683ec23} + Commands.Management.Storage + {2493a8f7-1949-4f29-8d53-9d459046c3b8} Commands.Tags @@ -278,6 +295,7 @@ Always + Designer diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs index 31a3ef05ef16..74d022e5c868 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs @@ -94,5 +94,9 @@ public static class ProfileNouns public const string AdditionalUnattendContent = "AzureVMAdditionalUnattendContent"; public const string VaultSecretGroup = "AzureVMSecret"; public const string RemoteDesktopFile = "AzureRemoteDesktopFile"; + + //DSC + public const string VirtualMachineDscExtension = "AzureVMDscExtension"; + public const string VirtualMachineDscConfiguration = "AzureVMDscConfiguration"; } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/ConfigurationParseResult.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/ConfigurationParseResult.cs new file mode 100644 index 000000000000..62f60f98bb31 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/ConfigurationParseResult.cs @@ -0,0 +1,28 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Management.Automation.Language; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + public class ConfigurationParseResult + { + public string Path { get; set; } + public ParseError[] Errors { get; set; } + public List RequiredModules { get; set; } + + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/ConfigurationParsingHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/ConfigurationParsingHelper.cs new file mode 100644 index 000000000000..3b8955128e20 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/ConfigurationParsingHelper.cs @@ -0,0 +1,245 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +using System; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Management.Automation.Language; +using System.Management.Automation.Runspaces; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + + public static class ConfigurationParsingHelper + { + private static readonly ConcurrentDictionary _resourceName2ModuleNameCache = + new ConcurrentDictionary(); + + private static bool IsParameterName(CommandElementAst ast, string name) + { + CommandParameterAst constantAst = ast as CommandParameterAst; + if (constantAst == null) + { + return false; + } + return String.Equals(constantAst.ParameterName, name, StringComparison.OrdinalIgnoreCase); + } + + private static List GetLegacyTopLevelParametersFromAst(CommandAst ast, string parameterName) + { + List parameters = new List(); + IEnumerable commandElement = + ast.CommandElements.Where(x => IsParameterName(x, parameterName)).OfType(); + foreach (var commandElementAst in commandElement) + { + ArrayLiteralAst arrayLiteralAst = commandElementAst.Argument as ArrayLiteralAst; + if (arrayLiteralAst != null) + { + parameters.AddRange(arrayLiteralAst.Elements.OfType().Select(x => x.Value)); + } + } + return parameters; + } + + + private static bool IsCandidateForImportDscResourceAst(Ast ast, int startOffset) + { + return ast.Extent.StartOffset == startOffset && !(ast is StatementBlockAst) && !(ast is NamedBlockAst); + } + private static List GetSingleAstRequiredModules(Ast ast, Token[] tokens) + { + List modules = new List(); + List resources = new List(); + var imports = tokens.Where(token => + String.Compare(token.Text, "Import-DscResource", StringComparison.OrdinalIgnoreCase) == 0); + + // + // Create a function with the same name as Import-DscResource keyword and use powershell + // argument function binding to emulate Import-DscResource argument binding. + // + InitialSessionState initialSessionState = InitialSessionState.Create(); + SessionStateFunctionEntry importDscResourcefunctionEntry = new SessionStateFunctionEntry( + "Import-DscResource", @"param($Name, $ModuleName) + if ($ModuleName) + { + foreach ($m in $ModuleName) { $global:modules.Add($m) } + } else { + foreach ($n in $Name) { $global:resources.Add($n) } + } + "); + initialSessionState.Commands.Add(importDscResourcefunctionEntry); + initialSessionState.LanguageMode = PSLanguageMode.RestrictedLanguage; + var moduleVarEntry = new SessionStateVariableEntry("modules", modules, ""); + var resourcesVarEntry = new SessionStateVariableEntry("resources", resources, ""); + initialSessionState.Variables.Add(moduleVarEntry); + initialSessionState.Variables.Add(resourcesVarEntry); + + using (System.Management.Automation.PowerShell powerShell = System.Management.Automation.PowerShell.Create(initialSessionState)) + { + foreach (var import in imports) + { + int startOffset = import.Extent.StartOffset; + var asts = ast.FindAll(a => IsCandidateForImportDscResourceAst(a, startOffset), true); + int longestLen = -1; + Ast longestCandidate = null; + foreach (var candidatAst in asts) + { + int curLen = candidatAst.Extent.EndOffset - candidatAst.Extent.StartOffset; + if (curLen > longestLen) + { + longestCandidate = candidatAst; + longestLen = curLen; + } + } + // longestCandidate should contain AST for import-dscresource, like "Import-DSCResource -Module x -Name y". + if (longestCandidate != null) + { + string importText = longestCandidate.Extent.Text; + // We invoke-command "importText" here. Script injection is prevented: + // We checked that file represents a valid AST without errors. + powerShell.AddScript(importText); + powerShell.Invoke(); + powerShell.Commands.Clear(); + } + } + } + modules.AddRange(resources.Select(GetModuleNameForDscResource)); + return modules; + } + + public static string GetModuleNameForDscResource(string resourceName) + { + string moduleName; + if (!_resourceName2ModuleNameCache.TryGetValue(resourceName, out moduleName)) + { + try + { + using (System.Management.Automation.PowerShell powershell = System.Management.Automation.PowerShell.Create()) + { + powershell.AddCommand("Get-DscResource"). + AddCommand("Where-Object").AddParameter("Property", "ResourceType").AddParameter("Value", resourceName).AddParameter("EQ", true). + AddCommand("Foreach-Object").AddParameter("MemberName", "Module"). + AddCommand("Foreach-Object").AddParameter("MemberName", "Name"); + moduleName = powershell.Invoke().First(); + } + } + catch (InvalidOperationException e) + { + throw new GetDscResourceException(resourceName, e); + } + _resourceName2ModuleNameCache.TryAdd(resourceName, moduleName); + } + return moduleName; + } + + private static List GetRequiredModulesFromAst(Ast ast, Token[] tokens) + { + List modules = new List(); + + // We use System.Management.Automation.Language.Parser to extract required modules from ast, + // but format of ast is a bit tricky and have changed in time. + // + // There are two place where 'Import-DscResource' keyword can appear: + // 1) + // Configuration Foo { + // Import-DscResource .... # outside node + // Node Bar {...} + // } + // 2) + // Configuration Foo { + // Node Bar { + // Import-DscResource .... # inside node + // ... + // } + // } + // + // The old version of System.Management.Automation.Language.Parser produces slightly different AST for the first case. + // In new version, Configuration corresponds to ConfigurationDefinitionAst. + // In old version is's a generic CommandAst with specific commandElements which capture top-level Imports (case 1). + // In new version all imports correspond to their own CommandAsts, same for case 2 in old version. + + // Old version, case 1: + IEnumerable legacyConfigurationAsts = ast.FindAll(IsLegacyAstConfiguration, true).Select(x => (CommandAst)x); + foreach (var legacyConfigurationAst in legacyConfigurationAsts) + { + // Note: these two sequences are translated to same AST: + // + // Import-DscResource -Module xComputerManagement; Import-DscResource -Name xComputer + // Import-DscResource -Module xComputerManagement -Name xComputer + // + // We cannot distinguish different imports => cannot ignore resource names for imports with specified modules. + // So we process everything: ModuleDefinition and ResourceDefinition. + + // Example: Import-DscResource -Module xPSDesiredStateConfiguration + modules.AddRange(GetLegacyTopLevelParametersFromAst(legacyConfigurationAst, "ModuleDefinition")); + // Example: Import-DscResource -Name MSFT_xComputer + modules.AddRange(GetLegacyTopLevelParametersFromAst(legacyConfigurationAst, "ResourceDefinition").Select(GetModuleNameForDscResource)); + } + + // Both cases in new version and 2nd case in old version: + modules.AddRange(GetSingleAstRequiredModules(ast, tokens)); + + return modules.Distinct().ToList(); + } + + private static bool IsLegacyAstConfiguration(Ast node) + { + CommandAst commandNode = node as CommandAst; + if (commandNode == null) + { + return false; + } + // TODO: Add case when configuration name is not a StringConstant, but a variable. + StringConstantExpressionAst commandParameter = (commandNode.CommandElements[0] as StringConstantExpressionAst); + if (commandParameter == null) + { + return false; + } + // Find the AST nodes defining configurations. These nodes will be CommandAst nodes + // with 7 or 8 command elements (8 if the configuration requires any custom modules.) + return + commandNode.CommandElements.Count >= 7 && + String.Equals(commandParameter.Extent.Text, "configuration", StringComparison.OrdinalIgnoreCase) && + String.Equals(commandParameter.Value, @"PSDesiredStateConfiguration\Configuration", + StringComparison.OrdinalIgnoreCase); + } + + public static ConfigurationParseResult ParseConfiguration(string path) + { + // Get the resolved script path. This will throw an exception if the file is not found. + string fullPath = Path.GetFullPath(path); + Token[] tokens; + ParseError[] errors; + // Parse the script into an AST, capturing parse errors. Note - even with errors, the + // file may still successfully define one or more configurations. We don't process + // required modules in case of parsing errors to avoid script injection. + ScriptBlockAst ast = Parser.ParseFile(fullPath, out tokens, out errors); + List requiredModules = new List(); + if (!errors.Any()) + { + requiredModules = GetRequiredModulesFromAst(ast, tokens).Distinct().ToList(); + } + return new ConfigurationParseResult() + { + Path = fullPath, + Errors = errors, + RequiredModules = requiredModules, + }; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPrivateSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPrivateSettings.cs new file mode 100644 index 000000000000..f4c9b6d8cbef --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPrivateSettings.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + + using System.Collections; + + /// + /// Represents private/protected settings. Serialized representation of this object stored as an encrypted string on the VM. + /// Part of the protocol between Set-AzureVMDscExtension cmdlet and DSC Extension handler. + /// + public class DscExtensionPrivateSettings + { + /// + /// Url to the blob storage with ConfigurationData .psd1 file. + /// + public string DataBlobUri { get; set; } + + /// + /// This hashtable contains parameters that needs to be encrypted on target VM, like PSCredential. + /// are not encrypted on target VM. + /// + public Hashtable Items { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPublicSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPublicSettings.cs new file mode 100644 index 000000000000..b22b874f974e --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPublicSettings.cs @@ -0,0 +1,100 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + /// + /// Represents public settings. Serialized representation of this object stored as a plain text string on the VM. + /// Part of the protocol between Set-AzureVMDscExtension cmdlet and DSC Extension handler. + /// + public class DscExtensionPublicSettings + { + /// + /// Version 1.0.0.0 of DscExtensionPublicSettings. We keep it for backward compatability. + /// + internal class Version1 + { + public string SasToken { get; set; } + public string ModulesUrl { get; set; } + public string ConfigurationFunction { get; set; } + public Hashtable Properties { get; set; } + + /// + /// Converting to the current version of DscExtensionPublicSettings. + /// + /// + public DscExtensionPublicSettings ToCurrentVersion() + { + List properties = new List(); + foreach (DictionaryEntry p in this.Properties) + { + properties.Add(new Property() + { + Name = p.Key.ToString(), + TypeName = p.Value.GetType().ToString(), + Value = p.Value + }); + } + return new DscExtensionPublicSettings() + { + SasToken = this.SasToken, + ModulesUrl = this.ModulesUrl, + ConfigurationFunction = this.ConfigurationFunction, + Properties = properties.ToArray(), + ProtocolVersion = new Version(1, 0, 0, 0) + }; + } + } + + /// + /// Defines an entry of DscExtensionPublicSettings.Properties array. + /// + public class Property + { + public string TypeName { get; set; } + public string Name { get; set; } + public object Value { get; set; } + } + + /// + /// SharedAccessSignature token that allows access of azure blob storage files. + /// + public string SasToken { get; set; } + + /// + /// Url for archive with modules and configuration in azure blob storage. + /// + public string ModulesUrl { get; set; } + + /// + /// String to define configuration in the format: "Module\NameOfConfiguration", where + /// Module can be a path to the root of the module or .ps1 file or .psm1 file. + /// + public string ConfigurationFunction { get; set; } + + /// + /// Configuration parameters + /// + public Property[] Properties { get; set; } + + /// + /// Version of the protocol (DscExtensionPublicSettings and DscExtensionPrivateSettings mostly). + /// + public Version ProtocolVersion { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscSettingsSerializer.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscSettingsSerializer.cs new file mode 100644 index 000000000000..84b1f8834df5 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscSettingsSerializer.cs @@ -0,0 +1,178 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Globalization; +using System.Management.Automation; +using System.Runtime.InteropServices; +using System.Security; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + public class DscSettingsSerializer + { + /// + /// Serialize DscPublicSettings to string. + /// + /// + /// + public static string SerializePublicSettings(DscExtensionPublicSettings publicSettings) + { + return JsonConvert.SerializeObject(publicSettings); + } + + /// + /// Serialize DscPrivateSettings to string. + /// + /// + /// + public static string SerializePrivateSettings(DscExtensionPrivateSettings privateSettings) + { + return JsonConvert.SerializeObject(privateSettings); + } + + public static DscExtensionPublicSettings DeserializePublicSettings(string publicSettingsString) + { + DscExtensionPublicSettings publicSettings; + try + { + publicSettings = string.IsNullOrEmpty(publicSettingsString) + ? null + : JsonConvert.DeserializeObject(publicSettingsString); + } + catch (JsonException) + { + // Try deserialize as version 1.0 + try + { + DscExtensionPublicSettings.Version1 publicSettingsV1 = + JsonConvert.DeserializeObject(publicSettingsString); + publicSettings = publicSettingsV1.ToCurrentVersion(); + } + catch (JsonException) + { + throw; + } + } + return publicSettings; + } + + /// + /// Convert hashtable of public settings into two parts: + /// 1) Array of public settings in format: + /// [ + /// { + /// "Name": "String Parameter", + /// "Value": "String Value", + /// "TypeName": "System.String" + /// } + /// ] + /// 2) Private settings hashtable. We extract all sensitive information (like password from PSCredential) + /// and store it in private settings. Public settings will reference them in form: + /// { + /// "Name": "AdminCredential", + /// "Value": + /// { + /// "Password" : "PrivateSettings:28AC4D36-A99B-41DE-8421-2BCC1C7C1A3B" + /// "UserName" : "DOMAIN\LOGIN" + /// }, + /// "TypeName": "System.Management.Automation.PSCredential" + /// } + /// and private hashtable will look like that: + /// { + /// "28AC4D36-A99B-41DE-8421-2BCC1C7C1A3B" : "password" + /// } + /// + /// + /// tuple of array (public settings) and hashtable (private settings) + public static Tuple SeparatePrivateItems(Hashtable arguments) + { + var publicSettings = new List(); + var privateSettings = new Hashtable(); + if (arguments != null) + { + foreach (DictionaryEntry argument in arguments) + { + object entryValue = argument.Value; + string entryType = argument.Value == null ? "null" : argument.Value.GetType().ToString(); + string entryName = argument.Key.ToString(); + // Special case for PSCredential + PSCredential credential = argument.Value as PSCredential; + if (credential == null) + { + PSObject psObject = argument.Value as PSObject; + if (psObject != null) + { + credential = psObject.BaseObject as PSCredential; + } + } + if (credential != null) + { + // plainTextPassword is a string object with sensitive information in plain text. + // We pass it to 3rd party serializer which may create copies of the string. + string plainTextPassword = ConvertToUnsecureString(credential.Password); + string userName = credential.UserName; + string passwordRef = Guid.NewGuid().ToString(); + privateSettings.Add(passwordRef, plainTextPassword); + var newValue = new Hashtable(); + newValue["UserName"] = String.Format(CultureInfo.InvariantCulture, userName); + newValue["Password"] = String.Format(CultureInfo.InvariantCulture, "PrivateSettingsRef:{0}", + passwordRef); + entryValue = newValue; + entryType = typeof (PSCredential).ToString(); + } + + var entry = new DscExtensionPublicSettings.Property + { + Name = entryName, + TypeName = entryType, + Value = entryValue, + }; + publicSettings.Add(entry); + } + } + return new Tuple(publicSettings.ToArray(), privateSettings); + } + + /// + /// Converte SecureString to String. + /// + /// + /// This method creates a managed object with sensitive information and undetermined lifecycle. + /// + /// + /// + private static string ConvertToUnsecureString(SecureString source) + { + if (source == null) + throw new ArgumentNullException("source"); + + IntPtr unmanagedString = IntPtr.Zero; + try + { + unmanagedString = Marshal.SecureStringToGlobalAllocUnicode(source); + return Marshal.PtrToStringUni(unmanagedString); + } + finally + { + Marshal.ZeroFreeGlobalAllocUnicode(unmanagedString); + } + } + + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionCommand.cs new file mode 100644 index 000000000000..0a995359e9fb --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionCommand.cs @@ -0,0 +1,153 @@ +using System; +using System.Collections; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + [Cmdlet( + VerbsCommon.Get, + ProfileNouns.VirtualMachineDscExtension, + DefaultParameterSetName = GetDscExtensionParamSetName), + OutputType( + typeof(VirtualMachineDscExtensionContext))] + public class GetAzureVMDscExtensionCommand : VirtualMachineDscExtensionBaseCmdlet + { + private const string GetDscExtensionParamSetName = "GetDscExtension"; + + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The virtual machine name.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Parameter( + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The extension handler name. This is defaulted to 'Microsoft.Powershell.DSC'")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + HelpMessage = "To show the status.")] + [ValidateNotNullOrEmpty] + public SwitchParameter Status { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (String.IsNullOrEmpty(Name)) + { + Name = ExtensionNamespace + "." + ExtensionName; + } + + if (Status) + { + var result = VirtualMachineExtensionClient.GetWithInstanceView(ResourceGroupName, VMName, Name); + var extension = result.ToPSVirtualMachineExtension(ResourceGroupName); + + if ( + extension.Publisher.Equals(ExtensionNamespace, + StringComparison.InvariantCultureIgnoreCase) && + extension.ExtensionType.Equals(ExtensionName, + StringComparison.InvariantCultureIgnoreCase)) + { + WriteObject(GetDscExtensionContext(extension)); + } + else + { + WriteObject(null); + } + } + else + { + var result = VirtualMachineExtensionClient.Get(ResourceGroupName, VMName, Name); + var extension = result.ToPSVirtualMachineExtension(ResourceGroupName); + + if ( + extension.Publisher.Equals(ExtensionNamespace, + StringComparison.InvariantCultureIgnoreCase) && + extension.ExtensionType.Equals(ExtensionName, + StringComparison.InvariantCultureIgnoreCase)) + { + WriteObject(GetDscExtensionContext(extension)); + } + else + { + WriteObject(null); + } + } + } + + private VirtualMachineDscExtensionContext GetDscExtensionContext(PSVirtualMachineExtension extension) + { + var context = new VirtualMachineDscExtensionContext + { + ResourceGroupName = extension.ResourceGroupName, + Name = extension.Name, + Location = extension.Location, + Etag = extension.Etag, + Publisher = extension.Publisher, + ExtensionType = extension.ExtensionType, + TypeHandlerVersion = extension.TypeHandlerVersion, + Id = extension.Id, + PublicSettings = extension.PublicSettings, + ProtectedSettings = extension.ProtectedSettings, + ProvisioningState = extension.ProvisioningState, + Statuses = extension.Statuses + }; + + DscExtensionPublicSettings publicSettings; + try + { + publicSettings = string.IsNullOrEmpty(extension.PublicSettings) ? null + : JsonConvert.DeserializeObject(extension.PublicSettings); + } + catch (Exception) + { + // Try deserialize as version 1.0 + try + { + var publicSettingsV1 = + JsonConvert.DeserializeObject(extension.PublicSettings); + publicSettings = publicSettingsV1.ToCurrentVersion(); + } + catch (JsonException) + { + throw; + } + } + + if (publicSettings == null) + { + context.ModulesUrl = string.Empty; + context.ConfigurationFunction = string.Empty; + context.Properties = null; + } + else + { + context.ModulesUrl = publicSettings.ModulesUrl; + context.ConfigurationFunction = publicSettings.ConfigurationFunction; + context.Properties = new Hashtable(publicSettings.Properties.ToDictionary( x => x.Name, x => x.Value )); + } + + return context; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetDscResourceException.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetDscResourceException.cs new file mode 100644 index 000000000000..8613f5ac844f --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetDscResourceException.cs @@ -0,0 +1,26 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Globalization; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + [Serializable] + public class GetDscResourceException : UnauthorizedAccessException + { + public GetDscResourceException(string resourceName, Exception e) : + base(String.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionGetDscResourceFailed, resourceName), e) { } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/PublishAzureVMDscConfigurationCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/PublishAzureVMDscConfigurationCommand.cs new file mode 100644 index 000000000000..fd7f1a07276d --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/PublishAzureVMDscConfigurationCommand.cs @@ -0,0 +1,460 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.IO.Compression; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.WindowsAzure.Storage; +using Microsoft.WindowsAzure.Storage.Auth; +using Microsoft.WindowsAzure.Storage.Blob; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + /// + /// Uploads a Desired State Configuration script to Azure blob storage, which + /// later can be applied to Azure Virtual Machines using the + /// Set-AzureVMDscExtension cmdlet. + /// + [Cmdlet( + VerbsData.Publish, + ProfileNouns.VirtualMachineDscConfiguration, + SupportsShouldProcess = true, + DefaultParameterSetName = UploadArchiveParameterSetName), + OutputType( + typeof(String))] + public class PublishAzureVMDscConfigurationCommand : VirtualMachineDscExtensionBaseCmdlet + { + private const string CreateArchiveParameterSetName = "CreateArchive"; + private const string UploadArchiveParameterSetName = "UploadArchive"; + + [Parameter( + Mandatory = true, + Position = 2, + ParameterSetName = UploadArchiveParameterSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the resource group that contains the storage account.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + /// + /// Path to a file containing one or more configurations; the file can be a + /// PowerShell script (*.ps1) or MOF interface (*.mof). + /// + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Path to a file containing one or more configurations")] + [ValidateNotNullOrEmpty] + public string ConfigurationPath { get; set; } + + /// + /// Name of the Azure Storage Container the configuration is uploaded to. + /// + [Parameter( + ValueFromPipelineByPropertyName = true, + Position = 4, + ParameterSetName = UploadArchiveParameterSetName, + HelpMessage = "Name of the Azure Storage Container the configuration is uploaded to")] + [ValidateNotNullOrEmpty] + public string ContainerName { get; set; } + + /// + /// The Azure Storage Account name used to upload the configuration script to the container specified by ContainerName. + /// + [Parameter( + Mandatory = true, + Position = 3, + ValueFromPipelineByPropertyName = true, + ParameterSetName = UploadArchiveParameterSetName, + HelpMessage = "The Azure Storage Account name used to upload the configuration script to the container " + + "specified by ContainerName ")] + [ValidateNotNullOrEmpty] + public String StorageAccountName { get; set; } + + /// + /// Path to a local ZIP file to write the configuration archive to. + /// When using this parameter, Publish-AzureVMDscConfiguration creates a + /// local ZIP archive instead of uploading it to blob storage.. + /// + [Alias("ConfigurationArchivePath")] + [Parameter( + Position = 2, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CreateArchiveParameterSetName, + HelpMessage = "Path to a local ZIP file to write the configuration archive to.")] + [ValidateNotNullOrEmpty] + public string OutputArchivePath { get; set; } + + /// + /// By default Publish-AzureVMDscConfiguration will not overwrite any existing blobs. + /// Use -Force to overwrite them. + /// + [Parameter(HelpMessage = "By default Publish-AzureVMDscConfiguration will not overwrite any existing blobs")] + public SwitchParameter Force { get; set; } + + + //Private Variables + + /// + /// Credentials used to access Azure Storage + /// + private StorageCredentials _storageCredentials; + + private const string Ps1FileExtension = ".ps1"; + private const string Psm1FileExtension = ".psm1"; + private const string ZipFileExtension = ".zip"; + + private static readonly HashSet UploadArchiveAllowedFileExtensions = + new HashSet(StringComparer.OrdinalIgnoreCase) { Ps1FileExtension, Psm1FileExtension, ZipFileExtension }; + private static readonly HashSet CreateArchiveAllowedFileExtensions = + new HashSet(StringComparer.OrdinalIgnoreCase) { Ps1FileExtension, Psm1FileExtension }; + + private const int MinMajorPowerShellVersion = 4; + + private readonly List _temporaryFilesToDelete = new List(); + private readonly List _temporaryDirectoriesToDelete = new List(); + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + try + { + ValidatePsVersion(); + ValidateParameters(); + PublishConfiguration(); + } + finally + { + foreach (var file in _temporaryFilesToDelete) + { + try + { + DeleteFile(file); + WriteVerbose(string.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionDeletedFileMessage, file)); + } + catch (Exception e) + { + WriteVerbose(string.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionDeleteErrorMessage, file, e.Message)); + } + } + foreach (var directory in _temporaryDirectoriesToDelete) + { + try + { + DeleteDirectory(directory); + WriteVerbose(string.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionDeletedFileMessage, directory)); + } + catch (Exception e) + { + WriteVerbose(string.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionDeleteErrorMessage, directory, e.Message)); + } + } + } + } + + protected void ValidatePsVersion() + { + using (System.Management.Automation.PowerShell powershell = System.Management.Automation.PowerShell.Create()) + { + powershell.AddScript("$PSVersionTable.PSVersion.Major"); + int major = powershell.Invoke().FirstOrDefault(); + if (major < MinMajorPowerShellVersion) + { + ThrowTerminatingError( + new ErrorRecord( + new InvalidOperationException( + string.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionRequiredPsVersion, MinMajorPowerShellVersion, major)), + "InvalidPowerShellVersion", + ErrorCategory.InvalidOperation, + null)); + } + } + } + + protected void ValidateParameters() + { + ConfigurationPath = GetUnresolvedProviderPathFromPSPath(ConfigurationPath); + if (!File.Exists(ConfigurationPath)) + { + ThrowInvalidArgumentError(Properties.Resources.PublishVMDscExtensionUploadArchiveConfigFileNotExist, ConfigurationPath); + } + + var configurationFileExtension = Path.GetExtension(ConfigurationPath); + + if (ParameterSetName == UploadArchiveParameterSetName) + { + // Check that ConfigurationPath points to a valid file + if (!File.Exists(ConfigurationPath)) + { + ThrowInvalidArgumentError(Properties.Resources.PublishVMDscExtensionConfigFileNotFound, ConfigurationPath); + } + if (!UploadArchiveAllowedFileExtensions.Contains(Path.GetExtension(configurationFileExtension))) + { + ThrowInvalidArgumentError(Properties.Resources.PublishVMDscExtensionUploadArchiveConfigFileInvalidExtension, ConfigurationPath); + } + + _storageCredentials = GetStorageCredentials(ResourceGroupName, StorageAccountName); + + if (ContainerName == null) + { + ContainerName = DefaultContainerName; + } + } + else if (ParameterSetName == CreateArchiveParameterSetName) + { + if (!CreateArchiveAllowedFileExtensions.Contains(Path.GetExtension(configurationFileExtension))) + { + ThrowInvalidArgumentError(Properties.Resources.PublishVMDscExtensionCreateArchiveConfigFileInvalidExtension, ConfigurationPath); + } + + OutputArchivePath = GetUnresolvedProviderPathFromPSPath(OutputArchivePath); + } + } + + /// + /// Publish the configuration and its modules + /// + protected void PublishConfiguration() + { + if (ParameterSetName == CreateArchiveParameterSetName) + { + ConfirmAction(true, string.Empty, Properties.Resources.AzureVMDscCreateArchiveAction, OutputArchivePath, () => CreateConfigurationArchive()); + } + else + { + var archivePath = string.Compare(Path.GetExtension(ConfigurationPath), ZipFileExtension, StringComparison.OrdinalIgnoreCase) == 0 ? + ConfigurationPath + : + CreateConfigurationArchive(); + + UploadConfigurationArchive(archivePath); + } + } + + //Private Methods + private string CreateConfigurationArchive() + { + WriteVerbose(String.Format(CultureInfo.CurrentUICulture, Properties.Resources.AzureVMDscParsingConfiguration, ConfigurationPath)); + ConfigurationParseResult parseResult = null; + try + { + parseResult = ConfigurationParsingHelper.ParseConfiguration(ConfigurationPath); + } + catch (GetDscResourceException e) + { + ThrowTerminatingError(new ErrorRecord(e, "CannotAccessDscResource", ErrorCategory.PermissionDenied, null)); + } + + if (parseResult.Errors.Any()) + { + ThrowTerminatingError( + new ErrorRecord( + new ParseException( + String.Format( + CultureInfo.CurrentUICulture, + Properties.Resources.PublishVMDscExtensionStorageParserErrors, + ConfigurationPath, + String.Join("\n", parseResult.Errors.Select(error => error.ToString())))), + "DscConfigurationParseError", + ErrorCategory.ParserError, + null)); + } + List requiredModules = parseResult.RequiredModules; + //Since LCM always uses the latest module there is no need to copy PSDesiredStateConfiguration + if (requiredModules.Contains("PSDesiredStateConfiguration")) + { + requiredModules.Remove("PSDesiredStateConfiguration"); + } + + WriteVerbose(String.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionRequiredModulesVerbose, String.Join(", ", requiredModules))); + + // Create a temporary directory for uploaded zip file + string tempZipFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); + WriteVerbose(String.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionTempFolderVerbose, tempZipFolder)); + Directory.CreateDirectory(tempZipFolder); + _temporaryDirectoriesToDelete.Add(tempZipFolder); + + // CopyConfiguration + var configurationName = Path.GetFileName(ConfigurationPath); + var configurationDestination = Path.Combine(tempZipFolder, configurationName); + WriteVerbose(String.Format( + CultureInfo.CurrentUICulture, + Properties.Resources.PublishVMDscExtensionCopyFileVerbose, + ConfigurationPath, + configurationDestination)); + File.Copy(ConfigurationPath, configurationDestination); + + // CopyRequiredModules + foreach (var module in requiredModules) + { + using (System.Management.Automation.PowerShell powershell = System.Management.Automation.PowerShell.Create()) + { + // Wrapping script in a function to prevent script injection via $module variable. + powershell.AddScript( + @"function Copy-Module([string]$module, [string]$tempZipFolder) + { + $mi = Get-Module -List -Name $module; + $moduleFolder = Split-Path $mi.Path; + Copy-Item -Recurse -Path $moduleFolder -Destination ""$tempZipFolder\$($mi.Name)"" + }" + ); + powershell.Invoke(); + powershell.Commands.Clear(); + powershell.AddCommand("Copy-Module") + .AddParameter("module", module) + .AddParameter("tempZipFolder", tempZipFolder); + WriteVerbose(String.Format( + CultureInfo.CurrentUICulture, + Properties.Resources.PublishVMDscExtensionCopyModuleVerbose, + module, + tempZipFolder)); + powershell.Invoke(); + } + } + + // + // Zip the directory + // + string archive; + + if (ParameterSetName == CreateArchiveParameterSetName) + { + archive = OutputArchivePath; + + if (!Force && File.Exists(archive)) + { + ThrowTerminatingError( + new ErrorRecord( + new UnauthorizedAccessException(string.Format(CultureInfo.CurrentUICulture, Properties.Resources.AzureVMDscArchiveAlreadyExists, archive)), + "FileAlreadyExists", + ErrorCategory.PermissionDenied, + null)); + } + } + else + { + string tempArchiveFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); + WriteVerbose(String.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionTempFolderVerbose, tempArchiveFolder)); + Directory.CreateDirectory(tempArchiveFolder); + _temporaryDirectoriesToDelete.Add(tempArchiveFolder); + archive = Path.Combine(tempArchiveFolder, configurationName + ZipFileExtension); + _temporaryFilesToDelete.Add(archive); + } + + if (File.Exists(archive)) + { + File.Delete(archive); + } + + ZipFile.CreateFromDirectory(tempZipFolder, archive); + return archive; + } + + private void UploadConfigurationArchive(string archivePath) + { + CloudBlobContainer cloudBlobContainer = GetStorageContainer(); + + var blobName = Path.GetFileName(archivePath); + + CloudBlockBlob modulesBlob = cloudBlobContainer.GetBlockBlobReference(blobName); + + ConfirmAction(true, string.Empty, string.Format(CultureInfo.CurrentUICulture, Properties.Resources.AzureVMDscUploadToBlobStorageAction, archivePath), modulesBlob.Uri.AbsoluteUri, () => + { + if (!Force && modulesBlob.Exists()) + { + ThrowTerminatingError( + new ErrorRecord( + new UnauthorizedAccessException(string.Format(CultureInfo.CurrentUICulture, Properties.Resources.AzureVMDscStorageBlobAlreadyExists, modulesBlob.Uri.AbsoluteUri)), + "StorageBlobAlreadyExists", + ErrorCategory.PermissionDenied, + null)); + } + + modulesBlob.UploadFromFile(archivePath, FileMode.Open); + + WriteVerbose(string.Format(CultureInfo.CurrentUICulture, Properties.Resources.PublishVMDscExtensionArchiveUploadedMessage, modulesBlob.Uri.AbsoluteUri)); + WriteObject(modulesBlob.Uri.AbsoluteUri); + }); + } + + private CloudBlobContainer GetStorageContainer() + { + var storageAccount = new CloudStorageAccount(_storageCredentials, true); + var blobClient = storageAccount.CreateCloudBlobClient(); + CloudBlobContainer containerReference = blobClient.GetContainerReference(ContainerName); + containerReference.CreateIfNotExists(); + return containerReference; + } + + private static void DeleteFile(string path) + { + try + { + File.Delete(path); + } + catch (UnauthorizedAccessException) + { + // the exception may have occurred due to a read-only file + DeleteReadOnlyFile(path); + } + } + + /// + /// Turns off the ReadOnly attribute from the given file and then attempt to delete it + /// + private static void DeleteReadOnlyFile(string path) + { + var attributes = File.GetAttributes(path); + + if ((attributes & FileAttributes.ReadOnly) != 0) + { + File.SetAttributes(path, attributes & ~FileAttributes.ReadOnly); + } + + File.Delete(path); + } + + private static void DeleteDirectory(string path) + { + try + { + Directory.Delete(path, true); + } + catch (UnauthorizedAccessException) + { + // the exception may have occurred due to a read-only file or directory + DeleteReadOnlyDirectory(path); + } + } + + /// + /// Recusively turns off the ReadOnly attribute from the given directory and then attemps to delete it + /// + private static void DeleteReadOnlyDirectory(string path) + { + var directory = new DirectoryInfo(path); + + foreach (var child in directory.GetDirectories()) + { + DeleteReadOnlyDirectory(child.FullName); + } + + foreach (var child in directory.GetFiles()) + { + DeleteReadOnlyFile(child.FullName); + } + + if ((directory.Attributes & FileAttributes.ReadOnly) != 0) + { + directory.Attributes &= ~FileAttributes.ReadOnly; + } + + directory.Delete(); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/RemoveAzureVMDscExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/RemoveAzureVMDscExtensionCommand.cs new file mode 100644 index 000000000000..3a5b651bc1ef --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/RemoveAzureVMDscExtensionCommand.cs @@ -0,0 +1,77 @@ +using System; +using System.Globalization; +using AutoMapper; +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute; +using System.Management.Automation; +using Microsoft.Azure.Management.Compute.Models; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + /// + /// This cmdlet removes DSC extension handler from a VM in a resource group + /// + [Cmdlet( + VerbsCommon.Remove, + ProfileNouns.VirtualMachineDscExtension, + SupportsShouldProcess = true)] + [OutputType(typeof(PSComputeLongRunningOperation))] + public class RemoveAzureVMDscExtensionCommand : VirtualMachineDscExtensionBaseCmdlet + { + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the resource group.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the virtual machine.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Parameter( + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The extension handler name. This is defaulted to 'Microsoft.Powershell.DSC'")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (String.IsNullOrEmpty(Name)) + { + Name = ExtensionNamespace + "." + ExtensionName; + } + + if (ShouldProcess(string.Format(CultureInfo.CurrentUICulture, Properties.Resources.DscExtensionRemovalConfirmation, Name), Properties.Resources.DscExtensionRemovalCaption)) + { + //Add retry logic due to CRP service restart known issue CRP bug: 3564713 + var count = 1; + DeleteOperationResponse op = null; + while (count <= 2) + { + op = VirtualMachineExtensionClient.Delete(ResourceGroupName, VMName, Name); + + if (ComputeOperationStatus.Failed.Equals(op.Status) && op.Error != null && "InternalExecutionError".Equals(op.Error.Code)) + { + count++; + } + else + { + break; + } + } + var result = Mapper.Map(op); + WriteObject(result); + } + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs new file mode 100644 index 000000000000..1f1ae2211aa5 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs @@ -0,0 +1,434 @@ +using System; +using System.Collections; +using System.Globalization; +using System.IO; +using System.Management.Automation; +using System.Text.RegularExpressions; +using AutoMapper; +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.WindowsAzure.Storage; +using Microsoft.WindowsAzure.Storage.Auth; +using Microsoft.WindowsAzure.Storage.Blob; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + [Cmdlet( + VerbsCommon.Set, + ProfileNouns.VirtualMachineDscExtension, + SupportsShouldProcess = true, + DefaultParameterSetName = AzureBlobDscExtensionParamSet)] + [OutputType(typeof(PSComputeLongRunningOperation))] + public class SetAzureVMDscExtensionCommand : VirtualMachineDscExtensionBaseCmdlet + { + protected const string AzureBlobDscExtensionParamSet = "AzureBlobDscExtension"; + + [Parameter( + Mandatory = true, + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the resource group that contains the virtual machine.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + Position = 3, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Name of the virtual machine where dsc extension handler would be installed.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + HelpMessage = "Name of the DSC Extension handler. It will default to 'DSC' when it is not provided.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + /// + /// The name of the configuration archive that was previously uploaded by + /// Publish-AzureVMDSCConfiguration. This parameter must specify only the name + /// of the file, without any path. + /// A null value or empty string indicate that the VM extension should install DSC, + /// but not start any configuration + /// + [Alias("ConfigurationArchiveBlob")] + [Parameter( + Mandatory = true, + Position = 5, + ValueFromPipelineByPropertyName = true, + ParameterSetName = AzureBlobDscExtensionParamSet, + HelpMessage = "The name of the configuration file that was previously uploaded by Publish-AzureVMDSCConfiguration")] + [AllowEmptyString] + [AllowNull] + public string ArchiveBlobName { get; set; } + + /// + /// The Azure Storage Account name used to upload the configuration script to the container specified by ArchiveContainerName. + /// + [Alias("StorageAccountName")] + [Parameter( + Mandatory = true, + Position = 4, + ValueFromPipelineByPropertyName = true, + ParameterSetName = AzureBlobDscExtensionParamSet, + HelpMessage = "The Azure Storage Account name used to download the ArchiveBlobName")] + [ValidateNotNullOrEmpty] + public String ArchiveStorageAccountName { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + ParameterSetName = AzureBlobDscExtensionParamSet, + HelpMessage = "The name of the resource group that contains the storage account containing the configuration archive. " + + "This param is optional if storage account and virtual machine both exists in the same resource group name, " + + "specified by ResourceGroupName param.")] + [ValidateNotNullOrEmpty] + public string ArchiveResourceGroupName { get; set; } + + /// + /// The DNS endpoint suffix for all storage services, e.g. "core.windows.net". + /// + [Alias("StorageEndpointSuffix")] + [Parameter( + ValueFromPipelineByPropertyName = true, + ParameterSetName = AzureBlobDscExtensionParamSet, + HelpMessage = "The Storage Endpoint Suffix.")] + [ValidateNotNullOrEmpty] + public string ArchiveStorageEndpointSuffix { get; set; } + + /// + /// Name of the Azure Storage Container where the configuration script is located. + /// + [Alias("ContainerName")] + [Parameter( + ValueFromPipelineByPropertyName = true, + ParameterSetName = AzureBlobDscExtensionParamSet, + HelpMessage = "Name of the Azure Storage Container where the configuration archive is located")] + [ValidateNotNullOrEmpty] + public string ArchiveContainerName { get; set; } + + /// + /// Name of the configuration that will be invoked by the DSC Extension. The value of this parameter should be the name of one of the configurations + /// contained within the file specified by ArchiveBlobName. + /// + /// If omitted, this parameter will default to the name of the file given by the ArchiveBlobName parameter, excluding any extension, for example if + /// ArchiveBlobName is "SalesWebSite.ps1", the default value for ConfigurationName will be "SalesWebSite". + /// + [Parameter( + ValueFromPipelineByPropertyName = true, + HelpMessage = "Name of the configuration that will be invoked by the DSC Extension")] + [ValidateNotNullOrEmpty] + public string ConfigurationName { get; set; } + + /// + /// A hashtable specifying the arguments to the ConfigurationFunction. The keys + /// correspond to the parameter names and the values to the parameter values. + /// + [Parameter( + ValueFromPipelineByPropertyName = true, + HelpMessage = "A hashtable specifying the arguments to the ConfigurationFunction")] + [ValidateNotNullOrEmpty] + public Hashtable ConfigurationArgument { get; set; } + + /// + /// Path to a .psd1 file that specifies the data for the Configuration. This + /// file must contain a hashtable with the items described in + /// http://technet.microsoft.com/en-us/library/dn249925.aspx. + /// + [Parameter( + ValueFromPipelineByPropertyName = true, + HelpMessage = "Path to a .psd1 file that specifies the data for the Configuration")] + [ValidateNotNullOrEmpty] + public string ConfigurationData { get; set; } + + /// + /// The specific version of the DSC extension that Set-AzureVMDSCExtension will + /// apply the settings to. + /// + [Alias("HandlerVersion")] + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The version of the DSC extension that Set-AzureVMDSCExtension will apply the settings to. " + + "Allowed format N.N")] + [ValidateNotNullOrEmpty] + public string Version { get; set; } + + /// + /// By default Set-AzureVMDscExtension will not overwrite any existing blobs. Use -Force to overwrite them. + /// + [Parameter( + HelpMessage = "Use this parameter to overwrite any existing blobs")] + public SwitchParameter Force { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Location of the resource.")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + /// + /// We install the extension handler version specified by the version param. By default extension handler is not autoupdated. + /// Use -AutoUpdate to enable auto update of extension handler to the latest version as and when it is available. + /// + [Parameter( + HelpMessage = "Extension handler gets auto updated to the latest version if this switch is present.")] + public SwitchParameter AutoUpdate { get; set; } + //Private Variables + + private const string VersionRegexExpr = @"^(([0-9])\.)\d+$"; + + /// + /// Credentials used to access Azure Storage + /// + private StorageCredentials _storageCredentials; + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + ValidateParameters(); + + CreateConfiguration(); + } + + //Private Methods + private void ValidateParameters() + { + if (string.IsNullOrEmpty(ArchiveBlobName)) + { + if (ConfigurationName != null || ConfigurationArgument != null + || ConfigurationData != null) + { + ThrowInvalidArgumentError(Properties.Resources.AzureVMDscNullArchiveNoConfiguragionParameters); + } + if (ArchiveContainerName != null || ArchiveStorageEndpointSuffix != null) + { + ThrowInvalidArgumentError(Properties.Resources.AzureVMDscNullArchiveNoStorageParameters); + } + } + else + { + if (string.Compare( + Path.GetFileName(ArchiveBlobName), + ArchiveBlobName, + StringComparison.InvariantCultureIgnoreCase) != 0) + { + ThrowInvalidArgumentError(Properties.Resources.AzureVMDscConfigurationDataFileShouldNotIncludePath); + } + + if (ConfigurationData != null) + { + ConfigurationData = GetUnresolvedProviderPathFromPSPath(ConfigurationData); + + if (!File.Exists(ConfigurationData)) + { + ThrowInvalidArgumentError( + Properties.Resources.AzureVMDscCannotFindConfigurationDataFile, + ConfigurationData); + } + if (string.Compare( + Path.GetExtension(ConfigurationData), + ".psd1", + StringComparison.InvariantCultureIgnoreCase) != 0) + { + ThrowInvalidArgumentError(Properties.Resources.AzureVMDscInvalidConfigurationDataFile); + } + } + + if (ArchiveResourceGroupName == null) + { + ArchiveResourceGroupName = ResourceGroupName; + } + + _storageCredentials = GetStorageCredentials(ArchiveResourceGroupName, ArchiveStorageAccountName); + + if (ConfigurationName == null) + { + ConfigurationName = Path.GetFileNameWithoutExtension(ArchiveBlobName); + } + + if (ArchiveContainerName == null) + { + ArchiveContainerName = DefaultContainerName; + } + + if (!(Regex.Match(Version, VersionRegexExpr).Success)) + { + ThrowInvalidArgumentError(Properties.Resources.AzureVMDscExtensionInvalidVersion); + } + } + } + + private void CreateConfiguration() + { + var publicSettings = new DscExtensionPublicSettings(); + var privateSettings = new DscExtensionPrivateSettings(); + + if (!string.IsNullOrEmpty(ArchiveBlobName)) + { + ConfigurationUris configurationUris = UploadConfigurationDataToBlob(); + + publicSettings.SasToken = configurationUris.SasToken; + publicSettings.ModulesUrl = configurationUris.ModulesUrl; + publicSettings.ConfigurationFunction = string.Format( + CultureInfo.InvariantCulture, + "{0}\\{1}", + Path.GetFileNameWithoutExtension(ArchiveBlobName), + ConfigurationName); + Tuple settings = + DscSettingsSerializer.SeparatePrivateItems(ConfigurationArgument); + publicSettings.Properties = settings.Item1; + privateSettings.Items = settings.Item2; + + privateSettings.DataBlobUri = configurationUris.DataBlobUri; + } + + var parameters = new VirtualMachineExtension + { + Location = Location, + Name = Name ?? ExtensionNamespace + "." + ExtensionName, + Type = VirtualMachineExtensionType, + Publisher = ExtensionNamespace, + ExtensionType = ExtensionName, + TypeHandlerVersion = Version, + // Define the public and private property bags that will be passed to the extension. + Settings = DscSettingsSerializer.SerializePublicSettings(publicSettings), + //PrivateConfuguration contains sensitive data in a plain text + ProtectedSettings = DscSettingsSerializer.SerializePrivateSettings(privateSettings), + AutoUpgradeMinorVersion = AutoUpdate.IsPresent ? true : false + }; + + //Add retry logic due to CRP service restart known issue CRP bug: 3564713 + var count = 1; + ComputeLongRunningOperationResponse op = null; + while (count <= 2) + { + op = VirtualMachineExtensionClient.CreateOrUpdate( + ResourceGroupName, + VMName, + parameters); + + if (ComputeOperationStatus.Failed.Equals(op.Status) && op.Error != null && "InternalExecutionError".Equals(op.Error.Code)) + { + count++; + } + else + { + break; + } + } + var result = Mapper.Map(op); + WriteObject(result); + } + + /// + /// Uploading configuration data to blob storage. + /// + /// ConfigurationUris collection that represent artifacts of uploading + private ConfigurationUris UploadConfigurationDataToBlob() + { + // + // Get a reference to the container in blob storage + // + var storageAccount = string.IsNullOrEmpty(ArchiveStorageEndpointSuffix) + ? new CloudStorageAccount(_storageCredentials, true) + : new CloudStorageAccount( + _storageCredentials, + ArchiveStorageEndpointSuffix, + true); + + var blobClient = storageAccount.CreateCloudBlobClient(); + + var containerReference = blobClient.GetContainerReference(ArchiveContainerName); + + // + // Get a reference to the configuration blob and create a SAS token to access it + // + var blobAccessPolicy = new SharedAccessBlobPolicy + { + SharedAccessExpiryTime = + DateTime.UtcNow.AddHours(1), + Permissions = SharedAccessBlobPermissions.Read | SharedAccessBlobPermissions.Delete + }; + + var configurationBlobName = ArchiveBlobName; + var configurationBlobReference = containerReference.GetBlockBlobReference(configurationBlobName); + var configurationBlobSasToken = configurationBlobReference.GetSharedAccessSignature(blobAccessPolicy); + + // + // Upload the configuration data to blob storage and get a SAS token + // + string configurationDataBlobUri = null; + + if (ConfigurationData != null) + { + ConfirmAction( + true, + string.Empty, + string.Format( + CultureInfo.CurrentUICulture, + Properties.Resources.AzureVMDscUploadToBlobStorageAction, + ConfigurationData), + configurationBlobReference.Uri.AbsoluteUri, + () => + { + var guid = Guid.NewGuid(); + // there may be multiple VMs using the same configuration + + var configurationDataBlobName = string.Format( + CultureInfo.InvariantCulture, + "{0}-{1}.psd1", + ConfigurationName, + guid); + + var configurationDataBlobReference = + containerReference.GetBlockBlobReference(configurationDataBlobName); + + if (!Force && configurationDataBlobReference.Exists()) + { + ThrowTerminatingError( + new ErrorRecord( + new UnauthorizedAccessException( + string.Format( + CultureInfo.CurrentUICulture, + Properties.Resources.AzureVMDscStorageBlobAlreadyExists, + configurationDataBlobName)), + "StorageBlobAlreadyExists", + ErrorCategory.PermissionDenied, + null)); + } + + configurationDataBlobReference.UploadFromFile(ConfigurationData, FileMode.Open); + + var configurationDataBlobSasToken = + configurationDataBlobReference.GetSharedAccessSignature(blobAccessPolicy); + + configurationDataBlobUri = + configurationDataBlobReference.StorageUri.PrimaryUri.AbsoluteUri + + configurationDataBlobSasToken; + }); + } + return new ConfigurationUris + { + ModulesUrl = configurationBlobReference.StorageUri.PrimaryUri.AbsoluteUri, + SasToken = configurationBlobSasToken, + DataBlobUri = configurationDataBlobUri + }; + } + + /// + /// Class represent info about uploaded Configuration. + /// + private class ConfigurationUris + { + public string SasToken { get; set; } + public string DataBlobUri { get; set; } + public string ModulesUrl { get; set; } + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/VirtualMachineDscExtensionBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/VirtualMachineDscExtensionBaseCmdlet.cs new file mode 100644 index 000000000000..0b2af7d7cc25 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/VirtualMachineDscExtensionBaseCmdlet.cs @@ -0,0 +1,86 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Management.Automation; +using Microsoft.Azure.Commands.Management.Storage; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; +using Microsoft.WindowsAzure.Commands.Common.Storage; +using Microsoft.WindowsAzure.Storage.Auth; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + public class VirtualMachineDscExtensionBaseCmdlet : VirtualMachineExtensionBaseCmdlet + { + private StorageManagementClientWrapper _storageClientWrapper; + + protected string ExtensionNamespace = "Microsoft.Powershell"; + protected string ExtensionName = "DSC"; + protected string DefaultContainerName = "windows-powershell-dsc"; + + private IStorageManagementClient StorageClient + { + get + { + if (_storageClientWrapper == null) + { + _storageClientWrapper = new StorageManagementClientWrapper(Profile.Context) + { + VerboseLogger = WriteVerboseWithTimestamp, + ErrorLogger = WriteErrorWithTimestamp + }; + } + + return _storageClientWrapper.StorageManagementClient; + } + + set { _storageClientWrapper = new StorageManagementClientWrapper(value); } + } + + protected StorageCredentials GetStorageCredentials(String resourceGroupName, String storageAccountName) + { + StorageCredentials credentials = null; + + if (StorageClient != null && StorageClient.StorageAccounts != null) + { + var keys = StorageClient.StorageAccounts.ListKeys(resourceGroupName, storageAccountName); + + if (keys != null && keys.StorageAccountKeys != null) + { + var storageAccountKey = string.IsNullOrEmpty(keys.StorageAccountKeys.Key1) ? keys.StorageAccountKeys.Key2 : keys.StorageAccountKeys.Key1; + + credentials = new StorageCredentials(storageAccountName, storageAccountKey); + } + } + + if (credentials == null) + { + ThrowTerminatingError( + new ErrorRecord( + new UnauthorizedAccessException(Properties.Resources.AzureVMDscDefaultStorageCredentialsNotFound), + "CredentialsNotFound", + ErrorCategory.PermissionDenied, + null)); + } + + if (string.IsNullOrEmpty(credentials.AccountName)) + { + ThrowInvalidArgumentError(Properties.Resources.AzureVMDscStorageContextMustIncludeAccountName); + } + + return credentials; + } + + //TODO: Move this to a common Exception class for DSC + protected void ThrowInvalidArgumentError(string format, params object[] args) + { + ThrowTerminatingError( + new ErrorRecord( + new ArgumentException(string.Format(CultureInfo.CurrentUICulture, format, args)), + "InvalidArgument", + ErrorCategory.InvalidArgument, + null)); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/VirtualMachineDscExtensionContext.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/VirtualMachineDscExtensionContext.cs new file mode 100644 index 000000000000..01172fe6642d --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/VirtualMachineDscExtensionContext.cs @@ -0,0 +1,28 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using Microsoft.Azure.Commands.Compute.Models; + +namespace Microsoft.Azure.Commands.Compute.Extension.DSC +{ + public class VirtualMachineDscExtensionContext : PSVirtualMachineExtension + { + + public string ModulesUrl { get; set; } + public string ConfigurationFunction { get; set; } + public Hashtable Properties { get; set; } + + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml index 24042b99ea64..001a1b62e0af 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml +++ b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml @@ -2859,6 +2859,444 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna + + + + Get-AzureVMDscExtension + + + Gets the settings of the DSC extension on a particular VM + + + + + Get + AzureVMDscExtension + + + + Gets the settings of the DSC extension on a particular VM. + + + + + Get-AzureVMDscExtension + + ResourceGroupName + + The resource group name. + + string + + + VMName + + The virtual machine name + + string + + + Name + + Name of the Extension. This is defaulted to 'Microsoft.Powershell.DSC' + + String + + + Status + + Output shows status when the switch is present + + + + + + + + ResourceGroupName + + The resource group name. + + + string + + string + + + + + + VMName + + The virtual machine name + + + string + + string + + + + + + Name + + Name of the Extension. This is defaulted to 'Microsoft.Powershell.DSC' + + String + + String + + + + + + Status + + Output shows status when the switch is present + + SwitchParameter + + SwitchParameter + + + + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Publish-AzureVMDscConfiguration + + Uploads a Desired State Configuration script to Azure blob storage, which later can be applied to Azure Virtual Machines using the Set-AzureVMDscExtension cmdlet. + + + + + Publish + AzureVMDscConfiguration + + + + + Uploads a Desired State Configuration script to Azure blob storage, which later can be applied to Azure Virtual Machines using the Set-AzureVMDscExtension cmdlet. + + + + Publish-AzureVMDscConfiguration + + ResourceGroupName + + The name of the resource group that contains the storage account. + + string + + + ConfigurationPath + + Path to a file containing one or more configurations. The file can be a PowerShell script (.ps1 file), module (.psm1 file), or an archive (.zip file) containing a set of PowerShell modules, each module in a separate directory. + + String + + + ContainerName + + Name of the Azure Storage Container the configuration is uploaded to. + + String + + + Force + + By default Publish-AzureVMDscConfiguration will not overwrite any existing blobs or files. Use -Force to overwrite them. + + SwitchParameter + + + StorageAccountName + + The Azure Storage Account name used to upload the configuration script to the container specified by ContainerName. + + String + + + WhatIf + + Describes what would happen if you executed the command without actually executing the command. + + SwitchParameter + + + Confirm + + Prompts you for confirmation before executing the command. + + SwitchParameter + + + + Publish-AzureVMDscConfiguration + + ConfigurationPath + + Path to a file containing one or more configurations. The file can be a PowerShell script (.ps1 file), module (.psm1 file), or an archive (.zip file) containing a set of PowerShell modules, each module in a separate directory. + + String + + + Force + + By default Publish-AzureVMDscConfiguration will not overwrite any existing blobs or files. Use -Force to overwrite them. + + SwitchParameter + + + OutputArchivePath + + Path to a local ZIP file to write the configuration archive to. +When this parameter is used, the configuration script is not uploaded to Azure blob storage. + + String + + + WhatIf + + Describes what would happen if you executed the command without actually executing the command. + + SwitchParameter + + + Confirm + + Prompts you for confirmation before executing the command. + + SwitchParameter + + + + + + ResourceGroupName + + The name of the resource group that contains the storage account + + string + + + ConfigurationPath + + Path to a file containing one or more configurations. The file can be a PowerShell script (.ps1 file), module (.psm1 file), or an archive (.zip file) containing a set of PowerShell modules, each module in a separate directory. + + String + + String + + + + + + ContainerName + + Name of the Azure Storage Container the configuration is uploaded to. + + String + + String + + + windows-powershell-dsc + + + Force + + By default Publish-AzureVMDscConfiguration will not overwrite any existing blobs or files. Use -Force to overwrite them. + + SwitchParameter + + SwitchParameter + + + + + + StorageAccountName + + The Azure Storage Account name used to upload the configuration script to the container specified by ContainerName. + + String + + String + + + + + + WhatIf + + Describes what would happen if you executed the command without actually executing the command. + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + Prompts you for confirmation before executing the command. + + SwitchParameter + + SwitchParameter + + + + + + OutputArchivePath + + Path to a local ZIP file to write the configuration archive to. +When this parameter is used, the configuration script is not uploaded to Azure blob storage. + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + + PS C:\> Publish-AzureVMDscConfiguration .\MyConfiguration.ps1 -ResourceGroupName grpname -StorageAccountName strgAcctName + + Description + + + + -----------This command creates a ZIP package for the given script and any dependent resource modules and uploads it to Azure Storage. +By default the command does no produce any output; use the -Verbose option to display an indication of the operations performed by the command + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + + PS C:\> Publish-AzureVMDscConfiguration .\MyConfiguration.ps1 -OutputArchivePath .\MyConfiguration.ps1.zip + + Description + + + + -----------This command creates a ZIP package for the given script and any dependent resource modules and stores it in the local file .\MyConfiguration.ps1.zip. + + + + + + + Unknown + + + + @@ -7723,6 +8161,146 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av + + + + Remove-AzureVMDscExtension + + Removes DSC extension handler from a VM in a resource group + + + + + Remove + AzureVMDscExtension + + + + Removes DSC extension handler from a VM in a resource group + + + + Remove-AzureVMDscExtension + + ResourceGroupName + + The name of the resource group + + String + + + VMName + + The name of the virtual machine + + String + + + Name + + Name of the Extension. This is defaulted to 'Microsoft.Powershell.DSC' + + String + + + + + + ResourceGroupName + + The name of the resource group + + String + + String + + + + + + VMName + + The name of the virtual machine + + String + + String + + + + + + Name + + Name of the Extension. This is defaulted to 'Microsoft.Powershell.DSC' + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Remove an Extension -------------------------- + + PS C:\> + + PS C:\> Remove-AzureVMDscExtension –ResouceGroupName "RG" -VMName "vm1" -Name "extnname" + + + + + + + + + + + + + + + + + + @@ -10095,7 +10673,490 @@ Set-AzureVMCustomScriptExtension -ResourceGroupName $rgname -Location $loc -VMNa - + + + + Set-AzureVMDSCExtension + + + Configure the Windows PowerShell Desired State Configuration extension on a VM. + + + + + Set + AzureVMDscExtension + + + + Configure the Windows PowerShell Desired State Configuration extension on a VM in a resource group + + + + + Set-AzureVMDSCExtension + + ArchiveBlobName + + The name of the configuration file that was previously uploaded by Publish-AzureVMDSCConfiguration + + string + + + ResourceGroupName + + The name of the resource group that contains the virtual machine + + string + + + VMName + + Name of the virtual machine where dsc extension handler would be installed + + string + + + ArchiveStorageAccountName + + The Azure Storage Account name used to download the ArchiveBlobName + + string + + + Version + + The version of the DSC extension that Set-AzureVMDSCExtension will apply the settings to. Allowed format N.N + + string + + + ConfigurationArgument + + A hashtable specifying the arguments to the ConfigurationFunction + + hashtable + + + ConfigurationData + + Path to a .psd1 file that specifies the data for the Configuration + + string + + + ConfigurationName + + Name of the configuration that will be invoked by the DSC Extension + + string + + + ArchiveResourceGroupName + + The name of the resource group that contains the storage account containing the configuration archive.This param is optional if storage account and virtual machine both exists in the same resource group name, specified by ResourceGroupName param + + string + + + ArchiveContainerName + + Name of the Azure Storage Container where the configuration archive is located + + string + + + Force + + By default Set-AzureVMDscExtension will not overwrite any existing blobs. Use -Force to overwrite them + + + + Location + + Location of the resource + + string + + + Name + + Name of the DSC Extension handler. It will default to 'DSC' when it is not provided + + string + + + ArchiveStorageEndpointSuffix + + The Storage Endpoint Suffix + + string + + + AutoUpdate + + We install the extension handler version specified by the -version param. By default extension handler is not autoupdated. Use -AutoUpdate to enable auto update of extension handler to the latest version as and when it is available. + + + + Confirm + + Prompts you for confirmation before executing the command. + + + + WhatIf + + Describes what would happen if you executed the command without actually executing the command. + + + + + + + + ArchiveBlobName + + The name of the configuration file that was previously uploaded by Publish-AzureVMDSCConfiguration + + string + + string + + + + + + ConfigurationArgument + + A hashtable specifying the arguments to the ConfigurationFunction + + hashtable + + hashtable + + + + + + ConfigurationData + + Path to a .psd1 file that specifies the data for the Configuration + + string + + string + + + + + + ConfigurationName + + Name of the configuration that will be invoked by the DSC Extension + + string + + string + + + + + + ArchiveContainerName + + Name of the Azure Storage Container where the configuration archive is located + + string + + string + + + + + + Force + + By default Set-AzureVMDscExtension will not overwrite any existing blobs. Use -Force to overwrite them + + SwitchParameter + + SwitchParameter + + + + + + Location + + Location of the resource + + string + + string + + + + + + Name + + Name of the DSC Extension handler. It will default to 'DSC' when it is not provided + + string + + string + + + + + + ResourceGroupName + + The name of the resource group that contains the virtual machine + + string + + string + + + + + + ArchiveResourceGroupName + + The name of the resource group that contains the storage account containing the configuration archive. This param is optional if storage account and virtual machine both exists in the same resource group name,specified by ResourceGroupName param. + + string + + string + + + + + + ArchiveStorageAccountName + + The Azure Storage Account name used to download the ArchiveBlobName + + string + + string + + + + + + ArchiveStorageEndpointSuffix + + The Storage Endpoint Suffix + + string + + string + + + + + + Version + + The version of the DSC extension that Set-AzureVMDSCExtension will apply the settings to. Allowed format N.N + + string + + string + + + + + + VMName + + Name of the virtual machine where dsc extension handler would be installed + + string + + string + + + + + + AutoUpdate + + We install the extension handler version specified by the -version param. By default extension handler is not autoupdated. Use -AutoUpdate to enable auto update of extension handler to the latest version as and when it is available. + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + Prompts you for confirmation before executing the command. + + SwitchParameter + + SwitchParameter + + + + + + WhatIf + + Describes what would happen if you executed the command without actually executing the command. + + SwitchParameter + + SwitchParameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + Set-AzureVMDscExtension -ResourceGroupName name -VMName vm -ArchiveBlobName Sample.ps1.zip -ArchiveStorageAccountName stg -ConfigurationName MyConfiguration -Version 1.10 -Location 'West US' + + + Description + ----------- + + Set the extension on the VM to download MyConfiguration.ps1 from the default container (windows-powershell-dsc) + and invoke configuration MyConfiguration with arguments to the configuration function. Connect to blob storage using the value of + $ENV:azure_storage_connection_string + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + + Set-AzureVMDscExtension -ResourceGroupName name -VMName vm -ArchiveBlobName Sample.ps1.zip -ArchiveStorageAccountName stg -ConfigurationName name -ConfigurationArgument @{arg="val"} -ArchiveContainerName WindowsPowerShellDSC -ConfigurationData SampleData.psd1 -Version 1.10 -Location 'West US' + + + Description + ----------- + With arguments to the configuration function + + + + + + + + + + + + + + + -------------------------- EXAMPLE 3 -------------------------- + + + C:\PS> + + + Set-AzureVMDscExtension -ResourceGroupName name -VMName vm -ArchiveBlobName Sample.ps1.zip -ArchiveStorageAccountName stg -ConfigurationName name -ConfigurationArgument @{arg="val"} -ArchiveContainerName WindowsPowerShellDSC -ConfigurationData SampleData.psd1 -Version 1.10 -Location 'West US' -AutoUpdate + + + Description + ----------- + Enable -AutoUpdate + + + + + + + + + + + + + + + + + + + + + Set-AzureVMOperatingSystem diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSComputeLongRunningOperation.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSComputeLongRunningOperation.cs index 3952b553f7e7..650476991962 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSComputeLongRunningOperation.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSComputeLongRunningOperation.cs @@ -39,7 +39,11 @@ public class PSComputeLongRunningOperation [JsonIgnore] public string ErrorText { - get { return JsonConvert.SerializeObject(Error, Formatting.Indented); } + get + { + var errorStr = JsonConvert.SerializeObject(Error, Formatting.Indented); + return String.IsNullOrEmpty(errorStr) || "null".Equals(errorStr) ? "" : errorStr; + } } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index d21cd34d9f94..8dfd2a46fcc7 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -78,6 +78,142 @@ public static string AvailabilitySetRemovalConfirmation { } } + /// + /// Looks up a localized string similar to Apply configuration '{0}'. + /// + public static string AzureVMDscApplyConfigurationAction { + get { + return ResourceManager.GetString("AzureVMDscApplyConfigurationAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File '{0}' already exists. Use the -Force parameter to overwrite it.. + /// + public static string AzureVMDscArchiveAlreadyExists { + get { + return ResourceManager.GetString("AzureVMDscArchiveAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot find configuration data file: {0}. + /// + public static string AzureVMDscCannotFindConfigurationDataFile { + get { + return ResourceManager.GetString("AzureVMDscCannotFindConfigurationDataFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The -ConfigurationArchive parameter must no include a path. + /// + public static string AzureVMDscConfigurationDataFileShouldNotIncludePath { + get { + return ResourceManager.GetString("AzureVMDscConfigurationDataFileShouldNotIncludePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Archive. + /// + public static string AzureVMDscCreateArchiveAction { + get { + return ResourceManager.GetString("AzureVMDscCreateArchiveAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzureSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable.. + /// + public static string AzureVMDscDefaultStorageCredentialsNotFound { + get { + return ResourceManager.GetString("AzureVMDscDefaultStorageCredentialsNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please enter a valid DSC Extension version. Allowed format: N.N where N = [1..9]. + /// + public static string AzureVMDscExtensionInvalidVersion { + get { + return ResourceManager.GetString("AzureVMDscExtensionInvalidVersion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The configuration data must be a .psd1 file. + /// + public static string AzureVMDscInvalidConfigurationDataFile { + get { + return ResourceManager.GetString("AzureVMDscInvalidConfigurationDataFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If the ConfigurationArchive argument is null, then the ConfigurationName, ConfigurationArgument, and ConfigurationDataPath parameters must not be specified . + /// + public static string AzureVMDscNullArchiveNoConfiguragionParameters { + get { + return ResourceManager.GetString("AzureVMDscNullArchiveNoConfiguragionParameters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If the ConfigurationArchive argument is null, then the StorageContext, ArchiveContainerName, and ArchiveStorageEndpointSuffix parameters must not be specified. + /// + public static string AzureVMDscNullArchiveNoStorageParameters { + get { + return ResourceManager.GetString("AzureVMDscNullArchiveNoStorageParameters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parsing configuration script: {0}. + /// + public static string AzureVMDscParsingConfiguration { + get { + return ResourceManager.GetString("AzureVMDscParsingConfiguration", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Storage Blob '{0}' already exists. Use the -Force parameter to overwrite it.. + /// + public static string AzureVMDscStorageBlobAlreadyExists { + get { + return ResourceManager.GetString("AzureVMDscStorageBlobAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The storage context must include an storage account.. + /// + public static string AzureVMDscStorageContextMustIncludeAccountName { + get { + return ResourceManager.GetString("AzureVMDscStorageContextMustIncludeAccountName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upload '{0}'. + /// + public static string AzureVMDscUploadToBlobStorageAction { + get { + return ResourceManager.GetString("AzureVMDscUploadToBlobStorageAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot deserialize settings string from DSC extension. Updating your Azure PowerShell SDK to the latest version may solve this problem. Settings string: + ///{0}. + /// + public static string AzureVMDscWrongSettingsFormat { + get { + return ResourceManager.GetString("AzureVMDscWrongSettingsFormat", resourceCulture); + } + } + /// /// Looks up a localized string similar to Cannot specify both Windows and Linux configurations.. /// @@ -123,6 +259,166 @@ public static string DeprecationOfNewAzureVMNameParameterWarning { } } + /// + /// Looks up a localized string similar to Remove Extension. + /// + public static string DscExtensionRemovalCaption { + get { + return ResourceManager.GetString("DscExtensionRemovalCaption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0}. + /// + public static string DscExtensionRemovalConfirmation { + get { + return ResourceManager.GetString("DscExtensionRemovalConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Configuration published to {0}. + /// + public static string PublishVMDscExtensionArchiveUploadedMessage { + get { + return ResourceManager.GetString("PublishVMDscExtensionArchiveUploadedMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot find configuration file: {0}.. + /// + public static string PublishVMDscExtensionConfigFileNotFound { + get { + return ResourceManager.GetString("PublishVMDscExtensionConfigFileNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy '{0}' to '{1}'.. + /// + public static string PublishVMDscExtensionCopyFileVerbose { + get { + return ResourceManager.GetString("PublishVMDscExtensionCopyFileVerbose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy the module '{0}' to '{1}'.. + /// + public static string PublishVMDscExtensionCopyModuleVerbose { + get { + return ResourceManager.GetString("PublishVMDscExtensionCopyModuleVerbose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid configuration file: {0}. + ///The file needs to be a PowerShell script (.ps1 or .psm1).. + /// + public static string PublishVMDscExtensionCreateArchiveConfigFileInvalidExtension { + get { + return ResourceManager.GetString("PublishVMDscExtensionCreateArchiveConfigFileInvalidExtension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create a zip file '{0}' from directory '{1}'.. + /// + public static string PublishVMDscExtensionCreateZipVerbose { + get { + return ResourceManager.GetString("PublishVMDscExtensionCreateZipVerbose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deleted '{0}'. + /// + public static string PublishVMDscExtensionDeletedFileMessage { + get { + return ResourceManager.GetString("PublishVMDscExtensionDeletedFileMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot delete '{0}': {1}. + /// + public static string PublishVMDscExtensionDeleteErrorMessage { + get { + return ResourceManager.GetString("PublishVMDscExtensionDeleteErrorMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot get module for DscResource '{0}'. Possible solutions: + ///1) Specify -ModuleName for Import-DscResource in your configuration. + ///2) Unblock module that contains resource. + ///3) Move Import-DscResource inside Node block. + ///. + /// + public static string PublishVMDscExtensionGetDscResourceFailed { + get { + return ResourceManager.GetString("PublishVMDscExtensionGetDscResourceFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to List of required modules: [{0}].. + /// + public static string PublishVMDscExtensionRequiredModulesVerbose { + get { + return ResourceManager.GetString("PublishVMDscExtensionRequiredModulesVerbose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your current PowerShell version {1} is less then required by this cmdlet {0}. Consider download and install latest PowerShell version.. + /// + public static string PublishVMDscExtensionRequiredPsVersion { + get { + return ResourceManager.GetString("PublishVMDscExtensionRequiredPsVersion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Configuration script '{0}' contained parse errors: + ///{1}. + /// + public static string PublishVMDscExtensionStorageParserErrors { + get { + return ResourceManager.GetString("PublishVMDscExtensionStorageParserErrors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Temp folder '{0}' created.. + /// + public static string PublishVMDscExtensionTempFolderVerbose { + get { + return ResourceManager.GetString("PublishVMDscExtensionTempFolderVerbose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid configuration file: {0}. + ///The file needs to be a PowerShell script (.ps1 or .psm1) or a ZIP archive (.zip).. + /// + public static string PublishVMDscExtensionUploadArchiveConfigFileInvalidExtension { + get { + return ResourceManager.GetString("PublishVMDscExtensionUploadArchiveConfigFileInvalidExtension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Configuration file '{0}' not found.. + /// + public static string PublishVMDscExtensionUploadArchiveConfigFileNotExist { + get { + return ResourceManager.GetString("PublishVMDscExtensionUploadArchiveConfigFileNotExist", resourceCulture); + } + } + /// /// Looks up a localized string similar to Virtual machine extension removal operation. /// diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index 954aa146eed8..1760f3390a7e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -165,4 +165,129 @@ This cmdlet will stop the specified virtual machine. Do you want to continue? + + Cannot find configuration data file: {0} + + + The -ConfigurationArchive parameter must no include a path + + + The configuration data must be a .psd1 file + + + Please enter a valid DSC Extension version. Allowed format: N.N where N = [1..9] + + + Cannot find configuration file: {0}. + 0 = path to the configuration file + + + Invalid configuration file: {0}. +The file needs to be a PowerShell script (.ps1 or .psm1) or a ZIP archive (.zip). + 0 = path to the configuration file + + + Configuration file '{0}' not found. + 0 = path to the configuration file + + + Cannot get module for DscResource '{0}'. Possible solutions: +1) Specify -ModuleName for Import-DscResource in your configuration. +2) Unblock module that contains resource. +3) Move Import-DscResource inside Node block. + + 0 = name of DscResource + + + Configuration script '{0}' contained parse errors: +{1} + 0 = path to the configuration script, 1 = parser errors + + + The storage context must include an storage account. + + + Apply configuration '{0}' + {0} is the name of a PowerShell DSC Configuration function + + + Parsing configuration script: {0} + {0} is the path to a script file + + + Storage Blob '{0}' already exists. Use the -Force parameter to overwrite it. + {0} is the name of an storage blob + + + Upload '{0}' + {0} is the name of an storage blob + + + Invalid configuration file: {0}. +The file needs to be a PowerShell script (.ps1 or .psm1). + 0 = path to the configuration file + + + If the ConfigurationArchive argument is null, then the ConfigurationName, ConfigurationArgument, and ConfigurationDataPath parameters must not be specified + + + If the ConfigurationArchive argument is null, then the StorageContext, ArchiveContainerName, and ArchiveStorageEndpointSuffix parameters must not be specified + + + Create Archive + + + File '{0}' already exists. Use the -Force parameter to overwrite it. + {0} is the path to a file + + + Your current PowerShell version {1} is less then required by this cmdlet {0}. Consider download and install latest PowerShell version. + {0} = minimal required PS version, {1} = current PS version + + + Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzureSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable. + + + List of required modules: [{0}]. + {0} = list of modules + + + Temp folder '{0}' created. + {0} = temp folder path + + + Copy '{0}' to '{1}'. + {0} = source, {1} = destination + + + Copy the module '{0}' to '{1}'. + {0} = source, {1} = destination + + + Create a zip file '{0}' from directory '{1}'. + {0} = target zip, {1} = source + + + Deleted '{0}' + {0} is the path of a file + + + Cannot delete '{0}': {1} + {0} is the path of a file, {1} is an error message + + + Cannot deserialize settings string from DSC extension. Updating your Azure PowerShell SDK to the latest version may solve this problem. Settings string: +{0} + {0} settings json string + + + Configuration published to {0} + {0} is an URI + + + Remove Extension + + + {0} + \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMDataDiskCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMDataDiskCommand.cs index f6fbe2efc3a9..270870e73b3a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMDataDiskCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMDataDiskCommand.cs @@ -68,7 +68,6 @@ public class AddAzureVMDataDiskCommand : AzurePSCmdlet Position = 4, ValueFromPipelineByPropertyName = true, HelpMessage = HelpMessages.VMDataDiskSizeInGB)] - [ValidateNotNullOrEmpty] public int? DiskSizeInGB { get; set; } [Parameter( diff --git a/src/ResourceManager/Compute/Commands.Compute/packages.config b/src/ResourceManager/Compute/Commands.Compute/packages.config index dd9839232c7f..4786fa57bb13 100644 --- a/src/ResourceManager/Compute/Commands.Compute/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute/packages.config @@ -9,7 +9,7 @@ - + diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj index a49d3e4a56d2..6ba04756996a 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj @@ -64,7 +64,7 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll - ..\..\..\packages\Microsoft.Azure.Management.DataFactories.0.15.12-preview\lib\net40\Microsoft.Azure.Management.DataFactories.dll + ..\..\..\packages\Microsoft.Azure.Management.DataFactories.1.0.1\lib\net40\Microsoft.Azure.Management.DataFactories.dll ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -77,9 +77,6 @@ False ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll - - ..\..\..\packages\Microsoft.DataFactories.Runtime.0.11.1-preview\lib\net45\Microsoft.DataFactories.Runtime.dll - ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -208,53 +205,53 @@ PreserveNewest - - Always - - Always + PreserveNewest - Always + PreserveNewest + + + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_CuratedWikiData.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_CuratedWikiData.json deleted file mode 100644 index e57174182c58..000000000000 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_CuratedWikiData.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - name: "DA_CuratedWikiData", - properties: - { - structure: - [ - { name: "slicetimestamp", position: 0, type: "String"}, - { name: "projectname", position: 1, type: "String"}, - { name: "pageviews", position: 2, type: "Decimal"} - ], - location: - { - type: "AzureBlobLocation", - folderPath: "wikidatagateway/wikisampledataout/{Slice}", - partitionedBy: - [ - { name: "Slice", value: { type: "DateTime", date: "SliceStart", format: "yyyyMMddHH" } }, - ], - linkedServiceName: "LinkedService-CuratedWikiData" - }, - availability: - { - frequency: "Hour", - interval: 1 - } - } -} \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_WikiAggregatedData.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_WikiAggregatedData.json deleted file mode 100644 index 1143fbd445ef..000000000000 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_WikiAggregatedData.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - name: "DA_WikiAggregatedData", - properties: - { - structure: - [ - { name: "slicetimestamp", position: 0, type: "String" }, - { name: "projectname", position: 1, type: "String" }, - { name: "hits", position: 2, type: "Decimal" } - ], - location: - { - type: "AzureSqlTableLocation", - tableName: "wikiaggregateddata", - linkedServiceName: "LinkedService-WikiAggregatedData" - }, - availability: - { - frequency: "Hour", - interval: 1 - }, - policy: - { - validation: - { - minimumRows: 10 - } - } - } -} \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_WikipediaClickEvents.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_WikipediaClickEvents.json deleted file mode 100644 index c65c1050c037..000000000000 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DA_WikipediaClickEvents.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - name: "DA_WikipediaClickEvents", - properties: - { - location: - { - type: "AzureBlobLocation", - folderPath: "wikidatagateway/wikisampledatain/", - linkedServiceName: "LinkedService-WikipediaClickEvents" - }, - availability: { - frequency: "Hour", - interval: 1, - waitOnExternal: - { - retryInterval: "00:01:00", - retryTimeout: "00:10:00", - maximumRetry: 3 - } - }, - policy: - { - validation: - { - minimumSizeMB: 1.0 - } - } - } -} \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DP_Wikisamplev2json.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DP_Wikisamplev2json.json deleted file mode 100644 index 2cc8fc353b5a..000000000000 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/DP_Wikisamplev2json.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - name: "DP_WikipediaSamplePipeline", - properties: - { - description : "DP Wikipedia Sample Pipelines", - activities: - [ - { - name: "WikiHiveActivity", - inputs: [ {name: "DA_WikipediaClickEvents"} ], - outputs: [ {name: "DA_CuratedWikiData"} ], - linkedServiceName: "HDILinkedService", - type: "HDInsightActivity", - transformation: - { - type: "Hive", - script: "$$Text.Format('DROP TABLE IF EXISTS values; CREATE EXTERNAL TABLE values (projectname string, title string, pageviews string, bytestransfer string) ROW FORMAT DELIMITED FIELDS TERMINATED BY \\' \\' LINES TERMINATED BY \\'10\\' STORED AS TEXTFILE LOCATION \\'wasb://wikidatagateway@mdpprodstore.blob.core.windows.net/wikisampledatain\\'; DROP TABLE IF EXISTS stats; CREATE EXTERNAL TABLE stats (slicetimestamp string, projectname string, pageviews string) ROW FORMAT DELIMITED FIELDS TERMINATED BY \\',\\' LINES TERMINATED BY \\'10\\' STORED AS TEXTFILE LOCATION \\'wasb://wikidatagateway@mdpprodstore.blob.core.windows.net/wikisampledataout/{0:yyyyMMddHH}\\'; INSERT OVERWRITE TABLE Stats SELECT slicetimestamp, projectname, sum(pageviews) FROM (SELECT \\'2014/02/25\\' AS slicetimestamp, CASE WHEN size(split(projectname, \\'[.]\\'))=1 THEN \\'wikipedia\\' ELSE CASE split(projectname, \\'[.]\\')[1] WHEN \\'b\\' THEN \\'wikibooks\\' WHEN \\'d\\' THEN \\'wiktionary\\' WHEN \\'m\\' THEN \\'wikimedia\\' WHEN \\'mv\\' THEN \\'wikipedia mobile\\' WHEN \\'n\\' THEN \\'wikinews\\' WHEN \\'q\\' THEN \\'wikiquote\\' WHEN \\'s\\' THEN \\'wikisource\\' WHEN \\'v\\' THEN \\'wikiversity\\' WHEN \\'w\\' THEN \\'mediawiki\\' ELSE \\'n/a\\' END END AS projectname, pageviews FROM values) A GROUP BY slicetimestamp, projectname;', SliceStart)" - }, - policy: - { - concurrency: 1, - executionPriorityOrder: "NewestFirst", - retry: 2, - timeout: "01:00:00" - } - }, - { - name: "BlobToSqlCopyActivity", - inputs: [ {name: "DA_CuratedWikiData"} ], - outputs: [ {name: "DA_WikiAggregatedData"} ], - linkedServiceName: "HDILinkedService", - type: "CopyActivity", - transformation: - { - source: - { - type: "BlobSource", - blobColumnSeparators: "," - }, - sink: - { - type: "SqlSink", - writeBatchSize: 1000000, - writeBatchTimeout: "01:00:00" - } - }, - policy: - { - concurrency: 1, - executionPriorityOrder: "NewestFirst", - retry: 2, - timeout: "01:00:00" - } - } - ] - } -} \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_CuratedWikiData.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_CuratedWikiData.json deleted file mode 100644 index 6fe323600b4b..000000000000 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_CuratedWikiData.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - name: "LinkedService-CuratedWikiData", - properties: - { - type: "AzureStorageLinkedService", - connectionString: "DefaultEndpointsProtocol=https;AccountName=myaccountname;AccountKey=myaccountkey" - } -} \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_HDIBYOC.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_HDIBYOC.json deleted file mode 100644 index 9478092966f4..000000000000 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_HDIBYOC.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "HDILinkedService", - "properties": - { - "type": "HDInsightBYOCLinkedService", - "clusterUri": "https://myhadoopcluster.azurehdinsight.net/", - "userName": "admin", - "password": "mypassword", - "linkedServiceName": "LinkedService-CuratedWikiData" - } -} \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_WikiAggregatedData.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_WikiAggregatedData.json deleted file mode 100644 index c5b95efc0e81..000000000000 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_WikiAggregatedData.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - name: "LinkedService-WikiAggregatedData", - properties: - { - type: "AzureSqlLinkedService", - connectionString: "Server=tcp:mytest.database.windows.net,1499;Database=wikitest;User ID=myaccount;Password=somepassword;Trusted_Connection=False;Encrypt=True;Connection Timeout=30" - } -} \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_WikipediaClickEvents.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_WikipediaClickEvents.json deleted file mode 100644 index 1efc5a89dace..000000000000 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/WikiSamplePipeline/LinkedService_WikipediaClickEvents.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - name: "LinkedService-WikipediaClickEvents", - properties: - { - type: "AzureStorageLinkedService", - connectionString: "DefaultEndpointsProtocol=https;AccountName=myaccountname;AccountKey=myaccountkey" - } -} \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/linkedService.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/linkedService.json index 48bfde179349..04b4af805eea 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/linkedService.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/linkedService.json @@ -1,12 +1,9 @@ { name: "foo2", - properties: - { - type: "CustomLinkedService", - extendedProperties: - { - PropertyBagPropertyName1: "PropertyBagPropertyValue1", - propertyBagPropertyName2: "PropertyBagPropertyValue2" + properties: { + type: "AzureStorage", + typeProperties: { + connectionString: "myfakeconnectionstring" } } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/pipeline.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/pipeline.json index 29d4d5473363..87dc54b2031e 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/pipeline.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/pipeline.json @@ -11,7 +11,7 @@ outputs: [ {name: "outputTable"} ], linkedServiceName: "foo2", type: "DotNetActivity", - transformation: + typeProperties: { assemblyName: "mycode.dll", entryPoint: "myclassname", diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/table.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/table.json index c129e604748b..22810504f3ec 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/table.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/table.json @@ -1,14 +1,12 @@ { name: "foo1", - properties: - { - location: - { - type: "CustomLocation", - linkedServiceName: "foo2" + properties: { + type: "CustomDataSet", + typeProperties: { + tableName: "myTable" }, - availability: - { + linkedServiceName: "foo2", + availability: { frequency: "Hour", interval: 1 } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/Common.ps1 index bf1223bb8438..b88f1e3fd837 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/Common.ps1 @@ -36,12 +36,8 @@ Gets the default location for a provider #> function Get-ProviderLocation($provider) { - $location = Get-AzureLocation | where {$_.Name -eq $provider} - if ($location -eq $null) { - "West US" - } else { - $location.Locations[0] - } + # A Dogfood data center for ADF cmdlet mock testing + "Brazil South" } <# diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs index 2c9c6f0f5890..faf5a4a863d0 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs @@ -67,9 +67,9 @@ protected void RunPowerShellTest(params string[] scripts) } } - protected DataPipelineManagementClient GetDataPipelineManagementClient() + protected DataFactoryManagementClient GetDataPipelineManagementClient() { - return TestBase.GetServiceClient(new CSMTestEnvironmentFactory()); + return TestBase.GetServiceClient(new CSMTestEnvironmentFactory()); } protected ResourceManagementClient GetResourceManagementClient() diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json index 7e3de706fe7c..97e39d2116cc 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" - ], - "x-ms-request-id": [ - "acdba471-c7eb-4212-acdb-6c2bc03e017c" - ], - "x-ms-correlation-request-id": [ - "acdba471-c7eb-4212-acdb-6c2bc03e017c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234649Z:acdba471-c7eb-4212-acdb-6c2bc03e017c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:46:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" - ], - "x-ms-request-id": [ - "c10cb787-fa0e-4b95-ba75-8ee7e5e498a5" - ], - "x-ms-correlation-request-id": [ - "c10cb787-fa0e-4b95-ba75-8ee7e5e498a5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234649Z:c10cb787-fa0e-4b95-ba75-8ee7e5e498a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:46:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "14946" ], "x-ms-request-id": [ - "2aeec82a-f2ae-4bcf-8035-72496a3e33eb" + "e2108f3a-7c0b-4f6e-9f46-7aab4d632556" ], "x-ms-correlation-request-id": [ - "2aeec82a-f2ae-4bcf-8035-72496a3e33eb" + "e2108f3a-7c0b-4f6e-9f46-7aab4d632556" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234649Z:2aeec82a-f2ae-4bcf-8035-72496a3e33eb" + "CENTRALUS:20150711T211056Z:e2108f3a-7c0b-4f6e-9f46-7aab4d632556" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:48 GMT" + "Sat, 11 Jul 2015 21:10:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk4420\",\r\n \"name\": \"onesdk4420\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5593\",\r\n \"name\": \"onesdk5593\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1176" ], "x-ms-request-id": [ - "0dc20f51-572d-4456-8b70-8cd47216aa37" + "c86e6162-574d-43e2-8c50-a15b39039fb9" ], "x-ms-correlation-request-id": [ - "0dc20f51-572d-4456-8b70-8cd47216aa37" + "c86e6162-574d-43e2-8c50-a15b39039fb9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234649Z:0dc20f51-572d-4456-8b70-8cd47216aa37" + "CENTRALUS:20150711T211056Z:c86e6162-574d-43e2-8c50-a15b39039fb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:48 GMT" + "Sat, 11 Jul 2015 21:10:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk4420/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0MjAvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5593/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazU1OTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "14945" ], "x-ms-request-id": [ - "9442abdb-0b1f-4029-8cf9-39110a81d32f" + "0d18f974-cc86-427c-8c6b-913aaea79c94" ], "x-ms-correlation-request-id": [ - "9442abdb-0b1f-4029-8cf9-39110a81d32f" + "0d18f974-cc86-427c-8c6b-913aaea79c94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234649Z:9442abdb-0b1f-4029-8cf9-39110a81d32f" + "CENTRALUS:20150711T211056Z:0d18f974-cc86-427c-8c6b-913aaea79c94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:48 GMT" + "Sat, 11 Jul 2015 21:10:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:7dc23ff2-5017-4740-9f12-68fb1635e584" + "centralus:c26b4c18-1d5d-4058-a9e3-e78104085ab5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" + "14983" ], "x-ms-correlation-request-id": [ - "26b0d3b0-84f2-4c32-95f1-36f4b8dab24b" + "7c9e4bec-438d-450a-9437-52f2bae64423" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234649Z:26b0d3b0-84f2-4c32-95f1-36f4b8dab24b" + "CENTRALUS:20150711T211057Z:7c9e4bec-438d-450a-9437-52f2bae64423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:49 GMT" + "Sat, 11 Jul 2015 21:10:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OT9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1Mzg/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk179\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk2538\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "68" + "74" ], "x-ms-client-request-id": [ - "ec0dc879-7dac-453e-beb2-6d890894d9d6" + "255bd002-b45d-486b-b14e-1a89ffcd110b" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk179\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1d48254c-716a-4ff0-9b5d-df81d5a19714\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2538\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"34e22d88-da0a-4271-9fdb-e29cc1b3080f\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "476" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "ae327bd1-cb5c-4ce3-a823-e3d967561636" + "4db1b569-71c8-43bb-9907-fa3b54213ab1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1150" + "1187" ], "x-ms-correlation-request-id": [ - "a0cd3fce-17ef-4b68-97da-af3883f62bab" + "f5e25f1e-4262-4190-a6de-aadb3cce7191" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234651Z:a0cd3fce-17ef-4b68-97da-af3883f62bab" + "CENTRALUS:20150711T211058Z:f5e25f1e-4262-4190-a6de-aadb3cce7191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:50 GMT" + "Sat, 11 Jul 2015 21:10:58 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OT9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1Mzg/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3fe1f0a-b25e-4fb3-adc6-307dab9580fa" + "dc139a5a-1c90-414c-b33d-b9ff60e62134" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk179\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1d48254c-716a-4ff0-9b5d-df81d5a19714\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2538\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"34e22d88-da0a-4271-9fdb-e29cc1b3080f\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "476" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "cd509bdc-7d37-4948-b134-d4a42081b455" + "bbad3fd1-def9-47ea-88a0-b9af6322caa4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" + "14978" ], "x-ms-correlation-request-id": [ - "f369dbd9-44ff-49d0-a993-a8b74fecab84" + "5c237fe0-50e4-4855-b242-66a02a705d02" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234651Z:f369dbd9-44ff-49d0-a993-a8b74fecab84" + "CENTRALUS:20150711T211058Z:5c237fe0-50e4-4855-b242-66a02a705d02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:50 GMT" + "Sat, 11 Jul 2015 21:10:58 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OT9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1Mzg/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "405b53fa-3fd7-4297-aaed-e558929564ca" + "4721ec92-c3f0-4a0e-bbcd-545710b7821e" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk179\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1d48254c-716a-4ff0-9b5d-df81d5a19714\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2538\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"34e22d88-da0a-4271-9fdb-e29cc1b3080f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "476" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "6cdcaac2-2474-40fa-8448-1e2418ab0dfd" + "e74ff9ff-d830-4c1b-b6be-3fd8b0a1799c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "14977" ], "x-ms-correlation-request-id": [ - "a0215dea-4b35-49bc-9b46-17538b1433be" + "57edab39-9e44-439e-a4b7-a1ef854f1dbd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234656Z:a0215dea-4b35-49bc-9b46-17538b1433be" + "CENTRALUS:20150711T211104Z:57edab39-9e44-439e-a4b7-a1ef854f1dbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:55 GMT" + "Sat, 11 Jul 2015 21:11:03 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,25 +391,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OT9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1febcea4-4128-42f0-9d0d-b06b37013ffa" - ], - "x-ms-version": [ - "2015-01-01-preview" + "438051d1-df23-4ab2-9144-dadf36c6212d" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk179\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1d48254c-716a-4ff0-9b5d-df81d5a19714\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"message\": \"Gateway foo does not exist.\",\r\n \"code\": \"GatewayNotFound\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "470" + "66" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,16 +418,16 @@ "no-cache" ], "x-ms-request-id": [ - "a87d83c8-c82a-4f24-8ab1-2215435eaa66" + "2d0deb95-b135-48ad-ae36-9d0a0aed1be1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "14976" ], "x-ms-correlation-request-id": [ - "82737c0d-8590-484c-91b4-26dcb4f125de" + "5e939436-0db5-40a3-850d-1d0b01d5cb25" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234701Z:82737c0d-8590-484c-91b4-26dcb4f125de" + "CENTRALUS:20150711T211104Z:5e939436-0db5-40a3-850d-1d0b01d5cb25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,7 +436,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:01 GMT" + "Sat, 11 Jul 2015 21:11:03 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -541,25 +445,28 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OS9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efb18228-001f-4df9-92d9-f935eec1a264" + "74088161-05dd-4b80-995b-8608522b0366" + ], + "x-ms-version": [ + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"message\": \"Gateway foo does not exist.\",\r\n \"code\": \"GatewayNotFound\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk2538\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-11T21:11:05.0481467Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "66" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -571,16 +478,16 @@ "no-cache" ], "x-ms-request-id": [ - "78cb14ed-e8c3-4c96-936d-a11c0fc04b7a" + "5f4402e5-b511-4d94-b306-02b923df71f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "14975" ], "x-ms-correlation-request-id": [ - "b41a70be-e0df-4ee4-aaf2-0f5353f4a408" + "1969ecb7-28a7-4dab-b181-1a19f8c181e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234702Z:b41a70be-e0df-4ee4-aaf2-0f5353f4a408" + "CENTRALUS:20150711T211105Z:1969ecb7-28a7-4dab-b181-1a19f8c181e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +496,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:01 GMT" + "Sat, 11 Jul 2015 21:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -598,25 +505,25 @@ "ASP.NET" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OS9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13abb073-496f-4e8f-8e92-ddfa45c7df98" + "1acf84c0-9bed-43b9-b92a-daf5d4a3f588" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": null,\r\n \"description\": null,\r\n \"hostServiceUri\": null,\r\n \"dataFactoryName\": \"onesdk179\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": null,\r\n \"createTime\": \"2015-01-13T23:47:03.1113005Z\",\r\n \"registerTime\": null,\r\n \"lastConnectTime\": null,\r\n \"expiryTime\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk2538\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-11T21:11:05.0481467Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -628,16 +535,16 @@ "no-cache" ], "x-ms-request-id": [ - "845282d2-b4cb-4b1e-8228-85185f6d31ea" + "39a8b02d-8bb4-4204-8633-c47c1bc5a876" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "14974" ], "x-ms-correlation-request-id": [ - "08a029c3-9fe4-40df-b903-3f7529477fe1" + "91fa6127-0520-4c92-b30e-918d8c4361d7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234703Z:08a029c3-9fe4-40df-b903-3f7529477fe1" + "CENTRALUS:20150711T211105Z:91fa6127-0520-4c92-b30e-918d8c4361d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,7 +553,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:03 GMT" + "Sat, 11 Jul 2015 21:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -658,8 +565,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OS9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {}\r\n}", "RequestHeaders": { @@ -670,16 +577,16 @@ "42" ], "x-ms-client-request-id": [ - "f21a6bcc-f1d3-4372-a4f4-55fd74e19d30" + "32362979-c90e-41b5-b98a-b1af8914c57b" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": \"ADF#70ee92bb-abbc-4fdc-9706-fe1b9d60b15c@4c1319f8-f1e2-4883-a743-cc617922fe35@8c0d1801-e863-44af-82e6-fb2f0c00f2ae@wu#jdcZ50gwHBTN+a8XOi+QWa52GlAs6HARAFZo1T9ktgQ=\",\r\n \"description\": null,\r\n \"hostServiceUri\": null,\r\n \"dataFactoryName\": \"onesdk179\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": null,\r\n \"createTime\": \"2015-01-13T23:47:03.1113005Z\",\r\n \"registerTime\": null,\r\n \"lastConnectTime\": null,\r\n \"expiryTime\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": \"ADF#c5fd1479-3f12-4acc-bb78-fea4ad1d54e1@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@bb997f91-a875-490c-b4ec-961b250daa64@wu#lKG60NP9qcM0sQJH+Mb1+hhwe9qdNK9ZRCsOFMl3Xwk=\",\r\n \"dataFactoryName\": \"onesdk2538\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-11T21:11:05.0481467Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "474" + "358" ], "Content-Type": [ "application/json; charset=utf-8" @@ -691,16 +598,16 @@ "no-cache" ], "x-ms-request-id": [ - "ef52f4b1-cfd3-439f-85cd-06b3b6316e5f" + "c22d9c5a-7da3-4b66-99c4-57a5f8b6aa56" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1186" ], "x-ms-correlation-request-id": [ - "c73c70c0-9e9f-4278-b84a-3c3b77f9d7a9" + "61401193-3f8f-468a-8a2c-1cdfb78a6909" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234702Z:c73c70c0-9e9f-4278-b84a-3c3b77f9d7a9" + "CENTRALUS:20150711T211105Z:61401193-3f8f-468a-8a2c-1cdfb78a6909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -709,7 +616,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:01 GMT" + "Sat, 11 Jul 2015 21:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -721,25 +628,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OS9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo/regeneratekey?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vL3JlZ2VuZXJhdGVrZXk/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "907ad3e9-aa3d-4cb9-bbb7-fb6d0db64b5d" - ], - "x-ms-version": [ - "2015-01-01-preview" + "dc21fb3c-2b92-4ffa-9b02-fa7b0f0f5f19" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": null,\r\n \"description\": null,\r\n \"hostServiceUri\": null,\r\n \"dataFactoryName\": \"onesdk179\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": null,\r\n \"createTime\": \"2015-01-13T23:47:03.1113005Z\",\r\n \"registerTime\": null,\r\n \"lastConnectTime\": null,\r\n \"expiryTime\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": \"ADF#09d0bda3-ec13-499f-bed7-8ee1502d952f@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@bb997f91-a875-490c-b4ec-961b250daa64@wu#Gn5QtkKHvKhrzK9jUBI3Sl54INeyAYkOvOSOg5ewWQ0=\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -751,16 +655,16 @@ "no-cache" ], "x-ms-request-id": [ - "92fd5d85-01c6-44e5-ba4d-e8cc9fa0f117" + "e255dd70-1d77-4043-9016-af2c66434bf5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" ], "x-ms-correlation-request-id": [ - "4e964871-9dd5-449e-80bb-2ebfed93dc1a" + "548f123e-7fcd-43c3-a903-fc9a640a368e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234703Z:4e964871-9dd5-449e-80bb-2ebfed93dc1a" + "CENTRALUS:20150711T211107Z:548f123e-7fcd-43c3-a903-fc9a640a368e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -769,7 +673,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:03 GMT" + "Sat, 11 Jul 2015 21:11:07 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -781,22 +685,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo/regeneratekey?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OS9nYXRld2F5cy9mb28vcmVnZW5lcmF0ZWtleT9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "80" + ], "x-ms-client-request-id": [ - "48d2c6f5-63d9-4edc-9965-562013f37b91" + "7e27cfbb-0c99-48fc-9304-4280c5a8c708" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"key\": \"ADF#70ee92bb-abbc-4fdc-9706-fe1b9d60b15c@4c1319f8-f1e2-4883-a743-cc617922fe35@8c0d1801-e863-44af-82e6-fb2f0c00f2ae@wu#eu5s8mmcRt5KHNnluuf9AWuiwHVY0EoeD5cZmga3eII=\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\",\r\n \"dataFactoryName\": \"onesdk2538\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-11T21:11:05.0481467Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "172" + "215" ], "Content-Type": [ "application/json; charset=utf-8" @@ -808,16 +718,16 @@ "no-cache" ], "x-ms-request-id": [ - "e20f0f56-5733-4768-aff9-2112b201832e" + "d3bc1414-726d-4f9c-ba76-6f86fc012156" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1184" ], "x-ms-correlation-request-id": [ - "8e717e4e-52b9-428e-96d8-bf3393212896" + "25294ebf-9e61-49bc-b665-ef691fa530ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234704Z:8e717e4e-52b9-428e-96d8-bf3393212896" + "CENTRALUS:20150711T211108Z:25294ebf-9e61-49bc-b665-ef691fa530ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,7 +736,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:04 GMT" + "Sat, 11 Jul 2015 21:11:07 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -838,31 +748,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OS9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\"\r\n }\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "80" - ], "x-ms-client-request-id": [ - "c17ec71f-32f3-4de6-9f85-bad5b019964a" + "8c969b65-0920-415d-9426-470cdf9196e3" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": null,\r\n \"description\": \"description\",\r\n \"hostServiceUri\": null,\r\n \"dataFactoryName\": \"onesdk179\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": null,\r\n \"createTime\": \"2015-01-13T23:47:03.1113005Z\",\r\n \"registerTime\": null,\r\n \"lastConnectTime\": null,\r\n \"expiryTime\": null\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "323" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -870,17 +771,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "c357df9a-de32-4e5b-b622-1d37d41fe269" + "694a288c-3b66-4710-98e0-4123d0e3beff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1183" ], "x-ms-correlation-request-id": [ - "840fc4eb-311f-412e-a41c-6b4d853190f1" + "154d0a36-14df-47a6-8b0c-e283fbf2e43c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234705Z:840fc4eb-311f-412e-a41c-6b4d853190f1" + "CENTRALUS:20150711T211108Z:154d0a36-14df-47a6-8b0c-e283fbf2e43c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,7 +793,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:05 GMT" + "Sat, 11 Jul 2015 21:11:08 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo/operationresults/Db13b1e8b-31dc-43e9-9118-2b563e864797?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -898,19 +805,19 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OS9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo/operationresults/Db13b1e8b-31dc-43e9-9118-2b563e864797?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRGIxM2IxZThiLTMxZGMtNDNlOS05MTE4LTJiNTYzZTg2NDc5Nz9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8fbe7099-d91f-453e-8906-333c19ed1b9f" + "x-ms-version": [ + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -928,16 +835,16 @@ "15" ], "x-ms-request-id": [ - "58cb7c7f-67d6-436d-8b6d-f45ef4e8176c" + "365bf522-4bfc-4251-8b50-55173d549c11" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" ], "x-ms-correlation-request-id": [ - "52e7849a-996d-4912-afb6-a4f7e3f7411c" + "e9a9dd9d-3570-41d0-b776-fdf125bff33f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234707Z:52e7849a-996d-4912-afb6-a4f7e3f7411c" + "CENTRALUS:20150711T211109Z:e9a9dd9d-3570-41d0-b776-fdf125bff33f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -946,10 +853,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:07 GMT" + "Sat, 11 Jul 2015 21:11:08 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo/operationresults/01Dd6cf1698-23b8-4341-b11e-036e1b86476b?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo/operationresults/Db13b1e8b-31dc-43e9-9118-2b563e864797?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -961,16 +868,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179/gateways/foo/operationresults/01Dd6cf1698-23b8-4341-b11e-036e1b86476b?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OS9nYXRld2F5cy9mb28vb3BlcmF0aW9ucmVzdWx0cy8wMURkNmNmMTY5OC0yM2I4LTQzNDEtYjExZS0wMzZlMWI4NjQ3NmI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538/gateways/foo/operationresults/Db13b1e8b-31dc-43e9-9118-2b563e864797?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MzgvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRGIxM2IxZThiLTMxZGMtNDNlOS05MTE4LTJiNTYzZTg2NDc5Nz9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -985,16 +892,16 @@ "no-cache" ], "x-ms-request-id": [ - "8f07eb2e-8f11-44a5-9b9a-3f1a1fba6414" + "f3b08b9d-21c3-43cd-81f9-01abfc2c92d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "14972" ], "x-ms-correlation-request-id": [ - "470dddf6-46e1-4801-87e3-8ed44f7602c3" + "c1db8548-cca9-46b5-9b0b-c085067f8439" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234707Z:470dddf6-46e1-4801-87e3-8ed44f7602c3" + "CENTRALUS:20150711T211125Z:c1db8548-cca9-46b5-9b0b-c085067f8439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1003,7 +910,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:07 GMT" + "Sat, 11 Jul 2015 21:11:24 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1015,16 +922,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4420/providers/Microsoft.DataFactory/datafactories/onesdk179?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3OT9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5593/providers/Microsoft.DataFactory/datafactories/onesdk2538?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU1OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1Mzg/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48bf9660-623a-47a5-8db0-daba0214642f" + "1315516d-fca1-47e5-a4a8-e530518c7179" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1039,16 +946,16 @@ "no-cache" ], "x-ms-request-id": [ - "b5144e69-8342-48fb-b49a-3628f769d61c" + "f174b2ba-6d11-4013-bf51-5cb4b8066f74" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1182" ], "x-ms-correlation-request-id": [ - "f3806cff-0b48-43d2-862d-622a7dab3e65" + "e2bb2fd7-6412-48b0-955b-7406ebf3b0a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234708Z:f3806cff-0b48-43d2-862d-622a7dab3e65" + "CENTRALUS:20150711T211126Z:e2bb2fd7-6412-48b0-955b-7406ebf3b0a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,7 +964,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:07 GMT" + "Sat, 11 Jul 2015 21:11:26 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1071,11 +978,11 @@ ], "Names": { "Test-DataFactoryGateway": [ - "onesdk179", - "onesdk4420" + "onesdk2538", + "onesdk5593" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json index f0987c24fb64..dc8f270290a6 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" - ], - "x-ms-request-id": [ - "b58671ef-032f-43bd-82a1-496331f9e193" - ], - "x-ms-correlation-request-id": [ - "b58671ef-032f-43bd-82a1-496331f9e193" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234551Z:b58671ef-032f-43bd-82a1-496331f9e193" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:45:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" - ], - "x-ms-request-id": [ - "96ba014b-12fe-4c65-ac61-956531cdddc3" - ], - "x-ms-correlation-request-id": [ - "96ba014b-12fe-4c65-ac61-956531cdddc3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234552Z:96ba014b-12fe-4c65-ac61-956531cdddc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:45:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" + "14982" ], "x-ms-request-id": [ - "a1051e80-efae-47f0-9b8b-87107fe23ed6" + "003d1d28-53d9-49c4-8daf-0925928a9c57" ], "x-ms-correlation-request-id": [ - "a1051e80-efae-47f0-9b8b-87107fe23ed6" + "003d1d28-53d9-49c4-8daf-0925928a9c57" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234552Z:a1051e80-efae-47f0-9b8b-87107fe23ed6" + "CENTRALUS:20150711T211212Z:003d1d28-53d9-49c4-8daf-0925928a9c57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:51 GMT" + "Sat, 11 Jul 2015 21:12:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk404\",\r\n \"name\": \"onesdk404\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk778\",\r\n \"name\": \"onesdk778\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "171" + "176" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1189" ], "x-ms-request-id": [ - "27df5402-ba02-4cbb-ba6c-22339decc2d0" + "3faa12be-a076-4971-95ae-99acb8830a13" ], "x-ms-correlation-request-id": [ - "27df5402-ba02-4cbb-ba6c-22339decc2d0" + "3faa12be-a076-4971-95ae-99acb8830a13" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234552Z:27df5402-ba02-4cbb-ba6c-22339decc2d0" + "CENTRALUS:20150711T211221Z:3faa12be-a076-4971-95ae-99acb8830a13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:51 GMT" + "Sat, 11 Jul 2015 21:12:20 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk404/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazQwNC9yZXNvdXJjZXM/JmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk778/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazc3OC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "14981" ], "x-ms-request-id": [ - "cac06361-6998-495c-be7b-37109b2e3da3" + "ef1ad3c7-f080-4ac7-9706-63a6204df0f0" ], "x-ms-correlation-request-id": [ - "cac06361-6998-495c-be7b-37109b2e3da3" + "ef1ad3c7-f080-4ac7-9706-63a6204df0f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234552Z:cac06361-6998-495c-be7b-37109b2e3da3" + "CENTRALUS:20150711T211222Z:ef1ad3c7-f080-4ac7-9706-63a6204df0f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:51 GMT" + "Sat, 11 Jul 2015 21:12:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:297508a3-7743-4816-9d54-5da3ba69ffb4" + "centralus:ee8c304c-7239-4295-86af-e83c8146158e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "14984" ], "x-ms-correlation-request-id": [ - "42f34c41-6970-4be8-84c8-d8ea7c603d3c" + "5f47be7b-45fd-40c8-933b-a6cd1eae982e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234552Z:42f34c41-6970-4be8-84c8-d8ea7c603d3c" + "CENTRALUS:20150711T211222Z:5f47be7b-45fd-40c8-933b-a6cd1eae982e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:52 GMT" + "Sat, 11 Jul 2015 21:12:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMz9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk4110\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk8413\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "528c7840-d881-46fe-902f-bf4723f54378" + "362d75ea-8686-4020-a5b3-9c8ae1570433" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4110\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"007b5763-e59f-49d6-b71a-a00241ff8de8\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8413\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c042a025-e806-441d-a2cb-08d739000910\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "477" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "cfc8415c-fc06-4ddb-b38a-aca151d42ba8" + "a373bfde-02bc-45b1-8015-d49d8ea5c8bb" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1190" ], "x-ms-correlation-request-id": [ - "5e6af804-f6b5-4590-8149-2402b2854b3a" + "69c80583-3d3f-4610-b629-47b750da1f6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234554Z:5e6af804-f6b5-4590-8149-2402b2854b3a" + "CENTRALUS:20150711T211223Z:69c80583-3d3f-4610-b629-47b750da1f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:53 GMT" + "Sat, 11 Jul 2015 21:12:23 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMz9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f20923e3-4324-497d-8858-d8c4b3e3a162" + "68821dfe-c9a1-4e9f-b23e-5456066196d4" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4110\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"007b5763-e59f-49d6-b71a-a00241ff8de8\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8413\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c042a025-e806-441d-a2cb-08d739000910\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "477" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "f2411e55-d397-4927-bbd7-ea270c156238" + "2165bdb7-40c3-4fc5-8650-d1a3eeb95635" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" + "14985" ], "x-ms-correlation-request-id": [ - "995f111d-f1a0-4cff-a5d9-956fa7bab536" + "4913a19c-0e11-4137-a5e6-d6f2a0ffb87e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234554Z:995f111d-f1a0-4cff-a5d9-956fa7bab536" + "CENTRALUS:20150711T211224Z:4913a19c-0e11-4137-a5e6-d6f2a0ffb87e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:53 GMT" + "Sat, 11 Jul 2015 21:12:23 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMz9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80637745-70d7-44a9-86aa-a29ac7753554" + "da7d62b5-c168-40e9-8b95-cf7c581a30b6" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4110\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"007b5763-e59f-49d6-b71a-a00241ff8de8\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8413\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c042a025-e806-441d-a2cb-08d739000910\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "477" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "29cd0c5a-e92d-4d7e-8da1-ad4848ad5df7" + "9860c6b4-2c18-4fce-a51a-1de3d0677b82" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "14984" ], "x-ms-correlation-request-id": [ - "19865b7c-df13-43fc-9979-fd217eb7701a" + "57ee9c10-46a4-4021-8338-8cd81cccf4b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234559Z:19865b7c-df13-43fc-9979-fd217eb7701a" + "CENTRALUS:20150711T211229Z:57ee9c10-46a4-4021-8338-8cd81cccf4b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:59 GMT" + "Sat, 11 Jul 2015 21:12:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMz9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c7f4642-d48b-44cb-812c-ae56e86db83b" + "560e431c-5b91-4dbc-ba03-21566550eccf" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4110\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"007b5763-e59f-49d6-b71a-a00241ff8de8\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8413\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c042a025-e806-441d-a2cb-08d739000910\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "471" + "442" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "f63fa0c2-1090-49e5-b7c4-0aa54ca60c52" + "db49a183-5b52-44b7-ac9c-0551249d1d6f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" + "14983" ], "x-ms-correlation-request-id": [ - "dc534b64-cd50-4062-8ed7-0ba0c32b20b9" + "f552c6e9-93d6-45bb-8766-175646e6790a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234604Z:dc534b64-cd50-4062-8ed7-0ba0c32b20b9" + "CENTRALUS:20150711T211234Z:f552c6e9-93d6-45bb-8766-175646e6790a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:03 GMT" + "Sat, 11 Jul 2015 21:12:34 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,16 +451,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMC9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "151fa9b4-5730-4841-b819-2bd9d0075f2d" + "5f7b4168-b005-4d10-b192-25dc655356e2" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Gateway foo does not exist.\",\r\n \"code\": \"GatewayNotFound\"\r\n}", @@ -571,16 +478,16 @@ "no-cache" ], "x-ms-request-id": [ - "68f6d9a1-b39f-4b17-914e-540770a116e5" + "df633582-23cb-4b8e-a674-d0ae4b7258f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" + "14982" ], "x-ms-correlation-request-id": [ - "f060c2e2-483e-4498-a1e9-d8df1a0c63dd" + "bde6f6f8-1e1b-48a7-af9e-a9e30f8fbc6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234605Z:f060c2e2-483e-4498-a1e9-d8df1a0c63dd" + "CENTRALUS:20150711T211234Z:bde6f6f8-1e1b-48a7-af9e-a9e30f8fbc6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +496,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:04 GMT" + "Sat, 11 Jul 2015 21:12:34 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -601,22 +508,25 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMC9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "345e5a89-9085-4e5a-bb6d-6011f204e7ab" + "670dff52-e041-431a-85d0-0ba64dfcd48d" + ], + "x-ms-version": [ + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": null,\r\n \"description\": null,\r\n \"hostServiceUri\": null,\r\n \"dataFactoryName\": \"onesdk4110\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": null,\r\n \"createTime\": \"2015-01-13T23:46:06.4888011Z\",\r\n \"registerTime\": null,\r\n \"lastConnectTime\": null,\r\n \"expiryTime\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk8413\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-11T21:12:35.4967223Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "315" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -628,16 +538,16 @@ "no-cache" ], "x-ms-request-id": [ - "085f5ecd-602f-4f5d-b16d-5b5563da14bc" + "2da4b91f-bf4d-4bdc-86c7-e4c05909d3b6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "14981" ], "x-ms-correlation-request-id": [ - "98ce3ee3-7dc3-4933-85ba-d9c9247fef6e" + "dfa22178-8448-47e3-8173-54940851f1bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234607Z:98ce3ee3-7dc3-4933-85ba-d9c9247fef6e" + "CENTRALUS:20150711T211235Z:dfa22178-8448-47e3-8173-54940851f1bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,7 +556,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:07 GMT" + "Sat, 11 Jul 2015 21:12:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -658,28 +568,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMC9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {}\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "42" - ], "x-ms-client-request-id": [ - "936f9c77-ed3b-4516-ba57-4bfe6254def8" + "90305ef3-93fe-482b-97af-1ba3395ce1d4" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": \"ADF#91cd354c-f9b9-47b3-ace2-9e768ea5a329@4c1319f8-f1e2-4883-a743-cc617922fe35@8c0d1801-e863-44af-82e6-fb2f0c00f2ae@wu#q0TLZZjRp4h65Y1by2pO+H8YzXQ/EqX0UhbUozEWBs8=\",\r\n \"description\": null,\r\n \"hostServiceUri\": null,\r\n \"dataFactoryName\": \"onesdk4110\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": null,\r\n \"createTime\": \"2015-01-13T23:46:06.4888011Z\",\r\n \"registerTime\": null,\r\n \"lastConnectTime\": null,\r\n \"expiryTime\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk8413\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-11T21:12:35.4967223Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "475" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -691,16 +595,16 @@ "no-cache" ], "x-ms-request-id": [ - "dcd76301-fb87-4b96-a3a5-8180c2fecba6" + "e43d2379-e90e-494e-98b2-72f59d6e9af7" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" ], "x-ms-correlation-request-id": [ - "5b018ac9-d60b-4f3d-a47b-e7e2dc6402a0" + "5f703061-4e9f-4a9b-9661-69e38275075c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234606Z:5b018ac9-d60b-4f3d-a47b-e7e2dc6402a0" + "CENTRALUS:20150711T211236Z:5f703061-4e9f-4a9b-9661-69e38275075c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -709,7 +613,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:05 GMT" + "Sat, 11 Jul 2015 21:12:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -721,25 +625,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMC9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {}\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "bcc5d46a-eaec-4d89-96cf-b2505d8764e7" + "Content-Type": [ + "application/json" ], - "x-ms-version": [ - "2015-01-01-preview" + "Content-Length": [ + "42" + ], + "x-ms-client-request-id": [ + "6bbc9ccc-c96d-4d54-81a8-f195a84b72bd" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": null,\r\n \"description\": null,\r\n \"hostServiceUri\": null,\r\n \"dataFactoryName\": \"onesdk4110\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": null,\r\n \"createTime\": \"2015-01-13T23:46:06.4888011Z\",\r\n \"registerTime\": null,\r\n \"lastConnectTime\": null,\r\n \"expiryTime\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": \"ADF#072bfa86-1610-4a67-a6d8-8adac7d773f4@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@bb997f91-a875-490c-b4ec-961b250daa64@wu#j+aBZa7gIDYYF6CG1t2LhxgIuaGjbdhjpeXgz+cFsOo=\",\r\n \"dataFactoryName\": \"onesdk8413\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-11T21:12:35.4967223Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "315" + "358" ], "Content-Type": [ "application/json; charset=utf-8" @@ -751,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "4a4ba48d-7c2a-44d5-b113-673a1d0ec80b" + "c4f8bf75-d796-458a-886e-283383257a80" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" ], "x-ms-correlation-request-id": [ - "900fc67f-0001-405c-bebf-b27c9c869612" + "32f5dfa4-e617-4d74-b27e-418cdae83ead" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234606Z:900fc67f-0001-405c-bebf-b27c9c869612" + "CENTRALUS:20150711T211235Z:32f5dfa4-e617-4d74-b27e-418cdae83ead" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -769,7 +676,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:05 GMT" + "Sat, 11 Jul 2015 21:12:34 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -781,19 +688,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo/regeneratekey?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMC9nYXRld2F5cy9mb28vcmVnZW5lcmF0ZWtleT9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo/regeneratekey?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28vcmVnZW5lcmF0ZWtleT9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e351848b-a940-49b0-887d-7bae03f2bf6a" + "fe60a8ca-09e6-4f95-900c-185f0d191f7a" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"key\": \"ADF#91cd354c-f9b9-47b3-ace2-9e768ea5a329@4c1319f8-f1e2-4883-a743-cc617922fe35@8c0d1801-e863-44af-82e6-fb2f0c00f2ae@wu#N/CYaRX9HQlop3URhjnviF8BcIt4NPWOPKcaA2Gx0mI=\"\r\n}", + "ResponseBody": "{\r\n \"key\": \"ADF#1730fbee-600a-4ecc-ab83-6ac98d166597@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@bb997f91-a875-490c-b4ec-961b250daa64@wu#63qQWNL/XRIN/4PUzSIJhbkdWEwn/1iviCrJsVBw8yw=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "172" @@ -808,16 +715,16 @@ "no-cache" ], "x-ms-request-id": [ - "5f276d64-fbbe-41f3-8216-8775ea6a35be" + "9e3b4942-1f85-449b-8768-6cfa70976313" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1188" ], "x-ms-correlation-request-id": [ - "60a31f0f-6bd9-4a2d-929a-f352c70dcd16" + "8f1a0d75-a16c-45a9-a62d-8f72300a1506" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234608Z:60a31f0f-6bd9-4a2d-929a-f352c70dcd16" + "CENTRALUS:20150711T211238Z:8f1a0d75-a16c-45a9-a62d-8f72300a1506" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,7 +733,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:08 GMT" + "Sat, 11 Jul 2015 21:12:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -838,8 +745,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMC9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\"\r\n }\r\n}", "RequestHeaders": { @@ -850,16 +757,16 @@ "80" ], "x-ms-client-request-id": [ - "850ee715-2016-490d-8b51-69abe1260ca5" + "122cf97e-4c36-4fc5-8e07-5881350a0eb2" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": null,\r\n \"description\": \"description\",\r\n \"hostServiceUri\": null,\r\n \"dataFactoryName\": \"onesdk4110\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": null,\r\n \"createTime\": \"2015-01-13T23:46:06.4888011Z\",\r\n \"registerTime\": null,\r\n \"lastConnectTime\": null,\r\n \"expiryTime\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\",\r\n \"dataFactoryName\": \"onesdk8413\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-11T21:12:35.4967223Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "215" ], "Content-Type": [ "application/json; charset=utf-8" @@ -871,16 +778,16 @@ "no-cache" ], "x-ms-request-id": [ - "7edfbb85-be4e-4574-b8d8-8788df527a85" + "02cf8e1c-8a8a-4312-a9c8-bfa4df96d5d7" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1187" ], "x-ms-correlation-request-id": [ - "fcbeb05c-633b-4ae2-9bab-8e8c2ac04654" + "fd64275e-cb56-4aa5-8430-3493f00bc31d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234609Z:fcbeb05c-633b-4ae2-9bab-8e8c2ac04654" + "CENTRALUS:20150711T211238Z:fd64275e-cb56-4aa5-8430-3493f00bc31d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,7 +796,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:09 GMT" + "Sat, 11 Jul 2015 21:12:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -901,16 +808,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMC9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "417396da-4517-40f1-b419-bcb9a90f1730" + "c21ccc11-b0dc-4e8c-844e-a6b50f9c34c1" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -928,16 +835,76 @@ "15" ], "x-ms-request-id": [ - "a1a562a4-488e-4d67-b141-a0b9234a4ca9" + "c71397ce-ecfb-4380-a2fe-5c942aa28b79" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1186" + ], + "x-ms-correlation-request-id": [ + "be631826-a8e7-44ee-aea1-bf79e71c8a5e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150711T211239Z:be631826-a8e7-44ee-aea1-bf79e71c8a5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Jul 2015 21:12:38 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo/operationresults/Db8cf71de-2955-451a-bffd-fd19ae3e79b6?api-version=2015-07-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo/operationresults/Db8cf71de-2955-451a-bffd-fd19ae3e79b6?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28vb3BlcmF0aW9ucmVzdWx0cy9EYjhjZjcxZGUtMjk1NS00NTFhLWJmZmQtZmQxOWFlM2U3OWI2P2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-07-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "064ea090-d935-4856-ba90-3c2a8da5a128" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" ], "x-ms-correlation-request-id": [ - "aa8cf233-530a-4c20-a762-108c0b83afff" + "0f06f397-7683-4aea-a7e5-ba650a08c2bd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234611Z:aa8cf233-530a-4c20-a762-108c0b83afff" + "CENTRALUS:20150711T211239Z:0f06f397-7683-4aea-a7e5-ba650a08c2bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -946,10 +913,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:11 GMT" + "Sat, 11 Jul 2015 21:12:39 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo/operationresults/01D469ac05a-b080-4a05-991a-f9ae760430d6?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo/operationresults/Db8cf71de-2955-451a-bffd-fd19ae3e79b6?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -961,16 +928,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110/gateways/foo/operationresults/01D469ac05a-b080-4a05-991a-f9ae760430d6?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMC9nYXRld2F5cy9mb28vb3BlcmF0aW9ucmVzdWx0cy8wMUQ0NjlhYzA1YS1iMDgwLTRhMDUtOTkxYS1mOWFlNzYwNDMwZDY/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413/gateways/foo/operationresults/Db8cf71de-2955-451a-bffd-fd19ae3e79b6?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMy9nYXRld2F5cy9mb28vb3BlcmF0aW9ucmVzdWx0cy9EYjhjZjcxZGUtMjk1NS00NTFhLWJmZmQtZmQxOWFlM2U3OWI2P2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -985,16 +952,16 @@ "no-cache" ], "x-ms-request-id": [ - "fc91ec00-6210-42ba-b1fc-e9810160054c" + "b45fc585-daaa-4273-86c6-9dca4e506631" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" + "14978" ], "x-ms-correlation-request-id": [ - "361c5122-cd2f-4430-a823-00a89c3371c5" + "e15ce5c7-08da-4d6a-89eb-425f3d29fdf2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234612Z:361c5122-cd2f-4430-a823-00a89c3371c5" + "CENTRALUS:20150711T211254Z:e15ce5c7-08da-4d6a-89eb-425f3d29fdf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1003,7 +970,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:11 GMT" + "Sat, 11 Jul 2015 21:12:54 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1015,16 +982,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk404/providers/Microsoft.DataFactory/datafactories/onesdk4110?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNDExMD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk778/providers/Microsoft.DataFactory/datafactories/onesdk8413?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrODQxMz9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1205d6ad-b137-43b7-9092-510746e170a7" + "3373f9df-4c80-45d6-aeee-ef407496306f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1039,16 +1006,16 @@ "no-cache" ], "x-ms-request-id": [ - "070a9d1f-2f14-4e9f-a15f-0002adae17cc" + "db82026c-a8de-4229-bc80-6340cb7e5e2e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "1185" ], "x-ms-correlation-request-id": [ - "389da439-fa9a-4bf5-b62e-bd0b7e965d10" + "a03217d5-13ae-4855-8050-1a37c6ea5b93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234613Z:389da439-fa9a-4bf5-b62e-bd0b7e965d10" + "CENTRALUS:20150711T211255Z:a03217d5-13ae-4855-8050-1a37c6ea5b93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,7 +1024,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:46:12 GMT" + "Sat, 11 Jul 2015 21:12:54 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1071,11 +1038,11 @@ ], "Names": { "Test-DataFactoryGatewayWithDataFactoryParameter": [ - "onesdk4110", - "onesdk404" + "onesdk8413", + "onesdk778" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json index 1af875689035..a7623cd11a31 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json @@ -1,56 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" - ], - "x-ms-request-id": [ - "d31d5927-4ce0-4edb-86cd-553f759791f3" - ], - "x-ms-correlation-request-id": [ - "d31d5927-4ce0-4edb-86cd-553f759791f3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234746Z:d31d5927-4ce0-4edb-86cd-553f759791f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:47:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMwMzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -72,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "14983" ], "x-ms-request-id": [ - "07079788-8160-44d5-bdd2-5652fbb7d3ab" + "761e2e2c-11d9-4eff-ad65-f4f4f5b5e72b" ], "x-ms-correlation-request-id": [ - "07079788-8160-44d5-bdd2-5652fbb7d3ab" + "761e2e2c-11d9-4eff-ad65-f4f4f5b5e72b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234746Z:07079788-8160-44d5-bdd2-5652fbb7d3ab" + "CENTRALUS:20150711T211330Z:761e2e2c-11d9-4eff-ad65-f4f4f5b5e72b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:46 GMT" + "Sat, 11 Jul 2015 21:13:29 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMwMzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk3034\",\r\n \"name\": \"onesdk3034\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1955\",\r\n \"name\": \"onesdk1955\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1164" + "1188" ], "x-ms-request-id": [ - "8073c07a-122c-4fac-9b39-b7b8daf53ac7" + "a050bf54-d98a-4c06-88e4-bc1d803ec9b7" ], "x-ms-correlation-request-id": [ - "8073c07a-122c-4fac-9b39-b7b8daf53ac7" + "a050bf54-d98a-4c06-88e4-bc1d803ec9b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234746Z:8073c07a-122c-4fac-9b39-b7b8daf53ac7" + "CENTRALUS:20150711T211330Z:a050bf54-d98a-4c06-88e4-bc1d803ec9b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:46 GMT" + "Sat, 11 Jul 2015 21:13:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk3034/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazMwMzQvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1955/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "14982" ], "x-ms-request-id": [ - "9ccc711b-49d4-40c8-aef3-f7855c1b3031" + "3863d5c7-ada3-4d98-ba04-85211be1877c" ], "x-ms-correlation-request-id": [ - "9ccc711b-49d4-40c8-aef3-f7855c1b3031" + "3863d5c7-ada3-4d98-ba04-85211be1877c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234746Z:9ccc711b-49d4-40c8-aef3-f7855c1b3031" + "CENTRALUS:20150711T211330Z:3863d5c7-ada3-4d98-ba04-85211be1877c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:46 GMT" + "Sat, 11 Jul 2015 21:13:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:10a3f2c0-a542-47aa-a5b4-8c99df6ada66" + "centralus:274b3c9e-0288-48b3-b4f7-85c5dca4f19a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "14977" ], "x-ms-correlation-request-id": [ - "c6a634d4-e207-4915-88e2-948b021cac8e" + "805992a0-cdd8-4d42-8fa1-e86b6a9bd66c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234746Z:c6a634d4-e207-4915-88e2-948b021cac8e" + "CENTRALUS:20150711T211333Z:805992a0-cdd8-4d42-8fa1-e86b6a9bd66c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:46 GMT" + "Sat, 11 Jul 2015 21:13:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.DataFactory/datafactories/onesdk1582?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1ODI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY5MTA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk1582\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk6910\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "4a9001f6-e477-4101-bdf8-972403bee604" + "89ec7b58-e546-499f-b387-37525fd2068c" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1582\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.DataFactory/datafactories/onesdk1582\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"ef00f18c-53fc-43f1-a1e7-32e8be9ffad8\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6910\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fd16dc79-d013-4d67-9a85-236a843b25c7\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "80b6b45c-6166-4683-9f24-c9229194f126" + "692b01bc-fd90-4089-97a5-dd5722cb6ba7" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1163" + "1195" ], "x-ms-correlation-request-id": [ - "d58be748-5992-4055-a666-ce23d5cd3893" + "1b268231-a3e8-4823-9f8f-1b2d26d2c703" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234748Z:d58be748-5992-4055-a666-ce23d5cd3893" + "CENTRALUS:20150711T211334Z:1b268231-a3e8-4823-9f8f-1b2d26d2c703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:48 GMT" + "Sat, 11 Jul 2015 21:13:34 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.DataFactory/datafactories/onesdk1582?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -316,25 +271,85 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.DataFactory/datafactories/onesdk1582?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1ODI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY5MTA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6ccec24-b9c2-4c89-9c1e-c07a42d0ff66" + ], + "x-ms-version": [ + "2015-07-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk6910\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fd16dc79-d013-4d67-9a85-236a843b25c7\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "449" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8b2745ef-456d-4c02-b628-60cd31fe6a74" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "c47118b5-ab25-4452-a595-56e07a5f466e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150711T211334Z:c47118b5-ab25-4452-a595-56e07a5f466e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Jul 2015 21:13:34 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY5MTA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ce620e6-903e-496b-a517-8efdad453873" + "3dc97c22-e8c1-4100-8f22-be4e3c2e132f" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1582\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.DataFactory/datafactories/onesdk1582\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"ef00f18c-53fc-43f1-a1e7-32e8be9ffad8\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6910\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fd16dc79-d013-4d67-9a85-236a843b25c7\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -346,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "6336d437-d56d-42a0-80df-fd313636ead6" + "2b7315d5-8e76-4407-a40b-ec896222af8a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "14986" ], "x-ms-correlation-request-id": [ - "ee8b778a-3a3d-4757-bdc3-d0fb1d1960af" + "81d37a43-fc7b-459f-bd7f-061cd3aee155" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234749Z:ee8b778a-3a3d-4757-bdc3-d0fb1d1960af" + "CENTRALUS:20150711T211340Z:81d37a43-fc7b-459f-bd7f-061cd3aee155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -364,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:48 GMT" + "Sat, 11 Jul 2015 21:13:40 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -376,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.DataFactory/datafactories/onesdk1582?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1ODI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY5MTA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d1754d-2599-4703-9316-7f5b2c396d36" + "d044c61d-af80-4292-bcdf-108573de07ff" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1582\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.DataFactory/datafactories/onesdk1582\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"ef00f18c-53fc-43f1-a1e7-32e8be9ffad8\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6910\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fd16dc79-d013-4d67-9a85-236a843b25c7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -406,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "889b166a-5b54-42ae-8fda-5e37ddf240b4" + "2dc97087-3460-43a7-bbaa-e60871a4c2b1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "14985" ], "x-ms-correlation-request-id": [ - "90bc91bc-1143-4513-81e2-4789158f1463" + "4220a0d8-21c5-4d3d-9a0e-7375ec679454" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234754Z:90bc91bc-1143-4513-81e2-4789158f1463" + "CENTRALUS:20150711T211345Z:4220a0d8-21c5-4d3d-9a0e-7375ec679454" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -424,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:53 GMT" + "Sat, 11 Jul 2015 21:13:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -436,16 +451,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk3034/providers/Microsoft.DataFactory/datafactories/onesdk1582/gateways/gwname?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1ODIvZ2F0ZXdheXMvZ3duYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1955/providers/Microsoft.DataFactory/datafactories/onesdk6910/gateways/gwname?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY5MTAvZ2F0ZXdheXMvZ3duYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac83b8a9-c90d-4fe4-9c59-6afe3efada5b" + "c3458dfe-0413-411e-964e-83d9fefb4e8f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Gateway gwname does not exist.\",\r\n \"code\": \"GatewayNotFound\"\r\n}", @@ -463,16 +478,16 @@ "no-cache" ], "x-ms-request-id": [ - "7dd80620-aee5-4ee7-b40c-abaa9bbd2d4a" + "c6749557-8594-4c7d-977b-bd37d0333447" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "14984" ], "x-ms-correlation-request-id": [ - "247a18c8-ecb1-4e0d-80c8-35c5826e445a" + "6e82abdb-483d-4841-805d-3427ef39f212" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234754Z:247a18c8-ecb1-4e0d-80c8-35c5826e445a" + "CENTRALUS:20150711T211345Z:6e82abdb-483d-4841-805d-3427ef39f212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -481,7 +496,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:47:53 GMT" + "Sat, 11 Jul 2015 21:13:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -495,11 +510,11 @@ ], "Names": { "Test-GetNonExistingDataFactoryGateway": [ - "onesdk1582", - "onesdk3034" + "onesdk6910", + "onesdk1955" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json index 36949134d678..8031f083e07e 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "28196" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" + "14972" ], "x-ms-request-id": [ - "c5b3c07c-2da9-4f96-aa45-fdb344ea63cb" + "adbe80c5-b190-4497-b785-3760f4751646" ], "x-ms-correlation-request-id": [ - "c5b3c07c-2da9-4f96-aa45-fdb344ea63cb" + "adbe80c5-b190-4497-b785-3760f4751646" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234348Z:c5b3c07c-2da9-4f96-aa45-fdb344ea63cb" + "CENTRALUS:20150711T211659Z:adbe80c5-b190-4497-b785-3760f4751646" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,73 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:48 GMT" + "Sat, 11 Jul 2015 21:16:59 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" - ], - "x-ms-request-id": [ - "946fbd82-9a95-4ddc-af56-bb9e616e91b4" - ], - "x-ms-correlation-request-id": [ - "946fbd82-9a95-4ddc-af56-bb9e616e91b4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234349Z:946fbd82-9a95-4ddc-af56-bb9e616e91b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "34" ], - "Date": [ - "Tue, 13 Jan 2015 23:43:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4Nzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6201\",\r\n \"name\": \"onesdk6201\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "102" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,17 +81,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" ], "x-ms-request-id": [ - "57371431-e156-4702-b8bd-0e2b40bc91e3" + "2ea066f7-85db-4274-9c1b-6bf5fcee356e" ], "x-ms-correlation-request-id": [ - "57371431-e156-4702-b8bd-0e2b40bc91e3" + "2ea066f7-85db-4274-9c1b-6bf5fcee356e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234349Z:57371431-e156-4702-b8bd-0e2b40bc91e3" + "CENTRALUS:20150711T211700Z:2ea066f7-85db-4274-9c1b-6bf5fcee356e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +100,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:48 GMT" + "Sat, 11 Jul 2015 21:16:59 GMT" ] }, - "StatusCode": 404 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4Nzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6201/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazYyMDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk5878\",\r\n \"name\": \"onesdk5878\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -174,17 +129,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" ], "x-ms-request-id": [ - "9796c8e0-c4f7-4844-b653-2ac0c024c38f" + "028b4e96-4837-445f-8f3f-4810b841a0dd" ], "x-ms-correlation-request-id": [ - "9796c8e0-c4f7-4844-b653-2ac0c024c38f" + "028b4e96-4837-445f-8f3f-4810b841a0dd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234349Z:9796c8e0-c4f7-4844-b653-2ac0c024c38f" + "CENTRALUS:20150711T211700Z:028b4e96-4837-445f-8f3f-4810b841a0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,25 +148,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:48 GMT" + "Sat, 11 Jul 2015 21:16:59 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk5878/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazU4NzgvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "45" ], "Content-Type": [ "application/json; charset=utf-8" @@ -222,17 +177,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" + "Vary": [ + "Accept-Encoding" ], "x-ms-request-id": [ - "3181ed46-52b2-43c2-917f-7b724b4a88eb" + "centralus:20bbd445-d0e3-4909-90f5-665f89eb2182" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" ], "x-ms-correlation-request-id": [ - "3181ed46-52b2-43c2-917f-7b724b4a88eb" + "07619711-0abd-4ca9-b059-fd0d5b4f5487" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234349Z:3181ed46-52b2-43c2-917f-7b724b4a88eb" + "CENTRALUS:20150711T211700Z:07619711-0abd-4ca9-b059-fd0d5b4f5487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,25 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:48 GMT" + "Sat, 11 Jul 2015 21:16:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE5MzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk1930\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "74" + ], + "x-ms-client-request-id": [ + "01717f77-0ad1-48f3-bdfb-f708dde6cc98" + ], "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1930\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c9a9cf2c-b8c9-481a-906e-10c0c747eaf6\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "45" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,20 +237,17 @@ "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "centralus:49999376-5ca6-4438-a479-45d154f0cda3" + "37990735-2a34-4205-8128-12b6168ce3c8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" ], "x-ms-correlation-request-id": [ - "3987c9ed-c984-4112-b20f-3919a5784714" + "b8b94444-5bbd-48bf-a92a-4608c46ffd90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234349Z:3987c9ed-c984-4112-b20f-3919a5784714" + "CENTRALUS:20150711T211702Z:b8b94444-5bbd-48bf-a92a-4608c46ffd90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +256,40 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:49 GMT" + "Sat, 11 Jul 2015 21:17:02 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930?api-version=2015-07-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEwMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk1034\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE5MzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "69" - ], "x-ms-client-request-id": [ - "2e181f69-c08d-42eb-8626-4aadb9192991" + "e80aaee7-3465-4d38-ba54-c318c314d88a" + ], + "x-ms-version": [ + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1034\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"82202042-46fa-4215-b2f3-11a35701954a\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1930\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c9a9cf2c-b8c9-481a-906e-10c0c747eaf6\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "405f7c60-0e68-4dee-bee0-53c5ddbfc78a" + "60409948-1e9e-45f8-bee3-81cd72812ad8" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1144" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" ], "x-ms-correlation-request-id": [ - "a89886d5-0388-4f4e-b330-a622cc9c1ee8" + "b86e5ed5-7839-4f8a-9c9b-d967b577a8cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234350Z:a89886d5-0388-4f4e-b330-a622cc9c1ee8" + "CENTRALUS:20150711T211702Z:b86e5ed5-7839-4f8a-9c9b-d967b577a8cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:50 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034?api-version=2015-01-01-preview" + "Sat, 11 Jul 2015 21:17:02 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -361,28 +328,28 @@ "ASP.NET" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEwMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE5MzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3e65515-7e05-4ee0-9364-fa09ee798768" + "33ad23c9-7a57-43ab-b43b-595ca199674b" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1034\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"82202042-46fa-4215-b2f3-11a35701954a\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1930\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c9a9cf2c-b8c9-481a-906e-10c0c747eaf6\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "282e5306-7ed7-4f62-a2b4-0321ef1be0bb" + "2a775028-dc05-402d-8026-def60cf53466" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "14978" ], "x-ms-correlation-request-id": [ - "e04526f3-3c54-434b-8965-fb8611bd05f1" + "f2b69426-369d-4f4a-af69-1052acaaf28a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234350Z:e04526f3-3c54-434b-8965-fb8611bd05f1" + "CENTRALUS:20150711T211707Z:f2b69426-369d-4f4a-af69-1052acaaf28a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:50 GMT" + "Sat, 11 Jul 2015 21:17:06 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEwMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE5MzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2330f72-63fc-4b56-8588-24319a835e39" + "d5abab2f-efdb-467f-971e-38f346efe355" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1034\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"82202042-46fa-4215-b2f3-11a35701954a\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1930\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c9a9cf2c-b8c9-481a-906e-10c0c747eaf6\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "5f76f246-39a9-450c-a8d1-e0c8c3670920" + "a89fc793-6c9c-42ee-b0fd-1a8ccd623ac7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" + "14977" ], "x-ms-correlation-request-id": [ - "f08b5355-cb97-4200-a174-a94ff9e1f45a" + "d4f03854-22f4-4184-ab33-e2aadc09aa3b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234356Z:f08b5355-cb97-4200-a174-a94ff9e1f45a" + "CENTRALUS:20150711T211712Z:d4f03854-22f4-4184-ab33-e2aadc09aa3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:55 GMT" + "Sat, 11 Jul 2015 21:17:12 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,22 +451,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEwMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE5MzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8de0e41b-a8c8-4b13-9a6f-e20c94a231e1" + "76d466ec-fe38-4e2f-ac15-54ee045579e3" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1034\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"82202042-46fa-4215-b2f3-11a35701954a\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1930\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c9a9cf2c-b8c9-481a-906e-10c0c747eaf6\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -511,16 +478,16 @@ "no-cache" ], "x-ms-request-id": [ - "a32fb08f-4fca-460c-bccb-65804e034d12" + "0d03c966-1044-41a9-a0f7-1587c932188b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "14976" ], "x-ms-correlation-request-id": [ - "bb3c3ecf-b075-4287-ac8f-ba1fb06e539c" + "be2591c1-b85f-4243-afd9-e64b717d78ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234356Z:bb3c3ecf-b075-4287-ac8f-ba1fb06e539c" + "CENTRALUS:20150711T211712Z:be2591c1-b85f-4243-afd9-e64b717d78ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -529,7 +496,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:55 GMT" + "Sat, 11 Jul 2015 21:17:12 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -541,16 +508,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk5878/providers/Microsoft.DataFactory/datafactories/onesdk1034?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEwMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6201/providers/Microsoft.DataFactory/datafactories/onesdk1930?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE5MzA/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aef4a21d-9ff0-4f99-8bd4-096e1a927dd6" + "82b78206-0f9f-43bf-8a4b-bb6cd12248f6" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -565,16 +532,16 @@ "no-cache" ], "x-ms-request-id": [ - "d90a11b5-25b9-495d-a3bc-21a13fdb4afe" + "1c55b5aa-2753-43a3-93ee-ec582a1a6e6d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1143" + "1185" ], "x-ms-correlation-request-id": [ - "79a01871-930d-44d1-8807-5f48d648de86" + "1f59029a-82f2-494a-8b7d-e325ab616dea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234357Z:79a01871-930d-44d1-8807-5f48d648de86" + "CENTRALUS:20150711T211713Z:1f59029a-82f2-494a-8b7d-e325ab616dea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583,7 +550,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:56 GMT" + "Sat, 11 Jul 2015 21:17:13 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -597,11 +564,11 @@ ], "Names": { "Test-CreateDataFactory": [ - "onesdk1034", - "onesdk5878" + "onesdk1930", + "onesdk6201" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json index 6c72c815ecf4..9cdeff15f847 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" - ], - "x-ms-request-id": [ - "7d658b8f-a3a4-4c42-af2b-607b828dc916" - ], - "x-ms-correlation-request-id": [ - "7d658b8f-a3a4-4c42-af2b-607b828dc916" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234142Z:7d658b8f-a3a4-4c42-af2b-607b828dc916" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:41:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" - ], - "x-ms-request-id": [ - "d64f8c22-d1f4-4848-ad3f-445d5467a4ce" - ], - "x-ms-correlation-request-id": [ - "d64f8c22-d1f4-4848-ad3f-445d5467a4ce" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234142Z:d64f8c22-d1f4-4848-ad3f-445d5467a4ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:41:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14970" ], "x-ms-request-id": [ - "621bb280-0a42-4e71-9be5-cb1a261910c3" + "4eb3867c-0142-42a8-995d-dda227d26f3f" ], "x-ms-correlation-request-id": [ - "621bb280-0a42-4e71-9be5-cb1a261910c3" + "4eb3867c-0142-42a8-995d-dda227d26f3f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234142Z:621bb280-0a42-4e71-9be5-cb1a261910c3" + "CENTRALUS:20150711T211747Z:4eb3867c-0142-42a8-995d-dda227d26f3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:41 GMT" + "Sat, 11 Jul 2015 21:17:47 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk6701\",\r\n \"name\": \"onesdk6701\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5688\",\r\n \"name\": \"onesdk5688\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1181" ], "x-ms-request-id": [ - "41beddd4-5c78-43cf-9544-aefddb732c40" + "94d6464f-9ef3-457a-b012-a87d6bd13152" ], "x-ms-correlation-request-id": [ - "41beddd4-5c78-43cf-9544-aefddb732c40" + "94d6464f-9ef3-457a-b012-a87d6bd13152" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234142Z:41beddd4-5c78-43cf-9544-aefddb732c40" + "CENTRALUS:20150711T211748Z:94d6464f-9ef3-457a-b012-a87d6bd13152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:41 GMT" + "Sat, 11 Jul 2015 21:17:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk6701/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazY3MDEvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5688/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazU2ODgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "14969" ], "x-ms-request-id": [ - "445689f5-c491-45b1-ac55-95fc5a61d34b" + "b3d4ecef-b9b6-4ea7-a70c-5abd5264a743" ], "x-ms-correlation-request-id": [ - "445689f5-c491-45b1-ac55-95fc5a61d34b" + "b3d4ecef-b9b6-4ea7-a70c-5abd5264a743" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234142Z:445689f5-c491-45b1-ac55-95fc5a61d34b" + "CENTRALUS:20150711T211748Z:b3d4ecef-b9b6-4ea7-a70c-5abd5264a743" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:41 GMT" + "Sat, 11 Jul 2015 21:17:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:832abdcd-7553-4272-a426-fda783622b60" + "centralus:390e9b8e-face-40ee-9217-8569d42b4b29" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" + "14975" ], "x-ms-correlation-request-id": [ - "b18452f3-a72e-4491-8875-7195b8b6d7eb" + "5414ab19-ba40-4154-b660-970e9e42e80f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234142Z:b18452f3-a72e-4491-8875-7195b8b6d7eb" + "CENTRALUS:20150711T211748Z:5414ab19-ba40-4154-b660-970e9e42e80f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:41 GMT" + "Sat, 11 Jul 2015 21:17:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIyMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY3MzQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk2234\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk6734\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "47e3bdc9-7e98-41c0-866c-29f195ecfd25" + "61fb44ed-dbce-4fce-9604-c452c1cc7e0d" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2234\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"703c30a1-197f-4c95-af78-ce3bc2bd22ed\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6734\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"f5480008-8428-40e6-b1b6-7e1892494661\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "f3a71ed7-cc37-4b4e-87b3-86374509cdd6" + "aed9f78d-324a-4837-86de-01ac9f69fb16" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1182" ], "x-ms-correlation-request-id": [ - "0ee1b339-3295-485f-a530-e19d387cbf68" + "d68082f5-08da-4797-ac8f-346a17d9bd8d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234144Z:0ee1b339-3295-485f-a530-e19d387cbf68" + "CENTRALUS:20150711T211749Z:d68082f5-08da-4797-ac8f-346a17d9bd8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:43 GMT" + "Sat, 11 Jul 2015 21:17:49 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIyMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY3MzQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e95ba1ca-63f7-4207-9f92-a71a9ef9ecbc" + "4db2bce1-f683-4a83-8e41-1dbb2a8a7844" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2234\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"703c30a1-197f-4c95-af78-ce3bc2bd22ed\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6734\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"f5480008-8428-40e6-b1b6-7e1892494661\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "1c056346-5d2c-4e2d-9f32-7e048f14040e" + "5b3ec005-3523-4021-b62f-f5877e1eadfa" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "14972" ], "x-ms-correlation-request-id": [ - "b5d511d2-7338-488b-81ee-e0c0ad7ffc09" + "2e94f7c8-2d61-4bb7-8dad-d940a2dd3e74" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234144Z:b5d511d2-7338-488b-81ee-e0c0ad7ffc09" + "CENTRALUS:20150711T211750Z:2e94f7c8-2d61-4bb7-8dad-d940a2dd3e74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:43 GMT" + "Sat, 11 Jul 2015 21:17:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIyMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY3MzQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1ba4877-0adf-455e-9ee2-5973b77b46f7" + "64cf8015-1108-4034-a4f3-ffc0895fb6a7" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2234\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"703c30a1-197f-4c95-af78-ce3bc2bd22ed\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6734\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"f5480008-8428-40e6-b1b6-7e1892494661\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "76b65b5f-e71a-440a-964a-88ea77743ea2" + "07025b7e-ecf6-491a-86a8-c9b2424b6a85" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "14971" ], "x-ms-correlation-request-id": [ - "5d02f01e-5ee4-4f7a-831e-e45134093772" + "37b0316e-9c48-4792-bb56-ac078cf49005" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234149Z:5d02f01e-5ee4-4f7a-831e-e45134093772" + "CENTRALUS:20150711T211755Z:37b0316e-9c48-4792-bb56-ac078cf49005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:49 GMT" + "Sat, 11 Jul 2015 21:17:55 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,22 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY3MzQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd503998-a22b-44bf-a338-7ea75fabb37f" + "e5633eff-3477-4c0a-ae65-0ec23215b0ae" + ], + "x-ms-version": [ + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk2234\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"703c30a1-197f-4c95-af78-ce3bc2bd22ed\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6734\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"f5480008-8428-40e6-b1b6-7e1892494661\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "553" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -511,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "27a1d378-da74-465a-aadc-869181faeb0e" + "28bf4390-c0a9-43f3-8726-284642c32a9e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "14970" ], "x-ms-correlation-request-id": [ - "54833d37-a7c6-4029-aa1b-4c19504591cd" + "44fc4e4d-d968-4129-90c5-1f14ead44896" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234149Z:54833d37-a7c6-4029-aa1b-4c19504591cd" + "CENTRALUS:20150711T211800Z:44fc4e4d-d968-4129-90c5-1f14ead44896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -529,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:49 GMT" + "Sat, 11 Jul 2015 21:18:00 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -541,22 +451,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIyMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY3MzQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15c588fb-01bf-49a9-a87d-f17d4a42e733" + "88a8c82d-5ce8-48d8-b8fc-bcdd658d697f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataFactory/dataFactories/onesdk6734' under resource group 'onesdk5688' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "160" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -564,17 +477,68 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-request-id": [ - "67377d48-46a9-449d-ab3f-2dc58816a96a" + "51e802c8-6712-4818-8512-0b4a5ee9f820" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "x-ms-correlation-request-id": [ + "51e802c8-6712-4818-8512-0b4a5ee9f820" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150711T211801Z:51e802c8-6712-4818-8512-0b4a5ee9f820" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Jul 2015 21:18:01 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b608aaf-a67e-439e-be1c-dbf8de8444d2" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk6734\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"f5480008-8428-40e6-b1b6-7e1892494661\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "520" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6091d728-19f8-4e1e-a39d-adbaa8d5f390" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" ], "x-ms-correlation-request-id": [ - "29e7803d-c187-4d8b-9f2e-ac9375154255" + "ccf81170-374d-4a6f-bb1b-a0bf025bef7c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234150Z:29e7803d-c187-4d8b-9f2e-ac9375154255" + "CENTRALUS:20150711T211800Z:ccf81170-374d-4a6f-bb1b-a0bf025bef7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583,7 +547,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:49 GMT" + "Sat, 11 Jul 2015 21:18:00 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -595,25 +559,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6701/providers/Microsoft.DataFactory/datafactories/onesdk2234?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIyMzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5688/providers/Microsoft.DataFactory/datafactories/onesdk6734?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY3MzQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04b29021-ebdc-4ef7-892b-7e6240953615" + "93b2e304-e7a7-47f9-a0f1-ff8d0eae3a90" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "69" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -622,13 +583,16 @@ "no-cache" ], "x-ms-request-id": [ - "f789e727-7ce7-4802-bbd6-497a42abb9d8" + "84d35a30-1277-4be5-a414-34dc2a9ca173" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" ], "x-ms-correlation-request-id": [ - "f789e727-7ce7-4802-bbd6-497a42abb9d8" + "aacc1c30-23a3-445e-a515-444053c7d26e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234150Z:f789e727-7ce7-4802-bbd6-497a42abb9d8" + "CENTRALUS:20150711T211801Z:aacc1c30-23a3-445e-a515-444053c7d26e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -637,19 +601,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:41:49 GMT" + "Sat, 11 Jul 2015 21:18:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" ] }, - "StatusCode": 404 + "StatusCode": 200 } ], "Names": { "Test-DataFactoryPiping": [ - "onesdk2234", - "onesdk6701" + "onesdk6734", + "onesdk5688" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json index 508d28367a17..a60783adc3c9 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "28196" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "14974" ], "x-ms-request-id": [ - "30475883-5e5a-45b1-b912-ce4958827148" + "e1f01986-76dc-446c-ad16-1f6ddcf76816" ], "x-ms-correlation-request-id": [ - "30475883-5e5a-45b1-b912-ce4958827148" + "e1f01986-76dc-446c-ad16-1f6ddcf76816" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234303Z:30475883-5e5a-45b1-b912-ce4958827148" + "CENTRALUS:20150711T211837Z:e1f01986-76dc-446c-ad16-1f6ddcf76816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,73 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:03 GMT" + "Sat, 11 Jul 2015 21:18:37 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" - ], - "x-ms-request-id": [ - "7c2e048f-d8ce-4c01-a4b7-137153b70333" - ], - "x-ms-correlation-request-id": [ - "7c2e048f-d8ce-4c01-a4b7-137153b70333" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234304Z:7c2e048f-d8ce-4c01-a4b7-137153b70333" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "34" ], - "Date": [ - "Tue, 13 Jan 2015 23:43:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1294\",\r\n \"name\": \"onesdk1294\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "102" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,17 +81,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" ], "x-ms-request-id": [ - "153225da-b956-4fd5-8990-7113c4c21816" + "b154500f-9f90-4c38-8baa-125e0f56370d" ], "x-ms-correlation-request-id": [ - "153225da-b956-4fd5-8990-7113c4c21816" + "b154500f-9f90-4c38-8baa-125e0f56370d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234304Z:153225da-b956-4fd5-8990-7113c4c21816" + "CENTRALUS:20150711T211837Z:b154500f-9f90-4c38-8baa-125e0f56370d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +100,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:03 GMT" + "Sat, 11 Jul 2015 21:18:37 GMT" ] }, - "StatusCode": 404 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1294/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazEyOTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk2816\",\r\n \"name\": \"onesdk2816\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -174,17 +129,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" ], "x-ms-request-id": [ - "8ed35be2-9f3b-4abd-a94a-1d154b8b1aa9" + "1bce5896-a470-4ade-8e7a-8a602dc9d4f4" ], "x-ms-correlation-request-id": [ - "8ed35be2-9f3b-4abd-a94a-1d154b8b1aa9" + "1bce5896-a470-4ade-8e7a-8a602dc9d4f4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234304Z:8ed35be2-9f3b-4abd-a94a-1d154b8b1aa9" + "CENTRALUS:20150711T211837Z:1bce5896-a470-4ade-8e7a-8a602dc9d4f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,25 +148,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:04 GMT" + "Sat, 11 Jul 2015 21:18:37 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk2816/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazI4MTYvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "45" ], "Content-Type": [ "application/json; charset=utf-8" @@ -222,17 +177,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" + "Vary": [ + "Accept-Encoding" ], "x-ms-request-id": [ - "e658ce81-409e-40ab-b4a8-2b2a35de13df" + "centralus:637fbd89-1583-443c-925e-e03e5a72077e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" ], "x-ms-correlation-request-id": [ - "e658ce81-409e-40ab-b4a8-2b2a35de13df" + "72b409cd-4948-43f3-923a-bd53b4e85696" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234304Z:e658ce81-409e-40ab-b4a8-2b2a35de13df" + "CENTRALUS:20150711T211838Z:72b409cd-4948-43f3-923a-bd53b4e85696" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,25 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:04 GMT" + "Sat, 11 Jul 2015 21:18:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUxNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk5176\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "74" + ], + "x-ms-client-request-id": [ + "c84fa043-1a14-47c5-98fa-17b44f76e8a2" + ], "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5176\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"bebb7241-b339-41fc-9755-b250a57d3d0d\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "45" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,20 +237,17 @@ "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "centralus:6122500d-67fe-4bfb-b6f3-2c681fcb292b" + "bebe684c-97d7-4de2-a659-bd002476bba6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-correlation-request-id": [ - "955471be-f3d4-4bbf-89f2-271ae6c42379" + "d2c4477f-2b4c-4f1c-9b92-b4835b44393a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234304Z:955471be-f3d4-4bbf-89f2-271ae6c42379" + "CENTRALUS:20150711T211839Z:d2c4477f-2b4c-4f1c-9b92-b4835b44393a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +256,40 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:04 GMT" + "Sat, 11 Jul 2015 21:18:38 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176?api-version=2015-07-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.DataFactory/datafactories/onesdk8952?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg5NTI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk8952\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUxNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "69" - ], "x-ms-client-request-id": [ - "fb90edfd-59ef-4540-92b0-d576a5752b7e" + "aa972da0-a6b2-487c-a940-fdd5628354af" + ], + "x-ms-version": [ + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8952\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.DataFactory/datafactories/onesdk8952\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e8d80bbf-d919-41a5-b406-394babb2cbc6\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5176\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"bebb7241-b339-41fc-9755-b250a57d3d0d\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "a0c1b88f-0bc8-4846-b75a-54488448b9c6" + "700c4d7e-955d-4e3c-87a2-79560f6d24a7" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1164" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" ], "x-ms-correlation-request-id": [ - "add8896c-7164-4eca-acbc-64e3b86ac101" + "89c7138c-de6c-4b64-becf-88fc0ffbb441" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234306Z:add8896c-7164-4eca-acbc-64e3b86ac101" + "CENTRALUS:20150711T211839Z:89c7138c-de6c-4b64-becf-88fc0ffbb441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:05 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.DataFactory/datafactories/onesdk8952?api-version=2015-01-01-preview" + "Sat, 11 Jul 2015 21:18:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -361,28 +328,28 @@ "ASP.NET" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.DataFactory/datafactories/onesdk8952?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg5NTI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUxNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d7de940-0dd1-4323-bf8c-3b784c188349" + "577d62bd-1d1f-41e5-8012-504498beccf8" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8952\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.DataFactory/datafactories/onesdk8952\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e8d80bbf-d919-41a5-b406-394babb2cbc6\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5176\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"bebb7241-b339-41fc-9755-b250a57d3d0d\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "bfded651-b9ee-4d95-98a0-0857c92ff1ea" + "22f1e1b5-a236-4b14-9186-f22078160dd2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" + "14971" ], "x-ms-correlation-request-id": [ - "20d0b5ee-fb29-45c0-a8a9-7eaeb42e1081" + "ac8c0569-1782-4081-84f2-1ae748453690" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234306Z:20d0b5ee-fb29-45c0-a8a9-7eaeb42e1081" + "CENTRALUS:20150711T211844Z:ac8c0569-1782-4081-84f2-1ae748453690" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:05 GMT" + "Sat, 11 Jul 2015 21:18:44 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.DataFactory/datafactories/onesdk8952?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg5NTI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUxNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "104b2f07-1a47-4d0b-b93b-9a5cc13ad270" + "c79ff38d-70c8-4cd1-9fc3-0a8538138638" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8952\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.DataFactory/datafactories/onesdk8952\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e8d80bbf-d919-41a5-b406-394babb2cbc6\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5176\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"bebb7241-b339-41fc-9755-b250a57d3d0d\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "b6accab8-bb3b-4e23-8f65-77dfe7ceee57" + "80b35002-915c-4ff2-8d73-028bf230df33" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31954" + "14970" ], "x-ms-correlation-request-id": [ - "14646b18-3453-448a-ba48-097906dce455" + "12f3497e-cc57-4ae0-a6fa-3edb4974b890" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234311Z:14646b18-3453-448a-ba48-097906dce455" + "CENTRALUS:20150711T211850Z:12f3497e-cc57-4ae0-a6fa-3edb4974b890" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:11 GMT" + "Sat, 11 Jul 2015 21:18:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,16 +451,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk2816/providers/Microsoft.DataFactory/datafactories/onesdk8952?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg5NTI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1294/providers/Microsoft.DataFactory/datafactories/onesdk5176?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUxNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6f668be-bff9-4d27-8b72-00e86e6066a0" + "0eda80ef-d2f8-4d6f-abad-719ec6119b9b" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -508,16 +475,16 @@ "no-cache" ], "x-ms-request-id": [ - "f826b0a0-0565-4c4e-9609-985ddc9c609d" + "7ca8a921-4c79-4241-a24a-548930881784" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1163" + "1187" ], "x-ms-correlation-request-id": [ - "8c28cf7e-6ed3-4df2-a502-b569a845dd33" + "f97862a4-0d96-4af5-a9bd-d8b2b95188b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234312Z:8c28cf7e-6ed3-4df2-a502-b569a845dd33" + "CENTRALUS:20150711T211850Z:f97862a4-0d96-4af5-a9bd-d8b2b95188b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -526,7 +493,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:43:12 GMT" + "Sat, 11 Jul 2015 21:18:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -540,11 +507,11 @@ ], "Names": { "Test-DeleteDataFactoryWithDataFactoryParameter": [ - "onesdk8952", - "onesdk2816" + "onesdk5176", + "onesdk1294" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestGetNonExistingDataFactory.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestGetNonExistingDataFactory.json index 3cdc399aac2a..9a934c4fc3f2 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestGetNonExistingDataFactory.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestGetNonExistingDataFactory.json @@ -1,56 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" - ], - "x-ms-request-id": [ - "4a757123-098c-4c48-907e-537a14a2acc5" - ], - "x-ms-correlation-request-id": [ - "4a757123-098c-4c48-907e-537a14a2acc5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234513Z:4a757123-098c-4c48-907e-537a14a2acc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:45:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6914?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk796?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -61,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "14969" ], "x-ms-request-id": [ - "0b510ccf-2a8e-4f37-8290-85ca4c8596d5" + "d3cacc54-338b-410b-82ae-97dfcf69c5c1" ], "x-ms-correlation-request-id": [ - "0b510ccf-2a8e-4f37-8290-85ca4c8596d5" + "d3cacc54-338b-410b-82ae-97dfcf69c5c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234513Z:0b510ccf-2a8e-4f37-8290-85ca4c8596d5" + "CENTRALUS:20150711T211926Z:d3cacc54-338b-410b-82ae-97dfcf69c5c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:13 GMT" + "Sat, 11 Jul 2015 21:19:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6914?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk796?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk6914\",\r\n \"name\": \"onesdk6914\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk796\",\r\n \"name\": \"onesdk796\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "176" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1186" ], "x-ms-request-id": [ - "5096e703-572a-4ff4-9a6d-7a4cad3f7400" + "47a86f33-3362-43d9-b303-4a6aa455f2a2" ], "x-ms-correlation-request-id": [ - "5096e703-572a-4ff4-9a6d-7a4cad3f7400" + "47a86f33-3362-43d9-b303-4a6aa455f2a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234514Z:5096e703-572a-4ff4-9a6d-7a4cad3f7400" + "CENTRALUS:20150711T211926Z:47a86f33-3362-43d9-b303-4a6aa455f2a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:13 GMT" + "Sat, 11 Jul 2015 21:19:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk6914/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazY5MTQvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk796/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazc5Ni9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" + "14968" ], "x-ms-request-id": [ - "b939138f-9555-4464-ba91-8261fd2dad73" + "956838ef-8f10-480c-83b6-08de18ee65bb" ], "x-ms-correlation-request-id": [ - "b939138f-9555-4464-ba91-8261fd2dad73" + "956838ef-8f10-480c-83b6-08de18ee65bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234514Z:b939138f-9555-4464-ba91-8261fd2dad73" + "CENTRALUS:20150711T211927Z:956838ef-8f10-480c-83b6-08de18ee65bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:13 GMT" + "Sat, 11 Jul 2015 21:19:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6914/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk796/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:973a2633-9168-4475-899c-de39f6f6ac05" + "centralus:0ec063a1-b162-4de9-83e2-fec62ee0171d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" + "14934" ], "x-ms-correlation-request-id": [ - "fa6cecbd-70ea-47dc-8f27-63f83d1ccb95" + "e8dfd04e-3181-490c-a0cd-ddc141903e6d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234514Z:fa6cecbd-70ea-47dc-8f27-63f83d1ccb95" + "CENTRALUS:20150711T211927Z:e8dfd04e-3181-490c-a0cd-ddc141903e6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,28 +199,28 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:14 GMT" + "Sat, 11 Jul 2015 21:19:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk6914/providers/Microsoft.DataFactory/datafactories/onesdk9260?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkyNjA/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk796/providers/Microsoft.DataFactory/datafactories/onesdk3755?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzc1NT9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27c93587-ded1-4a70-823f-b0f81c02c364" + "2795717c-d2e7-4504-ad79-a45bda44af97" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataFactory/dataFactories/onesdk3755' under resource group 'onesdk796' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "159" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,14 +231,17 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-request-id": [ - "d1f16750-44af-4864-995a-1bf53ea04a91" + "6d258907-4071-4533-8f94-f66a3799c880" ], "x-ms-correlation-request-id": [ - "d1f16750-44af-4864-995a-1bf53ea04a91" + "6d258907-4071-4533-8f94-f66a3799c880" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234514Z:d1f16750-44af-4864-995a-1bf53ea04a91" + "CENTRALUS:20150711T211929Z:6d258907-4071-4533-8f94-f66a3799c880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,7 +250,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:45:14 GMT" + "Sat, 11 Jul 2015 21:19:28 GMT" ] }, "StatusCode": 404 @@ -300,11 +258,11 @@ ], "Names": { "Test-GetNonExistingDataFactory": [ - "onesdk9260", - "onesdk6914" + "onesdk3755", + "onesdk796" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHub.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHub.json index 9d65fb065853..fb1e0e8ee3fe 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHub.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHub.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" - ], - "x-ms-request-id": [ - "25f80eed-90a6-4cc9-b954-04da6423f05d" - ], - "x-ms-correlation-request-id": [ - "25f80eed-90a6-4cc9-b954-04da6423f05d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235013Z:25f80eed-90a6-4cc9-b954-04da6423f05d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:50:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" - ], - "x-ms-request-id": [ - "75aa072e-b5db-4573-964f-a55e06aa9d78" - ], - "x-ms-correlation-request-id": [ - "75aa072e-b5db-4573-964f-a55e06aa9d78" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235014Z:75aa072e-b5db-4573-964f-a55e06aa9d78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:50:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5Mjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "14981" ], "x-ms-request-id": [ - "4aed53d7-6065-4493-978a-78e79bc7c137" + "bd432a21-8fbb-4efc-9045-9b95a835a169" ], "x-ms-correlation-request-id": [ - "4aed53d7-6065-4493-978a-78e79bc7c137" + "bd432a21-8fbb-4efc-9045-9b95a835a169" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235014Z:4aed53d7-6065-4493-978a-78e79bc7c137" + "CENTRALUS:20150711T211005Z:bd432a21-8fbb-4efc-9045-9b95a835a169" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:13 GMT" + "Sat, 11 Jul 2015 21:10:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5Mjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk7543\",\r\n \"name\": \"onesdk7543\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk7928\",\r\n \"name\": \"onesdk7928\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1189" ], "x-ms-request-id": [ - "e92fa625-6c63-4b27-b1cb-1292b47f38cb" + "322388df-1e9a-4f92-907f-39efc5ddfaf0" ], "x-ms-correlation-request-id": [ - "e92fa625-6c63-4b27-b1cb-1292b47f38cb" + "322388df-1e9a-4f92-907f-39efc5ddfaf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235014Z:e92fa625-6c63-4b27-b1cb-1292b47f38cb" + "CENTRALUS:20150711T211005Z:322388df-1e9a-4f92-907f-39efc5ddfaf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:13 GMT" + "Sat, 11 Jul 2015 21:10:05 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk7543/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazc1NDMvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk7928/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazc5MjgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "14980" ], "x-ms-request-id": [ - "f3f701d4-49c7-478e-b012-62e6e030b258" + "1e489155-5892-46dd-9192-644939911201" ], "x-ms-correlation-request-id": [ - "f3f701d4-49c7-478e-b012-62e6e030b258" + "1e489155-5892-46dd-9192-644939911201" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235014Z:f3f701d4-49c7-478e-b012-62e6e030b258" + "CENTRALUS:20150711T211006Z:1e489155-5892-46dd-9192-644939911201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:13 GMT" + "Sat, 11 Jul 2015 21:10:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:e98732fc-d65a-4036-99a9-411d29d84a02" + "centralus:45024c20-9201-4443-ab20-502daf9d52a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "14988" ], "x-ms-correlation-request-id": [ - "c278cdbe-c3ff-48b5-a58a-50154eb87c7b" + "8dd43008-7c34-466e-b3a7-fbaa224adf65" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235014Z:c278cdbe-c3ff-48b5-a58a-50154eb87c7b" + "CENTRALUS:20150711T211006Z:8dd43008-7c34-466e-b3a7-fbaa224adf65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:14 GMT" + "Sat, 11 Jul 2015 21:10:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjU/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDk/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk3865\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk7609\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "3944e617-f0ba-4f72-835d-41ce150caed9" + "8a94e6fe-4c9f-4a51-93e1-c414c288b758" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3865\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b9b192a2-3271-4980-9e2c-e51e43637a40\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7609\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"93214385-8a3b-47c8-8d89-735616531799\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "139edea0-090b-42e2-a44f-c65ed8870140" + "d5295cce-0b3c-45a5-8d43-ebff91d5c8f4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1193" ], "x-ms-correlation-request-id": [ - "deafe5c1-3041-4834-8057-20058328aa39" + "55a27017-008c-4bdf-a1c5-60093780ec66" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235016Z:deafe5c1-3041-4834-8057-20058328aa39" + "CENTRALUS:20150711T211007Z:55a27017-008c-4bdf-a1c5-60093780ec66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:15 GMT" + "Sat, 11 Jul 2015 21:10:07 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjU/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDk/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8d703a2-806b-4ee2-ae4e-18da34d92943" + "acf8be12-b1b2-4e73-b133-bc256397fb39" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3865\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b9b192a2-3271-4980-9e2c-e51e43637a40\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7609\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"93214385-8a3b-47c8-8d89-735616531799\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "ae58caf3-9eb4-4a68-bc82-d7e42fb56af3" + "a7de9244-b42f-4451-b807-9e728a401030" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31918" + "14988" ], "x-ms-correlation-request-id": [ - "0d148371-a38e-4b03-b1c6-460d568d3f57" + "abf93069-ca66-449a-b13c-a406cecde164" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235016Z:0d148371-a38e-4b03-b1c6-460d568d3f57" + "CENTRALUS:20150711T211007Z:abf93069-ca66-449a-b13c-a406cecde164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:15 GMT" + "Sat, 11 Jul 2015 21:10:07 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjU/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDk/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c3e2784-0602-4045-b437-1fe01e05170e" + "8c31f8c7-229e-424d-914c-23cae15776a2" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3865\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b9b192a2-3271-4980-9e2c-e51e43637a40\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7609\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"93214385-8a3b-47c8-8d89-735616531799\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "3b55b3af-2a92-4526-80ca-923364775d4c" + "9f0b313e-adfb-4172-84eb-0f2f88bb76e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31917" + "14987" ], "x-ms-correlation-request-id": [ - "514ce7f6-3b61-4d2e-a4f5-3082b894def5" + "b95caa59-1e45-4198-8aea-5f5102eed72a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235021Z:514ce7f6-3b61-4d2e-a4f5-3082b894def5" + "CENTRALUS:20150711T211012Z:b95caa59-1e45-4198-8aea-5f5102eed72a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:20 GMT" + "Sat, 11 Jul 2015 21:10:12 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjU/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDk/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a891e727-0372-413c-b967-4eff0c35f9fe" + "88a2b9f5-1a4b-428f-b527-9c0c543d8594" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3865\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b9b192a2-3271-4980-9e2c-e51e43637a40\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7609\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"93214385-8a3b-47c8-8d89-735616531799\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "20b8f3eb-f107-43ed-8df1-3149ba178b2f" + "aa2fd16d-7b16-4a6a-af9b-5b25aac368fe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31916" + "14986" ], "x-ms-correlation-request-id": [ - "6ddb5c1b-9676-43d5-9851-0b7f99e58829" + "d2eb6cdb-e1ec-4369-bb55-d65cd05a4a19" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235026Z:6ddb5c1b-9676-43d5-9851-0b7f99e58829" + "CENTRALUS:20150711T211017Z:d2eb6cdb-e1ec-4369-bb55-d65cd05a4a19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:26 GMT" + "Sat, 11 Jul 2015 21:10:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,8 +451,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjUvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDkvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"00000000-0000-0000-0000-000000000001\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -556,13 +463,13 @@ "233" ], "x-ms-client-request-id": [ - "e66ae90c-107f-4f8a-ad65-17310de5dfa5" + "72e42d61-5f0a-4159-b3cc-068cf4793717" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"1fe8d0bc-1f09-474d-a319-74565aac475f\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"5d4d1d93-4908-450d-ad38-811956963780\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -577,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "b0d8afea-9224-4bc3-9e09-22a91232f11e" + "54c6ce1a-27be-4ec3-b2b0-c2daeb98590d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1192" ], "x-ms-correlation-request-id": [ - "5c84a996-a8f2-4841-9849-1fc5b42e4236" + "8ed3c63a-82b6-44b5-9cd8-49e06e3e5cc6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235027Z:5c84a996-a8f2-4841-9849-1fc5b42e4236" + "CENTRALUS:20150711T211018Z:8ed3c63a-82b6-44b5-9cd8-49e06e3e5cc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,10 +502,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:26 GMT" + "Sat, 11 Jul 2015 21:10:18 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865/hubs/SampleHub?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609/hubs/SampleHub?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -610,19 +517,19 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjUvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDkvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dc169a6-f1ef-422b-a6f0-30844faf3902" + "ecf617c9-7bce-4943-9ba9-e9fa56602ebd" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"1fe8d0bc-1f09-474d-a319-74565aac475f\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"5d4d1d93-4908-450d-ad38-811956963780\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -637,16 +544,16 @@ "no-cache" ], "x-ms-request-id": [ - "73438a8f-bb3e-41b6-8a07-a68f04dff82b" + "7e24cc7a-7dd4-4021-ab8e-9a2f57a05804" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31915" + "14985" ], "x-ms-correlation-request-id": [ - "241c717f-78b4-45cb-ba56-11a3b89b4136" + "1ea99d3d-c5c6-4ce4-b21b-63b89a8962bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235027Z:241c717f-78b4-45cb-ba56-11a3b89b4136" + "CENTRALUS:20150711T211018Z:1ea99d3d-c5c6-4ce4-b21b-63b89a8962bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -655,7 +562,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:26 GMT" + "Sat, 11 Jul 2015 21:10:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -667,16 +574,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjUvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDkvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e5d0fbd-a612-4cb3-9569-b3c7dc3f3a40" + "0bf9e233-b3ce-4da0-ba60-0b4295bdec12" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -694,16 +601,16 @@ "15" ], "x-ms-request-id": [ - "936ee321-ddd1-472d-9bba-5b792280aa93" + "3250e3de-8666-4bfa-854b-7885ea5ac70a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1150" + "1191" ], "x-ms-correlation-request-id": [ - "461c44b1-b56f-4746-a55d-855102563346" + "4f19acd4-796f-4f01-bbcf-51d93b47d2d8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235027Z:461c44b1-b56f-4746-a55d-855102563346" + "CENTRALUS:20150711T211018Z:4f19acd4-796f-4f01-bbcf-51d93b47d2d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -712,10 +619,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:26 GMT" + "Sat, 11 Jul 2015 21:10:18 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865/hubs/SampleHub/operationresults/af39f1bdda454713a2be334de0161cfb?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609/hubs/SampleHub/operationresults/afe0b0a5b84542d0aab7d649964a1544?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -727,16 +634,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865/hubs/SampleHub/operationresults/af39f1bdda454713a2be334de0161cfb?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjUvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy9hZjM5ZjFiZGRhNDU0NzEzYTJiZTMzNGRlMDE2MWNmYj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609/hubs/SampleHub/operationresults/afe0b0a5b84542d0aab7d649964a1544?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDkvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy9hZmUwYjBhNWI4NDU0MmQwYWFiN2Q2NDk5NjRhMTU0ND9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -751,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "bb536923-012e-43bf-ad88-50751730fcea" + "1eb440fe-6ff7-467b-9bbf-ad9eee01acab" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31914" + "14984" ], "x-ms-correlation-request-id": [ - "e99f9429-7bc6-4132-b03b-fc9ef00407c2" + "a0e51ff5-a5c8-4441-baac-eb71d3894801" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235027Z:e99f9429-7bc6-4132-b03b-fc9ef00407c2" + "CENTRALUS:20150711T211018Z:a0e51ff5-a5c8-4441-baac-eb71d3894801" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -769,7 +676,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:26 GMT" + "Sat, 11 Jul 2015 21:10:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -781,16 +688,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7543/providers/Microsoft.DataFactory/datafactories/onesdk3865?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM4NjU/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7928/providers/Microsoft.DataFactory/datafactories/onesdk7609?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc2MDk/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf012183-a7a9-4284-8039-853520f9f906" + "9398f9ab-9a75-4439-b0b5-8a456b5b91ba" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -805,16 +712,16 @@ "no-cache" ], "x-ms-request-id": [ - "88948c43-efb2-49ca-a9ed-9a903a33270e" + "e6f25fda-5a31-4658-866b-d5c030a946ec" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1190" ], "x-ms-correlation-request-id": [ - "4685cc44-7d37-4a1f-8d33-5b7ccd4bebc8" + "ad9b9d5d-f40d-44c3-b9b5-bce36bbbda6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235028Z:4685cc44-7d37-4a1f-8d33-5b7ccd4bebc8" + "CENTRALUS:20150711T211019Z:ad9b9d5d-f40d-44c3-b9b5-bce36bbbda6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -823,7 +730,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:50:27 GMT" + "Sat, 11 Jul 2015 21:10:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -837,11 +744,11 @@ ], "Names": { "Test-Hub": [ - "onesdk3865", - "onesdk7543" + "onesdk7609", + "onesdk7928" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubPiping.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubPiping.json index 7e4bd50f0bcc..45cc44aecf16 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubPiping.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubPiping.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" - ], - "x-ms-request-id": [ - "1f2457f6-d5c3-47b7-930c-0dde9b3fc189" - ], - "x-ms-correlation-request-id": [ - "1f2457f6-d5c3-47b7-930c-0dde9b3fc189" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234830Z:1f2457f6-d5c3-47b7-930c-0dde9b3fc189" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:48:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" - ], - "x-ms-request-id": [ - "b9cd34cc-28aa-47a4-a2ed-41c09ee9144c" - ], - "x-ms-correlation-request-id": [ - "b9cd34cc-28aa-47a4-a2ed-41c09ee9144c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234830Z:b9cd34cc-28aa-47a4-a2ed-41c09ee9144c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:48:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "14990" ], "x-ms-request-id": [ - "5a59e558-1e0e-41c3-8f12-483817c9569b" + "24335796-0f6f-4daa-850c-20f8003cc6a9" ], "x-ms-correlation-request-id": [ - "5a59e558-1e0e-41c3-8f12-483817c9569b" + "24335796-0f6f-4daa-850c-20f8003cc6a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234830Z:5a59e558-1e0e-41c3-8f12-483817c9569b" + "CENTRALUS:20150711T210912Z:24335796-0f6f-4daa-850c-20f8003cc6a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:30 GMT" + "Sat, 11 Jul 2015 21:09:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk4885\",\r\n \"name\": \"onesdk4885\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk9887\",\r\n \"name\": \"onesdk9887\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1196" ], "x-ms-request-id": [ - "a90c0432-0f37-466b-9193-5d0801721c35" + "d5e3092d-a25d-41e0-9b2c-dac5309d67f7" ], "x-ms-correlation-request-id": [ - "a90c0432-0f37-466b-9193-5d0801721c35" + "d5e3092d-a25d-41e0-9b2c-dac5309d67f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234831Z:a90c0432-0f37-466b-9193-5d0801721c35" + "CENTRALUS:20150711T210912Z:d5e3092d-a25d-41e0-9b2c-dac5309d67f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:30 GMT" + "Sat, 11 Jul 2015 21:09:12 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk4885/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4ODUvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk9887/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazk4ODcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "14989" ], "x-ms-request-id": [ - "3f9c8588-804f-4045-8aa4-d0de252d9379" + "719b6aca-8e36-4d5e-b66e-3bf6615f8243" ], "x-ms-correlation-request-id": [ - "3f9c8588-804f-4045-8aa4-d0de252d9379" + "719b6aca-8e36-4d5e-b66e-3bf6615f8243" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234831Z:3f9c8588-804f-4045-8aa4-d0de252d9379" + "CENTRALUS:20150711T210912Z:719b6aca-8e36-4d5e-b66e-3bf6615f8243" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:30 GMT" + "Sat, 11 Jul 2015 21:09:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:d5fee253-e8b0-4dce-998b-2a6c12725813" + "centralus:2f9433ed-823d-482a-a57a-9e85d8709e66" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "14947" ], "x-ms-correlation-request-id": [ - "7bc72f27-9f0f-4fa9-9662-9ccf09edff7d" + "08b80a7d-9756-419e-ada1-571d3dd648e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234831Z:7bc72f27-9f0f-4fa9-9662-9ccf09edff7d" + "CENTRALUS:20150711T210913Z:08b80a7d-9756-419e-ada1-571d3dd648e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:30 GMT" + "Sat, 11 Jul 2015 21:09:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzA/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjE/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk3930\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk9961\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "8d7ce30d-cd37-4b03-bfba-d952367e0d48" + "98e91c9b-4431-497a-ae3c-6593e9c23e9b" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3930\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e9120eb0-96af-4958-9527-2edc73c9ef36\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9961\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9ab26c16-9ea1-420b-b663-c0a8ee73010f\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "8bb7fc05-0c19-4282-b94e-126e523b73a3" + "339890b7-580c-40ca-b948-ba6429c81089" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1197" ], "x-ms-correlation-request-id": [ - "63ab2727-6c91-449a-8380-0c4390924d0a" + "1c4f37b3-c372-4c6c-a243-826837fb0207" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234833Z:63ab2727-6c91-449a-8380-0c4390924d0a" + "CENTRALUS:20150711T210914Z:1c4f37b3-c372-4c6c-a243-826837fb0207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:32 GMT" + "Sat, 11 Jul 2015 21:09:14 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzA/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjE/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b2cf829-b073-49a2-a4a9-05bbb165ebb9" + "3feb58c3-dda5-4119-ae53-ecbe1f4657e8" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3930\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e9120eb0-96af-4958-9527-2edc73c9ef36\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9961\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9ab26c16-9ea1-420b-b663-c0a8ee73010f\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "8b0f7dc0-bdac-463f-b9fb-870e05552814" + "07b0a4f3-7fd5-47a9-ac57-0bb1b17b1112" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "14994" ], "x-ms-correlation-request-id": [ - "e87af55d-31d6-48b4-b6b0-71c95dcf5804" + "5521161a-7c97-4166-9f1a-1d69862c9898" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234833Z:e87af55d-31d6-48b4-b6b0-71c95dcf5804" + "CENTRALUS:20150711T210914Z:5521161a-7c97-4166-9f1a-1d69862c9898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:32 GMT" + "Sat, 11 Jul 2015 21:09:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzA/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjE/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3648d0d8-9322-4ab6-8ad7-ab1bf61fdcf9" + "535aea80-51c6-41d4-a92a-4275ad4e3da0" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3930\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e9120eb0-96af-4958-9527-2edc73c9ef36\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9961\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9ab26c16-9ea1-420b-b663-c0a8ee73010f\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "e57c6ba2-976a-4e31-96c7-ecf62005c69b" + "f8b5fcfe-e412-461c-a114-017961663b23" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "14993" ], "x-ms-correlation-request-id": [ - "213c57d0-f3a9-4c26-b4e9-3dc6b006c40d" + "e323e680-40ee-454a-a77a-369ef9af20b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234838Z:213c57d0-f3a9-4c26-b4e9-3dc6b006c40d" + "CENTRALUS:20150711T210919Z:e323e680-40ee-454a-a77a-369ef9af20b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:38 GMT" + "Sat, 11 Jul 2015 21:09:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzA/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjE/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12bd1455-ea87-4e78-9d01-22e980efe5aa" + "2380913b-cd59-4a68-a9cf-2a830866f898" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3930\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e9120eb0-96af-4958-9527-2edc73c9ef36\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9961\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9ab26c16-9ea1-420b-b663-c0a8ee73010f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "359e9698-b5dd-4940-8a9c-ab3d1a63d17c" + "7e320d77-49fd-45c5-85bc-8131843459c9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "14992" ], "x-ms-correlation-request-id": [ - "99d5effe-504b-4cf2-9bfa-f849dfb51067" + "2a3a664a-ad18-4d17-ba7e-b729b2ffcd7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234843Z:99d5effe-504b-4cf2-9bfa-f849dfb51067" + "CENTRALUS:20150711T210924Z:2a3a664a-ad18-4d17-ba7e-b729b2ffcd7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:43 GMT" + "Sat, 11 Jul 2015 21:09:24 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,8 +451,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzAvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjEvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"00000000-0000-0000-0000-000000000001\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -556,13 +463,13 @@ "233" ], "x-ms-client-request-id": [ - "d5cee3f3-8023-46ed-8c2e-c66d1ba3b025" + "960b789c-7176-4ebb-8feb-ec3f802515fa" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"8a761d3b-7180-4878-8aa2-738d9a17c17f\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"19745dec-378a-423f-8367-d978512c9126\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -577,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "a67a32b1-6158-4224-b35c-5319dc13e8c4" + "8d607438-b4b4-4f76-8646-8d6675955580" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1196" ], "x-ms-correlation-request-id": [ - "9a2f797c-7896-4cd9-982b-6bcd059edd12" + "0646ffdb-fab9-4b81-abeb-63e2caffb082" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234844Z:9a2f797c-7896-4cd9-982b-6bcd059edd12" + "CENTRALUS:20150711T210925Z:0646ffdb-fab9-4b81-abeb-63e2caffb082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,10 +502,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:43 GMT" + "Sat, 11 Jul 2015 21:09:25 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930/hubs/SampleHub?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961/hubs/SampleHub?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -610,19 +517,19 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzAvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjEvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9166aa5-6b04-44ae-acd8-4aa5a5c8f348" + "f2f8c088-4c51-4ecd-b71d-c0b2111bce8d" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"8a761d3b-7180-4878-8aa2-738d9a17c17f\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"19745dec-378a-423f-8367-d978512c9126\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -637,16 +544,16 @@ "no-cache" ], "x-ms-request-id": [ - "52b662b9-b69c-4c6e-b4ca-13e2fcc24a99" + "e284310a-a6d6-46eb-b0e6-1050b9314ae0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "14991" ], "x-ms-correlation-request-id": [ - "530d80d3-f3a1-4c07-993c-f5028cd47a77" + "d88d1518-eeea-4024-814f-f4f62a844c98" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234844Z:530d80d3-f3a1-4c07-993c-f5028cd47a77" + "CENTRALUS:20150711T210925Z:d88d1518-eeea-4024-814f-f4f62a844c98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -655,7 +562,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:43 GMT" + "Sat, 11 Jul 2015 21:09:25 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -667,16 +574,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzAvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjEvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f454ac3-4776-400a-9a81-dacf70df0b21" + "9f0d1ab8-f080-4b4c-8564-f7270ca99687" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Hub: SampleHub not found.\",\r\n \"code\": \"HubNotFound\"\r\n}", @@ -694,16 +601,16 @@ "no-cache" ], "x-ms-request-id": [ - "d9b34f8e-2a87-403f-aba5-5c6dd6e0552b" + "ed30a144-35c7-4cd4-bc42-234d37cafc12" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31917" + "14989" ], "x-ms-correlation-request-id": [ - "7c746443-680b-422e-9e84-5de51d2d5fb2" + "bb3f6228-9930-442b-b44e-34e9509ee630" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234845Z:7c746443-680b-422e-9e84-5de51d2d5fb2" + "CENTRALUS:20150711T210926Z:bb3f6228-9930-442b-b44e-34e9509ee630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -712,7 +619,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:44 GMT" + "Sat, 11 Jul 2015 21:09:26 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -724,16 +631,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzAvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjEvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e337c14a-ca18-436f-9841-8925c5e0b352" + "e55de3d7-df0f-4dcd-9749-323024e966f0" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -751,16 +658,16 @@ "15" ], "x-ms-request-id": [ - "15833a16-a3b3-4564-858c-0871cbe4f737" + "d7c554c0-3de9-42f7-bf6b-4f1fd4dc320b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1195" ], "x-ms-correlation-request-id": [ - "15f8416f-6f58-4849-b8e5-98b0508dffff" + "5fade796-cf70-482e-b191-9f3de937fc9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234844Z:15f8416f-6f58-4849-b8e5-98b0508dffff" + "CENTRALUS:20150711T210925Z:5fade796-cf70-482e-b191-9f3de937fc9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -769,10 +676,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:44 GMT" + "Sat, 11 Jul 2015 21:09:25 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930/hubs/SampleHub/operationresults/42a5db74d6e6417795e7cdd86b65f3b9?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961/hubs/SampleHub/operationresults/8bfa240603f44a17a18c6442d1f4bf29?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -784,16 +691,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930/hubs/SampleHub/operationresults/42a5db74d6e6417795e7cdd86b65f3b9?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzAvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy80MmE1ZGI3NGQ2ZTY0MTc3OTVlN2NkZDg2YjY1ZjNiOT9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961/hubs/SampleHub/operationresults/8bfa240603f44a17a18c6442d1f4bf29?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjEvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy84YmZhMjQwNjAzZjQ0YTE3YTE4YzY0NDJkMWY0YmYyOT9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -808,16 +715,16 @@ "no-cache" ], "x-ms-request-id": [ - "7bf900ca-d74b-4de3-b64b-dcabce3991d3" + "90c79e4c-49d3-41cc-91a9-4f80afc845fa" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31918" + "14990" ], "x-ms-correlation-request-id": [ - "6f14b795-34a4-4c98-96a5-d5f609b99655" + "0017df83-1d73-4001-9928-506ea0c5664e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234844Z:6f14b795-34a4-4c98-96a5-d5f609b99655" + "CENTRALUS:20150711T210926Z:0017df83-1d73-4001-9928-506ea0c5664e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,7 +733,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:44 GMT" + "Sat, 11 Jul 2015 21:09:25 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -838,16 +745,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk4885/providers/Microsoft.DataFactory/datafactories/onesdk3930?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4ODUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM5MzA/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9887/providers/Microsoft.DataFactory/datafactories/onesdk9961?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk5NjE/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46616757-bfb3-4c08-89ee-10476a462f07" + "0dfbab57-cb53-4c69-bcca-e77eecaaaa8a" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -862,16 +769,16 @@ "no-cache" ], "x-ms-request-id": [ - "6a670435-592e-4b1d-83c6-af4e118b5805" + "d67391cc-b467-48b1-81db-b9ff874e6470" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1138" + "1194" ], "x-ms-correlation-request-id": [ - "858a124d-e9c7-4130-b80f-21e63d27856d" + "ca2f4b60-fd87-4247-af0a-be773d83b8ce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234846Z:858a124d-e9c7-4130-b80f-21e63d27856d" + "CENTRALUS:20150711T210930Z:ca2f4b60-fd87-4247-af0a-be773d83b8ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -880,7 +787,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:48:46 GMT" + "Sat, 11 Jul 2015 21:09:30 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -894,11 +801,11 @@ ], "Names": { "Test-HubPiping": [ - "onesdk3930", - "onesdk4885" + "onesdk9961", + "onesdk9887" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubWithDataFactoryParameter.json index c1990eb2fd2b..c8841a55b7be 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubWithDataFactoryParameter.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31916" - ], - "x-ms-request-id": [ - "a8e8656c-d442-4f49-be07-39439d430c1c" - ], - "x-ms-correlation-request-id": [ - "a8e8656c-d442-4f49-be07-39439d430c1c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234922Z:a8e8656c-d442-4f49-be07-39439d430c1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:49:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31915" - ], - "x-ms-request-id": [ - "fc748a01-33e2-4f24-ade3-b8ce66e2fece" - ], - "x-ms-correlation-request-id": [ - "fc748a01-33e2-4f24-ade3-b8ce66e2fece" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234922Z:fc748a01-33e2-4f24-ade3-b8ce66e2fece" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:49:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -109,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "101" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31914" + "14988" ], "x-ms-request-id": [ - "c5fb774d-2ee7-4510-8f9b-0df562e1d0a6" + "d808dd44-c073-4e0e-8105-96c4df6a6441" ], "x-ms-correlation-request-id": [ - "c5fb774d-2ee7-4510-8f9b-0df562e1d0a6" + "d808dd44-c073-4e0e-8105-96c4df6a6441" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234922Z:c5fb774d-2ee7-4510-8f9b-0df562e1d0a6" + "CENTRALUS:20150711T210811Z:d808dd44-c073-4e0e-8105-96c4df6a6441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:22 GMT" + "Sat, 11 Jul 2015 21:08:10 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk424\",\r\n \"name\": \"onesdk424\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8128\",\r\n \"name\": \"onesdk8128\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "171" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1137" + "1192" ], "x-ms-request-id": [ - "d929071b-2725-4bbd-9c10-b046bb1f5373" + "fa7785e4-672f-4f5c-940d-1e4bb0945862" ], "x-ms-correlation-request-id": [ - "d929071b-2725-4bbd-9c10-b046bb1f5373" + "fa7785e4-672f-4f5c-940d-1e4bb0945862" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234923Z:d929071b-2725-4bbd-9c10-b046bb1f5373" + "CENTRALUS:20150711T210811Z:fa7785e4-672f-4f5c-940d-1e4bb0945862" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:22 GMT" + "Sat, 11 Jul 2015 21:08:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk424/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazQyNC9yZXNvdXJjZXM/JmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8128/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazgxMjgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31913" + "14987" ], "x-ms-request-id": [ - "b17034d3-4c19-4b5c-bffb-938c51bab162" + "1aef781d-b00c-4a0d-815d-954fc769b7cb" ], "x-ms-correlation-request-id": [ - "b17034d3-4c19-4b5c-bffb-938c51bab162" + "1aef781d-b00c-4a0d-815d-954fc769b7cb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234923Z:b17034d3-4c19-4b5c-bffb-938c51bab162" + "CENTRALUS:20150711T210811Z:1aef781d-b00c-4a0d-815d-954fc769b7cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:22 GMT" + "Sat, 11 Jul 2015 21:08:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:d63056af-477d-4945-85d6-37e0d905340f" + "centralus:a7f42e8a-1f00-4746-8fd5-8a6892b394dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31912" + "14991" ], "x-ms-correlation-request-id": [ - "18b0585b-11a6-4528-b029-ed9f029c696d" + "580c3e51-5a6b-48a8-9fba-d2874a46da33" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234923Z:18b0585b-11a6-4528-b029-ed9f029c696d" + "CENTRALUS:20150711T210812Z:580c3e51-5a6b-48a8-9fba-d2874a46da33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:23 GMT" + "Sat, 11 Jul 2015 21:08:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0ND9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk7344\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk9382\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "59f5f2f7-52c9-419c-85a3-a28ad9902d3f" + "fde0c123-f0f7-4d89-a383-11a358bc15af" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7344\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"750072c3-4a1a-403c-bbf5-e042b6ab656b\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9382\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"59edaf66-c3eb-4de4-9582-26d6c0071a35\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "477" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "890d9dee-737a-4913-8a19-b3d6d7aa81e3" + "5a47ad24-616a-4dc6-8a79-16a00483f81d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1180" ], "x-ms-correlation-request-id": [ - "ceef8043-f983-4ac7-8659-ad68b78fc65d" + "8dc26262-8081-41d0-8e72-60df8c5995b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234925Z:ceef8043-f983-4ac7-8659-ad68b78fc65d" + "CENTRALUS:20150711T210813Z:8dc26262-8081-41d0-8e72-60df8c5995b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:25 GMT" + "Sat, 11 Jul 2015 21:08:13 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0ND9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fe52c7a-b734-4f1c-b0be-7c54a3fd9ea3" + "ceac2f51-d68e-4b5b-b177-4e4f69c40595" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7344\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"750072c3-4a1a-403c-bbf5-e042b6ab656b\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9382\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"59edaf66-c3eb-4de4-9582-26d6c0071a35\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "477" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "40c7a9d7-ba42-4055-83fe-ee6e7f1aa953" + "fefb5705-0a7f-48ea-9752-28ecc33ee509" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "14952" ], "x-ms-correlation-request-id": [ - "843186ff-0181-40f5-9a3d-3e341c8f3ffa" + "eddfdbb6-581b-4325-afb4-83faab00f839" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234925Z:843186ff-0181-40f5-9a3d-3e341c8f3ffa" + "CENTRALUS:20150711T210813Z:eddfdbb6-581b-4325-afb4-83faab00f839" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:25 GMT" + "Sat, 11 Jul 2015 21:08:13 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0ND9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2814c06f-43df-4336-bffb-0742f77a0ceb" + "245abca6-2e99-4b3c-a988-06ed8f9e4a93" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7344\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"750072c3-4a1a-403c-bbf5-e042b6ab656b\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9382\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"59edaf66-c3eb-4de4-9582-26d6c0071a35\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "477" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "1ec9025c-e197-425d-9a7d-6bff0e4bf7fd" + "fd18e79c-0f34-4873-b791-f285940e2d58" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" + "14951" ], "x-ms-correlation-request-id": [ - "0b00b7c8-84ad-46b4-8cbf-4c2646c69fe6" + "97916cc2-5e6e-47ec-b909-9b42e17632f8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234930Z:0b00b7c8-84ad-46b4-8cbf-4c2646c69fe6" + "CENTRALUS:20150711T210819Z:97916cc2-5e6e-47ec-b909-9b42e17632f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:30 GMT" + "Sat, 11 Jul 2015 21:08:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0ND9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4781a18e-360f-48c5-9817-ca6078bfa7b1" + "7ac12586-b07b-4926-8d9d-9e68734089b8" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7344\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"750072c3-4a1a-403c-bbf5-e042b6ab656b\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9382\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"59edaf66-c3eb-4de4-9582-26d6c0071a35\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "471" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "d412867a-0315-4d9b-aad6-2536a31060ab" + "ca38de65-21eb-4b1a-a681-eba78c306b54" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "14950" ], "x-ms-correlation-request-id": [ - "45288b27-5f65-42bf-8ca6-8c3e4c68b1a9" + "981350bf-2baa-48cb-a47c-2559e5ddd0cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234936Z:45288b27-5f65-42bf-8ca6-8c3e4c68b1a9" + "CENTRALUS:20150711T210826Z:981350bf-2baa-48cb-a47c-2559e5ddd0cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:35 GMT" + "Sat, 11 Jul 2015 21:08:26 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,8 +451,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0NC9odWJzL1NhbXBsZUh1Yj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODIvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"00000000-0000-0000-0000-000000000001\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -556,13 +463,13 @@ "233" ], "x-ms-client-request-id": [ - "7e56a945-93c9-49da-9271-a2f5a599b120" + "f3522a4b-b11b-491f-863d-ba7067c449c8" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"0b7a7fd1-cab9-41f5-a2f0-9b7e7b19e2e2\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"e4f5c3e7-a85c-46a1-9535-feaeabdb8058\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -577,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "0d96d424-741b-4c24-8e7c-c599e3681655" + "1c541a73-4c14-40ee-8e48-31fd3b2916c2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" + "1179" ], "x-ms-correlation-request-id": [ - "8c2a950c-4962-48b9-969a-49a048e4d6b2" + "eca4c96e-a3c4-4794-a4ee-ab4e8aa4e764" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234936Z:8c2a950c-4962-48b9-969a-49a048e4d6b2" + "CENTRALUS:20150711T210829Z:eca4c96e-a3c4-4794-a4ee-ab4e8aa4e764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,10 +502,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:36 GMT" + "Sat, 11 Jul 2015 21:08:29 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344/hubs/SampleHub?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382/hubs/SampleHub?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -610,19 +517,19 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0NC9odWJzL1NhbXBsZUh1Yj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODIvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bb02821-5a01-4b76-8aa9-83eff1fb48d8" + "3d701c1c-a15a-4c07-a15a-e90681d75de5" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"0b7a7fd1-cab9-41f5-a2f0-9b7e7b19e2e2\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"e4f5c3e7-a85c-46a1-9535-feaeabdb8058\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -637,16 +544,16 @@ "no-cache" ], "x-ms-request-id": [ - "a4639908-cc21-415e-a097-0b5949d2f63d" + "6d648923-c3d2-46ec-9558-19f2e1ab2e33" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "14949" ], "x-ms-correlation-request-id": [ - "3896b0fd-1473-4701-8bb1-d0a8faa3bed1" + "0a8609a3-85e5-42dd-a0ae-64cb1f6c6192" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234936Z:3896b0fd-1473-4701-8bb1-d0a8faa3bed1" + "CENTRALUS:20150711T210829Z:0a8609a3-85e5-42dd-a0ae-64cb1f6c6192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -655,7 +562,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:36 GMT" + "Sat, 11 Jul 2015 21:08:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -667,16 +574,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344/hubs/SampleHub?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0NC9odWJzL1NhbXBsZUh1Yj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382/hubs/SampleHub?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODIvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2a32d40-d86d-4bbc-a598-cac7755f054d" + "5592fd09-869a-4376-b9eb-718488b78a3a" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -694,16 +601,16 @@ "15" ], "x-ms-request-id": [ - "a0c753f4-e269-4ec6-9837-c2a1222e3b99" + "42a0a3c0-b8ff-45b3-a680-ef73135a0576" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1178" ], "x-ms-correlation-request-id": [ - "edcb34da-418e-4fa8-8256-756b06786e07" + "3a482ced-16dd-4c93-a245-e3544c67f205" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234936Z:edcb34da-418e-4fa8-8256-756b06786e07" + "CENTRALUS:20150711T210829Z:3a482ced-16dd-4c93-a245-e3544c67f205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -712,10 +619,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:36 GMT" + "Sat, 11 Jul 2015 21:08:29 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344/hubs/SampleHub/operationresults/630fb2d826184f0a9da2d9c338e4adaa?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382/hubs/SampleHub/operationresults/c8b7a7ff96764142afdbc3ca22d4d579?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -727,16 +634,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344/hubs/SampleHub/operationresults/630fb2d826184f0a9da2d9c338e4adaa?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0NC9odWJzL1NhbXBsZUh1Yi9vcGVyYXRpb25yZXN1bHRzLzYzMGZiMmQ4MjYxODRmMGE5ZGEyZDljMzM4ZTRhZGFhP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382/hubs/SampleHub/operationresults/c8b7a7ff96764142afdbc3ca22d4d579?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODIvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy9jOGI3YTdmZjk2NzY0MTQyYWZkYmMzY2EyMmQ0ZDU3OT9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -751,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "b885b868-2c15-49af-b298-6e716f243e53" + "f568fefe-a1df-400a-a8d5-c698f57df33e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "14948" ], "x-ms-correlation-request-id": [ - "5cddfe8b-5f2a-4416-ac59-b12d363a5b9c" + "219e2aa5-2d6a-47dd-8a7b-ba80b5cdb9c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234936Z:5cddfe8b-5f2a-4416-ac59-b12d363a5b9c" + "CENTRALUS:20150711T210830Z:219e2aa5-2d6a-47dd-8a7b-ba80b5cdb9c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -769,7 +676,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:36 GMT" + "Sat, 11 Jul 2015 21:08:30 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -781,16 +688,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk424/providers/Microsoft.DataFactory/datafactories/onesdk7344?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzM0ND9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8128/providers/Microsoft.DataFactory/datafactories/onesdk9382?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkzODI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ed64357-3315-49a7-a989-eb8f7113f3f3" + "5810704e-5642-492b-8339-d2c917f4924b" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -805,16 +712,16 @@ "no-cache" ], "x-ms-request-id": [ - "2c364844-dd1f-43c0-8d94-77ecdf2a3736" + "7a2f9ce2-6ed3-42f3-a8d5-859009264c1f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1177" ], "x-ms-correlation-request-id": [ - "f75adc9d-353a-47d6-b4b1-564194a3c9f5" + "5068aa5b-0bb4-4be1-a181-08735d4a9964" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234937Z:f75adc9d-353a-47d6-b4b1-564194a3c9f5" + "CENTRALUS:20150711T210836Z:5068aa5b-0bb4-4be1-a181-08735d4a9964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -823,7 +730,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:49:37 GMT" + "Sat, 11 Jul 2015 21:08:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -837,11 +744,11 @@ ], "Names": { "Test-HubWithDataFactoryParameter": [ - "onesdk7344", - "onesdk424" + "onesdk9382", + "onesdk8128" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedService.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedService.json index 3835df283ca7..071035bfc945 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedService.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedService.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "28196" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14975" ], "x-ms-request-id": [ - "1eb52350-be77-4b4c-90d2-d962c99a9116" + "b44f4ea7-c2f3-4f09-a2f2-e97591c486ab" ], "x-ms-correlation-request-id": [ - "1eb52350-be77-4b4c-90d2-d962c99a9116" + "b44f4ea7-c2f3-4f09-a2f2-e97591c486ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233836Z:1eb52350-be77-4b4c-90d2-d962c99a9116" + "CENTRALUS:20150711T211514Z:b44f4ea7-c2f3-4f09-a2f2-e97591c486ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,73 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:36 GMT" + "Sat, 11 Jul 2015 21:15:13 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "9cc845c1-f38f-4c07-9312-f28f38dc69e6" - ], - "x-ms-correlation-request-id": [ - "9cc845c1-f38f-4c07-9312-f28f38dc69e6" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233836Z:9cc845c1-f38f-4c07-9312-f28f38dc69e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "34" ], - "Date": [ - "Tue, 13 Jan 2015 23:38:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1272\",\r\n \"name\": \"onesdk1272\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "102" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,17 +81,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" ], "x-ms-request-id": [ - "98d1cf06-3130-43b7-bef9-1aa413cdb406" + "08b64bff-fda5-4521-89a6-e7384c621579" ], "x-ms-correlation-request-id": [ - "98d1cf06-3130-43b7-bef9-1aa413cdb406" + "08b64bff-fda5-4521-89a6-e7384c621579" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233836Z:98d1cf06-3130-43b7-bef9-1aa413cdb406" + "CENTRALUS:20150711T211514Z:08b64bff-fda5-4521-89a6-e7384c621579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +100,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:36 GMT" + "Sat, 11 Jul 2015 21:15:14 GMT" ] }, - "StatusCode": 404 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1272/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazEyNzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk1045\",\r\n \"name\": \"onesdk1045\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -174,17 +129,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" ], "x-ms-request-id": [ - "224a53f0-2808-4d5b-a58c-b84e2b392092" + "777ab75e-939b-45b0-a99d-f2c781d75ecb" ], "x-ms-correlation-request-id": [ - "224a53f0-2808-4d5b-a58c-b84e2b392092" + "777ab75e-939b-45b0-a99d-f2c781d75ecb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233837Z:224a53f0-2808-4d5b-a58c-b84e2b392092" + "CENTRALUS:20150711T211514Z:777ab75e-939b-45b0-a99d-f2c781d75ecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,25 +148,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:36 GMT" + "Sat, 11 Jul 2015 21:15:14 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk1045/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazEwNDUvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "45" ], "Content-Type": [ "application/json; charset=utf-8" @@ -222,17 +177,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "Vary": [ + "Accept-Encoding" ], "x-ms-request-id": [ - "bcd2b6f8-1fe8-4ddf-bc78-d80986af47f7" + "centralus:4f7afd38-8d50-43ea-8770-308b48bf2656" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" ], "x-ms-correlation-request-id": [ - "bcd2b6f8-1fe8-4ddf-bc78-d80986af47f7" + "e2426af0-2aef-435a-81e6-b73a0d60998c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233837Z:bcd2b6f8-1fe8-4ddf-bc78-d80986af47f7" + "CENTRALUS:20150711T211515Z:e2426af0-2aef-435a-81e6-b73a0d60998c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,25 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:37 GMT" + "Sat, 11 Jul 2015 21:15:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk4097\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "74" + ], + "x-ms-client-request-id": [ + "dcf49786-d980-454a-a240-91d99be06c19" + ], "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk4097\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b25c8f9d-95ff-4195-9c26-35173e343b52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "45" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,20 +237,17 @@ "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "centralus:f2fc4deb-2c2d-419c-ae9c-b291dff7c788" + "2e8bd752-2907-4135-ae42-35b97e0ed13b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" ], "x-ms-correlation-request-id": [ - "977719f6-a1cc-48ac-8e6c-31b4a6289bff" + "505235b7-5534-42ea-a305-d428c6518bfb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233837Z:977719f6-a1cc-48ac-8e6c-31b4a6289bff" + "CENTRALUS:20150711T211519Z:505235b7-5534-42ea-a305-d428c6518bfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +256,40 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:37 GMT" + "Sat, 11 Jul 2015 21:15:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097?api-version=2015-07-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk1504\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "69" - ], "x-ms-client-request-id": [ - "e3d9f504-fccc-434f-9776-e9f415594719" + "b8cb10e8-d1dd-424f-86d5-ce4382465a2a" + ], + "x-ms-version": [ + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1504\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fd6837c3-b207-4440-b8d7-e29dd2037541\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk4097\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b25c8f9d-95ff-4195-9c26-35173e343b52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "1a0dcdf2-bd06-4bbf-a216-b075826c1962" + "51d6430a-50e8-4167-ba17-154b1f8b85a6" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" ], "x-ms-correlation-request-id": [ - "bfc1e9ff-adda-426f-8d37-ff0035c79e5d" + "8f5fe8a5-330c-4e84-927a-6c525bc43cb0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233838Z:bfc1e9ff-adda-426f-8d37-ff0035c79e5d" + "CENTRALUS:20150711T211519Z:8f5fe8a5-330c-4e84-927a-6c525bc43cb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:38 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504?api-version=2015-01-01-preview" + "Sat, 11 Jul 2015 21:15:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -361,28 +328,28 @@ "ASP.NET" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17f4fa17-1b81-45ec-99fc-e277e9185a3e" + "747bbc55-6b56-4d53-92b9-570ea63ca450" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1504\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fd6837c3-b207-4440-b8d7-e29dd2037541\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk4097\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b25c8f9d-95ff-4195-9c26-35173e343b52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "48edf44c-1335-49ab-86f9-4da4101b157c" + "33dfe8ac-1739-4947-91cc-4dbbf2090be0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14942" ], "x-ms-correlation-request-id": [ - "da3c5bed-20af-4661-8d0f-8682ad685b05" + "070fc980-a257-4917-8541-2f46177c95fe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233839Z:da3c5bed-20af-4661-8d0f-8682ad685b05" + "CENTRALUS:20150711T211525Z:070fc980-a257-4917-8541-2f46177c95fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:38 GMT" + "Sat, 11 Jul 2015 21:15:24 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "049f21f8-cdb0-4168-abca-179240b07f9e" + "bd427092-d270-4bfc-a66b-23dc9b4c8ebf" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1504\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fd6837c3-b207-4440-b8d7-e29dd2037541\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk4097\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b25c8f9d-95ff-4195-9c26-35173e343b52\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "f9d07a9e-b72d-4a9d-8108-d836535a7522" + "6fd20798-5fe1-4958-b046-8b74c73cebf1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14941" ], "x-ms-correlation-request-id": [ - "8ca18e47-9015-438c-9520-13e80459e63e" + "9ce52d25-06ca-45a7-8a6b-8d4c037f2cbb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233844Z:8ca18e47-9015-438c-9520-13e80459e63e" + "CENTRALUS:20150711T211530Z:9ce52d25-06ca-45a7-8a6b-8d4c037f2cbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:44 GMT" + "Sat, 11 Jul 2015 21:15:30 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,28 +451,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTcvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"CustomLinkedService\",\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "278" + "175" ], "x-ms-client-request-id": [ - "0fb115b9-7dbd-4bf6-bd80-cba19ac58563" + "9baaad67-7464-4b99-aacf-95a730d89091" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk1504_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk4097_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -517,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "3681c9cd-09a1-4e7d-9294-ed5a239d1765" + "874e0e43-d450-42f5-be37-7dba6a4f5059" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1173" ], "x-ms-correlation-request-id": [ - "2b6938c6-4174-4c24-b285-4c98eccd3803" + "48821f00-f170-4b09-a1ca-4839567db425" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233844Z:2b6938c6-4174-4c24-b285-4c98eccd3803" + "CENTRALUS:20150711T211531Z:48821f00-f170-4b09-a1ca-4839567db425" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -535,7 +502,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:44 GMT" + "Sat, 11 Jul 2015 21:15:31 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,28 +514,28 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTcvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6ec274d-0d9d-4269-9930-44480f349981" + "0dc2e463-3dc1-4a2b-bb9d-647b85cb3dc8" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk1504_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk4097_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,16 +547,16 @@ "no-cache" ], "x-ms-request-id": [ - "eb9f5563-ca80-4d43-bf4b-5d67515bf70e" + "20a5d174-8c10-425b-a0c1-8ae67c9ae6bb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14940" ], "x-ms-correlation-request-id": [ - "bf3fd24f-84d6-48af-90f1-2ac83daf01b5" + "f065e17e-516f-4dae-b652-9c145420668b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233844Z:bf3fd24f-84d6-48af-90f1-2ac83daf01b5" + "CENTRALUS:20150711T211532Z:f065e17e-516f-4dae-b652-9c145420668b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +565,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:44 GMT" + "Sat, 11 Jul 2015 21:15:31 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -607,22 +577,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTcvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eddb9c4a-49bb-4978-b913-63330aad7bdf" + "2472ba84-3e13-4342-ae2a-a8b5ef39aac8" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk1504_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk4097_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -634,16 +604,16 @@ "no-cache" ], "x-ms-request-id": [ - "5360ea1e-6f0f-4b39-b746-9d2ac44ee3f8" + "b9a27d31-e191-4395-8b8e-fd2f2c18aab5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14939" ], "x-ms-correlation-request-id": [ - "81729bcf-a200-438d-bcb1-056874ad112c" + "6b445f70-040f-4405-bcb6-85a5dc6ddbce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233845Z:81729bcf-a200-438d-bcb1-056874ad112c" + "CENTRALUS:20150711T211532Z:6b445f70-040f-4405-bcb6-85a5dc6ddbce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -652,7 +622,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:45 GMT" + "Sat, 11 Jul 2015 21:15:31 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -664,16 +634,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTcvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcda1313-8025-47cc-adcb-de95456c0308" + "59625a41-480a-425e-8aff-93baf4e49de7" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -691,16 +661,16 @@ "15" ], "x-ms-request-id": [ - "5b2c3d3b-5eac-422e-bf6b-2fabb5d8efe8" + "dc70719e-dbcf-4861-ace0-40041d63cd19" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1172" ], "x-ms-correlation-request-id": [ - "024fbfef-4033-4d8c-98d2-c789c00da913" + "99e6231b-256c-47f2-ab98-3119e3e172fe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233845Z:024fbfef-4033-4d8c-98d2-c789c00da913" + "CENTRALUS:20150711T211533Z:99e6231b-256c-47f2-ab98-3119e3e172fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -709,10 +679,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:45 GMT" + "Sat, 11 Jul 2015 21:15:33 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo/operationresults/de662f79df4f429f9baee51debc9bfb1?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo/operationresults/e03835ab56e948299edff3f5ce614051?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -724,16 +694,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504/linkedservices/foo/operationresults/de662f79df4f429f9baee51debc9bfb1?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvZGU2NjJmNzlkZjRmNDI5ZjliYWVlNTFkZWJjOWJmYjE/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097/linkedservices/foo/operationresults/e03835ab56e948299edff3f5ce614051?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTcvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvZTAzODM1YWI1NmU5NDgyOTllZGZmM2Y1Y2U2MTQwNTE/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -748,16 +718,16 @@ "no-cache" ], "x-ms-request-id": [ - "77e95822-4e4c-4762-b052-20812f11940d" + "cf33a9f2-718b-481c-b58c-fa1ce09c4353" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14938" ], "x-ms-correlation-request-id": [ - "734b1837-2200-43c3-968b-c718c0691008" + "6f7cff55-6493-4508-83c2-3d796f3acc06" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233845Z:734b1837-2200-43c3-968b-c718c0691008" + "CENTRALUS:20150711T211533Z:6f7cff55-6493-4508-83c2-3d796f3acc06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,7 +736,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:45 GMT" + "Sat, 11 Jul 2015 21:15:33 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -778,16 +748,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1045/providers/Microsoft.DataFactory/datafactories/onesdk1504?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEwNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE1MDQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk4097?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQwOTc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79ce6583-b4e7-40e4-bdf9-bcf89db2302c" + "a591d6bf-4a8c-4010-a0d6-c422d4b456e3" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -802,16 +772,16 @@ "no-cache" ], "x-ms-request-id": [ - "c12a2232-449c-4249-b498-cb1c11825199" + "6881bf23-9e79-4125-83a6-e357858ab4ee" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1144" + "1171" ], "x-ms-correlation-request-id": [ - "f0bd818b-a533-4841-ae35-7c96ebccbe34" + "67e72b0e-9a49-4ebb-942e-b831ece63408" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233847Z:f0bd818b-a533-4841-ae35-7c96ebccbe34" + "CENTRALUS:20150711T211534Z:67e72b0e-9a49-4ebb-942e-b831ece63408" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -820,7 +790,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:38:47 GMT" + "Sat, 11 Jul 2015 21:15:34 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -834,11 +804,11 @@ ], "Names": { "Test-LinkedService": [ - "onesdk1504", - "onesdk1045" + "onesdk4097", + "onesdk1272" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServicePiping.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServicePiping.json index 1cf709bb9bf4..b606e7468e73 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServicePiping.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServicePiping.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "28196" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "14981" ], "x-ms-request-id": [ - "8c50d9de-2a78-4a09-9b07-efb27660f7c9" + "0eecf9af-c93a-4d59-b1c9-ec26f9808917" ], "x-ms-correlation-request-id": [ - "8c50d9de-2a78-4a09-9b07-efb27660f7c9" + "0eecf9af-c93a-4d59-b1c9-ec26f9808917" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234009Z:8c50d9de-2a78-4a09-9b07-efb27660f7c9" + "CENTRALUS:20150711T211424Z:0eecf9af-c93a-4d59-b1c9-ec26f9808917" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,73 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:09 GMT" + "Sat, 11 Jul 2015 21:14:23 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" - ], - "x-ms-request-id": [ - "1d7eb124-ffd5-49df-bdf7-afba6d948369" - ], - "x-ms-correlation-request-id": [ - "1d7eb124-ffd5-49df-bdf7-afba6d948369" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234009Z:1d7eb124-ffd5-49df-bdf7-afba6d948369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "34" ], - "Date": [ - "Tue, 13 Jan 2015 23:40:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk7979\",\r\n \"name\": \"onesdk7979\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "102" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,17 +81,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-request-id": [ - "ecbf4d40-c770-4834-959f-9b1763edf05a" + "7fb6d1fe-2600-4b62-ba84-15ee086e1cc8" ], "x-ms-correlation-request-id": [ - "ecbf4d40-c770-4834-959f-9b1763edf05a" + "7fb6d1fe-2600-4b62-ba84-15ee086e1cc8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234010Z:ecbf4d40-c770-4834-959f-9b1763edf05a" + "CENTRALUS:20150711T211424Z:7fb6d1fe-2600-4b62-ba84-15ee086e1cc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +100,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:09 GMT" + "Sat, 11 Jul 2015 21:14:24 GMT" ] }, - "StatusCode": 404 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk7979/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazc5NzkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk9176\",\r\n \"name\": \"onesdk9176\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -174,17 +129,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" ], "x-ms-request-id": [ - "b430e721-68cb-4cf3-a70f-823f559446bd" + "93f5a10a-865a-47bd-a36a-34972723dc0f" ], "x-ms-correlation-request-id": [ - "b430e721-68cb-4cf3-a70f-823f559446bd" + "93f5a10a-865a-47bd-a36a-34972723dc0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234010Z:b430e721-68cb-4cf3-a70f-823f559446bd" + "CENTRALUS:20150711T211424Z:93f5a10a-865a-47bd-a36a-34972723dc0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,25 +148,25 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:09 GMT" + "Sat, 11 Jul 2015 21:14:24 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk9176/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazkxNzYvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "45" ], "Content-Type": [ "application/json; charset=utf-8" @@ -222,17 +177,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" + "Vary": [ + "Accept-Encoding" ], "x-ms-request-id": [ - "622aff5a-918d-44ea-8598-00a01606c3bc" + "centralus:844ec253-b5ca-44be-8452-0e334c861df5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" ], "x-ms-correlation-request-id": [ - "622aff5a-918d-44ea-8598-00a01606c3bc" + "0aa5769f-9dde-47eb-a1d3-b185bc6ccea6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234010Z:622aff5a-918d-44ea-8598-00a01606c3bc" + "CENTRALUS:20150711T211425Z:0aa5769f-9dde-47eb-a1d3-b185bc6ccea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,25 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:09 GMT" + "Sat, 11 Jul 2015 21:14:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk1376\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "74" + ], + "x-ms-client-request-id": [ + "6cd4ac6a-e4ad-479d-82b3-d18b35b62419" + ], "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1376\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a7bb5cc3-8d02-4621-b943-742e3667496f\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "45" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,20 +237,17 @@ "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "centralus:3923fb51-8840-4e09-af44-b2acab3477b6" + "e63bf143-1d62-46c4-85dd-e38580c3d441" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" ], "x-ms-correlation-request-id": [ - "6d406c2f-4b46-4386-ba4d-01b4def64891" + "d5213a42-afc2-4f2e-b3ca-333492a20dfd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234011Z:6d406c2f-4b46-4386-ba4d-01b4def64891" + "CENTRALUS:20150711T211426Z:d5213a42-afc2-4f2e-b3ca-333492a20dfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +256,40 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:10 GMT" + "Sat, 11 Jul 2015 21:14:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376?api-version=2015-07-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk5554\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "69" - ], "x-ms-client-request-id": [ - "2611a075-ce59-406a-b668-880c4c25d7e1" + "05fd95fa-0423-46da-a806-585dba4358bf" + ], + "x-ms-version": [ + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5554\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"769ddc44-0e43-4899-9022-aa1458728002\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1376\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a7bb5cc3-8d02-4621-b943-742e3667496f\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "6afef28e-5a16-47b1-8ad3-04f06681fc65" + "c8bd1c81-942a-4b1f-876a-4fb10828d3d5" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" ], "x-ms-correlation-request-id": [ - "1a77cb83-3734-4089-a5f4-b3c1264f8102" + "521c460b-985b-4734-a41d-8d5bd90b38c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234012Z:1a77cb83-3734-4089-a5f4-b3c1264f8102" + "CENTRALUS:20150711T211426Z:521c460b-985b-4734-a41d-8d5bd90b38c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:11 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554?api-version=2015-01-01-preview" + "Sat, 11 Jul 2015 21:14:26 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -361,28 +328,28 @@ "ASP.NET" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55d044bc-65e3-48f5-9add-77d908f0e0a3" + "3dd95bb4-f95d-4386-94c9-fafb1f30702b" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5554\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"769ddc44-0e43-4899-9022-aa1458728002\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1376\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a7bb5cc3-8d02-4621-b943-742e3667496f\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "9026417d-93ec-4321-a0f9-17ddda3413f5" + "508edea8-3c9b-45b1-a6cd-2d0d175c9c0f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" + "14982" ], "x-ms-correlation-request-id": [ - "2373bcf9-9853-49e4-82e8-38c0d85922f8" + "35365a7f-1e3a-4c6e-a9a5-c88ab5b07e05" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234012Z:2373bcf9-9853-49e4-82e8-38c0d85922f8" + "CENTRALUS:20150711T211431Z:35365a7f-1e3a-4c6e-a9a5-c88ab5b07e05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:11 GMT" + "Sat, 11 Jul 2015 21:14:31 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b448f2e4-7219-41a7-b20d-a58945262b53" + "0a1b9f0c-3698-446c-8ba3-f30bbcd603d5" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5554\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"769ddc44-0e43-4899-9022-aa1458728002\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1376\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a7bb5cc3-8d02-4621-b943-742e3667496f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "47ecb328-c79f-4345-940c-d9d518d93254" + "3bd1bd08-d947-48d4-b911-a525548c185f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "14981" ], "x-ms-correlation-request-id": [ - "ab963d4a-6949-47ae-ae41-5f9201751450" + "023a499b-e668-4cf9-a805-861d503be569" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234017Z:ab963d4a-6949-47ae-ae41-5f9201751450" + "CENTRALUS:20150711T211436Z:023a499b-e668-4cf9-a805-861d503be569" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:16 GMT" + "Sat, 11 Jul 2015 21:14:36 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,28 +451,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzYvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"CustomLinkedService\",\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "278" + "175" ], "x-ms-client-request-id": [ - "f70f1584-7292-453a-860d-b0bc3ab21179" + "ead55b41-d019-4678-adad-f649db3e0b82" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk5554_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk1376_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -517,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "4cafd48d-5230-4ecd-ba1f-671dfa818b0a" + "8e4dea30-ab0a-4fb0-9c13-d9cfac6f0b99" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1193" ], "x-ms-correlation-request-id": [ - "b5dc75fb-ce8c-4605-a801-c89057df1438" + "becb7255-8633-444f-90d1-73586dc3e993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234017Z:b5dc75fb-ce8c-4605-a801-c89057df1438" + "CENTRALUS:20150711T211437Z:becb7255-8633-444f-90d1-73586dc3e993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -535,7 +502,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:17 GMT" + "Sat, 11 Jul 2015 21:14:36 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,28 +514,28 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzYvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d482ea2-0106-480b-b867-5c0c0aa77870" + "ec7bbaf4-4ddf-4a51-bedf-13bbdc35a381" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk5554_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk1376_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,16 +547,16 @@ "no-cache" ], "x-ms-request-id": [ - "3332712d-9fc0-4e0b-800e-93464e17d77a" + "7ee271a3-d1c0-44e3-8287-1d7eecea956b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" + "14980" ], "x-ms-correlation-request-id": [ - "fb2a0e52-be82-450b-b07f-dc657286fbdc" + "2c2c40fb-2e1a-4ef0-bf18-562db9215a00" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234017Z:fb2a0e52-be82-450b-b07f-dc657286fbdc" + "CENTRALUS:20150711T211437Z:2c2c40fb-2e1a-4ef0-bf18-562db9215a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +565,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:17 GMT" + "Sat, 11 Jul 2015 21:14:37 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -607,22 +577,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzYvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd3daa7f-b973-4c18-acbf-613e947c5fca" + "6b9998f1-ec92-4d3e-82a3-c3ab01716448" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk5554_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk1376_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -634,16 +604,16 @@ "no-cache" ], "x-ms-request-id": [ - "bfa484ed-7e50-41eb-9230-bba8af08349f" + "4804b316-8d4c-4e30-a11c-b61197bdb859" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" + "14979" ], "x-ms-correlation-request-id": [ - "b75006c4-5707-45de-ba0c-7b92d56baee4" + "623bf23d-e2cf-440a-b605-fe536055f37a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234017Z:b75006c4-5707-45de-ba0c-7b92d56baee4" + "CENTRALUS:20150711T211437Z:623bf23d-e2cf-440a-b605-fe536055f37a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -652,7 +622,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:17 GMT" + "Sat, 11 Jul 2015 21:14:37 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -664,16 +634,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzYvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5f8b2ce-ac65-478a-a743-4b51dd186cdb" + "cc8202df-8ab8-42a3-bef7-72900333ef80" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Linked service foo not found.\",\r\n \"code\": \"LinkedServiceNotFound\"\r\n}", @@ -691,16 +661,16 @@ "no-cache" ], "x-ms-request-id": [ - "02dd9213-d180-4a15-b637-4daaa278d06e" + "c82c05fc-1f2c-4a46-981c-48db5af501e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" + "14977" ], "x-ms-correlation-request-id": [ - "9843c9b4-eedd-4977-9fc5-109cba3d7c9f" + "47fa736d-23c2-4cdc-b20b-b271399221db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234018Z:9843c9b4-eedd-4977-9fc5-109cba3d7c9f" + "CENTRALUS:20150711T211438Z:47fa736d-23c2-4cdc-b20b-b271399221db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -709,7 +679,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:17 GMT" + "Sat, 11 Jul 2015 21:14:37 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -721,16 +691,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzYvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "815f52f1-d258-4d5b-b2e0-75a4b013232b" + "d2247979-5e2f-4279-8dd8-11a2db2e5ae8" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -748,16 +718,16 @@ "15" ], "x-ms-request-id": [ - "9cf6160d-2ced-438a-aeb9-ca0cfe75f83e" + "920e7308-13f5-46cd-892f-8fe03d25e552" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1192" ], "x-ms-correlation-request-id": [ - "fabbfb3f-ae22-42c0-b41e-24f9f9b0cb74" + "0ea71020-6740-477b-8fa6-003a2c8c1362" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234018Z:fabbfb3f-ae22-42c0-b41e-24f9f9b0cb74" + "CENTRALUS:20150711T211437Z:0ea71020-6740-477b-8fa6-003a2c8c1362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,10 +736,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:17 GMT" + "Sat, 11 Jul 2015 21:14:37 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo/operationresults/fad6db6a2d7b44ce9d0a7d0b06ed730d?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo/operationresults/a02fe0ecd9a44a6e9f764723cf38520a?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -781,16 +751,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554/linkedservices/foo/operationresults/fad6db6a2d7b44ce9d0a7d0b06ed730d?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvZmFkNmRiNmEyZDdiNDRjZTlkMGE3ZDBiMDZlZDczMGQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376/linkedservices/foo/operationresults/a02fe0ecd9a44a6e9f764723cf38520a?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzYvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvYTAyZmUwZWNkOWE0NGE2ZTlmNzY0NzIzY2YzODUyMGE/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -805,16 +775,16 @@ "no-cache" ], "x-ms-request-id": [ - "6e686162-1dc4-4555-b2c9-81534214cd91" + "46cceb4c-2939-4ace-b1f7-423f28807cbd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" + "14978" ], "x-ms-correlation-request-id": [ - "d20c1c43-71be-44e3-b690-950404aec6de" + "6588a195-65de-41be-8263-00f07aade847" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234018Z:d20c1c43-71be-44e3-b690-950404aec6de" + "CENTRALUS:20150711T211438Z:6588a195-65de-41be-8263-00f07aade847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -823,7 +793,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:17 GMT" + "Sat, 11 Jul 2015 21:14:37 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -835,16 +805,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk9176/providers/Microsoft.DataFactory/datafactories/onesdk5554?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU1NTQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7979/providers/Microsoft.DataFactory/datafactories/onesdk1376?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazEzNzY/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b843a547-b7df-4019-b9f2-b6ce05ba4fb5" + "1c27619d-2e4c-4921-be82-c6f01b168065" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -859,16 +829,16 @@ "no-cache" ], "x-ms-request-id": [ - "8bf7f660-aee6-4c77-918a-4352d46165ac" + "b6beb442-10d1-4d7b-824f-9cbfbb87132c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1191" ], "x-ms-correlation-request-id": [ - "505a2062-c137-4670-9186-62c8adbebc3a" + "b4a38a70-c944-45be-a6ad-5d45983779b5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T234018Z:505a2062-c137-4670-9186-62c8adbebc3a" + "CENTRALUS:20150711T211439Z:b4a38a70-c944-45be-a6ad-5d45983779b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,7 +847,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:40:18 GMT" + "Sat, 11 Jul 2015 21:14:39 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -891,11 +861,11 @@ ], "Names": { "Test-LinkedServicePiping": [ - "onesdk5554", - "onesdk9176" + "onesdk1376", + "onesdk7979" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServiceWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServiceWithDataFactoryParameter.json index 7ab4c9c0449e..0cf2e8158ee7 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServiceWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServiceWithDataFactoryParameter.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "862c5248-9f22-4583-918c-af295b74bf17" - ], - "x-ms-correlation-request-id": [ - "862c5248-9f22-4583-918c-af295b74bf17" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233923Z:862c5248-9f22-4583-918c-af295b74bf17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:39:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "2bb8a60b-bf19-4c47-ba80-dbb872290570" - ], - "x-ms-correlation-request-id": [ - "2bb8a60b-bf19-4c47-ba80-dbb872290570" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233923Z:2bb8a60b-bf19-4c47-ba80-dbb872290570" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:39:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14975" ], "x-ms-request-id": [ - "501c72cf-5fcc-41a5-bd65-abffa666481f" + "9268f077-e942-4de5-960f-b8f570cdd6af" ], "x-ms-correlation-request-id": [ - "501c72cf-5fcc-41a5-bd65-abffa666481f" + "9268f077-e942-4de5-960f-b8f570cdd6af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233923Z:501c72cf-5fcc-41a5-bd65-abffa666481f" + "CENTRALUS:20150711T211612Z:9268f077-e942-4de5-960f-b8f570cdd6af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:23 GMT" + "Sat, 11 Jul 2015 21:16:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk1663\",\r\n \"name\": \"onesdk1663\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk3672\",\r\n \"name\": \"onesdk3672\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1143" + "1190" ], "x-ms-request-id": [ - "10bd2121-f09a-4cd4-abdb-5111da245002" + "ad5e04d8-2877-423a-9358-e5e2e8d298a9" ], "x-ms-correlation-request-id": [ - "10bd2121-f09a-4cd4-abdb-5111da245002" + "ad5e04d8-2877-423a-9358-e5e2e8d298a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233924Z:10bd2121-f09a-4cd4-abdb-5111da245002" + "CENTRALUS:20150711T211613Z:ad5e04d8-2877-423a-9358-e5e2e8d298a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:23 GMT" + "Sat, 11 Jul 2015 21:16:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk1663/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazE2NjMvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk3672/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazM2NzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14974" ], "x-ms-request-id": [ - "116ff2d6-d4a7-47ad-a078-ae2e708b5e30" + "c9c61a0e-e77c-49bc-a475-40d051089483" ], "x-ms-correlation-request-id": [ - "116ff2d6-d4a7-47ad-a078-ae2e708b5e30" + "c9c61a0e-e77c-49bc-a475-40d051089483" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233924Z:116ff2d6-d4a7-47ad-a078-ae2e708b5e30" + "CENTRALUS:20150711T211613Z:c9c61a0e-e77c-49bc-a475-40d051089483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:23 GMT" + "Sat, 11 Jul 2015 21:16:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:30b66c82-1ade-40d3-bccc-8d56c0ff1452" + "centralus:c0d5db7d-4ee6-4a1e-a085-7a1557f10e6f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14937" ], "x-ms-correlation-request-id": [ - "dfe1a0c5-a7fc-44a6-b807-2411c5079da2" + "f3605569-a040-4dcf-8bcb-30db51dec2e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233924Z:dfe1a0c5-a7fc-44a6-b807-2411c5079da2" + "CENTRALUS:20150711T211613Z:f3605569-a040-4dcf-8bcb-30db51dec2e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:23 GMT" + "Sat, 11 Jul 2015 21:16:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk8512\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk8704\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "ff9ecf68-f87b-4bec-9f6a-d9ad393d72e7" + "9ed40a05-0a07-49c0-a4c6-f023270d6cde" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8512\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84196dc8-10a3-46cd-8521-c3ecf175e5af\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8704\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d2edf787-7022-466a-a44e-67c1ff2440d9\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "28473fbe-f312-47ee-93e1-bb9b8b2966b0" + "6b0a0ace-e519-4c8c-8d26-119b15ffab11" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1185" ], "x-ms-correlation-request-id": [ - "d217b4dc-4506-4b11-8c05-c383819a3776" + "ce115314-ab16-43e2-ac53-4c571389f0ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233925Z:d217b4dc-4506-4b11-8c05-c383819a3776" + "CENTRALUS:20150711T211615Z:ce115314-ab16-43e2-ac53-4c571389f0ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:25 GMT" + "Sat, 11 Jul 2015 21:16:15 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2dfaac04-4f98-4697-809a-c47867d3c0f6" + "edcdd8a2-47b0-43b4-b836-f332be5a1d3f" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8512\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84196dc8-10a3-46cd-8521-c3ecf175e5af\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8704\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d2edf787-7022-466a-a44e-67c1ff2440d9\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "f5f1cac9-037d-4a31-991a-9f4c44e4d536" + "eceb5e83-34bf-4d86-8c41-337367a76c10" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14977" ], "x-ms-correlation-request-id": [ - "526aec31-2c4a-4fac-8b20-20abfb246ffb" + "390da0cb-d092-49d8-8823-a4a403a53a6e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233925Z:526aec31-2c4a-4fac-8b20-20abfb246ffb" + "CENTRALUS:20150711T211615Z:390da0cb-d092-49d8-8823-a4a403a53a6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:25 GMT" + "Sat, 11 Jul 2015 21:16:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c18d64f3-a61b-4965-aa3d-4bc74f442df5" + "f3d006b1-2ce8-4791-8b04-1db80b57b525" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8512\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84196dc8-10a3-46cd-8521-c3ecf175e5af\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8704\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d2edf787-7022-466a-a44e-67c1ff2440d9\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "b6fbe3ef-494f-4f47-8f16-4460e85c0cb9" + "47c0c81d-b06e-4eb0-9ea3-5d12dacf4cdf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14976" ], "x-ms-correlation-request-id": [ - "03ae5952-7145-4e23-aa3f-4402e6007a34" + "97781547-0ccf-4008-9a71-b0a478dc646c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233931Z:03ae5952-7145-4e23-aa3f-4402e6007a34" + "CENTRALUS:20150711T211620Z:97781547-0ccf-4008-9a71-b0a478dc646c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:30 GMT" + "Sat, 11 Jul 2015 21:16:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,28 +391,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"CustomLinkedService\",\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "278" + "175" ], "x-ms-client-request-id": [ - "8a857cc1-79a7-4269-b25a-aa94c01f3406" + "8d1cc58f-15f7-47ef-9e48-71d37f4558cd" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk8512_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8704_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -517,16 +424,16 @@ "no-cache" ], "x-ms-request-id": [ - "e5ee6f3d-453b-43bd-8001-70b23b54a50b" + "21c17bf9-5029-40d0-a8ed-4c98d10323dc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1184" ], "x-ms-correlation-request-id": [ - "7f1ea55a-b9e8-4ca5-863f-ff86c1affa13" + "76348bb5-83f3-4c65-9446-8aab98463533" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233931Z:7f1ea55a-b9e8-4ca5-863f-ff86c1affa13" + "CENTRALUS:20150711T211621Z:76348bb5-83f3-4c65-9446-8aab98463533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -535,7 +442,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:31 GMT" + "Sat, 11 Jul 2015 21:16:20 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,28 +454,28 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5337f64e-1535-4be3-9cf7-8c34b632c607" + "a0cb7895-1735-4a74-b65f-e7815849a8c7" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk8512_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8704_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,16 +487,16 @@ "no-cache" ], "x-ms-request-id": [ - "3c8ba0a7-ad3c-4afe-b967-9bdb651e60f1" + "4d113d9a-3b22-4a78-9f88-84a647e8d93f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14975" ], "x-ms-correlation-request-id": [ - "0285e290-9053-40e8-adcf-3ba8c5f60736" + "27f8e9f1-8b26-4c06-950f-26585735d67e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233931Z:0285e290-9053-40e8-adcf-3ba8c5f60736" + "CENTRALUS:20150711T211621Z:27f8e9f1-8b26-4c06-950f-26585735d67e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +505,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:31 GMT" + "Sat, 11 Jul 2015 21:16:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -607,22 +517,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85a5409b-d181-4b34-9c3f-3b2b59d22156" + "6d387ce3-f8a7-4b6a-bb2e-308b53aabd44" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk8512_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8704_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -634,16 +544,16 @@ "no-cache" ], "x-ms-request-id": [ - "31adce53-8308-4492-a7f5-88b8c143a162" + "075cff61-03ca-45a2-b1f1-f0a952b1cc9f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "14974" ], "x-ms-correlation-request-id": [ - "8a284534-3348-4407-9ff0-4d09fe84698e" + "3de47c44-f4ca-40fd-990f-b005ffcd4ce4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233932Z:8a284534-3348-4407-9ff0-4d09fe84698e" + "CENTRALUS:20150711T211621Z:3de47c44-f4ca-40fd-990f-b005ffcd4ce4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -652,7 +562,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:31 GMT" + "Sat, 11 Jul 2015 21:16:21 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -664,16 +574,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45a688c5-1e2f-436e-9355-7a68ecfbbbff" + "6435fcf8-76c8-4797-88a5-78c97e219000" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -691,16 +601,16 @@ "15" ], "x-ms-request-id": [ - "36f1f2c5-102b-4f91-b5de-57d24fb076fd" + "e51198a1-94a9-4418-a4dd-96e6b7d26d4d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1183" ], "x-ms-correlation-request-id": [ - "f50c01a6-a5c8-4766-bd03-0f2f79c4dc29" + "377c9fc6-07dd-4965-a581-9ce05fe1f01c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233932Z:f50c01a6-a5c8-4766-bd03-0f2f79c4dc29" + "CENTRALUS:20150711T211622Z:377c9fc6-07dd-4965-a581-9ce05fe1f01c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -709,10 +619,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:31 GMT" + "Sat, 11 Jul 2015 21:16:21 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo/operationresults/b6560b8791d64aab982bbf376afe670f?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo/operationresults/9528c44fdfc34fecad174d475512d8ee?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -724,16 +634,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512/linkedservices/foo/operationresults/b6560b8791d64aab982bbf376afe670f?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTIvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvYjY1NjBiODc5MWQ2NGFhYjk4MmJiZjM3NmFmZTY3MGY/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704/linkedservices/foo/operationresults/9528c44fdfc34fecad174d475512d8ee?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvOTUyOGM0NGZkZmMzNGZlY2FkMTc0ZDQ3NTUxMmQ4ZWU/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -748,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "c35a9237-3a9c-41e3-a6b4-b824734e8869" + "6cbb62ec-d464-43ca-8ce8-a56d3fcea7e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14973" ], "x-ms-correlation-request-id": [ - "08978273-5ede-43ca-a47d-2fe3d5bfba9b" + "3ca6248f-15f6-4b48-bded-0b2271527171" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233932Z:08978273-5ede-43ca-a47d-2fe3d5bfba9b" + "CENTRALUS:20150711T211622Z:3ca6248f-15f6-4b48-bded-0b2271527171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,7 +676,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:32 GMT" + "Sat, 11 Jul 2015 21:16:21 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -778,16 +688,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1663/providers/Microsoft.DataFactory/datafactories/onesdk8512?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE2NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1MTI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3672/providers/Microsoft.DataFactory/datafactories/onesdk8704?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MDQ/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26cf9d5f-7db3-4fa0-bddb-fcf46a3fc52f" + "3a25613e-103f-4dfb-b3e1-ba2aced0dd14" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -802,16 +712,16 @@ "no-cache" ], "x-ms-request-id": [ - "03183169-84c2-4272-a970-c3d3cffb9889" + "a3a290e8-ffc6-4553-9323-13d7e52b30ec" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1182" ], "x-ms-correlation-request-id": [ - "0a7ff8b3-820c-4a9e-abaa-3f2d7fc1f049" + "a69a0314-62c1-4fc8-a1f2-ce8a3406d42b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T233933Z:0a7ff8b3-820c-4a9e-abaa-3f2d7fc1f049" + "CENTRALUS:20150711T211623Z:a69a0314-62c1-4fc8-a1f2-ce8a3406d42b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -820,7 +730,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:39:32 GMT" + "Sat, 11 Jul 2015 21:16:22 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -834,11 +744,11 @@ ], "Names": { "Test-LinkedServiceWithDataFactoryParameter": [ - "onesdk8512", - "onesdk1663" + "onesdk8704", + "onesdk3672" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTable.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTable.json index b7c602bfdc9e..ca699472f239 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTable.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTable.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" - ], - "x-ms-request-id": [ - "3c26d2d7-6006-492e-bf10-f06b6e6c8355" - ], - "x-ms-correlation-request-id": [ - "3c26d2d7-6006-492e-bf10-f06b6e6c8355" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235106Z:3c26d2d7-6006-492e-bf10-f06b6e6c8355" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:51:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" - ], - "x-ms-request-id": [ - "cbc88c14-eea9-4d0a-91a6-96d52e3ff1f3" - ], - "x-ms-correlation-request-id": [ - "cbc88c14-eea9-4d0a-91a6-96d52e3ff1f3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235106Z:cbc88c14-eea9-4d0a-91a6-96d52e3ff1f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:51:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -109,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "14964" ], "x-ms-request-id": [ - "960e56b4-11d2-476e-9622-1843ab50dc31" + "a95265a2-61ae-4409-8ed4-eea595a395eb" ], "x-ms-correlation-request-id": [ - "960e56b4-11d2-476e-9622-1843ab50dc31" + "a95265a2-61ae-4409-8ed4-eea595a395eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235106Z:960e56b4-11d2-476e-9622-1843ab50dc31" + "CENTRALUS:20150711T210534Z:a95265a2-61ae-4409-8ed4-eea595a395eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:06 GMT" + "Sat, 11 Jul 2015 21:05:33 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk7874\",\r\n \"name\": \"onesdk7874\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk974\",\r\n \"name\": \"onesdk974\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "176" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1187" ], "x-ms-request-id": [ - "3e93fad1-9116-49d7-bf12-fd65f2078afb" + "61cfc624-04c9-4f08-bc8f-44331213f3e0" ], "x-ms-correlation-request-id": [ - "3e93fad1-9116-49d7-bf12-fd65f2078afb" + "61cfc624-04c9-4f08-bc8f-44331213f3e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235107Z:3e93fad1-9116-49d7-bf12-fd65f2078afb" + "CENTRALUS:20150711T210535Z:61cfc624-04c9-4f08-bc8f-44331213f3e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:06 GMT" + "Sat, 11 Jul 2015 21:05:35 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk7874/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NzQvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk974/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazk3NC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "14963" ], "x-ms-request-id": [ - "c240c683-ebbf-4f06-a18a-7428dae67159" + "654fffa9-1511-4dca-af6f-215030d457ef" ], "x-ms-correlation-request-id": [ - "c240c683-ebbf-4f06-a18a-7428dae67159" + "654fffa9-1511-4dca-af6f-215030d457ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235107Z:c240c683-ebbf-4f06-a18a-7428dae67159" + "CENTRALUS:20150711T210535Z:654fffa9-1511-4dca-af6f-215030d457ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:06 GMT" + "Sat, 11 Jul 2015 21:05:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:05aaf68c-c2e9-493f-9a99-ea6710c076e6" + "centralus:51da7107-1e23-4e24-ac79-3a5f4361ab61" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31912" + "14996" ], "x-ms-correlation-request-id": [ - "616c7ac7-2ccc-4990-a5d2-c60b2348f908" + "b849ab5a-8de0-4838-99b2-f994795a1b1e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235107Z:616c7ac7-2ccc-4990-a5d2-c60b2348f908" + "CENTRALUS:20150711T210537Z:b849ab5a-8de0-4838-99b2-f994795a1b1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:06 GMT" + "Sat, 11 Jul 2015 21:05:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5ND9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk7074\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk3294\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "6911743e-a5a5-4bf2-a1fb-048392cf1aaa" + "097dc116-72e0-4e37-9b4d-002d28d5c573" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7074\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"88062808-e4d5-46e6-b5a7-11d6bea2e41c\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3294\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e2d056dc-15d0-4826-95e7-eda3e24f83c1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "9940470d-bb99-43fc-9ca2-b6d39332c5d9" + "af30dc98-8784-4e1a-8e8d-f5e044f49860" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1194" ], "x-ms-correlation-request-id": [ - "634efc6f-ed6b-431e-86b2-3be23f183f10" + "e461eb17-52e8-4aab-ab52-236b7d67f415" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235108Z:634efc6f-ed6b-431e-86b2-3be23f183f10" + "CENTRALUS:20150711T210538Z:e461eb17-52e8-4aab-ab52-236b7d67f415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:08 GMT" + "Sat, 11 Jul 2015 21:05:37 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5ND9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb2b2c96-d523-455d-8b3d-15ef787ba727" + "81ec81f7-7aab-4ecd-bea7-7c3cf4227b09" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7074\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"88062808-e4d5-46e6-b5a7-11d6bea2e41c\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3294\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e2d056dc-15d0-4826-95e7-eda3e24f83c1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "eeb48081-6187-4ac5-bdcc-bd831fc40fcb" + "5de65e89-5c18-41ff-9711-9e47d2087dd5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "14990" ], "x-ms-correlation-request-id": [ - "2aa4c14a-8718-4cc0-b85e-6b26385952e7" + "4fe9512f-b424-4cfa-8898-2f113fe0ef2a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235109Z:2aa4c14a-8718-4cc0-b85e-6b26385952e7" + "CENTRALUS:20150711T210538Z:4fe9512f-b424-4cfa-8898-2f113fe0ef2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:08 GMT" + "Sat, 11 Jul 2015 21:05:37 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5ND9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e9ada3c-f306-4665-89e4-978bddae15a2" + "c9d9795a-8852-4bcf-b77c-74845da663da" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7074\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"88062808-e4d5-46e6-b5a7-11d6bea2e41c\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3294\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e2d056dc-15d0-4826-95e7-eda3e24f83c1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "27975ca9-583e-4770-8268-4f8563b54167" + "f2331818-fdde-475b-8e69-c0faf7ed8f2f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "14989" ], "x-ms-correlation-request-id": [ - "56026121-099f-42c8-9ba5-5ea3fbcae09c" + "d50dfea3-24c7-4a39-af99-c6bbae6f41f1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235114Z:56026121-099f-42c8-9ba5-5ea3fbcae09c" + "CENTRALUS:20150711T210543Z:d50dfea3-24c7-4a39-af99-c6bbae6f41f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:13 GMT" + "Sat, 11 Jul 2015 21:05:43 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5ND9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39543ebb-3f9d-440a-9613-e6353da6a5c2" + "bbfaaafe-4ba5-4eda-91f4-eebea651e1f6" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7074\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"88062808-e4d5-46e6-b5a7-11d6bea2e41c\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3294\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e2d056dc-15d0-4826-95e7-eda3e24f83c1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "442" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "693b93d8-264b-43f2-b467-e88db4d829ce" + "a0296c2a-4fa9-4abf-9070-72795ff1c86d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" + "14988" ], "x-ms-correlation-request-id": [ - "048cf6ab-3053-4c1e-9bce-253be4a1ddac" + "f5c21eb5-13c5-426f-977e-bf68c550abf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235119Z:048cf6ab-3053-4c1e-9bce-253be4a1ddac" + "CENTRALUS:20150711T210548Z:f5c21eb5-13c5-426f-977e-bf68c550abf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:18 GMT" + "Sat, 11 Jul 2015 21:05:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,28 +451,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/linkedservices/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/linkedservices/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC9saW5rZWRzZXJ2aWNlcy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"CustomLinkedService\",\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "278" + "175" ], "x-ms-client-request-id": [ - "df8e6210-6b51-4cc6-b4fe-3eead959e2bd" + "48f4dd8d-618b-4364-991d-cf456083d203" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk7074_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk3294_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "335" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "9bbfa16a-f651-4c50-a32d-cd606459a311" + "cd0051e3-6578-42f0-813b-05ef40e0b98c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1193" ], "x-ms-correlation-request-id": [ - "9de0312d-4503-467d-9a54-a8fe8716972d" + "ea6c703a-e582-474c-bbe0-255ca1cb31b0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235119Z:9de0312d-4503-467d-9a54-a8fe8716972d" + "CENTRALUS:20150711T210549Z:ea6c703a-e582-474c-bbe0-255ca1cb31b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +502,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:18 GMT" + "Sat, 11 Jul 2015 21:05:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/linkedservices/foo2?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -604,28 +514,28 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/linkedservices/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/linkedservices/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC9saW5rZWRzZXJ2aWNlcy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f0c94a1-ca16-41c5-b2a1-10e356027304" + "05bbcb9e-1c02-40bb-bc50-f2729fd58aa8" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk7074_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk3294_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "335" ], "Content-Type": [ "application/json; charset=utf-8" @@ -637,16 +547,16 @@ "no-cache" ], "x-ms-request-id": [ - "dd054127-fa08-4784-b8f7-04bfe3166fe8" + "7ea8fc33-2576-47b1-b432-f6075b7cebd6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "14987" ], "x-ms-correlation-request-id": [ - "0defd988-37d7-4a3c-9612-e300ebab79d9" + "88ca8588-727d-493e-a2fe-ed9ef26f6f4a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235120Z:0defd988-37d7-4a3c-9612-e300ebab79d9" + "CENTRALUS:20150711T210549Z:88ca8588-727d-493e-a2fe-ed9ef26f6f4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -655,7 +565,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:20 GMT" + "Sat, 11 Jul 2015 21:05:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -667,28 +577,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"type\": \"CustomDataSet\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"linkedServiceName\": \"foo2\",\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "284" + "283" ], "x-ms-client-request-id": [ - "724afbe1-6072-43da-8982-0bd250fe1f38" + "bda0878b-087c-4b01-ab8e-6c2dd8b7f6cb" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:51:19.9894691Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:05:49.5667822Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -700,16 +610,16 @@ "no-cache" ], "x-ms-request-id": [ - "98427e81-be81-431c-87ae-bc64cb0f8da9" + "8c72c87b-78e1-4719-8450-e43593b38c30" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "1192" ], "x-ms-correlation-request-id": [ - "9717a84f-6450-4265-a96d-452b7343dd18" + "83698d0a-b41b-410b-9a6a-004cd70a11a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235120Z:9717a84f-6450-4265-a96d-452b7343dd18" + "CENTRALUS:20150711T210549Z:83698d0a-b41b-410b-9a6a-004cd70a11a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,10 +628,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:20 GMT" + "Sat, 11 Jul 2015 21:05:49 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -733,85 +643,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4868b9d5-0969-440f-a394-086d9fb82177" - ], - "x-ms-version": [ - "2015-01-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:51:19.9894691Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "419" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2d954c37-d0fe-472d-9673-3a33d4695d67" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" - ], - "x-ms-correlation-request-id": [ - "6a4e2787-f174-4224-92d2-21d4723d3496" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235120Z:6a4e2787-f174-4224-92d2-21d4723d3496" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:51:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5aa57860-a839-4876-905b-857b139abb41" + "545fe732-79cd-4044-8fac-a80adf6a1f25" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:51:19.9894691Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:05:49.5667822Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -823,16 +673,16 @@ "no-cache" ], "x-ms-request-id": [ - "e140465c-482d-4953-bd93-bac44f7ab2ac" + "fe047fec-beef-4f35-9a24-f2cbc6b598bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "14986" ], "x-ms-correlation-request-id": [ - "9309b103-1ce4-45fb-a000-8778fec7c53a" + "38356fe4-19a3-4d26-9fac-c2b5eb635e46" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235125Z:9309b103-1ce4-45fb-a000-8778fec7c53a" + "CENTRALUS:20150711T210550Z:38356fe4-19a3-4d26-9fac-c2b5eb635e46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +691,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:25 GMT" + "Sat, 11 Jul 2015 21:05:49 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -853,25 +703,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a497b7-19bd-4d00-a81a-72349b353005" + "d0b61702-30ff-4597-a429-6dc63da6db58" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:51:20.2978456Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:05:49.5023719Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +733,16 @@ "no-cache" ], "x-ms-request-id": [ - "328dc0cb-4bd5-4151-b43b-8f5c01f56333" + "251465f3-72b6-47c2-a604-76ed125d4559" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "14985" ], "x-ms-correlation-request-id": [ - "e1c648f4-7200-4e17-922e-32c5c07d9d1b" + "62acaa2c-c132-4d9c-81d8-dce0c2bf2e3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235131Z:e1c648f4-7200-4e17-922e-32c5c07d9d1b" + "CENTRALUS:20150711T210555Z:62acaa2c-c132-4d9c-81d8-dce0c2bf2e3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,7 +751,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:30 GMT" + "Sat, 11 Jul 2015 21:05:55 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -913,22 +763,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "822470d9-cd19-48c0-a0e9-b9094e01ddab" + "0240f5b9-64c0-4aef-8d74-ce80f21fae72" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:51:20.2978456Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:05:49.5023719Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -940,16 +790,16 @@ "no-cache" ], "x-ms-request-id": [ - "356a15c2-7d75-40d0-8b1b-1dc8c2ca9667" + "9d033875-9b50-4e33-970e-b57918409eec" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "14984" ], "x-ms-correlation-request-id": [ - "288b19bc-f011-493f-9412-93847b5ca703" + "d3406f4e-7aa2-49d4-9055-3ed1eaefcd37" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235131Z:288b19bc-f011-493f-9412-93847b5ca703" + "CENTRALUS:20150711T210555Z:d3406f4e-7aa2-49d4-9055-3ed1eaefcd37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -958,7 +808,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:30 GMT" + "Sat, 11 Jul 2015 21:05:55 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -970,16 +820,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa43e557-8eaa-4798-9894-12a40ec47bf4" + "cdd7df77-7486-4c97-89af-6dacb6f4c760" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -997,16 +847,16 @@ "15" ], "x-ms-request-id": [ - "02238946-6483-43c5-979b-dc7e747a9c16" + "16039d69-0ec0-47d0-945b-d7f9e379afcb" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1191" ], "x-ms-correlation-request-id": [ - "79e0beb4-15ec-46e6-a6c6-e5f27b8ed7f2" + "93d5a3ee-e89d-4866-af30-2f64e65c37b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235131Z:79e0beb4-15ec-46e6-a6c6-e5f27b8ed7f2" + "CENTRALUS:20150711T210555Z:93d5a3ee-e89d-4866-af30-2f64e65c37b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1015,10 +865,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:30 GMT" + "Sat, 11 Jul 2015 21:05:55 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2/operationresults/e288d82c177148d2bd3c6820e118ada0?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2/operationresults/1b9f0a6c27d34fe8a203a2e9a0f49b8e?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -1030,16 +880,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2/operationresults/e288d82c177148d2bd3c6820e118ada0?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy9lMjg4ZDgyYzE3NzE0OGQyYmQzYzY4MjBlMTE4YWRhMD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2/operationresults/1b9f0a6c27d34fe8a203a2e9a0f49b8e?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC90YWJsZXMvZm9vMi9vcGVyYXRpb25yZXN1bHRzLzFiOWYwYTZjMjdkMzRmZThhMjAzYTJlOWEwZjQ5YjhlP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1057,16 +907,16 @@ "15" ], "x-ms-request-id": [ - "45062ad2-31a2-47cd-8333-c0b8ac113c6e" + "51653811-6470-4c8e-8584-c47112178b7a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "14983" ], "x-ms-correlation-request-id": [ - "b167de3c-ced7-40d8-80b1-12bcebae576f" + "56a65ad8-4107-4d16-b9e6-cd214be76cf7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235131Z:b167de3c-ced7-40d8-80b1-12bcebae576f" + "CENTRALUS:20150711T210555Z:56a65ad8-4107-4d16-b9e6-cd214be76cf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1075,10 +925,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:31 GMT" + "Sat, 11 Jul 2015 21:05:55 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2/operationresults/e288d82c177148d2bd3c6820e118ada0?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2/operationresults/1b9f0a6c27d34fe8a203a2e9a0f49b8e?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -1090,16 +940,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074/tables/foo2/operationresults/e288d82c177148d2bd3c6820e118ada0?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy9lMjg4ZDgyYzE3NzE0OGQyYmQzYzY4MjBlMTE4YWRhMD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294/tables/foo2/operationresults/1b9f0a6c27d34fe8a203a2e9a0f49b8e?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5NC90YWJsZXMvZm9vMi9vcGVyYXRpb25yZXN1bHRzLzFiOWYwYTZjMjdkMzRmZThhMjAzYTJlOWEwZjQ5YjhlP2FwaS12ZXJzaW9uPTIwMTUtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1114,16 +964,16 @@ "no-cache" ], "x-ms-request-id": [ - "d81bc05e-2411-4092-aafd-56097240a3e4" + "d5268b14-8ce5-4ee8-9484-54bac854147b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "14982" ], "x-ms-correlation-request-id": [ - "2ded9b37-b925-4037-97f2-3dfb37aaad09" + "52bd2b60-ac25-44eb-b6e5-bc4e5144ad56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235147Z:2ded9b37-b925-4037-97f2-3dfb37aaad09" + "CENTRALUS:20150711T210611Z:52bd2b60-ac25-44eb-b6e5-bc4e5144ad56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1132,7 +982,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:46 GMT" + "Sat, 11 Jul 2015 21:06:10 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1144,16 +994,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk7874/providers/Microsoft.DataFactory/datafactories/onesdk7074?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwNzQ/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk974/providers/Microsoft.DataFactory/datafactories/onesdk3294?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMzI5ND9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f935ed40-f0c2-4453-b13b-65633e89f962" + "1f1b74d0-7906-46dd-af63-c854bdf23746" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1168,16 +1018,16 @@ "no-cache" ], "x-ms-request-id": [ - "68be91cd-e461-4437-b741-30b8bc14a2c1" + "8fb2d007-0c39-4378-9586-aa3a3c68545c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1164" + "1190" ], "x-ms-correlation-request-id": [ - "102826b5-97bb-4ca9-a273-0a252aa988ac" + "33bf9917-cc0b-41cc-a8bd-0a096b11048b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235147Z:102826b5-97bb-4ca9-a273-0a252aa988ac" + "CENTRALUS:20150711T210612Z:33bf9917-cc0b-41cc-a8bd-0a096b11048b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1186,7 +1036,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:51:46 GMT" + "Sat, 11 Jul 2015 21:06:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1200,11 +1050,11 @@ ], "Names": { "Test-Table": [ - "onesdk7074", - "onesdk7874" + "onesdk3294", + "onesdk974" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTablePiping.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTablePiping.json index 31480a5fa191..966c6b06efc4 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTablePiping.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTablePiping.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31904" - ], - "x-ms-request-id": [ - "46813349-3695-47c2-89a4-f2d790eb5922" - ], - "x-ms-correlation-request-id": [ - "46813349-3695-47c2-89a4-f2d790eb5922" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235506Z:46813349-3695-47c2-89a4-f2d790eb5922" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:55:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31903" - ], - "x-ms-request-id": [ - "ea88eb7e-85f1-4321-b258-0a3699a99087" - ], - "x-ms-correlation-request-id": [ - "ea88eb7e-85f1-4321-b258-0a3699a99087" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235507Z:ea88eb7e-85f1-4321-b258-0a3699a99087" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:55:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31902" + "14990" ], "x-ms-request-id": [ - "ed1dc395-c1e1-4690-9f64-0340a472b837" + "3077e3be-af35-403c-bd9f-f480793d71cd" ], "x-ms-correlation-request-id": [ - "ed1dc395-c1e1-4690-9f64-0340a472b837" + "3077e3be-af35-403c-bd9f-f480793d71cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235507Z:ed1dc395-c1e1-4690-9f64-0340a472b837" + "CENTRALUS:20150711T210650Z:3077e3be-af35-403c-bd9f-f480793d71cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:06 GMT" + "Sat, 11 Jul 2015 21:06:50 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk1305\",\r\n \"name\": \"onesdk1305\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6223\",\r\n \"name\": \"onesdk6223\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1143" + "1193" ], "x-ms-request-id": [ - "f1dda6bb-4554-4c81-b90c-a64d8075913b" + "f33f86dc-8a45-4e5f-baba-a1c70505f4ab" ], "x-ms-correlation-request-id": [ - "f1dda6bb-4554-4c81-b90c-a64d8075913b" + "f33f86dc-8a45-4e5f-baba-a1c70505f4ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235507Z:f1dda6bb-4554-4c81-b90c-a64d8075913b" + "CENTRALUS:20150711T210651Z:f33f86dc-8a45-4e5f-baba-a1c70505f4ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:07 GMT" + "Sat, 11 Jul 2015 21:06:50 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk1305/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazEzMDUvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6223/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazYyMjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31901" + "14989" ], "x-ms-request-id": [ - "8333ffcb-a228-4f90-9c4e-c2f4844f897c" + "9dfb30f8-2857-4d1d-9eae-cc058f8ed6f5" ], "x-ms-correlation-request-id": [ - "8333ffcb-a228-4f90-9c4e-c2f4844f897c" + "9dfb30f8-2857-4d1d-9eae-cc058f8ed6f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235507Z:8333ffcb-a228-4f90-9c4e-c2f4844f897c" + "CENTRALUS:20150711T210651Z:9dfb30f8-2857-4d1d-9eae-cc058f8ed6f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:07 GMT" + "Sat, 11 Jul 2015 21:06:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:710a6c26-0b67-4aaf-8b06-175a31eaf49d" + "centralus:68666dd4-a9a8-4cd1-8cea-c32a3a73b082" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31893" + "14992" ], "x-ms-correlation-request-id": [ - "4a95b71c-533b-4142-976d-a65a55e07451" + "1657bcac-bed0-4e02-a07d-28a0cd864d9b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235508Z:4a95b71c-533b-4142-976d-a65a55e07451" + "CENTRALUS:20150711T210651Z:1657bcac-bed0-4e02-a07d-28a0cd864d9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:08 GMT" + "Sat, 11 Jul 2015 21:06:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzM/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzM/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk3673\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk9133\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "69" + "74" ], "x-ms-client-request-id": [ - "25e01172-2f5a-41fc-8745-42274fed1ce5" + "7285931a-2115-4019-801f-53e0fc680d3a" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3673\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"16b20b17-91bb-4c0e-949f-24b7f7a41b88\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9133\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d548bb5f-dcb8-4b02-908d-b2ea4a9be927\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "89bdc795-0a92-44b8-8ce8-36cd4c4425b4" + "23005545-027d-4bd9-98f2-4cb888cb5ade" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1186" ], "x-ms-correlation-request-id": [ - "120b264f-2b31-4d7a-8307-ce595ca2e126" + "51907dd2-1c03-453c-a688-53ee39c8dbad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235509Z:120b264f-2b31-4d7a-8307-ce595ca2e126" + "CENTRALUS:20150711T210653Z:51907dd2-1c03-453c-a688-53ee39c8dbad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:08 GMT" + "Sat, 11 Jul 2015 21:06:53 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzM/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzM/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a206095d-2220-4be6-8edf-5b266b8c0761" + "46193978-f58d-4772-9e88-f5513aa7e1ac" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3673\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"16b20b17-91bb-4c0e-949f-24b7f7a41b88\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9133\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d548bb5f-dcb8-4b02-908d-b2ea4a9be927\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "0d111655-572a-45ed-982d-19cf10afd5b2" + "f5c9878e-bc46-47d4-9e40-82424080be32" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31900" + "14962" ], "x-ms-correlation-request-id": [ - "1844ec25-d1c3-41a8-a1b3-7c9df066b08a" + "b53ca8aa-8f19-4fd1-8a98-4a467ea5e0c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235509Z:1844ec25-d1c3-41a8-a1b3-7c9df066b08a" + "CENTRALUS:20150711T210653Z:b53ca8aa-8f19-4fd1-8a98-4a467ea5e0c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:09 GMT" + "Sat, 11 Jul 2015 21:06:53 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzM/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzM/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bed2a80-68e7-4bb2-a481-8436bb98bffa" + "d2a630d8-4367-4ade-ba87-1f70664d0c30" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3673\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"16b20b17-91bb-4c0e-949f-24b7f7a41b88\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9133\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d548bb5f-dcb8-4b02-908d-b2ea4a9be927\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "05f8fe46-894e-4db3-b4ce-c3fa64e2b8e3" + "34000d3e-168b-4362-ba2e-9d24dbc792ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31899" + "14961" ], "x-ms-correlation-request-id": [ - "3bd0f56f-d792-4106-933b-8ce0ebedf785" + "f8eabc6b-963c-4306-b8f9-529c93fccc80" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235514Z:3bd0f56f-d792-4106-933b-8ce0ebedf785" + "CENTRALUS:20150711T210658Z:f8eabc6b-963c-4306-b8f9-529c93fccc80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:14 GMT" + "Sat, 11 Jul 2015 21:06:58 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzM/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzM/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "feb6ad5d-bed6-48b0-82b5-df0c68cfcb7d" + "ad0e18c0-88bc-496e-aae3-0ddebad8c22b" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3673\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"16b20b17-91bb-4c0e-949f-24b7f7a41b88\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9133\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d548bb5f-dcb8-4b02-908d-b2ea4a9be927\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "472" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "3d423919-6e79-4985-a816-100e7d343795" + "cf74b344-dca1-4237-91c1-313cf1ab575a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31898" + "14960" ], "x-ms-correlation-request-id": [ - "db91c50a-240d-4c18-9c37-24abfd919ff2" + "6913bfd6-a74f-4d11-96c7-5e2e512ebca4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235520Z:db91c50a-240d-4c18-9c37-24abfd919ff2" + "CENTRALUS:20150711T210704Z:6913bfd6-a74f-4d11-96c7-5e2e512ebca4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,7 +439,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:19 GMT" + "Sat, 11 Jul 2015 21:07:04 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,28 +451,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/linkedservices/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/linkedservices/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"CustomLinkedService\",\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "278" + "175" ], "x-ms-client-request-id": [ - "8fd74c7f-3b52-4a98-aafe-0918f0654112" + "3665100e-2fd9-4df1-ab29-20b7f50e8e65" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk3673_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk9133_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "73803e50-c37e-42c8-83d1-02bd55bd03d6" + "45e9996f-c9c1-4ef3-aa1d-3a401ddeebe2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1185" ], "x-ms-correlation-request-id": [ - "a227a38a-a1d1-4b20-99bd-78764bb3ddfe" + "80e5c93c-af51-43d8-bd67-4c88468dd815" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235520Z:a227a38a-a1d1-4b20-99bd-78764bb3ddfe" + "CENTRALUS:20150711T210704Z:80e5c93c-af51-43d8-bd67-4c88468dd815" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +502,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:20 GMT" + "Sat, 11 Jul 2015 21:07:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/linkedservices/foo2?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -604,28 +514,28 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/linkedservices/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/linkedservices/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf522bf4-9c28-47b3-91e4-eb10e8fb2dd9" + "d0a41144-3ae9-4615-be5d-f59152c5262f" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk3673_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk9133_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -637,16 +547,16 @@ "no-cache" ], "x-ms-request-id": [ - "07dd5808-8e00-401a-bcb7-901e38139c7d" + "f45bcee1-5d68-4121-abba-6cf9a7d88c33" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31897" + "14959" ], "x-ms-correlation-request-id": [ - "50fe90a7-dd47-4d95-a9a7-cda920755b9a" + "6470b263-4a51-4ef1-82c7-cecf4c165b5f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235520Z:50fe90a7-dd47-4d95-a9a7-cda920755b9a" + "CENTRALUS:20150711T210704Z:6470b263-4a51-4ef1-82c7-cecf4c165b5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -655,7 +565,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:20 GMT" + "Sat, 11 Jul 2015 21:07:04 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -667,28 +577,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"type\": \"CustomDataSet\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"linkedServiceName\": \"foo2\",\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "284" + "283" ], "x-ms-client-request-id": [ - "15dbf532-6d4b-4f3d-99b3-d2ecb2ba25b3" + "cad08b48-f97c-400a-96e9-69471f5c957d" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:55:20.8729001Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:07:04.6236622Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -700,16 +610,16 @@ "no-cache" ], "x-ms-request-id": [ - "91340518-6de4-486d-998a-3141e93af35d" + "e598a547-ef62-43bb-a851-424b7f1572ff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1184" ], "x-ms-correlation-request-id": [ - "2a2184bc-056a-4ff8-838a-32eb0dd7682e" + "a63811b5-f639-4d58-828b-5b3097142398" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235521Z:2a2184bc-056a-4ff8-838a-32eb0dd7682e" + "CENTRALUS:20150711T210705Z:a63811b5-f639-4d58-828b-5b3097142398" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,10 +628,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:20 GMT" + "Sat, 11 Jul 2015 21:07:05 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -733,25 +643,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7691f8c5-12ef-494c-ac74-4d57df1f540e" + "f3d3f588-85a0-4154-b378-10d3f6f472d1" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:55:20.8729001Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:07:04.6236622Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -763,16 +673,16 @@ "no-cache" ], "x-ms-request-id": [ - "6a0ab8b9-23e5-4ea9-bc2c-73e1609153ad" + "096dca08-6494-4e9e-9293-f0a89bdd1a9f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31896" + "14958" ], "x-ms-correlation-request-id": [ - "c6c04550-2341-4c48-9fd7-b22df04aab7f" + "96e49e44-beb7-4102-8c00-ba47701ea943" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235521Z:c6c04550-2341-4c48-9fd7-b22df04aab7f" + "CENTRALUS:20150711T210705Z:96e49e44-beb7-4102-8c00-ba47701ea943" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +691,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:20 GMT" + "Sat, 11 Jul 2015 21:07:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -793,25 +703,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e05a690-25ae-4081-a5f5-9dfcc8d0a2dc" + "c9ff854d-bafa-4790-a13f-66fd5f70b37c" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:55:20.8729001Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:07:04.5490895Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -823,16 +733,16 @@ "no-cache" ], "x-ms-request-id": [ - "a67b63a3-cff8-4d4c-8707-22007d309d3d" + "5d7cef80-0fac-4252-b9d8-8a94b4ccdab4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31895" + "14957" ], "x-ms-correlation-request-id": [ - "bb4a5ead-c4f0-4916-8e5c-a93d475d04ef" + "7edf5c3a-09c8-4fc4-8d4d-a2ad01ba6015" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235526Z:bb4a5ead-c4f0-4916-8e5c-a93d475d04ef" + "CENTRALUS:20150711T210712Z:7edf5c3a-09c8-4fc4-8d4d-a2ad01ba6015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +751,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:25 GMT" + "Sat, 11 Jul 2015 21:07:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -853,25 +763,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d933707a-0649-40ab-a988-ccfc27398630" - ], - "x-ms-version": [ - "2015-01-01-preview" + "d09024de-d58b-4dc1-a00d-dd4e4f9e46d5" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:55:20.8305586Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:07:04.5490895Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +790,16 @@ "no-cache" ], "x-ms-request-id": [ - "5023e25f-042e-4801-a505-68f47932c8b0" + "d0da896c-598a-4113-b3fe-484943394fb3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31894" + "14956" ], "x-ms-correlation-request-id": [ - "9913e91e-d9ff-4ad5-9f9d-d270d7809bbc" + "da71e738-603b-4803-8fa3-98694449a5d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235531Z:9913e91e-d9ff-4ad5-9f9d-d270d7809bbc" + "CENTRALUS:20150711T210713Z:da71e738-603b-4803-8fa3-98694449a5d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,7 +808,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:31 GMT" + "Sat, 11 Jul 2015 21:07:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -913,73 +820,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f761a45-c6ab-45c1-a649-9e0dc901eeae" + "ce62ce07-26bc-48cb-a8cb-725862e584c5" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:55:20.8305586Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3d9d3530-a6e7-49c2-b1db-37e889a669af" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31893" - ], - "x-ms-correlation-request-id": [ - "c97d8bb4-8190-44c2-943b-0ee69661e75b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235531Z:c97d8bb4-8190-44c2-943b-0ee69661e75b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:55:31 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "26f94bde-8b3b-4e5c-bf92-c2cf0cd6c31e" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Table foo2 not found.\",\r\n \"code\": \"TableNotFound\"\r\n}", @@ -997,16 +847,16 @@ "no-cache" ], "x-ms-request-id": [ - "5f8535c7-cfc0-4fcb-9d5c-862ec3c4128f" + "9f6b079f-3b0d-4fdf-9126-90597705683a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31890" + "14954" ], "x-ms-correlation-request-id": [ - "941481be-b75b-4471-8c0f-6f75461ba7e3" + "ac850c42-cf57-4a7b-bd79-566a94a1e901" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235547Z:941481be-b75b-4471-8c0f-6f75461ba7e3" + "CENTRALUS:20150711T210729Z:ac850c42-cf57-4a7b-bd79-566a94a1e901" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1015,7 +865,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:47 GMT" + "Sat, 11 Jul 2015 21:07:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1027,16 +877,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1546d72-383c-46a2-8a38-d342ebcf3450" + "6625a125-49d0-443c-9c77-9dda8a0c43b8" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1054,76 +904,16 @@ "15" ], "x-ms-request-id": [ - "88ec1923-3cd7-4eee-b41f-10d929ad16d3" + "3f55858d-1cca-4f0a-8301-740cc31d60a2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" - ], - "x-ms-correlation-request-id": [ - "2ed152ef-43c8-4a59-83ca-c20d2db3a0b0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235531Z:2ed152ef-43c8-4a59-83ca-c20d2db3a0b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:55:31 GMT" - ], - "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2/operationresults/c4522715754c406991580f093bf7305d?api-version=2015-01-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2/operationresults/c4522715754c406991580f093bf7305d?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy9jNDUyMjcxNTc1NGM0MDY5OTE1ODBmMDkzYmY3MzA1ZD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-01-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "ab359b99-d71d-4a3a-b5d9-6c6a7ea8007a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31892" + "1183" ], "x-ms-correlation-request-id": [ - "96502bcb-2f5b-4e62-b58c-080ab8f015ec" + "0b8ab2aa-ef5c-43a1-82b3-fbf3eb291b16" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235532Z:96502bcb-2f5b-4e62-b58c-080ab8f015ec" + "CENTRALUS:20150711T210718Z:0b8ab2aa-ef5c-43a1-82b3-fbf3eb291b16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1132,10 +922,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:32 GMT" + "Sat, 11 Jul 2015 21:07:17 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2/operationresults/c4522715754c406991580f093bf7305d?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2/operationresults/5f40cdc7414e45cdad3ef6f24367ec4f?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -1147,16 +937,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673/tables/foo2/operationresults/c4522715754c406991580f093bf7305d?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzMvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy9jNDUyMjcxNTc1NGM0MDY5OTE1ODBmMDkzYmY3MzA1ZD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133/tables/foo2/operationresults/5f40cdc7414e45cdad3ef6f24367ec4f?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzMvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy81ZjQwY2RjNzQxNGU0NWNkYWQzZWY2ZjI0MzY3ZWM0Zj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1171,16 +961,16 @@ "no-cache" ], "x-ms-request-id": [ - "c2495ad1-de04-4918-983c-1b7359987d01" + "52052c69-247e-4e9c-88df-4e9eb29984cb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31891" + "14955" ], "x-ms-correlation-request-id": [ - "da691a71-80d8-448e-b13a-ae5c8cb84be3" + "029c9db8-8255-4a62-b683-2b0241f0c5a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235547Z:da691a71-80d8-448e-b13a-ae5c8cb84be3" + "CENTRALUS:20150711T210720Z:029c9db8-8255-4a62-b683-2b0241f0c5a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1189,7 +979,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:46 GMT" + "Sat, 11 Jul 2015 21:07:21 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1201,16 +991,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk1305/providers/Microsoft.DataFactory/datafactories/onesdk3673?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NzM/YXBpLXZlcnNpb249MjAxNS0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6223/providers/Microsoft.DataFactory/datafactories/onesdk9133?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazkxMzM/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db70f358-f0ce-4bc6-b2cb-cc34d12c1159" + "9081cc02-a38f-4f25-8a08-1dc71bce0861" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1225,16 +1015,16 @@ "no-cache" ], "x-ms-request-id": [ - "746c6d85-3606-4dd0-91c8-f29aba6ad53f" + "f256b336-bf3c-4fcb-997b-99cf9bc3ef63" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1138" + "1182" ], "x-ms-correlation-request-id": [ - "6e47bd92-1a2a-4485-bdbe-8d63aa6199aa" + "27848bd3-42c6-42f6-92eb-d4d418ae2b07" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235548Z:6e47bd92-1a2a-4485-bdbe-8d63aa6199aa" + "CENTRALUS:20150711T210733Z:27848bd3-42c6-42f6-92eb-d4d418ae2b07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1243,7 +1033,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:55:48 GMT" + "Sat, 11 Jul 2015 21:07:32 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1257,11 +1047,11 @@ ], "Names": { "Test-TablePiping": [ - "onesdk3673", - "onesdk1305" + "onesdk9133", + "onesdk6223" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTableWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTableWithDataFactoryParameter.json index 296e08d1c41a..57aea1add6e5 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTableWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTableWithDataFactoryParameter.json @@ -1,104 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31912" - ], - "x-ms-request-id": [ - "98c324ef-0fdf-49f0-86a7-c2ed5e722a7e" - ], - "x-ms-correlation-request-id": [ - "98c324ef-0fdf-49f0-86a7-c2ed5e722a7e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235312Z:98c324ef-0fdf-49f0-86a7-c2ed5e722a7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:53:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Byb3ZpZGVycz8mYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 \"2014-05-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"adfgated1\",\r\n \"adfgated2\",\r\n \"adfgated3\",\r\n \"adfgated4\",\r\n \"adfgated5\",\r\n \"adfgated6\",\r\n \"adfbqupgrade\",\r\n \"2014-04-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2015-01-01-preview\"\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 \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04\",\r\n \"2014-04-01\",\r\n \"2014-11-01\"\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-01\",\r\n \"2014-04-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-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/AzureBackup\",\r\n \"namespace\": \"AzureBackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRP2\",\r\n \"namespace\": \"Microsoft.BackupVaultRP2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-07-10\",\r\n \"2014-08-21\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Notifications\",\r\n \"namespace\": \"Microsoft.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05\",\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03\",\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-10-10\",\r\n \"2014-11-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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\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/4c1319f8-f1e2-4883-a743-cc617922fe35/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 ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/usages\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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-02-26\",\r\n \"2014-04-01-preview\"\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-02-26\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\",\r\n \"02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "28196" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31911" - ], - "x-ms-request-id": [ - "7ee780ce-42e8-4364-8b4e-dfab268267ff" - ], - "x-ms-correlation-request-id": [ - "7ee780ce-42e8-4364-8b4e-dfab268267ff" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235312Z:7ee780ce-42e8-4364-8b4e-dfab268267ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:53:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4Mzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -120,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31910" + "14966" ], "x-ms-request-id": [ - "3e83aa4e-3389-4b6d-a5cb-04f374646773" + "5f11ca37-f9ae-4177-8f99-641ccea7f4d0" ], "x-ms-correlation-request-id": [ - "3e83aa4e-3389-4b6d-a5cb-04f374646773" + "5f11ca37-f9ae-4177-8f99-641ccea7f4d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235312Z:3e83aa4e-3389-4b6d-a5cb-04f374646773" + "CENTRALUS:20150711T210426Z:5f11ca37-f9ae-4177-8f99-641ccea7f4d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,31 +46,31 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:12 GMT" + "Sat, 11 Jul 2015 21:04:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4Mzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "34" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk8838\",\r\n \"name\": \"onesdk8838\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8626\",\r\n \"name\": \"onesdk8626\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1188" ], "x-ms-request-id": [ - "5990cc5e-611a-4765-ab32-0a5bb286ead1" + "8359ee22-d719-4180-b1b1-10149488d7c3" ], "x-ms-correlation-request-id": [ - "5990cc5e-611a-4765-ab32-0a5bb286ead1" + "8359ee22-d719-4180-b1b1-10149488d7c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235313Z:5990cc5e-611a-4765-ab32-0a5bb286ead1" + "CENTRALUS:20150711T210426Z:8359ee22-d719-4180-b1b1-10149488d7c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:12 GMT" + "Sat, 11 Jul 2015 21:04:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourceGroups/onesdk8838/resources?&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlR3JvdXBzL29uZXNkazg4MzgvcmVzb3VyY2VzPyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8626/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazg2MjYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31909" + "14965" ], "x-ms-request-id": [ - "80a9c791-4d7b-4708-a87a-52ae07575de1" + "8e155322-5352-463b-bd80-f5ec6b109d1b" ], "x-ms-correlation-request-id": [ - "80a9c791-4d7b-4708-a87a-52ae07575de1" + "8e155322-5352-463b-bd80-f5ec6b109d1b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235313Z:80a9c791-4d7b-4708-a87a-52ae07575de1" + "CENTRALUS:20150711T210426Z:8e155322-5352-463b-bd80-f5ec6b109d1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:12 GMT" + "Sat, 11 Jul 2015 21:04:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:7df981a6-c4fd-4e03-8cfe-6dfe1bd68300" + "centralus:c744ad9d-3603-4c8f-bb3f-642e51ff21d0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31908" + "14997" ], "x-ms-correlation-request-id": [ - "ba6f444d-1f91-48c0-b54d-abd7696abde7" + "c3ac03da-bc83-4ca4-a637-aa3fcdb18d05" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235313Z:ba6f444d-1f91-48c0-b54d-abd7696abde7" + "CENTRALUS:20150711T210427Z:c3ac03da-bc83-4ca4-a637-aa3fcdb18d05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,34 +199,34 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:13 GMT" + "Sat, 11 Jul 2015 21:04:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0Njc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk968\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk1467\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "68" + "74" ], "x-ms-client-request-id": [ - "7c3db2c0-3d19-4c0e-8b25-4daf532c8f64" + "2cdcd16f-fa53-418e-b9cd-653f69dfed9f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk968\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c0b5a14d-c449-4368-b622-82f3e58a62ec\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1467\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"698ea3d6-6021-459f-9969-77c4b3d867b1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "476" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "78195af3-1861-490e-b672-de89444bb13b" + "f2c9e7c5-2d56-4753-923c-380b8f57591c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" + "1199" ], "x-ms-correlation-request-id": [ - "4da7fe5a-978f-4191-9400-71f15709d64e" + "188e9e44-a029-42e6-8d6c-ed8c9237d98c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235314Z:4da7fe5a-978f-4191-9400-71f15709d64e" + "CENTRALUS:20150711T210429Z:188e9e44-a029-42e6-8d6c-ed8c9237d98c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,10 +256,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:13 GMT" + "Sat, 11 Jul 2015 21:04:29 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -364,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0Njc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98653138-ebdd-48e1-923e-1529256c7ef7" + "514f6cdd-f7ee-4bd2-9da8-4c3e6b078e22" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk968\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c0b5a14d-c449-4368-b622-82f3e58a62ec\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1467\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"698ea3d6-6021-459f-9969-77c4b3d867b1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "476" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "7bcc18e9-e1be-4a00-85c3-7f6cca21a70c" + "26391d56-adb8-423f-bd1a-3cbe18f2961b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31908" + "14998" ], "x-ms-correlation-request-id": [ - "75e5e775-ad26-4450-b97e-8ddd10ed205d" + "6bb407ba-3df4-4ea9-b03e-d12acfe54c13" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235314Z:75e5e775-ad26-4450-b97e-8ddd10ed205d" + "CENTRALUS:20150711T210430Z:6bb407ba-3df4-4ea9-b03e-d12acfe54c13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +319,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:13 GMT" + "Sat, 11 Jul 2015 21:04:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -424,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0Njc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a860a8ba-1ca2-45d0-b161-a5f73f74d94c" + "b74bf70d-d229-4252-8e0d-902447a4aa42" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk968\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"c0b5a14d-c449-4368-b622-82f3e58a62ec\",\r\n \"hCatalogDescription\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1467\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"698ea3d6-6021-459f-9969-77c4b3d867b1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "470" + "443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "9738c87d-af78-4524-9213-ad24860797d6" + "71146805-44e6-4f2a-83d3-3fa11f817adb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31907" + "14997" ], "x-ms-correlation-request-id": [ - "abf94d2d-1fec-444d-842b-22c07eddc76d" + "0d3c9a58-975b-432b-b4a5-f0e15add4d7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235319Z:abf94d2d-1fec-444d-842b-22c07eddc76d" + "CENTRALUS:20150711T210435Z:0d3c9a58-975b-432b-b4a5-f0e15add4d7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:19 GMT" + "Sat, 11 Jul 2015 21:04:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -484,28 +391,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/linkedservices/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC9saW5rZWRzZXJ2aWNlcy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/linkedservices/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"CustomLinkedService\",\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "278" + "175" ], "x-ms-client-request-id": [ - "f2029496-932c-45b4-b3a0-5ea26d92b28a" + "b3083737-5cd7-4a34-9964-4a59d8d8b833" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk968_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk1467_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -517,16 +424,16 @@ "no-cache" ], "x-ms-request-id": [ - "dbe34aca-e4f3-470a-b5de-2fbcfad286b3" + "b4b99998-2951-4d4c-a005-35dc041fefe3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1198" ], "x-ms-correlation-request-id": [ - "e726b354-5fbb-402b-9b47-749bd3f98c10" + "a9fa64f6-47eb-43b9-89ec-006752a87e25" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235320Z:e726b354-5fbb-402b-9b47-749bd3f98c10" + "CENTRALUS:20150711T210435Z:a9fa64f6-47eb-43b9-89ec-006752a87e25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -535,7 +442,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:19 GMT" + "Sat, 11 Jul 2015 21:04:35 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/linkedservices/foo2?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -544,28 +454,28 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/linkedservices/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC9saW5rZWRzZXJ2aWNlcy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/linkedservices/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1980c2b9-6937-48dc-954e-1a55075dc7b6" + "3100812b-305b-4e6f-9036-21daff864ed0" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"extendedProperties\": {\r\n \"PropertyBagPropertyName1\": \"PropertyBagPropertyValue1\",\r\n \"propertyBagPropertyName2\": \"PropertyBagPropertyValue2\"\r\n },\r\n \"hubName\": \"onesdk968_hub\",\r\n \"type\": \"CustomLinkedService\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk1467_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,16 +487,16 @@ "no-cache" ], "x-ms-request-id": [ - "e7241963-8774-4fbe-98d0-616a1877a6ae" + "30ff6256-6a8c-4894-9ebd-6b711846e1fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31906" + "14996" ], "x-ms-correlation-request-id": [ - "a4ed3ec2-da83-4639-b67c-2dbabd545f6e" + "eceb1556-395a-4d06-b307-75c79975de00" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235320Z:a4ed3ec2-da83-4639-b67c-2dbabd545f6e" + "CENTRALUS:20150711T210436Z:eceb1556-395a-4d06-b307-75c79975de00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +505,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:19 GMT" + "Sat, 11 Jul 2015 21:04:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -607,28 +517,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"type\": \"CustomDataSet\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"linkedServiceName\": \"foo2\",\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "284" + "283" ], "x-ms-client-request-id": [ - "986796c4-a644-4696-bae4-a9e5cb5ff0ef" + "c4eecb41-e096-4e1a-8783-adb191df86ce" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:53:20.202854Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:04:36.0747394Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -640,16 +550,16 @@ "no-cache" ], "x-ms-request-id": [ - "b14ae5ec-66df-46cb-a9a9-09e9e92a12fe" + "a75d57d4-e3f1-4ef5-8cc8-adec51d7164e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1197" ], "x-ms-correlation-request-id": [ - "f4f8131a-35c2-48b6-8c91-161e91a9811f" + "62a18fd0-a232-4a45-8f94-47adc363b312" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235320Z:f4f8131a-35c2-48b6-8c91-161e91a9811f" + "CENTRALUS:20150711T210436Z:62a18fd0-a232-4a45-8f94-47adc363b312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -658,10 +568,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:20 GMT" + "Sat, 11 Jul 2015 21:04:36 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -673,85 +583,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "710207fe-f08c-4825-b3b2-825676b3f863" - ], - "x-ms-version": [ - "2015-01-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:53:20.202854Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "24aca7bd-e2f6-4b41-be6f-2ba1cfebbd99" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31905" - ], - "x-ms-correlation-request-id": [ - "d66aec29-871c-40a5-86bd-366add878255" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235320Z:d66aec29-871c-40a5-86bd-366add878255" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Jan 2015 23:53:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82647908-f26d-4509-9d3a-b98a4c411408" + "6e871a66-4664-4ddf-b5c6-5533cc0da8fe" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:53:20.202854Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:04:36.0747394Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -763,16 +613,16 @@ "no-cache" ], "x-ms-request-id": [ - "0ecff8b0-ecab-4377-b7e1-b5a160b1fc4c" + "5f116c89-e95d-42f3-9ed7-34a35bdd7b1e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31904" + "14995" ], "x-ms-correlation-request-id": [ - "83604690-081a-4dbf-a460-a4ab35cf3f90" + "6bd38cd5-7c70-4839-8ee4-22016fa1f692" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235325Z:83604690-081a-4dbf-a460-a4ab35cf3f90" + "CENTRALUS:20150711T210436Z:6bd38cd5-7c70-4839-8ee4-22016fa1f692" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +631,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:25 GMT" + "Sat, 11 Jul 2015 21:04:36 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -793,25 +643,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33d93a78-6ba4-4a2a-b0f4-a3b3753ce401" + "6b9086bd-1238-4a7d-ac4d-f3b5eeef6521" ], "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:53:20.391583Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:04:35.9668782Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -823,16 +673,16 @@ "no-cache" ], "x-ms-request-id": [ - "107defe0-0fa9-4a67-bd2c-0addaf2c4e93" + "e007eb4a-ef4b-4d85-9f5d-5f2e861dc46e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31903" + "14994" ], "x-ms-correlation-request-id": [ - "8f4962c7-1d6f-4ec7-a795-d75f8f421487" + "6c583c8a-8f21-46b8-a835-ef1af3951b6a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235331Z:8f4962c7-1d6f-4ec7-a795-d75f8f421487" + "CENTRALUS:20150711T210441Z:6c583c8a-8f21-46b8-a835-ef1af3951b6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +691,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:30 GMT" + "Sat, 11 Jul 2015 21:04:41 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -853,22 +703,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d68384b2-1a27-4ca6-8f92-ef06106b400f" + "8592b8c0-0366-43f6-97c1-748e7303189e" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"location\": {\r\n \"type\": \"CustomLocation\",\r\n \"linkedServiceName\": \"foo2\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1,\r\n \"waitOnExternal\": null\r\n },\r\n \"createTime\": \"2015-01-13T23:53:20.391583Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-11T21:04:35.9668782Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "411" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -880,16 +730,16 @@ "no-cache" ], "x-ms-request-id": [ - "83bc2552-832c-4608-bdbc-f64e1be61bac" + "69e68c6d-2ea5-44b7-9560-a3586382f01e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31902" + "14993" ], "x-ms-correlation-request-id": [ - "b2251a3c-6e48-46bf-b0b2-895d97e9bb76" + "b520ad94-0a70-4651-aa24-2cf16b8876b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235331Z:b2251a3c-6e48-46bf-b0b2-895d97e9bb76" + "CENTRALUS:20150711T210442Z:b520ad94-0a70-4651-aa24-2cf16b8876b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -898,7 +748,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:30 GMT" + "Sat, 11 Jul 2015 21:04:41 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -910,16 +760,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "311b7467-9eca-4856-833d-5bc58e4d1689" + "3ef10d97-f8f3-433e-a337-a6e6af5ad753" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -937,16 +787,16 @@ "15" ], "x-ms-request-id": [ - "9b3d5a1e-7a2c-4b1f-80cf-a2b334014da3" + "1c1b3799-ef61-49cd-a952-fe2fc3f8c9b4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1196" ], "x-ms-correlation-request-id": [ - "4a38c656-fb8b-4dd8-ace6-078220f62ed1" + "050ee959-c6ba-4fbd-855e-066d0b23dca4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235331Z:4a38c656-fb8b-4dd8-ace6-078220f62ed1" + "CENTRALUS:20150711T210442Z:050ee959-c6ba-4fbd-855e-066d0b23dca4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -955,10 +805,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:30 GMT" + "Sat, 11 Jul 2015 21:04:41 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2/operationresults/dcadc117a5ad4892a6c2681d438d524d?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2/operationresults/ca25cba2fe0149ec8616fc9867d14f48?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -970,16 +820,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2/operationresults/dcadc117a5ad4892a6c2681d438d524d?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC90YWJsZXMvZm9vMi9vcGVyYXRpb25yZXN1bHRzL2RjYWRjMTE3YTVhZDQ4OTJhNmMyNjgxZDQzOGQ1MjRkP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2/operationresults/ca25cba2fe0149ec8616fc9867d14f48?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy9jYTI1Y2JhMmZlMDE0OWVjODYxNmZjOTg2N2QxNGY0OD9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -997,16 +847,16 @@ "15" ], "x-ms-request-id": [ - "4243f46c-4846-45f1-8d6d-7659330cb259" + "b0b210cc-f33c-47a2-80b9-df8125db7d43" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31901" + "14992" ], "x-ms-correlation-request-id": [ - "65cef136-21c5-4bff-8c16-b333e988fbd2" + "36fe5b00-d849-496b-b7ea-56caaefc2900" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235331Z:65cef136-21c5-4bff-8c16-b333e988fbd2" + "CENTRALUS:20150711T210442Z:36fe5b00-d849-496b-b7ea-56caaefc2900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1015,10 +865,10 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:30 GMT" + "Sat, 11 Jul 2015 21:04:42 GMT" ], "Location": [ - "https://api-current.resources.windows-int.net/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2/operationresults/dcadc117a5ad4892a6c2681d438d524d?api-version=2015-01-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2/operationresults/ca25cba2fe0149ec8616fc9867d14f48?api-version=2015-07-01-preview" ], "Server": [ "Microsoft-IIS/8.5" @@ -1030,16 +880,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968/tables/foo2/operationresults/dcadc117a5ad4892a6c2681d438d524d?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OC90YWJsZXMvZm9vMi9vcGVyYXRpb25yZXN1bHRzL2RjYWRjMTE3YTVhZDQ4OTJhNmMyNjgxZDQzOGQ1MjRkP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467/tables/foo2/operationresults/ca25cba2fe0149ec8616fc9867d14f48?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0NjcvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy9jYTI1Y2JhMmZlMDE0OWVjODYxNmZjOTg2N2QxNGY0OD9hcGktdmVyc2lvbj0yMDE1LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-01-01-preview" + "2015-07-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1054,16 +904,16 @@ "no-cache" ], "x-ms-request-id": [ - "bc5078cc-857b-4ee0-8355-eee2fd2b7076" + "168bd434-1d61-4d77-bd11-ad23568c5f4c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31900" + "14991" ], "x-ms-correlation-request-id": [ - "d491cfec-3b2b-4d4c-ba5a-95174788a350" + "05546d9e-36af-4e8a-ac5f-288cb4e53adb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235346Z:d491cfec-3b2b-4d4c-ba5a-95174788a350" + "CENTRALUS:20150711T210457Z:05546d9e-36af-4e8a-ac5f-288cb4e53adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,7 +922,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:46 GMT" + "Sat, 11 Jul 2015 21:04:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1084,16 +934,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4c1319f8-f1e2-4883-a743-cc617922fe35/resourcegroups/onesdk8838/providers/Microsoft.DataFactory/datafactories/onesdk968?api-version=2015-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGMxMzE5ZjgtZjFlMi00ODgzLWE3NDMtY2M2MTc5MjJmZTM1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk2OD9hcGktdmVyc2lvbj0yMDE1LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8626/providers/Microsoft.DataFactory/datafactories/onesdk1467?api-version=2015-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0Njc/YXBpLXZlcnNpb249MjAxNS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04f0829a-9b89-4eb6-9cb2-79a068077d6b" + "67a02185-a6c8-42d6-a205-2b0d71297786" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataPipelineManagementClient/0.9.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1108,16 +958,16 @@ "no-cache" ], "x-ms-request-id": [ - "f1399b8d-028d-4ca9-9aea-9f553fa910fc" + "7e1f2bb7-2b24-4491-a1d9-7c9ddb56c065" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1195" ], "x-ms-correlation-request-id": [ - "d6df3d0d-cdb5-4fcc-8fc2-82e319f3b4be" + "c99b145d-562c-41f7-836b-2ca01304593e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150113T235347Z:d6df3d0d-cdb5-4fcc-8fc2-82e319f3b4be" + "CENTRALUS:20150711T210459Z:c99b145d-562c-41f7-836b-2ca01304593e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1126,7 +976,7 @@ "no-cache" ], "Date": [ - "Tue, 13 Jan 2015 23:53:47 GMT" + "Sat, 11 Jul 2015 21:04:59 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1140,11 +990,11 @@ ], "Names": { "Test-TableWithDataFactoryParameter": [ - "onesdk968", - "onesdk8838" + "onesdk1467", + "onesdk8626" ] }, "Variables": { - "SubscriptionId": "4c1319f8-f1e2-4883-a743-cc617922fe35" + "SubscriptionId": "4431ebb2-5a07-4d85-85cf-7af34ae85ff5" } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetDataFactoryTests.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetDataFactoryTests.cs index a1776d382273..56d65769dad3 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetDataFactoryTests.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetDataFactoryTests.cs @@ -44,12 +44,15 @@ public void CanGetDataFactory() { // Arrange PSDataFactory expected = new PSDataFactory() {DataFactoryName = DataFactoryName, ResourceGroupName = ResourceGroupName}; - + dataFactoriesClientMock.Setup( c => c.FilterPSDataFactories( It.Is( - options => options.Name == DataFactoryName && options.ResourceGroupName == ResourceGroupName))) + options => + options.Name == DataFactoryName && + options.ResourceGroupName == ResourceGroupName && + options.NextLink == null))) .CallBase() .Verifiable(); @@ -84,17 +87,19 @@ public void CanListDataFactories() new PSDataFactory() {DataFactoryName = DataFactoryName, ResourceGroupName = ResourceGroupName}, new PSDataFactory() {DataFactoryName = "datafactory1", ResourceGroupName = ResourceGroupName} }; - + // Arrange dataFactoriesClientMock.Setup( c => c.FilterPSDataFactories( It.Is( - options => options.Name == null && options.ResourceGroupName == ResourceGroupName))) + options => options.Name == null && options.ResourceGroupName == ResourceGroupName && options.NextLink == null))) .CallBase() .Verifiable(); - dataFactoriesClientMock.Setup(c => c.ListDataFactories(ResourceGroupName)) + dataFactoriesClientMock.Setup(c => c.ListDataFactories(It.Is( + options => + options.Name == null && options.ResourceGroupName == ResourceGroupName && options.NextLink == null))) .Returns(expected) .Verifiable(); diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetHubTests.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetHubTests.cs index e7e7a3d58743..0e5d95066ed6 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetHubTests.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetHubTests.cs @@ -133,12 +133,19 @@ public void CanListHubs() options => options.ResourceGroupName == ResourceGroupName && options.DataFactoryName == DataFactoryName && - options.Name == null))) + options.Name == null && + options.NextLink == null))) .CallBase() .Verifiable(); dataFactoriesClientMock - .Setup(f => f.ListHubs(ResourceGroupName, DataFactoryName)) + .Setup(f => f.ListHubs(It.Is( + options => + options.ResourceGroupName == ResourceGroupName && + options.DataFactoryName == DataFactoryName && + options.Name == null && + options.NextLink == null))) + .Returns(expected) .Verifiable(); diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetLinkedServiceTests.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetLinkedServiceTests.cs index 5fd647ac6d44..2acd803bd095 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetLinkedServiceTests.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetLinkedServiceTests.cs @@ -107,7 +107,7 @@ public void CanListLinkedServices() ResourceGroupName = ResourceGroupName } }; - + dataFactoriesClientMock .Setup( c => @@ -116,12 +116,16 @@ public void CanListLinkedServices() options => options.ResourceGroupName == ResourceGroupName && options.DataFactoryName == DataFactoryName && - options.Name == null))) + options.Name == null && options.NextLink == null))) .CallBase() .Verifiable(); dataFactoriesClientMock - .Setup(f => f.ListLinkedServices(ResourceGroupName, DataFactoryName)) + .Setup(f => f.ListLinkedServices(It.Is( + options => + options.ResourceGroupName == ResourceGroupName && + options.DataFactoryName == DataFactoryName && + options.Name == null && options.NextLink == null))) .Returns(expected) .Verifiable(); diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetPipelineTests.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetPipelineTests.cs index e0ec60dd4d13..d313587f1e7f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetPipelineTests.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetPipelineTests.cs @@ -133,12 +133,19 @@ public void CanListPipelines() options => options.ResourceGroupName == ResourceGroupName && options.DataFactoryName == DataFactoryName && - options.Name == null))) + options.Name == null && + options.NextLink == null))) .CallBase() .Verifiable(); dataFactoriesClientMock - .Setup(f => f.ListPipelines(ResourceGroupName, DataFactoryName)) + .Setup(f => f.ListPipelines(It.Is( + options => + options.ResourceGroupName == ResourceGroupName && + options.DataFactoryName == DataFactoryName && + options.Name == null && + options.NextLink == null))) + .Returns(expected) .Verifiable(); diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetTableTests.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetTableTests.cs index eaeae6f64abd..ed36d9a58dc3 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetTableTests.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/GetTableTests.cs @@ -107,7 +107,7 @@ public void CanListTables() ResourceGroupName = ResourceGroupName } }; - + dataFactoriesClientMock .Setup( c => @@ -116,12 +116,18 @@ public void CanListTables() options => options.ResourceGroupName == ResourceGroupName && options.DataFactoryName == DataFactoryName && - options.Name == null))) + options.Name == null && + options.NextLink == null))) .CallBase() .Verifiable(); dataFactoriesClientMock - .Setup(f => f.ListTables(ResourceGroupName, DataFactoryName)) + .Setup(f => f.ListTables(It.Is( + options => + options.ResourceGroupName == ResourceGroupName && + options.DataFactoryName == DataFactoryName && + options.Name == null && + options.NextLink == null))) .Returns(expected) .Verifiable(); diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/NewLinkedServiceTests.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/NewLinkedServiceTests.cs index 6964499c803e..f6a7805e98a5 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/NewLinkedServiceTests.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/NewLinkedServiceTests.cs @@ -57,15 +57,16 @@ public NewLinkedServiceTests() }; } - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + // ToDo: enable the tests when we can set readonly provisioning state in test + //[Fact] + //[Trait(Category.AcceptanceType, Category.CheckIn)] public void CanCreateLinkedService() { // Arrange LinkedService expected = new LinkedService() { Name = linkedServiceName, - Properties = new HDInsightBYOCLinkedService() { ProvisioningState = "Succeeded" } + Properties = new LinkedServiceProperties(new AzureStorageLinkedService("myconnectionstring")) }; dataFactoriesClientMock.Setup(c => c.ReadJsonFileContent(It.IsAny())) @@ -117,7 +118,7 @@ public void CanThrowIfLinkedServiceProvisioningFailed() LinkedService expected = new LinkedService() { Name = linkedServiceName, - Properties = new HDInsightBYOCLinkedService() { ProvisioningState = "Failed" } + Properties = new LinkedServiceProperties(new AzureStorageLinkedService("myconnectionstring")) }; dataFactoriesClientMock.Setup(c => c.ReadJsonFileContent(It.IsAny())) diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/NewTableTests.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/NewTableTests.cs index 07eb920efeab..906f2ba2d5c6 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/NewTableTests.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/NewTableTests.cs @@ -68,15 +68,16 @@ public NewTableTests() }; } - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + // ToDo: enable the tests when we can set readonly provisioning state in test + //[Fact] + //[Trait(Category.AcceptanceType, Category.CheckIn)] public void CanCreateTable() { // Arrange Table expected = new Table() { Name = tableName, - Properties = new TableProperties() { ProvisioningState = "Succeeded" } + Properties = new TableProperties() }; dataFactoriesClientMock.Setup(c => c.ReadJsonFileContent(It.IsAny())) @@ -127,7 +128,7 @@ public void CanThrowIfTableProvisioningFailed() Table expected = new Table() { Name = tableName, - Properties = new TableProperties() { ProvisioningState = "Failed" } + Properties = new TableProperties() }; dataFactoriesClientMock.Setup(c => c.ReadJsonFileContent(It.IsAny())) diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/SaveAzureDataFactoryTests.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/SaveAzureDataFactoryTests.cs index 148cadabff1b..f6806be1df9f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/SaveAzureDataFactoryTests.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/SaveAzureDataFactoryTests.cs @@ -12,13 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System; using Microsoft.Azure.Commands.DataFactories; using Microsoft.Azure.Commands.DataFactories.Models; using Microsoft.Azure.Commands.DataFactories.Test; using Microsoft.WindowsAzure.Commands.ScenarioTest; -using Microsoft.WindowsAzure.Storage.Auth; using Moq; -using System; using Xunit; namespace Microsoft.WindowsAzure.Commands.Test.DataFactory @@ -72,15 +71,14 @@ public void CanSaveDataFactoryRunLog() this.dataFactoriesClientMock.Setup( f => f.GetDataSliceRunLogsSharedAccessSignature(ResourceGroupName, DataFactoryName, this._dataSliceRunId)) - .Returns(runLogInfo); + .Returns(sharedAccessSignature); this.dataFactoriesClientMock.Setup( f => f.DownloadFileToBlob( It.Is( parameters => - parameters.Credentials == new StorageCredentials(runLogInfo.SasToken) && - parameters.SasUri == new Uri(runLogInfo.SasUri) && + parameters.SasUri == sharedAccessSignature && parameters.Directory == @"c:\"))); // Action @@ -91,8 +89,6 @@ public void CanSaveDataFactoryRunLog() f => f.GetDataSliceRunLogsSharedAccessSignature(ResourceGroupName, DataFactoryName, this._dataSliceRunId), Times.Once()); - - this.commandRuntimeMock.Verify(f => f.WriteObject(runLogInfo), Times.Once()); } } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config index 00285417cb53..b368bc842bac 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config @@ -6,14 +6,13 @@ - + - diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj index 6038678ab70b..5e291a8d30ef 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj @@ -61,17 +61,14 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - + False - ..\..\..\packages\Microsoft.Azure.Management.DataFactories.0.15.12-preview\lib\net40\Microsoft.Azure.Management.DataFactories.dll + ..\..\..\packages\Microsoft.Azure.Management.DataFactories.1.0.1\lib\net40\Microsoft.Azure.Management.DataFactories.dll False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll - - ..\..\..\packages\Microsoft.DataFactories.Runtime.0.11.1-preview\lib\net45\Microsoft.DataFactories.Runtime.dll - False ..\..\..\packages\Microsoft.DataTransfer.Gateway.Encryption.1.5.1-preview\lib\net45\Microsoft.DataTransfer.Gateway.Encryption.dll @@ -164,9 +161,11 @@ + + diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/GetAzureDataFactoryCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/GetAzureDataFactoryCommand.cs index 2a98b650f276..4391c09efbf6 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/GetAzureDataFactoryCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/GetAzureDataFactoryCommand.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System.Collections.Generic; +using System.Linq; using System.Management.Automation; using System.Security.Permissions; using Microsoft.Azure.Commands.DataFactories.Models; @@ -41,20 +42,22 @@ public override void ExecuteCmdlet() Name = Name, ResourceGroupName = ResourceGroupName }; - - List dataFactories = DataFactoryClient.FilterPSDataFactories(filterOptions); - if (dataFactories != null) + if (Name != null) { - if (dataFactories.Count == 1 && Name != null) - { - WriteObject(dataFactories[0]); - } - else + List dataFactories = DataFactoryClient.FilterPSDataFactories(filterOptions); + if (dataFactories != null && dataFactories.Any()) { - WriteObject(dataFactories, true); + WriteObject(dataFactories.First()); } + return; } + + //List data factories until all pages are fetched + do + { + WriteObject(DataFactoryClient.FilterPSDataFactories(filterOptions), true); + } while (filterOptions.NextLink.IsNextPageLink()); } } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactoryCommonUtilities.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactoryCommonUtilities.cs index a85b0fb1ab02..57ca8b958e6f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactoryCommonUtilities.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactoryCommonUtilities.cs @@ -113,5 +113,10 @@ public static bool IsSucceededProvisioningState(string provisioningState) string.Compare(provisioningState, OperationStatus.Succeeded.ToString(), StringComparison.OrdinalIgnoreCase) == 0; } + + public static bool IsNextPageLink(this string nextLink) + { + return !string.IsNullOrEmpty(nextLink); + } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactoryRunCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactoryRunCommand.cs index 8c999c089694..d2f995c80233 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactoryRunCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactoryRunCommand.cs @@ -57,17 +57,27 @@ public override void ExecuteCmdlet() ResourceGroupName = DataFactory.ResourceGroupName; } - var dataSliceRuns = DataFactoryClient.ListDataSliceRuns( - ResourceGroupName, DataFactoryName, TableName, StartDateTime); + DataSliceRunFilterOptions filterOptions = new DataSliceRunFilterOptions() + { + ResourceGroupName = ResourceGroupName, + DataFactoryName = DataFactoryName, + TableName = TableName, + StartDateTime = StartDateTime + }; + + int totalDataSliceRuns = 0; - if (dataSliceRuns == null || dataSliceRuns.Count == 0) + do { - WriteWarning(string.Format( - CultureInfo.InvariantCulture, - Resources.NoDataSliceFound)); - } + var dataSliceRuns = DataFactoryClient.ListDataSliceRuns(filterOptions); + totalDataSliceRuns += dataSliceRuns.Count; + WriteObject(dataSliceRuns, true); + } while (filterOptions.NextLink.IsNextPageLink()); - WriteObject(dataSliceRuns); + if (totalDataSliceRuns == 0) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Resources.NoDataSliceFound)); + } } } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs index c66130de9032..e462c76f783c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs @@ -59,18 +59,27 @@ public override void ExecuteCmdlet() ResourceGroupName = DataFactory.ResourceGroupName; } - var dataSlices = DataFactoryClient.ListDataSlices( - ResourceGroupName, DataFactoryName, TableName, StartDateTime, - EndDateTime); + DataSliceFilterOptions filterOptions = new DataSliceFilterOptions() + { + ResourceGroupName = ResourceGroupName, + DataFactoryName = DataFactoryName, + TableName = TableName, + DataSliceRangeStartTime = StartDateTime, + DataSliceRangeEndTime = EndDateTime + }; - if (dataSlices == null || dataSlices.Count == 0) + int totalDataSlices = 0; + do { - WriteWarning(string.Format( - CultureInfo.InvariantCulture, - Resources.NoDataSliceFound)); - } + var dataSlices = DataFactoryClient.ListDataSlices(filterOptions); + totalDataSlices += dataSlices.Count; + WriteObject(dataSlices, true); + } while (filterOptions.NextLink.IsNextPageLink()); - WriteObject(dataSlices, true); + if (totalDataSlices == 0) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Resources.NoDataSliceFound)); + } } } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SaveAzureDataFactoryLog.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SaveAzureDataFactoryLog.cs index 4bdf828e75f2..d3511b8341f7 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SaveAzureDataFactoryLog.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SaveAzureDataFactoryLog.cs @@ -61,7 +61,7 @@ public override void ExecuteCmdlet() ResourceGroupName = DataFactory.ResourceGroupName; } - PSRunLogInfo runLog = + Uri runLogUri = DataFactoryClient.GetDataSliceRunLogsSharedAccessSignature( ResourceGroupName, DataFactoryName, Id); if (DownloadLogs.IsPresent) @@ -80,11 +80,10 @@ public override void ExecuteCmdlet() DataFactoryClient.DownloadFileToBlob(new BlobDownloadParameters() { Directory = directory, - SasUri = new Uri(runLog.SasUri), - Credentials = new StorageCredentials(runLog.SasToken) + SasUri = runLogUri, }); } - catch + catch { throw new Exception(string.Format(CultureInfo.InvariantCulture, Resources.DownloadFailed, directory)); } @@ -92,7 +91,7 @@ public override void ExecuteCmdlet() WriteWarning(string.Format(CultureInfo.InvariantCulture, Resources.DownloadLogCompleted, directory)); } - WriteObject(runLog); + WriteObject(new PSRunLogInfo(runLogUri)); } private bool HaveWriteAccess(string directory) @@ -138,8 +137,6 @@ private bool HaveWriteAccess(string directory) { return false; } - - } } } \ No newline at end of file diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs index 9061f9a472b4..1363b9442cd6 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs @@ -46,21 +46,13 @@ public DateTime EndDateTime } } - [Parameter(Position = 5, Mandatory = true, HelpMessage = "The data slice status.")] + [Parameter(Position = 5, Mandatory = true, HelpMessage = "The data slice state.")] [ValidateSet( - DataSliceStatus.NotSpecified, - DataSliceStatus.PendingExecution, - DataSliceStatus.InProgress, - DataSliceStatus.Failed, - DataSliceStatus.Ready, - DataSliceStatus.Skip, - DataSliceStatus.Retry, - DataSliceStatus.TimedOut, - DataSliceStatus.PendingValidation, - DataSliceStatus.RetryValidation, - DataSliceStatus.FailedValidation, - DataSliceStatus.LongRetry, - DataSliceStatus.ValidationInProgress, + DataSliceState.Failed, + DataSliceState.InProgress, + DataSliceState.Ready, + DataSliceState.Skipped, + DataSliceState.Waiting, IgnoreCase = false)] public string Status { get; set; } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/GetAzureDataFactoryHubCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/GetAzureDataFactoryHubCommand.cs index 86395da92486..b18a7fd12e48 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/GetAzureDataFactoryHubCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/GetAzureDataFactoryHubCommand.cs @@ -16,6 +16,7 @@ using Microsoft.Azure.Commands.DataFactories.Properties; using System.Collections.Generic; using System.Globalization; +using System.Linq; using System.Management.Automation; using System.Security.Permissions; @@ -55,19 +56,22 @@ public override void ExecuteCmdlet() DataFactoryName = DataFactoryName }; - List hubs = DataFactoryClient.FilterPSHubs(filterOptions); - - if (hubs != null) + if (Name != null) { - if (hubs.Count == 1 && Name != null) - { - WriteObject(hubs[0]); - } - else + List hubs = DataFactoryClient.FilterPSHubs(filterOptions); + + if (hubs != null && hubs.Any()) { - WriteObject(hubs, true); + WriteObject(hubs.First()); } + return; } + + // List hubs until all pages are fetched + do + { + WriteObject(DataFactoryClient.FilterPSHubs(filterOptions), true); + } while (filterOptions.NextLink.IsNextPageLink()); } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/GetAzureDataFactoryLinkedServiceCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/GetAzureDataFactoryLinkedServiceCommand.cs index 46ad39b14c5b..3a06df309109 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/GetAzureDataFactoryLinkedServiceCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/GetAzureDataFactoryLinkedServiceCommand.cs @@ -17,6 +17,7 @@ using System.Security.Permissions; using Microsoft.Azure.Commands.DataFactories.Models; using System.Globalization; +using System.Linq; using Microsoft.Azure.Commands.DataFactories.Properties; namespace Microsoft.Azure.Commands.DataFactories @@ -64,19 +65,22 @@ public override void ExecuteCmdlet() DataFactoryName = DataFactoryName }; - List linkedServices = DataFactoryClient.FilterPSLinkedServices(filterOptions); - - if (linkedServices != null) + if (Name != null) { - if (linkedServices.Count == 1 && Name != null) + List linkedServices = DataFactoryClient.FilterPSLinkedServices(filterOptions); + + if (linkedServices != null && linkedServices.Any()) { WriteObject(linkedServices[0]); } - else - { - WriteObject(linkedServices, true); - } + return; } + + // List all linked services until all pages are fetched. + do + { + WriteObject(DataFactoryClient.FilterPSLinkedServices(filterOptions), true); + } while (filterOptions.NextLink.IsNextPageLink()); } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/BlobDownloadParameters.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/BlobDownloadParameters.cs index b9cbbc440ba4..022d6e989642 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/BlobDownloadParameters.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/BlobDownloadParameters.cs @@ -12,8 +12,6 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.WindowsAzure.Storage.Auth; -using Microsoft.WindowsAzure.Storage.Blob; using System; namespace Microsoft.Azure.Commands.DataFactories @@ -24,8 +22,6 @@ public class BlobDownloadParameters public Uri SasUri { get; set; } - public StorageCredentials Credentials { get; set; } - public BlobDownloadParameters() { } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.DataFactories.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.DataFactories.cs index 232572eead28..61cc653ca737 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.DataFactories.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.DataFactories.cs @@ -35,16 +35,25 @@ public virtual PSDataFactory GetDataFactory(string resourceGroupName, string dat return new PSDataFactory(response.DataFactory) { ResourceGroupName = resourceGroupName }; } - public virtual List ListDataFactories(string resourceGroupName) + public virtual List ListDataFactories(DataFactoryFilterOptions filterOptions) { List dataFactories = new List(); - var response = DataPipelineManagementClient.DataFactories.List(resourceGroupName); + DataFactoryListResponse response; + if (filterOptions.NextLink.IsNextPageLink()) + { + response = DataPipelineManagementClient.DataFactories.ListNext(filterOptions.NextLink); + } + else + { + response = DataPipelineManagementClient.DataFactories.List(filterOptions.ResourceGroupName); + } + filterOptions.NextLink = response != null ? response.NextLink : null; if (response != null && response.DataFactories != null) { response.DataFactories.ForEach( - df => dataFactories.Add(new PSDataFactory(df) { ResourceGroupName = resourceGroupName })); + df => dataFactories.Add(new PSDataFactory(df) { ResourceGroupName = filterOptions.ResourceGroupName })); } return dataFactories; @@ -71,8 +80,7 @@ public virtual List FilterPSDataFactories(DataFactoryFilterOption } else { - // ToDo: Filter list results by Tag - dataFactories.AddRange(ListDataFactories(filterOptions.ResourceGroupName)); + dataFactories.AddRange(ListDataFactories(filterOptions)); } return dataFactories; diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.DataSlices.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.DataSlices.cs index f1d6a8584a1d..9be29c1384e4 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.DataSlices.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.DataSlices.cs @@ -14,32 +14,40 @@ using System; using System.Collections.Generic; -using System.Globalization; -using System.Net; +using System.IO; using Microsoft.Azure.Commands.DataFactories.Models; using Microsoft.Azure.Commands.DataFactories.Properties; using Microsoft.Azure.Management.DataFactories; using Microsoft.Azure.Management.DataFactories.Models; -using Microsoft.WindowsAzure; +using Microsoft.WindowsAzure.Storage; +using Microsoft.WindowsAzure.Storage.Auth; using Microsoft.WindowsAzure.Storage.Blob; -using System.IO; namespace Microsoft.Azure.Commands.DataFactories { public partial class DataFactoryClient { - public virtual List ListDataSliceRuns( - string resourceGroupName, - string dataFactoryName, - string tableName, - DateTime dataSliceRangeStartTime) + public virtual List ListDataSliceRuns(DataSliceRunFilterOptions filterOptions) { List runs = new List(); - var response = DataPipelineManagementClient.DataSliceRuns.List( - resourceGroupName, - dataFactoryName, - tableName, - dataSliceRangeStartTime.ConvertToISO8601DateTimeString()); + + DataSliceRunListResponse response; + if (filterOptions.NextLink.IsNextPageLink()) + { + response = DataPipelineManagementClient.DataSliceRuns.ListNext(filterOptions.NextLink); + } + else + { + response = DataPipelineManagementClient.DataSliceRuns.List( + filterOptions.ResourceGroupName, + filterOptions.DataFactoryName, + filterOptions.TableName, + new DataSliceRunListParameters() + { + DataSliceStartTime = filterOptions.StartDateTime.ConvertToISO8601DateTimeString() + }); + } + filterOptions.NextLink = response != null ? response.NextLink : null; if (response != null && response.DataSliceRuns != null) { @@ -48,9 +56,9 @@ public virtual List ListDataSliceRuns( runs.Add( new PSDataSliceRun(run) { - ResourceGroupName = resourceGroupName, - DataFactoryName = dataFactoryName, - TableName = tableName + ResourceGroupName = filterOptions.ResourceGroupName, + DataFactoryName = filterOptions.DataFactoryName, + TableName = filterOptions.TableName }); } } @@ -58,16 +66,29 @@ public virtual List ListDataSliceRuns( return runs; } - public virtual List ListDataSlices(string resourceGroupName, string dataFactoryName, string tableName, DateTime dataSliceRangeStartTime, DateTime dataSliceRangeEndTime) + public virtual List ListDataSlices(DataSliceFilterOptions filterOptions) { List dataSlices = new List(); - var response = DataPipelineManagementClient.DataSlices.List( - resourceGroupName, - dataFactoryName, - tableName, - dataSliceRangeStartTime.ConvertToISO8601DateTimeString(), - dataSliceRangeEndTime.ConvertToISO8601DateTimeString()); + DataSliceListResponse response; + if (filterOptions.NextLink.IsNextPageLink()) + { + response = DataPipelineManagementClient.DataSlices.ListNext(filterOptions.NextLink); + } + else + { + response = DataPipelineManagementClient.DataSlices.List( + filterOptions.ResourceGroupName, + filterOptions.DataFactoryName, + filterOptions.TableName, + new DataSliceListParameters() + { + DataSliceRangeStartTime = filterOptions.DataSliceRangeStartTime.ConvertToISO8601DateTimeString(), + DataSliceRangeEndTime = filterOptions.DataSliceRangeEndTime.ConvertToISO8601DateTimeString() + }); + } + filterOptions.NextLink = response != null ? response.NextLink : null; + if (response != null && response.DataSlices != null) { foreach (var dataSlice in response.DataSlices) @@ -75,9 +96,9 @@ public virtual List ListDataSlices(string resourceGroupName, string dataSlices.Add( new PSDataSlice(dataSlice) { - ResourceGroupName = resourceGroupName, - DataFactoryName = dataFactoryName, - TableName = tableName + ResourceGroupName = filterOptions.ResourceGroupName, + DataFactoryName = filterOptions.DataFactoryName, + TableName = filterOptions.TableName }); } } @@ -89,7 +110,7 @@ public virtual void SetSliceStatus( string resourceGroupName, string dataFactoryName, string tableName, - string sliceStatus, + string sliceState, string updateType, DateTime dataSliceRangeStartTime, DateTime dataSliceRangeEndTime) @@ -100,52 +121,64 @@ public virtual void SetSliceStatus( tableName, new DataSliceSetStatusParameters() { - SliceStatus = sliceStatus, + SliceState = sliceState, UpdateType = updateType, DataSliceRangeStartTime = dataSliceRangeStartTime.ConvertToISO8601DateTimeString(), DataSliceRangeEndTime = dataSliceRangeEndTime.ConvertToISO8601DateTimeString(), }); } - public virtual PSRunLogInfo GetDataSliceRunLogsSharedAccessSignature(string resourceGroupName, string dataFactoryName, string dataSliceRunId) + public virtual Uri GetDataSliceRunLogsSharedAccessSignature(string resourceGroupName, string dataFactoryName, string dataSliceRunId) { var response = DataPipelineManagementClient.DataSliceRuns.GetLogs( resourceGroupName, dataFactoryName, dataSliceRunId); - return new PSRunLogInfo(response.DataSliceRunLogsSASUri); + return response.DataSliceRunLogsSASUri; } public virtual void DownloadFileToBlob(BlobDownloadParameters parameters) { - if (parameters == null || parameters.Credentials == null || string.IsNullOrWhiteSpace(parameters.SasUri.ToString())) + if (parameters == null || string.IsNullOrWhiteSpace(parameters.SasUri.ToString())) { throw new ArgumentNullException(Resources.DownloadCredentialsNull); } - CloudBlobContainer sascontainer = new CloudBlobContainer(parameters.SasUri); + PSRunLogInfo rli = new PSRunLogInfo(parameters.SasUri); + StorageCredentials sc = new StorageCredentials(rli.SasToken); + + StorageUri suri = new StorageUri(new Uri("https://" + parameters.SasUri.Host)); + CloudBlobClient sourceClient = new CloudBlobClient(suri, sc); + CloudBlobContainer sascontainer = sourceClient.GetContainerReference(rli.Container); + CloudBlobDirectory sourceDirectory = sascontainer.GetDirectoryReference(rli.Directory); - var bloblist = sascontainer.ListBlobs(null, true); + var bloblist = sourceDirectory.ListBlobs(true); string downloadFolderPath = parameters.Directory.Insert(parameters.Directory.Length, @"\"); foreach (var blob in bloblist) { ICloudBlob destBlob = blob as ICloudBlob; - int length = destBlob.Name.Split('/').Length; - string blobFileName = destBlob.Name.Split('/')[length-1]; + int length = destBlob.Name.Split('/').Length; + string blobFileName = destBlob.Name.Split('/')[length - 1]; // the folder structure of run logs changed from flat listing to nesting under time directory string blobFolderPath = String.Empty; if (destBlob.Name.Length > blobFileName.Length) { blobFolderPath = destBlob.Name.Substring(0, destBlob.Name.Length - blobFileName.Length - 1); + + if (!string.IsNullOrEmpty(rli.Directory)) + { + blobFolderPath = blobFolderPath.Remove(0, rli.Directory.Length - 1).Trim('/'); + } } - + if (!Directory.Exists(downloadFolderPath + blobFolderPath)) { Directory.CreateDirectory(downloadFolderPath + blobFolderPath); } // adding _log suffix to differentiate between files and folders of the same name. Azure blob storage only knows about blob files. We could use nested folder structure // as part of the blob file name and thus it is possible to have a file and folder of the same name in the same location which is not acceptable for Windows file system - destBlob.DownloadToFile(downloadFolderPath + destBlob.Name + "_log", FileMode.Create); + string fileToDonwload = destBlob.Name.Remove(0, rli.Directory.Length); + destBlob.DownloadToFile(downloadFolderPath + fileToDonwload + "_log", FileMode.Create); } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Hubs.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Hubs.cs index 8da9566ec60d..d862c511bf70 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Hubs.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Hubs.cs @@ -115,11 +115,21 @@ public virtual PSHub GetHub(string resourceGroupName, string dataFactoryName, st }; } - public virtual List ListHubs(string resourceGroupName, string dataFactoryName) + public virtual List ListHubs(HubFilterOptions filterOptions) { List hubs = new List(); - var response = DataPipelineManagementClient.Hubs.List(resourceGroupName, dataFactoryName); + HubListResponse response; + if (filterOptions.NextLink.IsNextPageLink()) + { + response = DataPipelineManagementClient.Hubs.ListNext(filterOptions.NextLink); + } + else + { + response = DataPipelineManagementClient.Hubs.List(filterOptions.ResourceGroupName, + filterOptions.DataFactoryName); + } + filterOptions.NextLink = response != null ? response.NextLink : null; if (response != null && response.Hubs != null) { @@ -127,8 +137,8 @@ public virtual List ListHubs(string resourceGroupName, string dataFactory { hubs.Add(new PSHub(hub) { - ResourceGroupName = resourceGroupName, - DataFactoryName = dataFactoryName + ResourceGroupName = filterOptions.ResourceGroupName, + DataFactoryName = filterOptions.DataFactoryName }); } } @@ -166,7 +176,7 @@ public virtual List FilterPSHubs(HubFilterOptions filterOptions) } else { - hubs.AddRange(ListHubs(filterOptions.ResourceGroupName, filterOptions.DataFactoryName)); + hubs.AddRange(ListHubs(filterOptions)); } return hubs; diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.LinkedServices.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.LinkedServices.cs index cd15d4d188e5..99b9ecb48678 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.LinkedServices.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.LinkedServices.cs @@ -58,11 +58,21 @@ public virtual PSLinkedService GetLinkedService(string resourceGroupName, string }; } - public virtual List ListLinkedServices(string resourceGroupName, string dataFactoryName) + public virtual List ListLinkedServices(LinkedServiceFilterOptions filterOptions) { List linkedServices = new List(); - var response = DataPipelineManagementClient.LinkedServices.List(resourceGroupName, dataFactoryName); + LinkedServiceListResponse response; + if (filterOptions.NextLink.IsNextPageLink()) + { + response = DataPipelineManagementClient.LinkedServices.ListNext(filterOptions.NextLink); + } + else + { + response = DataPipelineManagementClient.LinkedServices.List(filterOptions.ResourceGroupName, + filterOptions.DataFactoryName); + } + filterOptions.NextLink = response != null ? response.NextLink : null; if (response != null && response.LinkedServices != null) { @@ -71,8 +81,8 @@ public virtual List ListLinkedServices(string resourceGroupName linkedServices.Add( new PSLinkedService(linkedService) { - ResourceGroupName = resourceGroupName, - DataFactoryName = dataFactoryName + ResourceGroupName = filterOptions.ResourceGroupName, + DataFactoryName = filterOptions.DataFactoryName }); } } @@ -109,8 +119,7 @@ public virtual List FilterPSLinkedServices(LinkedServiceFilterO } else { - linkedServices.AddRange(ListLinkedServices(filterOptions.ResourceGroupName, - filterOptions.DataFactoryName)); + linkedServices.AddRange(ListLinkedServices(filterOptions)); } return linkedServices; diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Pipelines.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Pipelines.cs index 04e56c305a87..8c86d65e2992 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Pipelines.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Pipelines.cs @@ -22,6 +22,7 @@ using Microsoft.Azure.Management.DataFactories.Models; using Microsoft.WindowsAzure; using Hyak.Common; +using Microsoft.Azure.Management.DataFactories.Common.Models; namespace Microsoft.Azure.Commands.DataFactories { @@ -66,42 +67,22 @@ public virtual PSPipeline GetPipeline(string resourceGroupName, string dataFacto }; } - public virtual List GetPipelineRuns(string resourceGroupName, string dataFactoryName, string pipelineName, - string activityName, DateTime runRangeStartTime, DateTime? runRangeEndTime, string runRecordStatus = null) + public virtual List ListPipelines(PipelineFilterOptions filterOptions) { - var pipelineRuns = new List(); - - var response = DataPipelineManagementClient.PipelineRuns.List(resourceGroupName, dataFactoryName, pipelineName, - new PipelineRunListParameters() - { - ActivityName = activityName, - RunRangeStartTime = runRangeStartTime.ConvertToISO8601DateTimeString(), - RunRangeEndTime = runRangeEndTime != null ? runRangeEndTime.Value.ConvertToISO8601DateTimeString() : null, - RunRecordStatus = runRecordStatus - }); + List pipelines = new List(); - if (response != null && response.PipelineRuns != null) + PipelineListResponse response; + if (filterOptions.NextLink.IsNextPageLink()) { - foreach (var run in response.PipelineRuns) - { - pipelineRuns.Add( - new PSDataSliceRun(run) - { - ResourceGroupName = resourceGroupName, - DataFactoryName = dataFactoryName - }); - } + response = DataPipelineManagementClient.Pipelines.ListNext(filterOptions.NextLink); } - - return pipelineRuns; - } - - public virtual List ListPipelines(string resourceGroupName, string dataFactoryName) - { - List pipelines = new List(); - - var response = DataPipelineManagementClient.Pipelines.List(resourceGroupName, dataFactoryName); - + else + { + response = DataPipelineManagementClient.Pipelines.List(filterOptions.ResourceGroupName, + filterOptions.DataFactoryName); + } + filterOptions.NextLink = response != null ? response.NextLink : null; + if (response != null && response.Pipelines != null) { foreach (var pipeline in response.Pipelines) @@ -109,8 +90,8 @@ public virtual List ListPipelines(string resourceGroupName, string d pipelines.Add( new PSPipeline(pipeline) { - ResourceGroupName = resourceGroupName, - DataFactoryName = dataFactoryName + ResourceGroupName = filterOptions.ResourceGroupName, + DataFactoryName = filterOptions.DataFactoryName }); } } @@ -171,8 +152,7 @@ public virtual List FilterPSPipelines(PipelineFilterOptions filterOp } else { - Pipelines.AddRange(ListPipelines(filterOptions.ResourceGroupName, - filterOptions.DataFactoryName)); + Pipelines.AddRange(ListPipelines(filterOptions)); } return Pipelines; diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Tables.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Tables.cs index 9532d0cec903..7677d3bba6a5 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Tables.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.Tables.cs @@ -56,11 +56,20 @@ public virtual PSTable GetTable(string resourceGroupName, string dataFactoryName }; } - public virtual List ListTables(string resourceGroupName, string dataFactoryName) + public virtual List ListTables(TableFilterOptions filterOptions) { List tables = new List(); - var response = DataPipelineManagementClient.Tables.List(resourceGroupName, dataFactoryName); + TableListResponse response; + if (filterOptions.NextLink.IsNextPageLink()) + { + response = DataPipelineManagementClient.Tables.ListNext(filterOptions.NextLink); + } + else + { + response = DataPipelineManagementClient.Tables.List(filterOptions.ResourceGroupName, filterOptions.DataFactoryName); + } + filterOptions.NextLink = response != null ? response.NextLink : null; if (response != null && response.Tables != null) { @@ -69,8 +78,8 @@ public virtual List ListTables(string resourceGroupName, string dataFac tables.Add( new PSTable(table) { - ResourceGroupName = resourceGroupName, - DataFactoryName = dataFactoryName + ResourceGroupName = filterOptions.ResourceGroupName, + DataFactoryName = filterOptions.DataFactoryName }); } } @@ -104,7 +113,7 @@ public virtual List FilterPSTables(TableFilterOptions filterOptions) } else { - tables.AddRange(ListTables(filterOptions.ResourceGroupName, filterOptions.DataFactoryName)); + tables.AddRange(ListTables(filterOptions)); } return tables; diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.cs index bf08bb1f7632..07d4114069c2 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.cs @@ -27,11 +27,11 @@ namespace Microsoft.Azure.Commands.DataFactories { public partial class DataFactoryClient { - public IDataPipelineManagementClient DataPipelineManagementClient { get; private set; } + public IDataFactoryManagementClient DataPipelineManagementClient { get; private set; } public DataFactoryClient(AzureProfile profile) { - DataPipelineManagementClient = AzureSession.ClientFactory.CreateClient( + DataPipelineManagementClient = AzureSession.ClientFactory.CreateClient( profile, AzureEnvironment.Endpoint.ResourceManager); } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryFilterOptions.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryFilterOptions.cs index 690beb58b719..b6cc61412303 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryFilterOptions.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryFilterOptions.cs @@ -19,5 +19,7 @@ public class DataFactoryFilterOptions public string Name { get; set; } public string ResourceGroupName { get; set; } + + public string NextLink { get; set; } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataSliceFilterOptions.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataSliceFilterOptions.cs new file mode 100644 index 000000000000..f9d0e994ad50 --- /dev/null +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataSliceFilterOptions.cs @@ -0,0 +1,33 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; + +namespace Microsoft.Azure.Commands.DataFactories +{ + public class DataSliceFilterOptions + { + public string TableName { get; set; } + + public string ResourceGroupName { get; set; } + + public string DataFactoryName { get; set; } + + public DateTime DataSliceRangeStartTime { get; set; } + + public DateTime DataSliceRangeEndTime { get; set; } + + public string NextLink { get; set; } + } +} diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataSliceRunFilterOptions.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataSliceRunFilterOptions.cs new file mode 100644 index 000000000000..f6ac6eac63ee --- /dev/null +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataSliceRunFilterOptions.cs @@ -0,0 +1,31 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; + +namespace Microsoft.Azure.Commands.DataFactories +{ + public class DataSliceRunFilterOptions + { + public string TableName { get; set; } + + public string ResourceGroupName { get; set; } + + public string DataFactoryName { get; set; } + + public DateTime StartDateTime { get; set; } + + public string NextLink { get; set; } + } +} diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/HubFilterOptions.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/HubFilterOptions.cs index f115f8145fce..4bb2757e011c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/HubFilterOptions.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/HubFilterOptions.cs @@ -21,5 +21,7 @@ public class HubFilterOptions public string ResourceGroupName { get; set; } public string DataFactoryName { get; set; } + + public string NextLink { get; set; } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/LinkedServiceFilterOptions.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/LinkedServiceFilterOptions.cs index 20668c8697cf..7ad871ed5019 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/LinkedServiceFilterOptions.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/LinkedServiceFilterOptions.cs @@ -21,5 +21,7 @@ public class LinkedServiceFilterOptions public string ResourceGroupName { get; set; } public string DataFactoryName { get; set; } + + public string NextLink { get; set; } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataFactory.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataFactory.cs index 9c9c9f06d3d8..a428e04e0603 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataFactory.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataFactory.cs @@ -49,6 +49,21 @@ public string DataFactoryName } } + public string DataFactoryId + { + get + { + return dataFactory.Properties == null ? String.Empty : dataFactory.Properties.DataFactoryId; + } + internal set + { + if (dataFactory.Properties != null) + { + dataFactory.Properties.DataFactoryId = value; + } + } + } + public string ResourceGroupName { get; set; } public string Location diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataSlice.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataSlice.cs index 2a9fc460ce77..dcbe0c76e670 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataSlice.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataSlice.cs @@ -81,15 +81,27 @@ internal set } } - public string Status + public string State { get { - return dataSlice.Status; + return dataSlice.State; } internal set { - dataSlice.Status = value; + dataSlice.State = value; + } + } + + public string SubState + { + get + { + return dataSlice.Substate; + } + internal set + { + dataSlice.Substate = value; } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSRunLogInfo.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSRunLogInfo.cs index 00356227a3a9..efd28490400f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSRunLogInfo.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSRunLogInfo.cs @@ -58,7 +58,23 @@ public string Container { get { - return this._runLogUri.AbsolutePath.TrimStart('/'); + return this._runLogUri.AbsolutePath.Split('/')[1]; + } + } + + public string Directory + { + get + { + string[] subfolders = _runLogUri.LocalPath.TrimStart('/').Split('/'); + + if (subfolders.Length <= 1) + { + return string.Empty; + } + + // remove // from the Absolute path to get the subfolder + return _runLogUri.LocalPath.TrimStart('/').Substring(this.Container.Length + 1); } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSTable.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSTable.cs index 1b39e3702ae9..e3798a009075 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSTable.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSTable.cs @@ -14,6 +14,7 @@ using System; using System.Collections.Generic; +using Microsoft.Azure.Management.DataFactories.Common.Models; using Microsoft.Azure.Management.DataFactories.Models; namespace Microsoft.Azure.Commands.DataFactories.Models @@ -57,7 +58,7 @@ public string TableName public string ResourceGroupName { get; set; } public string DataFactoryName { get; set; } - + public Availability Availability { get @@ -70,15 +71,15 @@ public Availability Availability } } - public TableLocation Location + public TableTypeProperties Location { get { - return table.Properties.Location; + return table.Properties.TypeProperties; } set { - table.Properties.Location = value; + table.Properties.TypeProperties = value; } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PipelineFilterOptions.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PipelineFilterOptions.cs index 33d0553c4cc7..df2586ebe2d6 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PipelineFilterOptions.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/PipelineFilterOptions.cs @@ -21,5 +21,7 @@ public class PipelineFilterOptions public string ResourceGroupName { get; set; } public string DataFactoryName { get; set; } + + public string NextLink { get; set; } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/TableFilterOptions.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/TableFilterOptions.cs index e8b1693564cc..aca5e6f50af4 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/TableFilterOptions.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/TableFilterOptions.cs @@ -21,5 +21,7 @@ public class TableFilterOptions public string ResourceGroupName { get; set; } public string DataFactoryName { get; set; } + + public string NextLink { get; set; } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/GetAzureDataFactoryPipelineCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/GetAzureDataFactoryPipelineCommand.cs index 9ed7fe5bf516..a217c853b583 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/GetAzureDataFactoryPipelineCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/GetAzureDataFactoryPipelineCommand.cs @@ -18,6 +18,7 @@ using System.Collections; using System.Collections.Generic; using System.Globalization; +using System.Linq; using System.Management.Automation; using System.Security.Permissions; @@ -30,8 +31,9 @@ public class GetAzureDataFactoryPipelineCommand : DataFactoryBaseCmdlet HelpMessage = "The pipeline name.")] public string Name { get; set; } - [Parameter(ParameterSetName = ByFactoryObject, Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, -HelpMessage = "The data factory object.")] + [Parameter(ParameterSetName = ByFactoryObject, Position = 0, Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The data factory object.")] public PSDataFactory DataFactory { get; set; } [Parameter(ParameterSetName = ByFactoryName, Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, @@ -66,19 +68,21 @@ public override void ExecuteCmdlet() DataFactoryName = DataFactoryName }; - List pipelines = DataFactoryClient.FilterPSPipelines(filterOptions); - - if (pipelines != null) + if (Name != null) { - if (pipelines.Count == 1 && Name != null) - { - WriteObject(pipelines[0]); - } - else + List pipelines = DataFactoryClient.FilterPSPipelines(filterOptions); + if (pipelines != null && pipelines.Any()) { - WriteObject(pipelines, true); + WriteObject(pipelines.First()); } + return; } + + // List pipelines until all pages are fetched. + do + { + WriteObject(DataFactoryClient.FilterPSPipelines(filterOptions), true); + } while (filterOptions.NextLink.IsNextPageLink()); } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Tables/GetAzureDataFactoryTableCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Tables/GetAzureDataFactoryTableCommand.cs index 75ccb17b0b29..2b59ec35c6b3 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Tables/GetAzureDataFactoryTableCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Tables/GetAzureDataFactoryTableCommand.cs @@ -17,6 +17,7 @@ using System.Security.Permissions; using Microsoft.Azure.Commands.DataFactories.Models; using System.Globalization; +using System.Linq; using Microsoft.Azure.Commands.DataFactories.Properties; namespace Microsoft.Azure.Commands.DataFactories @@ -64,19 +65,21 @@ public override void ExecuteCmdlet() DataFactoryName = DataFactoryName }; - List tables = DataFactoryClient.FilterPSTables(filterOptions); - - if (tables != null) + if (Name != null) { - if (tables.Count == 1 && Name != null) + List tables = DataFactoryClient.FilterPSTables(filterOptions); + if (tables != null && tables.Any()) { WriteObject(tables[0]); } - else - { - WriteObject(tables, true); - } + return; } + + // List tables until all pages are fetched + do + { + WriteObject(DataFactoryClient.FilterPSTables(filterOptions), true); + } while (filterOptions.NextLink.IsNextPageLink()); } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config b/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config index 4cdf7ec6115b..42e0ca391d99 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config @@ -4,12 +4,11 @@ + - - diff --git a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj index 22322047ba96..85dc3de5f4ab 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj +++ b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj @@ -67,11 +67,12 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll - False - ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.4-preview\lib\net40\Microsoft.Azure.Management.Network.dll + ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.9-preview\lib\net40\Microsoft.Azure.Management.Network.dll + True - + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + True ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll @@ -138,10 +139,12 @@ + + - + @@ -153,6 +156,9 @@ Designer + + Always + Always @@ -162,10 +168,13 @@ Always + + Always + Always - + Always @@ -183,7 +192,7 @@ Always - + Always @@ -222,6 +231,12 @@ Always + + Always + + + Always + Always @@ -240,6 +255,24 @@ Always + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + Always diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ApplicationGatewayTests.cs similarity index 89% rename from src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.cs rename to src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ApplicationGatewayTests.cs index 7b833cb5355a..3ba093687625 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.cs +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ApplicationGatewayTests.cs @@ -17,13 +17,13 @@ namespace Commands.Network.Test.ScenarioTests { - public class CheckDnsAvailabilityTest + public class ApplicationGatewayTests { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestCheckDnsAvailability() + public void TestApplicationGatewayCRUD() { - NetworkResourcesController.NewInstance.RunPsTest("Test-CheckDnsAvailability"); + NetworkResourcesController.NewInstance.RunPsTest("Test-ApplicationGatewayCRUD"); } } } diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 new file mode 100644 index 000000000000..6d1b6f16c676 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 @@ -0,0 +1,94 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Application gateway tests +#> +function Test-ApplicationGatewayCRUD +{ + # Setup + + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $domainNameLabel = Get-ResourceName + $vnetName = Get-ResourceName + $publicIpName = Get-ResourceName + $vnetGatewayConfigName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/applicationgateways" + $location = Get-ProviderLocation $resourceTypeParent + + $gipconfigname = Get-ResourceName + $fipconfigName = Get-ResourceName + $poolName = Get-ResourceName + $poolSettingName = Get-ResourceName + $frontendPortName = Get-ResourceName + $listenerName = Get-ResourceName + $ruleName = Get-ResourceName + $appgwName = Get-ResourceName + + try + { + # Create the resource group + $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} + + # Create the Virtual Network + $subnet = New-AzureVirtualNetworkSubnetConfig -Name "GatewaySubnet" -AddressPrefix 10.0.0.0/24 + $vnet = New-AzurevirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet + $vnet = Get-AzurevirtualNetwork -Name $vnetName -ResourceGroupName $rgname + $subnet = Get-AzureVirtualNetworkSubnetConfig -Name "GatewaySubnet" -VirtualNetwork $vnet + + # Create the Application Gateway + $gipconfig = New-AzureApplicationGatewayIPConfiguration -Name $gipconfigname -Subnet $subnet + $pool = New-AzureApplicationGatewayBackendAddressPool -Name $poolName -BackendIPAddresses 1.1.1.1, 2.2.2.2, 3.3.3.3 + $poolSetting = New-AzureApplicationGatewayBackendHttpSettings -Name $poolSettingName -Port 80 -Protocol HTTP -CookieBasedAffinity Disabled + $fp = New-AzureApplicationGatewayFrontendPort -Name $frontendPortName -Port 80 + $fipconfig = New-AzureApplicationGatewayFrontendIPConfig -Name $fipconfigName -PublicIPAddress $publicip + $listener = New-AzureApplicationGatewayHttpListener -Name $listenerName -Protocol http -FrontendIpConfiguration $fipconfig -FrontendPort $fp + $rule = New-AzureApplicationGatewayRequestRoutingRule -Name $ruleName -RuleType basic -BackendHttpSettings $poolSetting -HttpListener $listener -BackendAddressPool $pool + $sku = New-AzureApplicationGatewaySku -Name Standard_Small -Tier Standard -Capacity 2 + + # $actual = New-AzureApplicationGateway -Name $appgwName -ResourceGroupName $rgname -Location $location -BackendAddressPools $pool -BackendHttpSettingsCollection $poolSetting -FrontendIpConfigurations $fipconfig -GatewayIpConfigurations $gipconfig -FrontendPorts $fp -HttpListeners $listener -RequestRoutingRules $rule -Sku $sku + # $expected = Get-AzureApplicationGateway -Name $appgwName -ResourceGroupName $rgname + # Compare-AzureApplicationGateway $actual $expected + + # Stop-AzureApplicationGateway -ApplicationGateway $expected + # Remove-AzureApplicationGateway -Name $appgwName -ResourceGroupName $rgname + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Compare application gateways +#> +function Compare-AzureApplicationGateway($actual, $expected) +{ + Assert-AreEqual $expected.Name $actual.Name + Assert-AreEqual $expected.Name $actual.Name + Assert-AreEqual $expected.Sku.Name $actual.Sku.Name + Assert-AreEqual $expected.Sku.Tier $actual.Sku.Tier + Assert-AreEqual $expected.Sku.Capacity $actual.Sku.Capacity + Assert-AreEqual $expected.FrontendPorts.Count $actual.FrontendPorts.Count + Assert-AreEqual $expected.SslCertificates.Count $actual.SslCertificates.Count + Assert-AreEqual $expected.BackendAddressPools.Count $actual.BackendAddressPools.Count + Assert-AreEqual $expected.BackendHttpSettingsCollection.Count $actual.BackendHttpSettingsCollection.Count + Assert-AreEqual $expected.HttpListeners.Count $actual.HttpListeners.Count + Assert-AreEqual $expected.RequestRoutingRules.Count $actual.RequestRoutingRules.Count +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.cs index 5010b60bf61a..dd3a2dcf91d8 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.cs +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.cs @@ -53,5 +53,19 @@ public void TestNetworkInterfaceSet() { NetworkResourcesController.NewInstance.RunPsTest("Test-NetworkInterfaceSet"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNetworkInterfaceIDns() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-NetworkInterfaceIDns"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNetworkInterfaceEnableIPForwarding() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-NetworkInterfaceEnableIPForwarding"); + } } } diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.ps1 index d773e63d5256..48c694f33434 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.ps1 +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.ps1 @@ -375,4 +375,131 @@ function Test-NetworkInterfaceSet # Cleanup Clean-ResourceGroup $rgname } +} + +<# +.SYNOPSIS +Tests creating new simple public networkinterface with Idns. +#> +function Test-NetworkInterfaceIDns +{ + # Setup + $rgname = Get-ResourceGroupName + $vnetName = Get-ResourceName + $subnetName = Get-ResourceName + $publicIpName = Get-ResourceName + $nicName = Get-ResourceName + $domainNameLabel = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/networkInterfaces" + <# + uncomment after IDNS is enabled in all locations + $location = Get-ProviderLocation $resourceTypeParent + #> + $location = "centralus" + + try + { + # Create the resource group + $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} + + # Create the Virtual Network + $subnet = New-AzureVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.1.0/24 + $vnet = New-AzurevirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet + + # Create NetworkInterface + $actualNic = New-AzureNetworkInterface -Name $nicName -ResourceGroupName $rgname -Location $location -Subnet $vnet.Subnets[0] -InternalDnsNameLabel "idnstest" + $expectedNic = Get-AzureNetworkInterface -Name $nicName -ResourceGroupName $rgname + + Assert-AreEqual $expectedNic.ResourceGroupName $actualNic.ResourceGroupName + Assert-AreEqual $expectedNic.Name $actualNic.Name + Assert-AreEqual $expectedNic.Location $actualNic.Location + Assert-AreEqual "Succeeded" $expectedNic.ProvisioningState + Assert-AreEqual $expectedNic.IpConfigurations[0].Name $actualNic.IpConfigurations[0].Name + Assert-AreEqual $expectedNic.IpConfigurations[0].PublicIpAddress.Id $actualNic.IpConfigurations[0].PublicIpAddress.Id + Assert-AreEqual $expectedNic.IpConfigurations[0].Subnet.Id $actualNic.IpConfigurations[0].Subnet.Id + Assert-NotNull $expectedNic.IpConfigurations[0].PrivateIpAddress + Assert-AreEqual "Dynamic" $expectedNic.IpConfigurations[0].PrivateIpAllocationMethod + Assert-AreEqual "idnstest" $expectedNic.DnsSettings.InternalDnsNameLabel + Assert-Null $expectedNic.DnsSettings.InternalFqdn + + # Delete NetworkInterface + $delete = Remove-AzureNetworkInterface -ResourceGroupName $rgname -name $nicName -PassThru -Force + Assert-AreEqual true $delete + + $list = Get-AzureNetworkInterface -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests creating new simple public networkinterface with Idns. +#> +function Test-NetworkInterfaceEnableIPForwarding +{ + # Setup + $rgname = Get-ResourceGroupName + $vnetName = Get-ResourceName + $subnetName = Get-ResourceName + $publicIpName = Get-ResourceName + $nicName = Get-ResourceName + $domainNameLabel = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/networkInterfaces" + + $location = Get-ProviderLocation $resourceTypeParent + + try + { + # Create the resource group + $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} + + # Create the Virtual Network + $subnet = New-AzureVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.1.0/24 + $vnet = New-AzurevirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet + + # Create NetworkInterface + $actualNic = New-AzureNetworkInterface -Name $nicName -ResourceGroupName $rgname -Location $location -Subnet $vnet.Subnets[0] -EnableIPForwarding + $expectedNic = Get-AzureNetworkInterface -Name $nicName -ResourceGroupName $rgname + + Assert-AreEqual $expectedNic.ResourceGroupName $actualNic.ResourceGroupName + Assert-AreEqual $expectedNic.Name $actualNic.Name + Assert-AreEqual $expectedNic.Location $actualNic.Location + Assert-AreEqual "Succeeded" $expectedNic.ProvisioningState + Assert-AreEqual $expectedNic.IpConfigurations[0].Name $actualNic.IpConfigurations[0].Name + Assert-AreEqual $expectedNic.IpConfigurations[0].PublicIpAddress.Id $actualNic.IpConfigurations[0].PublicIpAddress.Id + Assert-AreEqual $expectedNic.IpConfigurations[0].Subnet.Id $actualNic.IpConfigurations[0].Subnet.Id + Assert-NotNull $expectedNic.IpConfigurations[0].PrivateIpAddress + Assert-AreEqual true $expectedNic.EnableIPForwarding + + # Create NetworkInterface without IPForwarding + $nic = New-AzureNetworkInterface -Name $nicName -ResourceGroupName $rgname -Location $location -Subnet $vnet.Subnets[0] -Force + Assert-AreEqual $expectedNic.Name $nic.Name + Assert-AreEqual false $nic.EnableIPForwarding + + # set nic + $nic.EnableIPForwarding = $true + $nic = $nic | Set-AzureNetworkInterface + + Assert-AreEqual $expectedNic.Name $nic.Name + Assert-AreEqual true $nic.EnableIPForwarding + + # Delete NetworkInterface + $delete = Remove-AzureNetworkInterface -ResourceGroupName $rgname -name $nicName -PassThru -Force + Assert-AreEqual true $delete + + $list = Get-AzureNetworkInterface -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } } \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.cs new file mode 100644 index 000000000000..0cea972d6ebe --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Commands.Network.Test.ScenarioTests +{ + public class RouteTableTests + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEmptyRouteTable() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-EmptyRouteTable"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRouteTableCRUD() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-RouteTableCRUD"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRouteTableSubnetRef() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-RouteTableSubnetRef"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRouteTableRouteCRUD() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-RouteTableRouteCRUD"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRouteHopTypeTest() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-RouteHopTypeTest"); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.ps1 new file mode 100644 index 000000000000..cdac085c179a --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.ps1 @@ -0,0 +1,376 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Tests Empty RouteTable. +#> +function Test-EmptyRouteTable +{ + # Setup + $rgname = Get-ResourceGroupName + $routeTableName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/routeTables" + $location = Get-ProviderLocation $resourceTypeParent + + try + { + # Create the resource group + $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} + + # Create RouteTable + $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location + + # Get RouteTable + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName + + #verification + Assert-AreEqual $rgName $getRT.ResourceGroupName + Assert-AreEqual $routeTableName $getRT.Name + Assert-NotNull $getRT.Etag + Assert-AreEqual 0 @($getRT.Routes).Count + + # list + $list = Get-AzureRouteTable -ResourceGroupName $rgname + Assert-AreEqual 1 @($list).Count + Assert-AreEqual $list[0].ResourceGroupName $getRT.ResourceGroupName + Assert-AreEqual $list[0].Name $getRT.Name + Assert-AreEqual $list[0].Etag $getRT.Etag + Assert-AreEqual @($list[0].Routes).Count @($getRT.Routes).Count + + # Delete NetworkSecurityGroup + $delete = Remove-AzureRouteTable -ResourceGroupName $rgname -name $routeTableName -PassThru -Force + Assert-AreEqual true $delete + + $list = Get-AzureRouteTable -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests RouteTable CRUD. +#> +function Test-RouteTableCRUD +{ + # Setup + $rgname = Get-ResourceGroupName + $routeTableName = Get-ResourceName + $domainNameLabel = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/routeTables" + $location = Get-ProviderLocation $resourceTypeParent + + try + { + # Create the resource group + $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} + + $route1 = New-AzureRouteConfig -name "route1" -AddressPrefix "192.168.1.0/24" -NextHopIpAddress "23.108.1.1" -NextHopType "VirtualAppliance" + + # Create RouteTable + $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1 + + # Get RouteTable + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName + + #verification + Assert-AreEqual $rgName $getRT.ResourceGroupName + Assert-AreEqual $routeTableName $getRT.Name + Assert-NotNull $getRT.Etag + Assert-AreEqual 1 @($getRT.Routes).Count + Assert-AreEqual $getRT.Routes[0].Name "route1" + Assert-AreEqual $getRT.Routes[0].AddressPrefix "192.168.1.0/24" + Assert-AreEqual $getRT.Routes[0].NextHopIpAddress "23.108.1.1" + Assert-AreEqual $getRT.Routes[0].NextHopType "VirtualAppliance" + Assert-NotNull $getRT.Routes[0].Etag + + # list + $list = Get-AzureRouteTable -ResourceGroupName $rgname + Assert-AreEqual 1 @($list).Count + Assert-AreEqual $list[0].ResourceGroupName $getRT.ResourceGroupName + Assert-AreEqual $list[0].Name $getRT.Name + Assert-AreEqual $list[0].Etag $getRT.Etag + Assert-AreEqual @($list[0].Routes).Count @($getRT.Routes).Count + Assert-AreEqual $list[0].Routes[0].Etag $getRT.Routes[0].Etag + + $route2 = New-AzureRouteConfig -name "route2" -AddressPrefix "192.168.2.0/24" -NextHopType "VnetLocal" + + # Add a route table + $getRT = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1,$route2 -Force + + #verification + Assert-AreEqual $rgName $getRT.ResourceGroupName + Assert-AreEqual $routeTableName $getRT.Name + Assert-NotNull $getRT.Etag + Assert-AreEqual 2 @($getRT.Routes).Count + Assert-AreEqual $getRT.Routes[0].Name "route1" + Assert-AreEqual $getRT.Routes[1].Name "route2" + Assert-AreEqual $getRT.Routes[1].AddressPrefix "192.168.2.0/24" + Assert-null $getRT.Routes[1].NextHopIpAddress + Assert-AreEqual $getRT.Routes[1].NextHopType "VnetLocal" + Assert-NotNull $getRT.Routes[1].Etag + + # Remove a route table + $getRT = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route2 -Force + + Assert-AreEqual $rgName $getRT.ResourceGroupName + Assert-AreEqual $routeTableName $getRT.Name + Assert-NotNull $getRT.Etag + Assert-AreEqual 1 @($getRT.Routes).Count + Assert-AreEqual $getRT.Routes[0].Name "route2" + + # Delete NetworkSecurityGroup + $delete = Remove-AzureRouteTable -ResourceGroupName $rgname -name $routeTableName -PassThru -Force + Assert-AreEqual true $delete + + $list = Get-AzureRouteTable -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests RouteTable Subnet CRUD +#> +function Test-RouteTableSubnetRef +{ + # Setup + $rgname = Get-ResourceGroupName + $routeTableName = Get-ResourceName + $vnetName = Get-ResourceName + $subnetName = Get-ResourceName + $domainNameLabel = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/routeTables" + $location = Get-ProviderLocation $resourceTypeParent + + try + { + # Create the resource group + $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} + + $route1 = New-AzureRouteConfig -name "route1" -AddressPrefix "192.168.1.0/24" -NextHopIpAddress "23.108.1.1" -NextHopType "VirtualAppliance" + + # Create RouteTable + $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1 + + # Get RouteTable + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName + + #verification + Assert-AreEqual $rgName $getRT.ResourceGroupName + Assert-AreEqual $routeTableName $getRT.Name + Assert-NotNull $getRT.Etag + Assert-AreEqual 1 @($getRT.Routes).Count + Assert-AreEqual $getRT.Routes[0].Name "route1" + + # create vnet and subnet associated to a Routetable + # Create the Virtual Network + $subnet = New-AzureVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.1.0/24 -RouteTable $getRT + $vnet = New-AzurevirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -DnsServer 8.8.8.8 -Subnet $subnet + + # Verify RouteTable reference in subnet + Assert-AreEqual $vnet.Subnets[0].RouteTable.Id $getRT.Id + + # Verify subnet reference in Routetable + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName + Assert-AreEqual 1 @($getRT.Subnets).Count + Assert-AreEqual $vnet.Subnets[0].Id $getRT.Subnets[0].Id + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests RouteTable Route CRUD +#> +function Test-RouteTableRouteCRUD +{ + # Setup + $rgname = Get-ResourceGroupName + $routeTableName = Get-ResourceName + $vnetName = Get-ResourceName + $subnetName = Get-ResourceName + $domainNameLabel = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/routeTables" + $location = Get-ProviderLocation $resourceTypeParent + + try + { + # Create the resource group + $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} + + $route1 = New-AzureRouteConfig -name "route1" -AddressPrefix "192.168.1.0/24" -NextHopIpAddress "23.108.1.1" -NextHopType "VirtualAppliance" + + # Create RouteTable + $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1 + + # Get RouteTable + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName + + #verification + Assert-AreEqual $rgName $getRT.ResourceGroupName + Assert-AreEqual $routeTableName $getRT.Name + Assert-NotNull $getRT.Etag + Assert-AreEqual 1 @($getRT.Routes).Count + Assert-AreEqual $getRT.Routes[0].Name "route1" + + # get route + $route = $getRT | Get-AzureRouteConfig -name "route1" + Assert-AreEqual $route.Name "route1" + Assert-AreEqual $getRT.Routes[0].Name $route.Name + Assert-AreEqual $getRT.Routes[0].AddressPrefix $route.AddressPrefix + Assert-AreEqual $getRT.Routes[0].NextHopType $route.NextHopType + Assert-AreEqual $getRT.Routes[0].NextHopIpAddress $route.NextHopIpAddress + + # Add a Route + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName | Add-AzureRouteConfig -name "route2" -AddressPrefix "192.168.2.0/24" -NextHopType "VnetLocal" | Set-AzureRouteTable + + # get route + $route = $getRT | Get-AzureRouteConfig -name "route2" + + #verification + Assert-AreEqual 2 @($getRT.Routes).Count + Assert-AreEqual $route.Name "route2" + Assert-AreEqual $getRT.Routes[1].Name $route.Name + Assert-AreEqual $getRT.Routes[1].AddressPrefix $route.AddressPrefix + Assert-AreEqual $route.AddressPrefix "192.168.2.0/24" + Assert-AreEqual $getRT.Routes[1].NextHopType $route.NextHopType + Assert-AreEqual $route.NextHopType "VnetLocal" + Assert-Null $route.NextHopIpAddress + Assert-Null $getRT.Routes[1].NextHopIpAddress + + # list route + $list = $getRT | Get-AzureRouteConfig + Assert-AreEqual 2 @($list).Count + Assert-AreEqual $list[1].Name "route2" + Assert-AreEqual $list[1].Name $route.Name + Assert-AreEqual $list[1].AddressPrefix $route.AddressPrefix + Assert-AreEqual $list[1].NextHopType $route.NextHopType + Assert-Null $list[1].NextHopIpAddress + + # set route + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName | Set-AzureRouteConfig -name "route2" -AddressPrefix "192.168.3.0/24" -NextHopType "VnetLocal" | Set-AzureRouteTable + + # get route + $route = $getRT | Get-AzureRouteConfig -name "route2" + + #verification + Assert-AreEqual 2 @($getRT.Routes).Count + Assert-AreEqual $route.Name "route2" + Assert-AreEqual $getRT.Routes[1].Name $route.Name + Assert-AreEqual $route.AddressPrefix "192.168.3.0/24" + Assert-AreEqual $getRT.Routes[1].AddressPrefix $route.AddressPrefix + Assert-AreEqual $getRT.Routes[1].NextHopType $route.NextHopType + Assert-Null $route.NextHopIpAddress + Assert-Null $getRT.Routes[1].NextHopIpAddress + + # Delete route + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName | Remove-AzureRouteConfig -name "route1" | Set-AzureRouteTable + + # list route + $list = $getRT | Get-AzureRouteConfig + Assert-AreEqual 1 @($list).Count + Assert-AreEqual $list[0].Name "route2" + + # Delete NetworkSecurityGroup + $delete = Remove-AzureRouteTable -ResourceGroupName $rgname -name $routeTableName -PassThru -Force + Assert-AreEqual true $delete + + $list = Get-AzureRouteTable -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests RouteTable Hoptype Test +#> +function Test-RouteHopTypeTest +{ + # Setup + $rgname = Get-ResourceGroupName + $routeTableName = Get-ResourceName + $vnetName = Get-ResourceName + $subnetName = Get-ResourceName + $domainNameLabel = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/routeTables" + $location = Get-ProviderLocation $resourceTypeParent + + try + { + # Create the resource group + $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} + + $route1 = New-AzureRouteConfig -name "route1" -AddressPrefix "192.168.1.0/24" -NextHopIpAddress "23.108.1.1" -NextHopType "VirtualAppliance" + $route2 = New-AzureRouteConfig -name "route2" -AddressPrefix "10.0.1.0/24" -NextHopType "VnetLocal" + $route3 = New-AzureRouteConfig -name "route3" -AddressPrefix "0.0.0.0/0" -NextHopType "Internet" + $route4 = New-AzureRouteConfig -name "route4" -AddressPrefix "10.0.2.0/24" -NextHopType "None" + + # Create RouteTable + $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1, $route2, $route3, $route4 + + # Get RouteTable + $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName + + #verification + Assert-AreEqual $rgName $getRT.ResourceGroupName + Assert-AreEqual $routeTableName $getRT.Name + Assert-NotNull $getRT.Etag + Assert-AreEqual 4 @($getRT.Routes).Count + Assert-AreEqual $getRT.Routes[0].Name "route1" + Assert-AreEqual $getRT.Routes[0].NextHopType "VirtualAppliance" + Assert-AreEqual $getRT.Routes[1].Name "route2" + Assert-AreEqual $getRT.Routes[1].NextHopType "VnetLocal" + Assert-AreEqual $getRT.Routes[2].Name "route3" + Assert-AreEqual $getRT.Routes[2].NextHopType "Internet" + Assert-AreEqual $getRT.Routes[3].Name "route4" + Assert-AreEqual $getRT.Routes[3].NextHopType "None" + + # Delete RouteTable + $delete = Remove-AzureRouteTable -ResourceGroupName $rgname -name $routeTableName -PassThru -Force + Assert-AreEqual true $delete + + $list = Get-AzureRouteTable -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.cs new file mode 100644 index 000000000000..ce5f5cbc275c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Commands.Network.Test.ScenarioTests +{ + public class TestDnsAvailabilityTest + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDnsAvailability() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-DnsAvailability"); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.ps1 similarity index 70% rename from src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.ps1 rename to src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.ps1 index 2b2455cc7527..d6202d507185 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.ps1 +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.ps1 @@ -14,14 +14,16 @@ <# .SYNOPSIS -Tests creating new simple virtualNetwork. +Tests Test-AzureDnsAvailability command #> -function Test-CheckDnsAvailability +function Test-DnsAvailability { # Setup $domainQualifiedName = Get-ResourceName - + $resourceTypeParent = "Microsoft.Network/publicIPAddresses" + $location = Get-ProviderLocation $resourceTypeParent + # Checkdnsavailability - $checkdnsavailabilityStatus = Get-AzureCheckDnsAvailability -Location "westus" -DomainQualifiedName $domainQualifiedName - Assert-AreEqual $checkdnsavailabilityStatus.DnsNameAvailability true + $checkdnsavailability = Test-AzureDnsAvailability -Location "westus" -DomainQualifiedName $domainQualifiedName + Assert-AreEqual $checkdnsavailability true } \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayCRUD.json new file mode 100644 index 000000000000..547efcd0c988 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayCRUD.json @@ -0,0 +1,1124 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\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 \"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 \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\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 \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "63784" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "fc85effd-d664-49fd-9907-bb1519895889" + ], + "x-ms-correlation-request-id": [ + "fc85effd-d664-49fd-9907-bb1519895889" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194117Z:fc85effd-d664-49fd-9907-bb1519895889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\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 \"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 \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\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 \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/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\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "63784" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "d5bab626-335d-40f2-8fa8-4f5b2f074f7f" + ], + "x-ms-correlation-request-id": [ + "d5bab626-335d-40f2-8fa8-4f5b2f074f7f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194118Z:d5bab626-335d-40f2-8fa8-4f5b2f074f7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourcegroups/onesdk8455?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "f14849f0-832b-4cde-b2ab-6904718cac25" + ], + "x-ms-correlation-request-id": [ + "f14849f0-832b-4cde-b2ab-6904718cac25" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194118Z:f14849f0-832b-4cde-b2ab-6904718cac25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:17 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourcegroups/onesdk8455?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "263fdfd0-ec8e-415f-8dc7-69c6db73ceef" + ], + "x-ms-correlation-request-id": [ + "263fdfd0-ec8e-415f-8dc7-69c6db73ceef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194124Z:263fdfd0-ec8e-415f-8dc7-69c6db73ceef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:23 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourcegroups/onesdk8455?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "77" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455\",\r\n \"name\": \"onesdk8455\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "205" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "8a45f93a-2d4e-4d77-90ff-940856711ce3" + ], + "x-ms-correlation-request-id": [ + "8a45f93a-2d4e-4d77-90ff-940856711ce3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194119Z:8a45f93a-2d4e-4d77-90ff-940856711ce3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "34f09755-69a1-4285-a9d1-3e6d5a50a7b9" + ], + "x-ms-correlation-request-id": [ + "34f09755-69a1-4285-a9d1-3e6d5a50a7b9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194119Z:34f09755-69a1-4285-a9d1-3e6d5a50a7b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourcegroups/onesdk8455/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:652777e1-0609-4d3d-95a3-ac176ec25159" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "5e4725d7-d26a-49d4-8600-6c83c38a3007" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194120Z:5e4725d7-d26a-49d4-8600-6c83c38a3007" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualnetworks/onesdk8012?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs4MDEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f2df1759-6a1f-4bad-ac95-ba90c782cdca" + ], + "x-ms-correlation-request-id": [ + "f2df1759-6a1f-4bad-ac95-ba90c782cdca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194121Z:f2df1759-6a1f-4bad-ac95-ba90c782cdca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualnetworks/onesdk8012?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs4MDEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8012\",\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualNetworks/onesdk8012\",\r\n \"etag\": \"W/\\\"e72b0297-2663-43c6-9c51-39abef24db1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualNetworks/onesdk8012/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e72b0297-2663-43c6-9c51-39abef24db1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"centralus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "849" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "52829717-3524-461e-b1e7-5b10ffa74d07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e72b0297-2663-43c6-9c51-39abef24db1e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "946f759c-b5be-4eb1-b9b9-143cca8bc1d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194124Z:946f759c-b5be-4eb1-b9b9-143cca8bc1d9" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualnetworks/onesdk8012?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs4MDEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8012\",\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualNetworks/onesdk8012\",\r\n \"etag\": \"W/\\\"e72b0297-2663-43c6-9c51-39abef24db1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualNetworks/onesdk8012/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e72b0297-2663-43c6-9c51-39abef24db1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"centralus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "849" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "deb84f37-b475-4a3d-a064-e16080456d92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e72b0297-2663-43c6-9c51-39abef24db1e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "cdb34c74-76de-4682-8a54-1949a4522d5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194124Z:cdb34c74-76de-4682-8a54-1949a4522d5f" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualnetworks/onesdk8012?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs4MDEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk8012\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "411" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8012\",\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualNetworks/onesdk8012\",\r\n \"etag\": \"W/\\\"27ccffd6-d442-4f21-9e89-1f5188493c61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourceGroups/onesdk8455/providers/Microsoft.Network/virtualNetworks/onesdk8012/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"27ccffd6-d442-4f21-9e89-1f5188493c61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"centralus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "108ea14c-3821-46b0-91c5-e02afe8de3ea" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Network/locations/centralus/operations/108ea14c-3821-46b0-91c5-e02afe8de3ea?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9f257515-ce95-43a3-9e33-ab96063fb429" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194123Z:9f257515-ce95-43a3-9e33-ab96063fb429" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:23 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/providers/Microsoft.Network/locations/centralus/operations/108ea14c-3821-46b0-91c5-e02afe8de3ea?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMTA4ZWExNGMtMzgyMS00NmIwLTkxYzUtZTAyYWZlOGRlM2VhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6271fff8-372b-48fe-9b3d-b5d2f0c503b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "effec63c-78e9-41e2-9f53-6b8a3de5ff37" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194124Z:effec63c-78e9-41e2-9f53-6b8a3de5ff37" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/resourcegroups/onesdk8455?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "efb695af-43f9-4c0b-a05d-05ff37619c23" + ], + "x-ms-correlation-request-id": [ + "efb695af-43f9-4c0b-a05d-05ff37619c23" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194125Z:efb695af-43f9-4c0b-a05d-05ff37619c23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "8e61ff82-7d16-4c13-9ffe-6e2e2d48a20c" + ], + "x-ms-correlation-request-id": [ + "8e61ff82-7d16-4c13-9ffe-6e2e2d48a20c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194125Z:8e61ff82-7d16-4c13-9ffe-6e2e2d48a20c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "26a3015d-cc1e-4ed0-9084-103da6b9356a" + ], + "x-ms-correlation-request-id": [ + "26a3015d-cc1e-4ed0-9084-103da6b9356a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194140Z:26a3015d-cc1e-4ed0-9084-103da6b9356a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "6b7fb312-638d-4d60-afc0-e50cf554c201" + ], + "x-ms-correlation-request-id": [ + "6b7fb312-638d-4d60-afc0-e50cf554c201" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194155Z:6b7fb312-638d-4d60-afc0-e50cf554c201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:41:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "c3a791d4-f31e-4ae5-a2bd-d246f63cac41" + ], + "x-ms-correlation-request-id": [ + "c3a791d4-f31e-4ae5-a2bd-d246f63cac41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194210Z:c3a791d4-f31e-4ae5-a2bd-d246f63cac41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:42:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "ebca48e7-0876-4290-a14a-8d4d709ca0fe" + ], + "x-ms-correlation-request-id": [ + "ebca48e7-0876-4290-a14a-8d4d709ca0fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194226Z:ebca48e7-0876-4290-a14a-8d4d709ca0fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:42:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "508e8ab3-1832-4083-8720-97a9e6d2963e" + ], + "x-ms-correlation-request-id": [ + "508e8ab3-1832-4083-8720-97a9e6d2963e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194241Z:508e8ab3-1832-4083-8720-97a9e6d2963e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:42:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "56065369-6b0d-4ec5-9ec3-d847fe505564" + ], + "x-ms-correlation-request-id": [ + "56065369-6b0d-4ec5-9ec3-d847fe505564" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194256Z:56065369-6b0d-4ec5-9ec3-d847fe505564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:42:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f1724dbb-921a-44a9-8368-52f84d06cc1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDU1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjE3MjRkYmItOTIxYS00NGE5LTgzNjgtNTJmODRkMDZjYzFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "f7bdca58-8047-4e41-a28d-c38d4ebc08f9" + ], + "x-ms-correlation-request-id": [ + "f7bdca58-8047-4e41-a28d-c38d4ebc08f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150709T194311Z:f7bdca58-8047-4e41-a28d-c38d4ebc08f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Jul 2015 19:43:11 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ApplicationGatewayCRUD": [ + "onesdk8455", + "onesdk3532", + "onesdk3558", + "onesdk8012", + "onesdk9506", + "onesdk4075", + "onesdk7126", + "onesdk5980", + "onesdk8870", + "onesdk9265", + "onesdk7354", + "onesdk2167", + "onesdk8572", + "onesdk3146" + ] + }, + "Variables": { + "SubscriptionId": "f1724dbb-921a-44a9-8368-52f84d06cc1f" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CheckDnsAvailabilityTest/TestCheckDnsAvailability.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CheckDnsAvailabilityTest/TestCheckDnsAvailability.json deleted file mode 100644 index 80524a01fc00..000000000000 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CheckDnsAvailabilityTest/TestCheckDnsAvailability.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/CheckDnsNameAvailability?domainNameLabel=onesdk2418&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL0NoZWNrRG5zTmFtZUF2YWlsYWJpbGl0eT9kb21haW5OYW1lTGFiZWw9b25lc2RrMjQxOCZhcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"available\": true\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "25" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0aac8c2c-947f-4d67-86f4-493bc094f0ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" - ], - "x-ms-correlation-request-id": [ - "12a24d0f-40ba-44f9-9925-8fc45ecf0f12" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150417T223259Z:12a24d0f-40ba-44f9-9925-8fc45ecf0f12" - ], - "Date": [ - "Fri, 17 Apr 2015 22:32:58 GMT" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "Test-CheckDnsAvailability": [ - "onesdk2418" - ] - }, - "Variables": { - "SubscriptionId": "9532a63e-f2eb-4649-bb23-5ed01077ce80" - } -} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceEnableIPForwarding.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceEnableIPForwarding.json new file mode 100644 index 000000000000..6609f202e613 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceEnableIPForwarding.json @@ -0,0 +1,2062 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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\": \"Redis/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "77246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "cc7599c0-f3db-4262-bec9-73184e7f1c26" + ], + "x-ms-correlation-request-id": [ + "cc7599c0-f3db-4262-bec9-73184e7f1c26" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011657Z:cc7599c0-f3db-4262-bec9-73184e7f1c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:16:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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\": \"Redis/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "77246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "9b188ee7-ba6d-4c6e-81b2-cbacd61354f7" + ], + "x-ms-correlation-request-id": [ + "9b188ee7-ba6d-4c6e-81b2-cbacd61354f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011658Z:9b188ee7-ba6d-4c6e-81b2-cbacd61354f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:16:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "3f49142d-3ce3-4031-96d2-2ff237db537c" + ], + "x-ms-correlation-request-id": [ + "3f49142d-3ce3-4031-96d2-2ff237db537c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011658Z:3f49142d-3ce3-4031-96d2-2ff237db537c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:16:57 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "00b3073c-e56b-435d-9e63-8b2d1ee1f047" + ], + "x-ms-correlation-request-id": [ + "00b3073c-e56b-435d-9e63-8b2d1ee1f047" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011743Z:00b3073c-e56b-435d-9e63-8b2d1ee1f047" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:43 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42\",\r\n \"name\": \"onesdk42\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9a61bcd9-235b-4a0a-b2df-e78ace57aea0" + ], + "x-ms-correlation-request-id": [ + "9a61bcd9-235b-4a0a-b2df-e78ace57aea0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011659Z:9a61bcd9-235b-4a0a-b2df-e78ace57aea0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:16:58 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "d7a7ac2e-2179-4098-ad40-408a45917329" + ], + "x-ms-correlation-request-id": [ + "d7a7ac2e-2179-4098-ad40-408a45917329" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011659Z:d7a7ac2e-2179-4098-ad40-408a45917329" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:16:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:5311beed-0357-4e2a-a27d-20bb43900e10" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "a8219885-3ca0-4d11-9f7f-0347f6fce296" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011659Z:a8219885-3ca0-4d11-9f7f-0347f6fce296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:16:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualnetworks/onesdk1117?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvb25lc2RrMTExNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk1117' under resource group 'onesdk42' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "156" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2dfd881c-faa1-4e83-940a-553c65f270b2" + ], + "x-ms-correlation-request-id": [ + "2dfd881c-faa1-4e83-940a-553c65f270b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011701Z:2dfd881c-faa1-4e83-940a-553c65f270b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:01 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualnetworks/onesdk1117?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvb25lc2RrMTExNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk1117\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117\",\r\n \"etag\": \"W/\\\"c887ac7c-e2f5-4e0a-90c2-106935c4a1f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk4851\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\",\r\n \"etag\": \"W/\\\"c887ac7c-e2f5-4e0a-90c2-106935c4a1f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b271301-a2fb-49ac-bf9c-d2303079be54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c887ac7c-e2f5-4e0a-90c2-106935c4a1f2\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "3abd900a-08cc-4a6c-a37c-984baa98b730" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011714Z:3abd900a-08cc-4a6c-a37c-984baa98b730" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualnetworks/onesdk1117?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvb25lc2RrMTExNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"onesdk4851\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk1117\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "409" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk1117\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117\",\r\n \"etag\": \"W/\\\"78f6ec36-0e4d-4809-8919-d74beadded38\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk4851\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\",\r\n \"etag\": \"W/\\\"78f6ec36-0e4d-4809-8919-d74beadded38\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "838" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5d4eed36-89f0-4770-8fe9-301635dd0b34" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/5d4eed36-89f0-4770-8fe9-301635dd0b34?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "8cefa057-c03d-4cae-9815-3206387d02a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011702Z:8cefa057-c03d-4cae-9815-3206387d02a8" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:02 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/5d4eed36-89f0-4770-8fe9-301635dd0b34?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzVkNGVlZDM2LTg5ZjAtNDc3MC04ZmU5LTMwMTYzNWRkMGIzND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8ccdc485-6165-4fbf-9f1e-c78b5ec49821" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "5d122267-0e16-4a59-836e-c1efa38d8bf8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011703Z:5d122267-0e16-4a59-836e-c1efa38d8bf8" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/5d4eed36-89f0-4770-8fe9-301635dd0b34?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzVkNGVlZDM2LTg5ZjAtNDc3MC04ZmU5LTMwMTYzNWRkMGIzND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "497acc45-bc26-479b-86c9-acabae8a06d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "0c1e7551-e38f-45f1-85de-7ec94c115744" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011713Z:0c1e7551-e38f-45f1-85de-7ec94c115744" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/onesdk3311' under resource group 'onesdk42' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8ccd2742-e626-4d40-bcf9-1a09c1015ba3" + ], + "x-ms-correlation-request-id": [ + "8ccd2742-e626-4d40-bcf9-1a09c1015ba3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011714Z:8ccd2742-e626-4d40-bcf9-1a09c1015ba3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1085" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "68544492-6415-4847-a077-b67d79bf559d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f3005a4c-b542-4508-b06f-dc58ad7de09a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "4010725e-0999-41f2-9cfa-012ea75d6641" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011719Z:4010725e-0999-41f2-9cfa-012ea75d6641" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1085" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "594233a8-c807-433d-bb7e-7c20d2563bbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f3005a4c-b542-4508-b06f-dc58ad7de09a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "03f06bd2-74b5-4ff1-9cce-41893ab2d83e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011720Z:03f06bd2-74b5-4ff1-9cce-41893ab2d83e" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1085" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e3a4c9e-14c3-4660-b208-25e533bdbfb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f3005a4c-b542-4508-b06f-dc58ad7de09a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "474f88d0-0d66-4ae2-9306-768d3993dd77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011720Z:474f88d0-0d66-4ae2-9306-768d3993dd77" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d8f5ddc-5c5e-43b8-8252-f5caae996611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5e786e95-314e-4579-9b0d-cca0408b7828\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "2b484b05-0215-4aba-9f21-2dc82ac91a2c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011740Z:2b484b05-0215-4aba-9f21-2dc82ac91a2c" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "28ecf00e-dbe6-4f1e-8e1f-d28b2c49481e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5e786e95-314e-4579-9b0d-cca0408b7828\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "4068f2e8-1b8a-4cb6-8ab8-030216fc265c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011741Z:4068f2e8-1b8a-4cb6-8ab8-030216fc265c" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca665ce2-a641-4b20-93b9-c941a5a6b46c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5e786e95-314e-4579-9b0d-cca0408b7828\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "6f9139f3-f282-4ae4-8425-4f2affd75749" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011741Z:6f9139f3-f282-4ae4-8425-4f2affd75749" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1085" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "069ad9a7-2d5d-4737-876b-54edbdacf35d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "61568919-6f31-4178-9545-b859d22d41c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011742Z:61568919-6f31-4178-9545-b859d22d41c0" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": true\r\n },\r\n \"name\": \"onesdk3311\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "661" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1085" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d1c055b7-2282-498f-8dac-5818c5cf97d7" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/d1c055b7-2282-498f-8dac-5818c5cf97d7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "4d3356bb-3c6e-409e-877e-3c713028cba6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011719Z:4d3356bb-3c6e-409e-877e-3c713028cba6" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"onesdk3311\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "662" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dd7b96c2-b68e-499a-a48a-f9bd99fa8958" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/dd7b96c2-b68e-499a-a48a-f9bd99fa8958?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "76e28f3e-c12a-4c3a-aeba-c6aae6824e3b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011740Z:76e28f3e-c12a-4c3a-aeba-c6aae6824e3b" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"primary\": false,\r\n \"enableIPForwarding\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"name\": \"onesdk3311\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westeurope\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1316" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1085" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "45323994-bfb1-4ef2-ab3f-18244234c870" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/45323994-bfb1-4ef2-ab3f-18244234c870?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "2d246d10-427b-4c46-b7d8-1292219faa3d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011741Z:2d246d10-427b-4c46-b7d8-1292219faa3d" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/d1c055b7-2282-498f-8dac-5818c5cf97d7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2QxYzA1NWI3LTIyODItNDk4Zi04ZGFjLTU4MThjNWNmOTdkNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b0bb855b-17d6-41f0-ba84-ec726db1b558" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "02af0b1f-17b3-4087-9484-efc71594a8b3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011719Z:02af0b1f-17b3-4087-9484-efc71594a8b3" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/dd7b96c2-b68e-499a-a48a-f9bd99fa8958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2RkN2I5NmMyLWI2OGUtNDk5YS1hNDhhLWY5YmQ5OWZhODk1OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a776992-72af-40bc-9d24-4fbd060bba2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "ecea2aac-f8f9-46db-bef3-90996a64c168" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011740Z:ecea2aac-f8f9-46db-bef3-90996a64c168" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/45323994-bfb1-4ef2-ab3f-18244234c870?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzQ1MzIzOTk0LWJmYjEtNGVmMi1hYjNmLTE4MjQ0MjM0Yzg3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d05ff620-0619-4f11-8790-53e96e529267" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "679d3400-b24c-4099-95c4-2c2d204ccc6a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011742Z:679d3400-b24c-4099-95c4-2c2d204ccc6a" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "80b661a0-4254-4713-b934-3ef11fcdb148" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/80b661a0-4254-4713-b934-3ef11fcdb148?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/80b661a0-4254-4713-b934-3ef11fcdb148?api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "228b3d1d-5add-4188-9f36-f04ee12d4caf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011742Z:228b3d1d-5add-4188-9f36-f04ee12d4caf" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/80b661a0-4254-4713-b934-3ef11fcdb148?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzgwYjY2MWEwLTQyNTQtNDcxMy1iOTM0LTNlZjExZmNkYjE0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "befd7249-85df-40da-85b8-150e7cfde53e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "3d9d02ce-4594-4ca2-ac8c-1cebc96c01e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011743Z:3d9d02ce-4594-4ca2-ac8c-1cebc96c01e7" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "affb9b41-6e38-4871-bc54-7bffbfc0c33a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "c7d1a8ae-33a2-44ec-82da-c8c46ef346cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011743Z:c7d1a8ae-33a2-44ec-82da-c8c46ef346cc" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "ee9f9766-d0c3-4510-92bc-5d70c27430bd" + ], + "x-ms-correlation-request-id": [ + "ee9f9766-d0c3-4510-92bc-5d70c27430bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011744Z:ee9f9766-d0c3-4510-92bc-5d70c27430bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "2e8691df-dbdb-4e8d-a526-40b8ceceb8f4" + ], + "x-ms-correlation-request-id": [ + "2e8691df-dbdb-4e8d-a526-40b8ceceb8f4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011744Z:2e8691df-dbdb-4e8d-a526-40b8ceceb8f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "2635b9fa-89cf-425b-b229-f89064db9aa8" + ], + "x-ms-correlation-request-id": [ + "2635b9fa-89cf-425b-b229-f89064db9aa8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011759Z:2635b9fa-89cf-425b-b229-f89064db9aa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:17:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "98e50cbb-46f7-4758-9b29-acee4274476d" + ], + "x-ms-correlation-request-id": [ + "98e50cbb-46f7-4758-9b29-acee4274476d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011814Z:98e50cbb-46f7-4758-9b29-acee4274476d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:18:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "c40e32d0-65d8-4e03-b51c-3dd1a9c79b91" + ], + "x-ms-correlation-request-id": [ + "c40e32d0-65d8-4e03-b51c-3dd1a9c79b91" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011829Z:c40e32d0-65d8-4e03-b51c-3dd1a9c79b91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:18:29 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "8893c8cf-bc0e-4dab-b449-d67476d3bc6b" + ], + "x-ms-correlation-request-id": [ + "8893c8cf-bc0e-4dab-b449-d67476d3bc6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011844Z:8893c8cf-bc0e-4dab-b449-d67476d3bc6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:18:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "c453d294-b342-4b29-bac2-d33c05112443" + ], + "x-ms-correlation-request-id": [ + "c453d294-b342-4b29-bac2-d33c05112443" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011859Z:c453d294-b342-4b29-bac2-d33c05112443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:18:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "3ba61506-aeae-449d-8f6b-69d04529506c" + ], + "x-ms-correlation-request-id": [ + "3ba61506-aeae-449d-8f6b-69d04529506c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011915Z:3ba61506-aeae-449d-8f6b-69d04529506c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:19:15 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "dc316050-03fb-4b33-81d2-6f184c52401c" + ], + "x-ms-correlation-request-id": [ + "dc316050-03fb-4b33-81d2-6f184c52401c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T011930Z:dc316050-03fb-4b33-81d2-6f184c52401c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 01:19:29 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-NetworkInterfaceEnableIPForwarding": [ + "onesdk42", + "onesdk1117", + "onesdk4851", + "onesdk8171", + "onesdk3311", + "onesdk298" + ] + }, + "Variables": { + "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceIDns.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceIDns.json new file mode 100644 index 000000000000..164f8efbef88 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceIDns.json @@ -0,0 +1,1448 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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 \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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": [ + "54173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "1a45ae6c-4df9-4dae-a27e-e8dd948321ae" + ], + "x-ms-correlation-request-id": [ + "1a45ae6c-4df9-4dae-a27e-e8dd948321ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015033Z:1a45ae6c-4df9-4dae-a27e-e8dd948321ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/onesdk3800?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "a862bac2-1dd2-4cc8-917a-bfc06dcab2d4" + ], + "x-ms-correlation-request-id": [ + "a862bac2-1dd2-4cc8-917a-bfc06dcab2d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015034Z:a862bac2-1dd2-4cc8-917a-bfc06dcab2d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/onesdk3800?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "d24ed0d9-53e7-4549-af63-7df9735bd8b3" + ], + "x-ms-correlation-request-id": [ + "d24ed0d9-53e7-4549-af63-7df9735bd8b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015128Z:d24ed0d9-53e7-4549-af63-7df9735bd8b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:51:27 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/onesdk3800?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800\",\r\n \"name\": \"onesdk3800\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-request-id": [ + "de6d282b-4b43-43df-ad43-259f138d6bbd" + ], + "x-ms-correlation-request-id": [ + "de6d282b-4b43-43df-ad43-259f138d6bbd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015034Z:de6d282b-4b43-43df-ad43-259f138d6bbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:34 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "dcb6a893-13ef-42c2-83df-567fc5e21b99" + ], + "x-ms-correlation-request-id": [ + "dcb6a893-13ef-42c2-83df-567fc5e21b99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015035Z:dcb6a893-13ef-42c2-83df-567fc5e21b99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/onesdk3800/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:42635869-45dd-4053-9787-9f0d6282fe40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "dbcb170b-b124-4087-8f01-22883ad42880" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015036Z:dbcb170b-b124-4087-8f01-22883ad42880" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualnetworks/onesdk4022?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs0MDIyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "43b76857-3046-49ec-8919-01e1f5a77caf" + ], + "x-ms-correlation-request-id": [ + "43b76857-3046-49ec-8919-01e1f5a77caf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015037Z:43b76857-3046-49ec-8919-01e1f5a77caf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:37 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualnetworks/onesdk4022?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs0MDIyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk4022\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualNetworks/onesdk4022\",\r\n \"etag\": \"W/\\\"5dca43c1-83b0-4619-bc71-99dcd003bb1a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk1925\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualNetworks/onesdk4022/subnets/onesdk1925\",\r\n \"etag\": \"W/\\\"5dca43c1-83b0-4619-bc71-99dcd003bb1a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"centralus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "843" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd178130-b843-4bba-ad63-c29401f26d75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5dca43c1-83b0-4619-bc71-99dcd003bb1a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "e13cdac7-8f83-4ff2-85bc-2d221d82e2ab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015039Z:e13cdac7-8f83-4ff2-85bc-2d221d82e2ab" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualnetworks/onesdk4022?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs0MDIyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"onesdk1925\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk4022\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"centralus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk4022\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualNetworks/onesdk4022\",\r\n \"etag\": \"W/\\\"04dc6781-b754-4a9f-bbb2-175596b024c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk1925\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualNetworks/onesdk4022/subnets/onesdk1925\",\r\n \"etag\": \"W/\\\"04dc6781-b754-4a9f-bbb2-175596b024c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"centralus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "841" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "340e3362-28da-426d-9cdc-29734625a28e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/centralus/operations/340e3362-28da-426d-9cdc-29734625a28e?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "7c516743-a49f-4aa6-8818-a87003f41c00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015039Z:7c516743-a49f-4aa6-8818-a87003f41c00" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/centralus/operations/340e3362-28da-426d-9cdc-29734625a28e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMzQwZTMzNjItMjhkYS00MjZkLTljZGMtMjk3MzQ2MjVhMjhlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b6798aef-2ebb-48c3-a71c-8314b3d77140" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "0d1251ac-a720-4971-b126-7a65d6c814e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015039Z:0d1251ac-a720-4971-b126-7a65d6c814e5" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL29uZXNkazIwMTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f61d6721-26c8-4804-9a5f-ab3c2a658a45" + ], + "x-ms-correlation-request-id": [ + "f61d6721-26c8-4804-9a5f-ab3c2a658a45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015039Z:f61d6721-26c8-4804-9a5f-ab3c2a658a45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL29uZXNkazIwMTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk2011\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011\",\r\n \"etag\": \"W/\\\"b92b63dc-ec69-4ccd-9324-6b04e3dc2ea8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b92b63dc-ec69-4ccd-9324-6b04e3dc2ea8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualNetworks/onesdk4022/subnets/onesdk1925\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"centralus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e6535b3c-322e-4e30-9dd9-e2e0a471fe63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b92b63dc-ec69-4ccd-9324-6b04e3dc2ea8\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "58089d79-3a7d-4e74-b60b-0d8cace97b50" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015046Z:58089d79-3a7d-4e74-b60b-0d8cace97b50" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL29uZXNkazIwMTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk2011\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011\",\r\n \"etag\": \"W/\\\"b92b63dc-ec69-4ccd-9324-6b04e3dc2ea8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b92b63dc-ec69-4ccd-9324-6b04e3dc2ea8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualNetworks/onesdk4022/subnets/onesdk1925\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"centralus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61daf243-db98-41af-b9e9-350dc8203b21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b92b63dc-ec69-4ccd-9324-6b04e3dc2ea8\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "37bfa136-0eeb-4115-b1c5-b68b59b1b22b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015053Z:37bfa136-0eeb-4115-b1c5-b68b59b1b22b" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL29uZXNkazIwMTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualNetworks/onesdk4022/subnets/onesdk1925\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n },\r\n \"primary\": false\r\n },\r\n \"name\": \"onesdk2011\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"centralus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "757" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk2011\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011\",\r\n \"etag\": \"W/\\\"b92b63dc-ec69-4ccd-9324-6b04e3dc2ea8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b92b63dc-ec69-4ccd-9324-6b04e3dc2ea8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/virtualNetworks/onesdk4022/subnets/onesdk1925\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"centralus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "235d2be2-f10d-486b-be87-c0860ff0e94f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/centralus/operations/235d2be2-f10d-486b-be87-c0860ff0e94f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "e2e646a0-bd49-4725-96b0-39ea5b8b646f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015046Z:e2e646a0-bd49-4725-96b0-39ea5b8b646f" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/centralus/operations/235d2be2-f10d-486b-be87-c0860ff0e94f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMjM1ZDJiZTItZjEwZC00ODZiLWJlODctYzA4NjBmZjBlOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9c03e513-5030-43b7-b822-1fd015ba40d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "d1f0d791-1591-4865-af44-36de90285d48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015046Z:d1f0d791-1591-4865-af44-36de90285d48" + ], + "Date": [ + "Wed, 24 Jun 2015 01:50:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces/onesdk2011?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL29uZXNkazIwMTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "93b04829-9b56-4315-9277-35805e89d2cc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/centralus/operations/93b04829-9b56-4315-9277-35805e89d2cc?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/centralus/operationResults/93b04829-9b56-4315-9277-35805e89d2cc?api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "fafdb142-5a44-4017-afba-9095fa984b7c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015100Z:fafdb142-5a44-4017-afba-9095fa984b7c" + ], + "Date": [ + "Wed, 24 Jun 2015 01:51:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/centralus/operations/93b04829-9b56-4315-9277-35805e89d2cc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTNiMDQ4MjktOWI1Ni00MzE1LTkyNzctMzU4MDVlODlkMmNjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ad56199e-f1b4-4ac7-9603-40b1ab1f5817" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "5bdfd3f6-3495-4d2e-a501-5229e236f89f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015101Z:5bdfd3f6-3495-4d2e-a501-5229e236f89f" + ], + "Date": [ + "Wed, 24 Jun 2015 01:51:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk3800/providers/Microsoft.Network/networkInterfaces?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "fe4cf1d7-33a2-4d15-8798-9c50a6e18c53" + ], + "x-ms-correlation-request-id": [ + "fe4cf1d7-33a2-4d15-8798-9c50a6e18c53" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015128Z:fe4cf1d7-33a2-4d15-8798-9c50a6e18c53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:51:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/onesdk3800?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-request-id": [ + "1767526f-bc00-402c-b66f-53de904f1c80" + ], + "x-ms-correlation-request-id": [ + "1767526f-bc00-402c-b66f-53de904f1c80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015128Z:1767526f-bc00-402c-b66f-53de904f1c80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:51:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "73e5117f-bc26-4ec5-acd7-c1669fd97024" + ], + "x-ms-correlation-request-id": [ + "73e5117f-bc26-4ec5-acd7-c1669fd97024" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015128Z:73e5117f-bc26-4ec5-acd7-c1669fd97024" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:51:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "454ee4a3-9ccf-46f8-8c96-0e7eccecd50b" + ], + "x-ms-correlation-request-id": [ + "454ee4a3-9ccf-46f8-8c96-0e7eccecd50b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015143Z:454ee4a3-9ccf-46f8-8c96-0e7eccecd50b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:51:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "510a8755-dfc0-4b07-b8cc-4079141d4de6" + ], + "x-ms-correlation-request-id": [ + "510a8755-dfc0-4b07-b8cc-4079141d4de6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015158Z:510a8755-dfc0-4b07-b8cc-4079141d4de6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:51:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "84783735-b482-4fa0-87ad-ca3d27603693" + ], + "x-ms-correlation-request-id": [ + "84783735-b482-4fa0-87ad-ca3d27603693" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015213Z:84783735-b482-4fa0-87ad-ca3d27603693" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:52:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "c510a987-177a-4b16-aef6-b0409cb4204b" + ], + "x-ms-correlation-request-id": [ + "c510a987-177a-4b16-aef6-b0409cb4204b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015228Z:c510a987-177a-4b16-aef6-b0409cb4204b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:52:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "49c02789-eb55-4921-a023-c451abefdc53" + ], + "x-ms-correlation-request-id": [ + "49c02789-eb55-4921-a023-c451abefdc53" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015244Z:49c02789-eb55-4921-a023-c451abefdc53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:52:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "93f2e2f1-7c82-4cf4-99b2-193a435997e1" + ], + "x-ms-correlation-request-id": [ + "93f2e2f1-7c82-4cf4-99b2-193a435997e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015259Z:93f2e2f1-7c82-4cf4-99b2-193a435997e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:52:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "92b51fea-c416-400b-9852-2e4db0b397e0" + ], + "x-ms-correlation-request-id": [ + "92b51fea-c416-400b-9852-2e4db0b397e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150624T015314Z:92b51fea-c416-400b-9852-2e4db0b397e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 24 Jun 2015 01:53:13 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-NetworkInterfaceIDns": [ + "onesdk3800", + "onesdk4022", + "onesdk1925", + "onesdk8170", + "onesdk2011", + "onesdk1109" + ] + }, + "Variables": { + "SubscriptionId": "9532a63e-f2eb-4649-bb23-5ed01077ce80" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestEmptyRouteTable.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestEmptyRouteTable.json new file mode 100644 index 000000000000..5718deb2d9e0 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestEmptyRouteTable.json @@ -0,0 +1,1113 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "69330168-7305-48c9-842b-981a35c2f727" + ], + "x-ms-correlation-request-id": [ + "69330168-7305-48c9-842b-981a35c2f727" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213638Z:69330168-7305-48c9-842b-981a35c2f727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "9b015f23-de40-4787-94a6-4e9112ceaaeb" + ], + "x-ms-correlation-request-id": [ + "9b015f23-de40-4787-94a6-4e9112ceaaeb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213639Z:9b015f23-de40-4787-94a6-4e9112ceaaeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "a51d9106-0d94-4103-aaf3-de39abd385b3" + ], + "x-ms-correlation-request-id": [ + "a51d9106-0d94-4103-aaf3-de39abd385b3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213639Z:a51d9106-0d94-4103-aaf3-de39abd385b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "42d63a5a-875c-442a-b250-3b6a012e8a91" + ], + "x-ms-correlation-request-id": [ + "42d63a5a-875c-442a-b250-3b6a012e8a91" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213647Z:42d63a5a-875c-442a-b250-3b6a012e8a91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:46 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941\",\r\n \"name\": \"onesdk6941\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "09b78477-3538-472c-a79a-4989705d3c57" + ], + "x-ms-correlation-request-id": [ + "09b78477-3538-472c-a79a-4989705d3c57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213640Z:09b78477-3538-472c-a79a-4989705d3c57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:39 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "dc5cc467-7d92-4290-9263-7c758518fd7b" + ], + "x-ms-correlation-request-id": [ + "dc5cc467-7d92-4290-9263-7c758518fd7b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213640Z:dc5cc467-7d92-4290-9263-7c758518fd7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:0447e14f-033e-4f2d-8992-ead359b14100" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "0b09ef2e-1ac3-4238-98b8-44fe43fd7a37" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213641Z:0b09ef2e-1ac3-4238-98b8-44fe43fd7a37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk9461' under resource group 'onesdk6941' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0db29262-e41e-489b-8415-cc2dda4ae844" + ], + "x-ms-correlation-request-id": [ + "0db29262-e41e-489b-8415-cc2dda4ae844" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213642Z:0db29262-e41e-489b-8415-cc2dda4ae844" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:42 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9461\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461\",\r\n \"etag\": \"W/\\\"65b089fe-9f1c-440c-aafc-c518b474649d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a9d5ed0-4e0b-4d13-aa6b-bf3b570f0545" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65b089fe-9f1c-440c-aafc-c518b474649d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "001dfd06-db30-46c9-8b88-a9e087d8a293" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213645Z:001dfd06-db30-46c9-8b88-a9e087d8a293" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9461\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461\",\r\n \"etag\": \"W/\\\"65b089fe-9f1c-440c-aafc-c518b474649d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4f3f548f-d0d3-49c9-84ef-5628d7209eb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65b089fe-9f1c-440c-aafc-c518b474649d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "169e4467-811f-4c9d-b741-d9273a281437" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213645Z:169e4467-811f-4c9d-b741-d9273a281437" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk9461\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "165" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9461\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461\",\r\n \"etag\": \"W/\\\"f0f95bf1-a9db-4c82-8d84-35082a8c8114\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ba24fdd2-3993-47b3-9b28-eb78f2a264d0" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/ba24fdd2-3993-47b3-9b28-eb78f2a264d0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "77f6bab4-1639-47ca-8c1b-c5ed2c3a3588" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213644Z:77f6bab4-1639-47ca-8c1b-c5ed2c3a3588" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/ba24fdd2-3993-47b3-9b28-eb78f2a264d0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2JhMjRmZGQyLTM5OTMtNDdiMy05YjI4LWViNzhmMmEyNjRkMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8b9dd4a3-5f3b-4395-a579-669082543818" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "161b7d69-7aed-4f65-b784-516667f2aa88" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213644Z:161b7d69-7aed-4f65-b784-516667f2aa88" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk9461\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461\",\r\n \"etag\": \"W/\\\"65b089fe-9f1c-440c-aafc-c518b474649d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"westeurope\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "398" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cb3692c3-ba37-4190-99f9-37c89692ee19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "7cf8e96d-6450-4dfe-8c03-48fa428d9261" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213645Z:7cf8e96d-6450-4dfe-8c03-48fa428d9261" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bc86ee95-272b-4492-b126-4a3c77e16467" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "d7fbb102-c67b-4707-a251-9a91ce0d18a4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213647Z:d7fbb102-c67b-4707-a251-9a91ce0d18a4" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "704071ac-d6f2-48cf-8a11-efe21d7a43e0" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/704071ac-d6f2-48cf-8a11-efe21d7a43e0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/704071ac-d6f2-48cf-8a11-efe21d7a43e0?api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "6c2a0c88-1cf6-404f-b17e-f4a55884da5e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213646Z:6c2a0c88-1cf6-404f-b17e-f4a55884da5e" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/704071ac-d6f2-48cf-8a11-efe21d7a43e0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzcwNDA3MWFjLWQ2ZjItNDhjZi04YTExLWVmZTIxZDdhNDNlMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ffeb14bc-6c14-4890-b077-136e57df0718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "d0d15117-3079-44f7-b751-fe33ca756512" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213646Z:d0d15117-3079-44f7-b751-fe33ca756512" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "317e5b34-cdf1-4c9a-b300-5d4db39725d6" + ], + "x-ms-correlation-request-id": [ + "317e5b34-cdf1-4c9a-b300-5d4db39725d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213647Z:317e5b34-cdf1-4c9a-b300-5d4db39725d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:46 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPVFF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "c656bb9f-1970-42e6-b6db-51d76fd62b6e" + ], + "x-ms-correlation-request-id": [ + "c656bb9f-1970-42e6-b6db-51d76fd62b6e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213647Z:c656bb9f-1970-42e6-b6db-51d76fd62b6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:36:47 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPVFF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "79e1952d-2745-4f54-99dc-3dde37868ad0" + ], + "x-ms-correlation-request-id": [ + "79e1952d-2745-4f54-99dc-3dde37868ad0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213703Z:79e1952d-2745-4f54-99dc-3dde37868ad0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:37:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPVFF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "02762306-2b29-4bba-9a87-cf43cca3284e" + ], + "x-ms-correlation-request-id": [ + "02762306-2b29-4bba-9a87-cf43cca3284e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213718Z:02762306-2b29-4bba-9a87-cf43cca3284e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:37:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPVFF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "ff9b1bca-b939-4977-915f-7e350bbeb7df" + ], + "x-ms-correlation-request-id": [ + "ff9b1bca-b939-4977-915f-7e350bbeb7df" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T213733Z:ff9b1bca-b939-4977-915f-7e350bbeb7df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:37:32 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-EmptyRouteTable": [ + "onesdk6941", + "onesdk9461" + ] + }, + "Variables": { + "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteHopTypeTest.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteHopTypeTest.json new file mode 100644 index 000000000000..da32538b7a0c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteHopTypeTest.json @@ -0,0 +1,1064 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2015-01-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/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80730" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "65bd4393-db7e-4022-af32-98ff069ed674" + ], + "x-ms-correlation-request-id": [ + "65bd4393-db7e-4022-af32-98ff069ed674" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003838Z:65bd4393-db7e-4022-af32-98ff069ed674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2015-01-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/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80730" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "3ac851d2-3da7-4883-8c80-b3ffd2ae8b23" + ], + "x-ms-correlation-request-id": [ + "3ac851d2-3da7-4883-8c80-b3ffd2ae8b23" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003838Z:3ac851d2-3da7-4883-8c80-b3ffd2ae8b23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk2122?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "d5cfc399-0a2f-41ce-bef0-6b23c9b62374" + ], + "x-ms-correlation-request-id": [ + "d5cfc399-0a2f-41ce-bef0-6b23c9b62374" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003839Z:d5cfc399-0a2f-41ce-bef0-6b23c9b62374" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:38 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk2122?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "84023537-ded9-44e4-9ecb-b84f38d1a560" + ], + "x-ms-correlation-request-id": [ + "84023537-ded9-44e4-9ecb-b84f38d1a560" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003847Z:84023537-ded9-44e4-9ecb-b84f38d1a560" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:46 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk2122?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122\",\r\n \"name\": \"onesdk2122\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "65367e45-aa38-4cd7-a53f-ff112ea0e611" + ], + "x-ms-correlation-request-id": [ + "65367e45-aa38-4cd7-a53f-ff112ea0e611" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003839Z:65367e45-aa38-4cd7-a53f-ff112ea0e611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:39 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazIxMjIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "2466e5ae-6d25-4a7e-b928-67813690a907" + ], + "x-ms-correlation-request-id": [ + "2466e5ae-6d25-4a7e-b928-67813690a907" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003840Z:2466e5ae-6d25-4a7e-b928-67813690a907" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk2122/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:a06677fa-264a-41ed-9afd-7e44dd3a2097" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "73cb3cbb-b09b-449f-9e3b-e5a49d33a4ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003840Z:73cb3cbb-b09b-449f-9e3b-e5a49d33a4ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazIxMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazQyODc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk4287' under resource group 'onesdk2122' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a075d682-0dce-4422-a248-643f4e425f70" + ], + "x-ms-correlation-request-id": [ + "a075d682-0dce-4422-a248-643f4e425f70" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003842Z:a075d682-0dce-4422-a248-643f4e425f70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:42 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazIxMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazQyODc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk4287\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route1\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route2\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route3\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n }\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route4\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "920860e9-0cf3-4cdc-b970-bb2ac29ba2da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "ee80cf7a-465b-4dd9-ba03-23c4ffb93b44" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003845Z:ee80cf7a-465b-4dd9-ba03-23c4ffb93b44" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazIxMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazQyODc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk4287\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route1\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route2\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route3\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n }\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route4\",\r\n \"etag\": \"W/\\\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d498aad-ca7a-476a-ae84-95093eaf9546" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4dc9511d-acc3-4a80-bb69-c8504d4ca7b9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "9b9f1e25-61d9-4b2d-a36d-04d967518196" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003845Z:9b9f1e25-61d9-4b2d-a36d-04d967518196" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazIxMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazQyODc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"route2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"route3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n },\r\n \"name\": \"route4\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk4287\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "869" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk4287\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287\",\r\n \"etag\": \"W/\\\"1a54cd84-d05e-4450-b32e-e94136b2603b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route1\",\r\n \"etag\": \"W/\\\"1a54cd84-d05e-4450-b32e-e94136b2603b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route2\",\r\n \"etag\": \"W/\\\"1a54cd84-d05e-4450-b32e-e94136b2603b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route3\",\r\n \"etag\": \"W/\\\"1a54cd84-d05e-4450-b32e-e94136b2603b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n }\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287/routes/route4\",\r\n \"etag\": \"W/\\\"1a54cd84-d05e-4450-b32e-e94136b2603b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2112" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "367c8aa2-136f-4179-abb1-2179f1b25516" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/367c8aa2-136f-4179-abb1-2179f1b25516?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c60a4ffc-49b9-42c3-9086-e101657f239e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003844Z:c60a4ffc-49b9-42c3-9086-e101657f239e" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/367c8aa2-136f-4179-abb1-2179f1b25516?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzM2N2M4YWEyLTEzNmYtNDE3OS1hYmIxLTIxNzlmMWIyNTUxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d247dc53-ec91-4b8d-8c2d-4b8fc55695da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "d5d06073-6d2f-4b02-af22-34e875ee7036" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003844Z:d5d06073-6d2f-4b02-af22-34e875ee7036" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables/onesdk4287?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazIxMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazQyODc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e3854755-92bd-4b30-bcb2-f80fc5215ea8" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/e3854755-92bd-4b30-bcb2-f80fc5215ea8?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/e3854755-92bd-4b30-bcb2-f80fc5215ea8?api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "4ecc0187-590a-4b4f-9a84-7db9d50fe138" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003846Z:4ecc0187-590a-4b4f-9a84-7db9d50fe138" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/e3854755-92bd-4b30-bcb2-f80fc5215ea8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2UzODU0NzU1LTkyYmQtNGIzMC1iY2IyLWY4MGZjNTIxNWVhOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "003236b7-379c-42a8-810a-2b58dafeab07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "519827cd-fc21-40fa-a86f-376565dd0026" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003847Z:519827cd-fc21-40fa-a86f-376565dd0026" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk2122/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazIxMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "beac495f-7b8a-43e6-8276-36d7d110855c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "fdfe3f0f-f1c9-474f-812a-5bdac01d57d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003847Z:fdfe3f0f-f1c9-474f-812a-5bdac01d57d4" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk2122?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "89f7fe4d-f625-4ea4-ad28-6199db91a7f5" + ], + "x-ms-correlation-request-id": [ + "89f7fe4d-f625-4ea4-ad28-6199db91a7f5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003848Z:89f7fe4d-f625-4ea4-ad28-6199db91a7f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "4af0f568-4a14-43be-8d39-7c00e22f55b5" + ], + "x-ms-correlation-request-id": [ + "4af0f568-4a14-43be-8d39-7c00e22f55b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003848Z:4af0f568-4a14-43be-8d39-7c00e22f55b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:38:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "4742fc14-ac1f-412e-9aa9-6ad36ea33eca" + ], + "x-ms-correlation-request-id": [ + "4742fc14-ac1f-412e-9aa9-6ad36ea33eca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003903Z:4742fc14-ac1f-412e-9aa9-6ad36ea33eca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:39:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "1a5997f3-8bc3-4214-a12e-da1801551a12" + ], + "x-ms-correlation-request-id": [ + "1a5997f3-8bc3-4214-a12e-da1801551a12" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003918Z:1a5997f3-8bc3-4214-a12e-da1801551a12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:39:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "78eb2f30-7ccd-4845-aa04-56a31113a77c" + ], + "x-ms-correlation-request-id": [ + "78eb2f30-7ccd-4845-aa04-56a31113a77c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150716T003933Z:78eb2f30-7ccd-4845-aa04-56a31113a77c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Jul 2015 00:39:33 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RouteHopTypeTest": [ + "onesdk2122", + "onesdk4287", + "onesdk8019", + "onesdk2568", + "onesdk2104" + ] + }, + "Variables": { + "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableCRUD.json new file mode 100644 index 000000000000..b894e2f76103 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableCRUD.json @@ -0,0 +1,1682 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "a5f3dbc4-4c78-4e53-94a1-b04b29a43473" + ], + "x-ms-correlation-request-id": [ + "a5f3dbc4-4c78-4e53-94a1-b04b29a43473" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215305Z:a5f3dbc4-4c78-4e53-94a1-b04b29a43473" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "5b8aa64a-e8fc-4cdb-8a1a-d7e414d2e857" + ], + "x-ms-correlation-request-id": [ + "5b8aa64a-e8fc-4cdb-8a1a-d7e414d2e857" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215306Z:5b8aa64a-e8fc-4cdb-8a1a-d7e414d2e857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "18863dd5-a6b3-4192-858b-0a982b85f8ec" + ], + "x-ms-correlation-request-id": [ + "18863dd5-a6b3-4192-858b-0a982b85f8ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215306Z:18863dd5-a6b3-4192-858b-0a982b85f8ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "199f0bf6-bc91-44aa-bf7f-57f900cb1e14" + ], + "x-ms-correlation-request-id": [ + "199f0bf6-bc91-44aa-bf7f-57f900cb1e14" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215321Z:199f0bf6-bc91-44aa-bf7f-57f900cb1e14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:21 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979\",\r\n \"name\": \"onesdk4979\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "bd48ab91-c408-4b75-bd38-e2959edbc80b" + ], + "x-ms-correlation-request-id": [ + "bd48ab91-c408-4b75-bd38-e2959edbc80b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215307Z:bd48ab91-c408-4b75-bd38-e2959edbc80b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:06 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "eb91abac-d01f-4874-ac1d-0a84a71b6831" + ], + "x-ms-correlation-request-id": [ + "eb91abac-d01f-4874-ac1d-0a84a71b6831" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215307Z:eb91abac-d01f-4874-ac1d-0a84a71b6831" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:e3dd7fc9-c202-4b26-9992-8aa86eceeed0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "87251a8d-e498-4c7d-af59-dbac1bd35613" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215307Z:87251a8d-e498-4c7d-af59-dbac1bd35613" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk9094' under resource group 'onesdk4979' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "03a3698c-9163-4d71-bfdf-ad6622dcdb23" + ], + "x-ms-correlation-request-id": [ + "03a3698c-9163-4d71-bfdf-ad6622dcdb23" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215310Z:03a3698c-9163-4d71-bfdf-ad6622dcdb23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "613d02f7-a6bd-4b42-8652-3aa12c2a8fb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3ba505d7-22e3-46ac-a7f0-757f2660801f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "420ec5ae-4ba7-4405-8b2d-59b47c764c73" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215314Z:420ec5ae-4ba7-4405-8b2d-59b47c764c73" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "216d0f51-c4c8-46d4-ab97-afe03647f4c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3ba505d7-22e3-46ac-a7f0-757f2660801f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "2b5d4294-8e9f-45a8-80ac-7f4be0988f8f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215314Z:2b5d4294-8e9f-45a8-80ac-7f4be0988f8f" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8a22e0c1-b46a-4b08-b9fa-02ac49123b09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3ba505d7-22e3-46ac-a7f0-757f2660801f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "8380b5d5-071d-471a-ad5e-89eae9553da2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215315Z:8380b5d5-071d-471a-ad5e-89eae9553da2" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f14770da-286a-40f6-8352-c85cc2494111" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "9730fddc-d135-4100-b78a-8eb015da28d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215317Z:9730fddc-d135-4100-b78a-8eb015da28d8" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ddf02d4c-7b38-4470-9019-fe14b45ecd67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "c2a1a569-a113-4199-80d4-15282a11746a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215317Z:c2a1a569-a113-4199-80d4-15282a11746a" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a646e451-bfa5-47ec-a702-cf2c65cfb68e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "e992fc5d-7d47-4448-ab40-3defcdbb4198" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215317Z:e992fc5d-7d47-4448-ab40-3defcdbb4198" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"f131a453-d92d-4376-80c4-0b79fc6160c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"f131a453-d92d-4376-80c4-0b79fc6160c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2fc55bc0-3795-41fc-8e5b-636588fb06f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f131a453-d92d-4376-80c4-0b79fc6160c2\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "abf0b83d-a0ec-4ac9-8606-5ccb6b85a2bf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215319Z:abf0b83d-a0ec-4ac9-8606-5ccb6b85a2bf" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"f131a453-d92d-4376-80c4-0b79fc6160c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"f131a453-d92d-4376-80c4-0b79fc6160c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3fffa7a2-9d46-4cc6-a5fc-d972b0e48967" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f131a453-d92d-4376-80c4-0b79fc6160c2\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "a7fc5a70-2dc2-40a8-95b0-faf77cad8815" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215319Z:a7fc5a70-2dc2-40a8-95b0-faf77cad8815" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk9094\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "388" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"654f0368-297c-45d1-8a77-28fd6a7a127a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"654f0368-297c-45d1-8a77-28fd6a7a127a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "827" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8a8fca0a-795b-4731-aef2-dbfb79b49e9e" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/8a8fca0a-795b-4731-aef2-dbfb79b49e9e?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "725acbd8-f127-473f-8c35-9ed3da19eb52" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215313Z:725acbd8-f127-473f-8c35-9ed3da19eb52" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"route2\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk9094\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "554" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"eac24a0d-6f2c-4097-837c-6243b09353e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"eac24a0d-6f2c-4097-837c-6243b09353e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"eac24a0d-6f2c-4097-837c-6243b09353e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bf8994f9-ab6d-4f3f-b57e-376cc0d39ca8" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/bf8994f9-ab6d-4f3f-b57e-376cc0d39ca8?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "d96c9f90-e200-4926-a897-e7a9aea736a3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215316Z:d96c9f90-e200-4926-a897-e7a9aea736a3" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"route2\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk9094\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "336" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"73dfad80-3b21-45d9-9822-716c9cfc5d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"73dfad80-3b21-45d9-9822-716c9cfc5d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "775" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "91db11b4-7606-4f36-8217-740d9d748eb9" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/91db11b4-7606-4f36-8217-740d9d748eb9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "a0ece418-6a80-4609-bdfe-ca69b19b3334" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215318Z:a0ece418-6a80-4609-bdfe-ca69b19b3334" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/8a8fca0a-795b-4731-aef2-dbfb79b49e9e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzhhOGZjYTBhLTc5NWItNDczMS1hZWYyLWRiZmI3OWI0OWU5ZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1bcb0569-5811-436e-8bb8-325b7a5fec5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "3c9a5381-2576-4911-8aef-8a42e3710c7e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215314Z:3c9a5381-2576-4911-8aef-8a42e3710c7e" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ccdade0d-cb44-4d06-96d2-35fe36390964" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "f4146d14-0444-42a3-8618-8870437784a2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215315Z:f4146d14-0444-42a3-8618-8870437784a2" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e6f7da85-9b80-4684-8190-ca02f58e92c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "5df86e8b-d613-42f1-b224-9b3e6686bb24" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215321Z:5df86e8b-d613-42f1-b224-9b3e6686bb24" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/bf8994f9-ab6d-4f3f-b57e-376cc0d39ca8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2JmODk5NGY5LWFiNmQtNGYzZi1iNTdlLTM3NmNjMGQzOWNhOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "65e3883f-1624-4150-a22c-5bd119b18493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "0d786c52-b0e1-4228-96eb-0b9573aac6f3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215316Z:0d786c52-b0e1-4228-96eb-0b9573aac6f3" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/91db11b4-7606-4f36-8217-740d9d748eb9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzkxZGIxMWI0LTc2MDYtNGYzNi04MjE3LTc0MGQ5ZDc0OGViOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b06bbb1a-bd42-42b6-bf3d-538efb17e34d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "14198461-8e75-4ce3-b2d9-d6110906f460" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215318Z:14198461-8e75-4ce3-b2d9-d6110906f460" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9280bb92-33da-4a75-b1d8-3e7668790cf9" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/9280bb92-33da-4a75-b1d8-3e7668790cf9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/9280bb92-33da-4a75-b1d8-3e7668790cf9?api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "418ded47-d124-467c-a901-0ae710069183" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215320Z:418ded47-d124-467c-a901-0ae710069183" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/9280bb92-33da-4a75-b1d8-3e7668790cf9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzkyODBiYjkyLTMzZGEtNGE3NS1iMWQ4LTNlNzY2ODc5MGNmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f56fe678-e6d8-4eb1-a8f3-d5b94335f70c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "0fe7ba33-0410-4dc4-994b-dda7fd00dcfa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215320Z:0fe7ba33-0410-4dc4-994b-dda7fd00dcfa" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "51abf45e-d730-42f7-b231-307fe056a0c2" + ], + "x-ms-correlation-request-id": [ + "51abf45e-d730-42f7-b231-307fe056a0c2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215321Z:51abf45e-d730-42f7-b231-307fe056a0c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:21 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVGM1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "13d30417-01b3-41bb-9fe8-08f09f86665e" + ], + "x-ms-correlation-request-id": [ + "13d30417-01b3-41bb-9fe8-08f09f86665e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215321Z:13d30417-01b3-41bb-9fe8-08f09f86665e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:21 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVGM1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "bc0472ad-766b-48ee-9a2b-985822c97a6b" + ], + "x-ms-correlation-request-id": [ + "bc0472ad-766b-48ee-9a2b-985822c97a6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215337Z:bc0472ad-766b-48ee-9a2b-985822c97a6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:36 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVGM1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "d5788c11-be1b-4741-93e9-82ab8ca93038" + ], + "x-ms-correlation-request-id": [ + "d5788c11-be1b-4741-93e9-82ab8ca93038" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215352Z:d5788c11-be1b-4741-93e9-82ab8ca93038" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:53:52 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVGM1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "5072aa1c-6ffb-45c4-8f06-7a825134f449" + ], + "x-ms-correlation-request-id": [ + "5072aa1c-6ffb-45c4-8f06-7a825134f449" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T215407Z:5072aa1c-6ffb-45c4-8f06-7a825134f449" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 21:54:07 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RouteTableCRUD": [ + "onesdk4979", + "onesdk9094", + "onesdk8609" + ] + }, + "Variables": { + "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableRouteCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableRouteCRUD.json new file mode 100644 index 000000000000..39ab82aff405 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableRouteCRUD.json @@ -0,0 +1,1916 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "b6ae7c28-669c-4804-aa7e-05a598075520" + ], + "x-ms-correlation-request-id": [ + "b6ae7c28-669c-4804-aa7e-05a598075520" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224042Z:b6ae7c28-669c-4804-aa7e-05a598075520" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "e50fbc8d-b910-4924-926a-9cd20c84cffd" + ], + "x-ms-correlation-request-id": [ + "e50fbc8d-b910-4924-926a-9cd20c84cffd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224043Z:e50fbc8d-b910-4924-926a-9cd20c84cffd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "cbc825ad-f114-4ed5-ad6b-4c479206862e" + ], + "x-ms-correlation-request-id": [ + "cbc825ad-f114-4ed5-ad6b-4c479206862e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224043Z:cbc825ad-f114-4ed5-ad6b-4c479206862e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:42 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "5476f4db-1389-4afc-98f6-a370c3974ccb" + ], + "x-ms-correlation-request-id": [ + "5476f4db-1389-4afc-98f6-a370c3974ccb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224106Z:5476f4db-1389-4afc-98f6-a370c3974ccb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:06 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649\",\r\n \"name\": \"onesdk5649\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "14a4d274-8ee1-43aa-aefa-9f539994687c" + ], + "x-ms-correlation-request-id": [ + "14a4d274-8ee1-43aa-aefa-9f539994687c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224044Z:14a4d274-8ee1-43aa-aefa-9f539994687c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:44 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "ee4e89d5-7f02-4078-99bb-93dbc59962c1" + ], + "x-ms-correlation-request-id": [ + "ee4e89d5-7f02-4078-99bb-93dbc59962c1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224044Z:ee4e89d5-7f02-4078-99bb-93dbc59962c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:4194369e-983a-4edd-9647-a50df9959df4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "b375e8e2-d946-490c-9558-58bc27a934fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224045Z:b375e8e2-d946-490c-9558-58bc27a934fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk8825' under resource group 'onesdk5649' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "00cd9107-1f6f-4df0-9258-fc42df927f6e" + ], + "x-ms-correlation-request-id": [ + "00cd9107-1f6f-4df0-9258-fc42df927f6e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224046Z:00cd9107-1f6f-4df0-9258-fc42df927f6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:46 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "efd50749-3d82-4757-86a0-2208ea8b0b6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"eadf8e0e-ce6c-4925-818c-e315e044029c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "63aa29e5-2bcc-481e-aa16-297c9e05b774" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224049Z:63aa29e5-2bcc-481e-aa16-297c9e05b774" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a29d7203-e02d-4d6f-b5b5-a7561728bdf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"eadf8e0e-ce6c-4925-818c-e315e044029c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "19036b57-0b81-4613-8083-6106d92d36f9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224050Z:19036b57-0b81-4613-8083-6106d92d36f9" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56d85eb2-5375-4fc1-8183-667665c09dae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"eadf8e0e-ce6c-4925-818c-e315e044029c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "32eac32c-85d4-41e4-a690-539fb3fca95e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224050Z:32eac32c-85d4-41e4-a690-539fb3fca95e" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b077420-ae29-4523-bdc7-d66e8eebf7ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"eadf8e0e-ce6c-4925-818c-e315e044029c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "32fddcb1-04e4-4a38-88aa-1cd61c3eb78f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224050Z:32fddcb1-04e4-4a38-88aa-1cd61c3eb78f" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "288ef1b8-7212-44b4-9c1b-72c9ce9b3bb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a5409144-4871-4c74-80a1-d5cdfb48428a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "1def58d2-eb2c-40a7-8a2a-2998bde514b0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224052Z:1def58d2-eb2c-40a7-8a2a-2998bde514b0" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e08b0aab-e6c2-4db2-97b7-5015ac358862" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a5409144-4871-4c74-80a1-d5cdfb48428a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "ceef1a59-5a9b-4b7f-a23c-a97f1e083ffe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224052Z:ceef1a59-5a9b-4b7f-a23c-a97f1e083ffe" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7906a856-4f64-4f58-a4dc-675ff158718a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a5409144-4871-4c74-80a1-d5cdfb48428a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "07b0fab2-aa13-4201-b29e-e0872c50fa2b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224102Z:07b0fab2-aa13-4201-b29e-e0872c50fa2b" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5f7a27a8-a030-4d56-b699-6e446d2451bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "4b6c7aa8-790f-42bf-9237-f89d21c28bb5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224103Z:4b6c7aa8-790f-42bf-9237-f89d21c28bb5" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa666192-ac26-41e4-af2e-c4f8acc0a388" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "fb5a9fde-2b99-4323-9134-f69be1478bda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224104Z:fb5a9fde-2b99-4323-9134-f69be1478bda" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dc93a59c-eafb-469b-ae24-ad213e6df371" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "7de93c34-7617-47df-8882-f9b891f9e283" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224104Z:7de93c34-7617-47df-8882-f9b891f9e283" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"95957dd3-27d6-4933-986c-8a6f2847871e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"95957dd3-27d6-4933-986c-8a6f2847871e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "201e96f4-9b45-49c8-8d1e-e1ff2da09536" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"95957dd3-27d6-4933-986c-8a6f2847871e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "ae9d7f0a-a907-4ad9-b648-562d57858425" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224105Z:ae9d7f0a-a907-4ad9-b648-562d57858425" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk8825\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "388" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"e79fe578-3cae-486a-9b5c-8d9be3e0b0dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"e79fe578-3cae-486a-9b5c-8d9be3e0b0dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "827" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "45ab0d26-31a4-49ea-8a5e-2e6fe519e726" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/45ab0d26-31a4-49ea-8a5e-2e6fe519e726?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "d2865df9-63e7-42aa-9489-706f3d2c83f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224048Z:d2865df9-63e7-42aa-9489-706f3d2c83f7" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"route2\"\r\n }\r\n ],\r\n \"subnets\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"name\": \"onesdk8825\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"westeurope\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1059" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"345d6408-36be-4bae-8ed5-cfc984944b21\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"345d6408-36be-4bae-8ed5-cfc984944b21\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"345d6408-36be-4bae-8ed5-cfc984944b21\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "89a4fce5-6a34-4fa7-b024-e442793a15cc" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/89a4fce5-6a34-4fa7-b024-e442793a15cc?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "1ca2374f-74c5-4f4f-8374-f672b948df74" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224051Z:1ca2374f-74c5-4f4f-8374-f672b948df74" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"route1\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"route2\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\"\r\n }\r\n ],\r\n \"subnets\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"name\": \"onesdk8825\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"westeurope\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1328" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"bb6fe4e5-16b3-4f4d-92f3-759d469bf397\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"bb6fe4e5-16b3-4f4d-92f3-759d469bf397\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"bb6fe4e5-16b3-4f4d-92f3-759d469bf397\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0b202c0a-eb4d-41f4-b24a-edc1e488827d" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/0b202c0a-eb4d-41f4-b24a-edc1e488827d?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "501a28b5-f26e-4ed1-ac1a-ce9252dcec88" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224103Z:501a28b5-f26e-4ed1-ac1a-ce9252dcec88" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"route2\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\"\r\n }\r\n ],\r\n \"subnets\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"name\": \"onesdk8825\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"westeurope\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "841" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"adfbde5f-d080-48e5-b9cc-325a3c29110a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"adfbde5f-d080-48e5-b9cc-325a3c29110a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "775" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "26603e72-33fb-41c1-b9da-bd6fbc0f4bc2" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/26603e72-33fb-41c1-b9da-bd6fbc0f4bc2?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "6ed280c1-24d7-4fd4-88e0-4198d0da7bc6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224104Z:6ed280c1-24d7-4fd4-88e0-4198d0da7bc6" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/45ab0d26-31a4-49ea-8a5e-2e6fe519e726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzQ1YWIwZDI2LTMxYTQtNDllYS04YTVlLTJlNmZlNTE5ZTcyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8584beac-ecba-4663-96ba-4474cd37e0d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "504f97ad-b056-4737-94ac-9cfde34390aa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224049Z:504f97ad-b056-4737-94ac-9cfde34390aa" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/89a4fce5-6a34-4fa7-b024-e442793a15cc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzg5YTRmY2U1LTZhMzQtNGZhNy1iMDI0LWU0NDI3OTNhMTVjYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "460336a3-1bd5-4f4d-98bb-2d59fd04c4a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "bfeae8ca-ada9-4a48-b0db-286fe9d2b563" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224051Z:bfeae8ca-ada9-4a48-b0db-286fe9d2b563" + ], + "Date": [ + "Fri, 10 Jul 2015 22:40:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/0b202c0a-eb4d-41f4-b24a-edc1e488827d?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzBiMjAyYzBhLWViNGQtNDFmNC1iMjRhLWVkYzFlNDg4ODI3ZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d298ff8e-0d38-4b68-ad5d-09e382f5b1f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "e28360d5-74f9-452d-a8e5-ad60f3b0e51b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224103Z:e28360d5-74f9-452d-a8e5-ad60f3b0e51b" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/26603e72-33fb-41c1-b9da-bd6fbc0f4bc2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzI2NjAzZTcyLTMzZmItNDFjMS1iOWRhLWJkNmZiYzBmNGJjMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "646075db-0f17-4606-bc9b-83a4c704693b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "fb381fff-7d62-4087-ba50-6bdfaa18f33e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224105Z:fb381fff-7d62-4087-ba50-6bdfaa18f33e" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b24aa2b2-fe2b-49d1-8196-202303f84ea1" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/b24aa2b2-fe2b-49d1-8196-202303f84ea1?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/b24aa2b2-fe2b-49d1-8196-202303f84ea1?api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "4c9b6f0f-cdf4-456a-8c4b-20bc1980105e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224105Z:4c9b6f0f-cdf4-456a-8c4b-20bc1980105e" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:05 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/b24aa2b2-fe2b-49d1-8196-202303f84ea1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2IyNGFhMmIyLWZlMmItNDlkMS04MTk2LTIwMjMwM2Y4NGVhMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ecc9dc43-e16e-416e-82e5-d2f3778f0bfb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "261a72f6-4944-4368-9fa7-e09bb7c344d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224106Z:261a72f6-4944-4368-9fa7-e09bb7c344d2" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f97bb2a-8a7a-4230-922a-8c6256c8deb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "c4969fb0-952e-457b-9c33-2c51844d2307" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224106Z:c4969fb0-952e-457b-9c33-2c51844d2307" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "e358d00e-67e1-42c5-a01f-b279a4658afb" + ], + "x-ms-correlation-request-id": [ + "e358d00e-67e1-42c5-a01f-b279a4658afb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224106Z:e358d00e-67e1-42c5-a01f-b279a4658afb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:06 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOalE1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "f30d2c83-f989-41a3-84bf-422ca4553801" + ], + "x-ms-correlation-request-id": [ + "f30d2c83-f989-41a3-84bf-422ca4553801" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224107Z:f30d2c83-f989-41a3-84bf-422ca4553801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:06 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOalE1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "cb157f48-0428-406a-91ad-061f65555c8f" + ], + "x-ms-correlation-request-id": [ + "cb157f48-0428-406a-91ad-061f65555c8f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224122Z:cb157f48-0428-406a-91ad-061f65555c8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:21 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOalE1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "e5529c44-db10-4208-8fec-4fd09ac09ff5" + ], + "x-ms-correlation-request-id": [ + "e5529c44-db10-4208-8fec-4fd09ac09ff5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224137Z:e5529c44-db10-4208-8fec-4fd09ac09ff5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:37 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOalE1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "9d1fe587-8214-4442-a3bd-0736c5d9792f" + ], + "x-ms-correlation-request-id": [ + "9d1fe587-8214-4442-a3bd-0736c5d9792f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T224152Z:9d1fe587-8214-4442-a3bd-0736c5d9792f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:41:52 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RouteTableRouteCRUD": [ + "onesdk5649", + "onesdk8825", + "onesdk7394", + "onesdk2458", + "onesdk8881" + ] + }, + "Variables": { + "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableSubnetRef.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableSubnetRef.json new file mode 100644 index 000000000000..ba3acb466b83 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableSubnetRef.json @@ -0,0 +1,1392 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "73320132-4477-432f-9f93-1eba033c39ea" + ], + "x-ms-correlation-request-id": [ + "73320132-4477-432f-9f93-1eba033c39ea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221246Z:73320132-4477-432f-9f93-1eba033c39ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\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 ],\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"resourceType\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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\": \"operations\",\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "dc599f46-87e3-4e06-a8c2-67f85852c3d0" + ], + "x-ms-correlation-request-id": [ + "dc599f46-87e3-4e06-a8c2-67f85852c3d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221247Z:dc599f46-87e3-4e06-a8c2-67f85852c3d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "dd4d1392-3a18-4e5d-a9eb-7027ffb0952f" + ], + "x-ms-correlation-request-id": [ + "dd4d1392-3a18-4e5d-a9eb-7027ffb0952f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221247Z:dd4d1392-3a18-4e5d-a9eb-7027ffb0952f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:47 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "02d12fbe-4657-4ab7-97ed-37de3fe2d393" + ], + "x-ms-correlation-request-id": [ + "02d12fbe-4657-4ab7-97ed-37de3fe2d393" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221253Z:02d12fbe-4657-4ab7-97ed-37de3fe2d393" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:52 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440\",\r\n \"name\": \"onesdk4440\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "f488609a-e3b6-4085-ba2b-bc7a84025e91" + ], + "x-ms-correlation-request-id": [ + "f488609a-e3b6-4085-ba2b-bc7a84025e91" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221247Z:f488609a-e3b6-4085-ba2b-bc7a84025e91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "1f5a9954-b527-4ee0-8cd8-28b06cf454ef" + ], + "x-ms-correlation-request-id": [ + "1f5a9954-b527-4ee0-8cd8-28b06cf454ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221247Z:1f5a9954-b527-4ee0-8cd8-28b06cf454ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:ea0cb762-0241-416f-84ab-5d1e61a0079a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "2014685f-671c-43c8-92d1-e8a54d35b078" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221248Z:2014685f-671c-43c8-92d1-e8a54d35b078" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk3058' under resource group 'onesdk4440' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bce5e889-3851-41aa-89fd-58141c1ffbff" + ], + "x-ms-correlation-request-id": [ + "bce5e889-3851-41aa-89fd-58141c1ffbff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221249Z:bce5e889-3851-41aa-89fd-58141c1ffbff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:48 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3058\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\",\r\n \"etag\": \"W/\\\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058/routes/route1\",\r\n \"etag\": \"W/\\\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4091ae5c-312d-4174-bbfc-e78600b6999b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "407e32b7-9061-467e-8fa3-8d80066d033f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221251Z:407e32b7-9061-467e-8fa3-8d80066d033f" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3058\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\",\r\n \"etag\": \"W/\\\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058/routes/route1\",\r\n \"etag\": \"W/\\\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "829" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1c17e957-6362-4211-bbee-52dc1ad88380" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "a0442ac7-0265-4e8a-91ea-fc2fba904fdb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221251Z:a0442ac7-0265-4e8a-91ea-fc2fba904fdb" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3058\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\",\r\n \"etag\": \"W/\\\"ae8fc816-f6c0-44f7-b1c4-cb504ceaa796\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058/routes/route1\",\r\n \"etag\": \"W/\\\"ae8fc816-f6c0-44f7-b1c4-cb504ceaa796\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449/subnets/onesdk1180\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1042" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "392c848e-5e1d-4774-b50a-4f68b7d51753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ae8fc816-f6c0-44f7-b1c4-cb504ceaa796\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "e4deed77-3d87-48de-b7f2-3a7f8859ee04" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221253Z:e4deed77-3d87-48de-b7f2-3a7f8859ee04" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk3058\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "388" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3058\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\",\r\n \"etag\": \"W/\\\"b7b47d4b-c200-4403-b1f2-cd59129fd218\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058/routes/route1\",\r\n \"etag\": \"W/\\\"b7b47d4b-c200-4403-b1f2-cd59129fd218\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "827" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3bc317bc-0f10-457e-8eaa-6f865ee6b83c" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/3bc317bc-0f10-457e-8eaa-6f865ee6b83c?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "63b012d1-81b6-46bd-a353-6b6de9d735ae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221250Z:63b012d1-81b6-46bd-a353-6b6de9d735ae" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:50 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/3bc317bc-0f10-457e-8eaa-6f865ee6b83c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzNiYzMxN2JjLTBmMTAtNDU3ZS04ZWFhLTZmODY1ZWU2YjgzYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6696a2a2-8a06-41e5-84dd-c905415545b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "01758fd8-a2ab-48c0-81e0-65a2e473cf9a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221251Z:01758fd8-a2ab-48c0-81e0-65a2e473cf9a" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualnetworks/onesdk1449?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGsxNDQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk1449' under resource group 'onesdk4440' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "13a1f0ac-e1b2-4a22-9886-7308311c65ba" + ], + "x-ms-correlation-request-id": [ + "13a1f0ac-e1b2-4a22-9886-7308311c65ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221251Z:13a1f0ac-e1b2-4a22-9886-7308311c65ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:51 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualnetworks/onesdk1449?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGsxNDQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk1449\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449\",\r\n \"etag\": \"W/\\\"e57b06f0-b152-490a-b98e-4dd1c48985a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"8.8.8.8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk1180\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449/subnets/onesdk1180\",\r\n \"etag\": \"W/\\\"e57b06f0-b152-490a-b98e-4dd1c48985a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1116" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d50e6c11-dba8-4256-891f-21fd3669f8d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e57b06f0-b152-490a-b98e-4dd1c48985a4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "53a388ff-de2a-48cd-900a-9b87e9d16ada" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221253Z:53a388ff-de2a-48cd-900a-9b87e9d16ada" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualnetworks/onesdk1449?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGsxNDQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"8.8.8.8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\"\r\n },\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"onesdk1180\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk1449\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "681" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk1449\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449\",\r\n \"etag\": \"W/\\\"430f4cfc-bd0f-454e-a766-efa1ccc5b433\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"8.8.8.8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk1180\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449/subnets/onesdk1180\",\r\n \"etag\": \"W/\\\"430f4cfc-bd0f-454e-a766-efa1ccc5b433\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1114" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c3a2d3a7-853d-495a-8c17-2e9f6aed6e37" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/c3a2d3a7-853d-495a-8c17-2e9f6aed6e37?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "261d2647-7ca1-4d9e-b404-d67284ff3573" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221252Z:261d2647-7ca1-4d9e-b404-d67284ff3573" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/c3a2d3a7-853d-495a-8c17-2e9f6aed6e37?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2MzYTJkM2E3LTg1M2QtNDk1YS04YzE3LTJlOWY2YWVkNmUzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e3edc1dc-51af-490a-90e8-bfa0d7d48c2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "636b3aa8-c731-4d83-857d-1b369af91802" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221252Z:636b3aa8-c731-4d83-857d-1b369af91802" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "328db6c2-9bed-4227-aa69-716cd23c6f86" + ], + "x-ms-correlation-request-id": [ + "328db6c2-9bed-4227-aa69-716cd23c6f86" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221253Z:328db6c2-9bed-4227-aa69-716cd23c6f86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:53 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "1b664a2d-145e-492f-ac9b-5d33c63935ec" + ], + "x-ms-correlation-request-id": [ + "1b664a2d-145e-492f-ac9b-5d33c63935ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221253Z:1b664a2d-145e-492f-ac9b-5d33c63935ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:12:53 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "8daaa755-bd13-4976-b4c1-cc257c0ffa88" + ], + "x-ms-correlation-request-id": [ + "8daaa755-bd13-4976-b4c1-cc257c0ffa88" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221308Z:8daaa755-bd13-4976-b4c1-cc257c0ffa88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:13:08 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "ce4bc09a-ec5d-4575-a17e-98cd408d60ec" + ], + "x-ms-correlation-request-id": [ + "ce4bc09a-ec5d-4575-a17e-98cd408d60ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221324Z:ce4bc09a-ec5d-4575-a17e-98cd408d60ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:13:23 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "9345aaa2-d052-4c71-a55e-4717128f9850" + ], + "x-ms-correlation-request-id": [ + "9345aaa2-d052-4c71-a55e-4717128f9850" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221339Z:9345aaa2-d052-4c71-a55e-4717128f9850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:13:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "9783a002-be32-4e18-819f-e5f98cb9cd1f" + ], + "x-ms-correlation-request-id": [ + "9783a002-be32-4e18-819f-e5f98cb9cd1f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221354Z:9783a002-be32-4e18-819f-e5f98cb9cd1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:13:54 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "62a64d1b-1e37-43fa-8588-012ab4d798a8" + ], + "x-ms-correlation-request-id": [ + "62a64d1b-1e37-43fa-8588-012ab4d798a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221409Z:62a64d1b-1e37-43fa-8588-012ab4d798a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:14:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "e4abc272-6f72-44d0-9604-5fc11dc63bf7" + ], + "x-ms-correlation-request-id": [ + "e4abc272-6f72-44d0-9604-5fc11dc63bf7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221424Z:e4abc272-6f72-44d0-9604-5fc11dc63bf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:14:24 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "048ad75f-4e30-4d73-9023-a900cab41a2d" + ], + "x-ms-correlation-request-id": [ + "048ad75f-4e30-4d73-9023-a900cab41a2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150710T221441Z:048ad75f-4e30-4d73-9023-a900cab41a2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 22:14:41 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RouteTableSubnetRef": [ + "onesdk4440", + "onesdk3058", + "onesdk1449", + "onesdk1180", + "onesdk1100" + ] + }, + "Variables": { + "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.TestDnsAvailabilityTest/TestDnsAvailability.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.TestDnsAvailabilityTest/TestDnsAvailability.json new file mode 100644 index 000000000000..a0e05d113d64 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.TestDnsAvailabilityTest/TestDnsAvailability.json @@ -0,0 +1,112 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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 \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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 \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\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 \"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 \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\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 \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"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 \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/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": [ + "63650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "3a91a605-9d6f-4513-b13e-655bebc25173" + ], + "x-ms-correlation-request-id": [ + "3a91a605-9d6f-4513-b13e-655bebc25173" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150710T191413Z:3a91a605-9d6f-4513-b13e-655bebc25173" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 19:14:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/CheckDnsNameAvailability?domainNameLabel=onesdk5980&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL0NoZWNrRG5zTmFtZUF2YWlsYWJpbGl0eT9kb21haW5OYW1lTGFiZWw9b25lc2RrNTk4MCZhcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"available\": true\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "25" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0eddcb2c-03b6-4f2c-abcb-30149fbf335e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "4734baa4-83b6-44dc-9ff5-ccc35a7f862d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150710T191414Z:4734baa4-83b6-44dc-9ff5-ccc35a7f862d" + ], + "Date": [ + "Fri, 10 Jul 2015 19:14:13 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-DnsAvailability": [ + "onesdk5980" + ] + }, + "Variables": { + "SubscriptionId": "9532a63e-f2eb-4649-bb23-5ed01077ce80" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/packages.config b/src/ResourceManager/Network/Commands.Network.Test/packages.config index b04e0ec0bf66..14832ded2e8f 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/packages.config +++ b/src/ResourceManager/Network/Commands.Network.Test/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/ApplicationGatewayBaseCmdlet.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/ApplicationGatewayBaseCmdlet.cs new file mode 100644 index 000000000000..720accbd2c74 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/ApplicationGatewayBaseCmdlet.cs @@ -0,0 +1,78 @@ + +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Net; +using AutoMapper; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Tags.Model; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Commands.Resources.Models; +using Hyak.Common; + +namespace Microsoft.Azure.Commands.Network +{ + public abstract class ApplicationGatewayBaseCmdlet : NetworkBaseCmdlet + { + public IApplicationGatewayOperations ApplicationGatewayClient + { + get + { + return NetworkClient.NetworkResourceProviderClient.ApplicationGateways; + } + } + + public bool IsApplicationGatewayPresent(string resourceGroupName, string name) + { + try + { + GetApplicationGateway(resourceGroupName, name); + } + catch (CloudException exception) + { + if (exception.Response.StatusCode == HttpStatusCode.NotFound) + { + // Resource is not present + return false; + } + + throw; + } + + return true; + } + + public PSApplicationGateway GetApplicationGateway(string resourceGroupName, string name) + { + var getApplicationGatewayResponse = this.ApplicationGatewayClient.Get(resourceGroupName, name); + + var applicationGateway = Mapper.Map(getApplicationGatewayResponse.ApplicationGateway); + applicationGateway.ResourceGroupName = resourceGroupName; + applicationGateway.Tag = + TagsConversionHelper.CreateTagHashtable(getApplicationGatewayResponse.ApplicationGateway.Tags); + + return applicationGateway; + } + + public PSApplicationGateway ToPsApplicationGateway(ApplicationGateway appGw) + { + var psAppGw = Mapper.Map(appGw); + + psAppGw.Tag = TagsConversionHelper.CreateTagHashtable(appGw.Tags); + + return psAppGw; + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/ApplicationGatewayChildResourceHelper.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/ApplicationGatewayChildResourceHelper.cs new file mode 100644 index 000000000000..3958232fc844 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/ApplicationGatewayChildResourceHelper.cs @@ -0,0 +1,181 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public static class ApplicationGatewayChildResourceHelper + { + public static string GetResourceId( + string subscriptionId, + string resourceGroupName, + string applicationGatewayName, + string resource, + string resourceName) + { + return string.Format( + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayChildResourceId, + subscriptionId, + resourceGroupName, + applicationGatewayName, + resource, + resourceName); + } + + public static string GetResourceNotSetId(string subscriptionId, string resource, string resourceName) + { + return string.Format( + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayChildResourceId, + subscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ResourceGroupNotSet, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayNameNotSet, + resource, + resourceName); + } + + private static string NormalizeApplicationGatewayNameChildResourceIds(string id, string resourceGroupName, string applicationGatewayName) + { + id = NormalizeId(id, "resourceGroups", resourceGroupName); + id = NormalizeId(id, "applicationGateways", applicationGatewayName); + + return id; + } + + private static string NormalizeId(string id, string resourceName, string resourceValue) + { + int startIndex = id.IndexOf(resourceName, StringComparison.OrdinalIgnoreCase) + resourceName.Length + 1; + int endIndex = id.IndexOf("/", startIndex, StringComparison.OrdinalIgnoreCase); + + // Replace the following string '/{value}/' + startIndex--; + string orignalString = id.Substring(startIndex, endIndex - startIndex + 1); + + return id.Replace(orignalString, string.Format("/{0}/", resourceValue)); + } + + public static void NormalizeChildResourcesId(PSApplicationGateway applicationGateway) + { + // Normalize GatewayIpConfiguration + if (applicationGateway.GatewayIPConfigurations != null) + { + foreach (var gatewayIpConfig in applicationGateway.GatewayIPConfigurations) + { + gatewayIpConfig.Id = string.Empty; + } + } + + // Normalize SslCertificates + if (applicationGateway.SslCertificates != null) + { + foreach (var sslCertificate in applicationGateway.SslCertificates) + { + sslCertificate.Id = string.Empty; + } + } + + // Normalize FrontendIpConfiguration + if (applicationGateway.FrontendIPConfigurations != null) + { + foreach (var frontendIpConfiguration in applicationGateway.FrontendIPConfigurations) + { + frontendIpConfiguration.Id = string.Empty; + } + } + + // Normalize FrontendPort + if (applicationGateway.FrontendPorts != null) + { + foreach (var frontendPort in applicationGateway.FrontendPorts) + { + frontendPort.Id = string.Empty; + } + } + + // Normalize BackendAddressPool + if (applicationGateway.BackendAddressPools != null) + { + foreach (var backendAddressPool in applicationGateway.BackendAddressPools) + { + backendAddressPool.Id = string.Empty; + } + } + + // Normalize BackendHttpSettings + if (applicationGateway.BackendHttpSettingsCollection != null) + { + foreach (var backendHttpSettings in applicationGateway.BackendHttpSettingsCollection) + { + backendHttpSettings.Id = string.Empty; + } + } + + // Normalize HttpListener + if (applicationGateway.HttpListeners != null) + { + foreach (var httpListener in applicationGateway.HttpListeners) + { + httpListener.Id = string.Empty; + + httpListener.FrontendPort.Id = NormalizeApplicationGatewayNameChildResourceIds( + httpListener.FrontendPort.Id, + applicationGateway.ResourceGroupName, + applicationGateway.Name); + + if (null != httpListener.FrontendIpConfiguration) + { + httpListener.FrontendIpConfiguration.Id = NormalizeApplicationGatewayNameChildResourceIds( + httpListener.FrontendIpConfiguration.Id, + applicationGateway.ResourceGroupName, + applicationGateway.Name); + } + + if (null != httpListener.SslCertificate) + { + httpListener.SslCertificate.Id = NormalizeApplicationGatewayNameChildResourceIds( + httpListener.SslCertificate.Id, + applicationGateway.ResourceGroupName, + applicationGateway.Name); + } + } + } + + // Normalize RequestRoutingRule + if (applicationGateway.RequestRoutingRules != null) + { + foreach (var requestRoutingRule in applicationGateway.RequestRoutingRules) + { + requestRoutingRule.Id = string.Empty; + + requestRoutingRule.HttpListener.Id = NormalizeApplicationGatewayNameChildResourceIds( + requestRoutingRule.HttpListener.Id, + applicationGateway.ResourceGroupName, + applicationGateway.Name); + + requestRoutingRule.BackendAddressPool.Id = NormalizeApplicationGatewayNameChildResourceIds( + requestRoutingRule.BackendAddressPool.Id, + applicationGateway.ResourceGroupName, + applicationGateway.Name); + + requestRoutingRule.BackendHttpSettings.Id = NormalizeApplicationGatewayNameChildResourceIds( + requestRoutingRule.BackendHttpSettings.Id, + applicationGateway.ResourceGroupName, + applicationGateway.Name); + } + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/AddAzureApplicationGatewayBackendAddressPoolCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/AddAzureApplicationGatewayBackendAddressPoolCommand.cs new file mode 100644 index 000000000000..8264b3eb7190 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/AddAzureApplicationGatewayBackendAddressPoolCommand.cs @@ -0,0 +1,89 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureApplicationGatewayBackendAddressPool"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewayBackendAddressPoolCommand : AzureApplicationGatewayBackendAddressPoolBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var backendAddressPool = this.ApplicationGateway.BackendAddressPools.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (backendAddressPool != null) + { + throw new ArgumentException("Backend address pool with the specified name already exists"); + } + + backendAddressPool = new PSApplicationGatewayBackendAddressPool(); + + backendAddressPool.Name = this.Name; + + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResourceId)) + { + backendAddressPool.BackendIpConfigurations = new System.Collections.Generic.List(); + foreach (string id in this.BackendIPConfigurationIds) + { + var backendIpConfig = new PSResourceId(); + backendIpConfig.Id = id; + backendAddressPool.BackendIpConfigurations.Add(backendIpConfig); + } + } + else if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByIP)) + { + backendAddressPool.BackendAddresses = new System.Collections.Generic.List(); + foreach (string ip in this.BackendIPAddresses) + { + var backendAddress = new PSApplicationGatewayBackendAddress(); + backendAddress.IpAddress = ip; + backendAddressPool.BackendAddresses.Add(backendAddress); + } + } + else + { + backendAddressPool.BackendAddresses = new System.Collections.Generic.List(); + foreach (string fqdn in this.BackendFqdns) + { + var backendAddress = new PSApplicationGatewayBackendAddress(); + backendAddress.Fqdn = fqdn; + backendAddressPool.BackendAddresses.Add(backendAddress); + } + } + + backendAddressPool.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayBackendAddressPoolName, + this.Name); + + this.ApplicationGateway.BackendAddressPools.Add(backendAddressPool); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/AzureApplicationGatewayBackendAddressPoolBase.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/AzureApplicationGatewayBackendAddressPoolBase.cs new file mode 100644 index 000000000000..f00762210cc4 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/AzureApplicationGatewayBackendAddressPoolBase.cs @@ -0,0 +1,52 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureApplicationGatewayBackendAddressPoolBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the Backend Address Pool")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "Resource IDs of the application gateway backend servers")] + [ValidateNotNullOrEmpty] + public List BackendIPConfigurationIds { get; set; } + + [Parameter( + ParameterSetName = "SetByIP", + HelpMessage = "IP addresses of application gateway backend servers")] + [ValidateNotNullOrEmpty] + public List BackendIPAddresses { get; set; } + + [Parameter( + ParameterSetName = "SetByFqdn", + HelpMessage = "FQDNs of application gateway backend servers")] + [ValidateNotNullOrEmpty] + public List BackendFqdns { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/GetAzureApplicationGatewayBackendAddressPoolCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/GetAzureApplicationGatewayBackendAddressPoolCommand.cs new file mode 100644 index 000000000000..b3eea9ead359 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/GetAzureApplicationGatewayBackendAddressPoolCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewayBackendAddressPool"), + OutputType(typeof(PSApplicationGatewayBackendAddressPool), typeof(IEnumerable))] + public class GetAzureApplicationGatewayBackendAddressPoolCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the backend address pool")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!string.IsNullOrEmpty(this.Name)) + { + var backendAddressPool = + this.ApplicationGateway.BackendAddressPools.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(backendAddressPool); + } + else + { + var backendAddressPools = this.ApplicationGateway.BackendAddressPools; + WriteObject(backendAddressPools, true); + } + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/NewAzureApplicationGatewayBackendAddressPoolCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/NewAzureApplicationGatewayBackendAddressPoolCommand.cs new file mode 100644 index 000000000000..9f3b7a7edd60 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/NewAzureApplicationGatewayBackendAddressPoolCommand.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewayBackendAddressPool"), OutputType(typeof(PSApplicationGatewayBackendAddressPool))] + public class NewAzureApplicationGatewayBackendAddressPoolCommand : AzureApplicationGatewayBackendAddressPoolBase + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var backendAddressPool = new PSApplicationGatewayBackendAddressPool(); + + backendAddressPool.Name = this.Name; + + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResourceId)) + { + backendAddressPool.BackendIpConfigurations = new System.Collections.Generic.List(); + foreach (string id in this.BackendIPConfigurationIds) + { + var backendIpConfig = new PSResourceId(); + backendIpConfig.Id = id; + backendAddressPool.BackendIpConfigurations.Add(backendIpConfig); + } + } + else if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByIP)) + { + backendAddressPool.BackendAddresses = new System.Collections.Generic.List(); + foreach (string ip in this.BackendIPAddresses) + { + var backendAddress = new PSApplicationGatewayBackendAddress(); + backendAddress.IpAddress = ip; + backendAddressPool.BackendAddresses.Add(backendAddress); + } + } + else + { + backendAddressPool.BackendAddresses = new System.Collections.Generic.List(); + foreach (string fqdn in this.BackendFqdns) + { + var backendAddress = new PSApplicationGatewayBackendAddress(); + backendAddress.Fqdn = fqdn; + backendAddressPool.BackendAddresses.Add(backendAddress); + } + } + + backendAddressPool.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayBackendAddressPoolName, + this.Name); + + WriteObject(backendAddressPool); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/RemoveAzureApplicationGatewayBackendAddressPoolCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/RemoveAzureApplicationGatewayBackendAddressPoolCommand.cs new file mode 100644 index 000000000000..edab2206404c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/RemoveAzureApplicationGatewayBackendAddressPoolCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGatewayBackendAddressPool"), OutputType(typeof(PSApplicationGatewayBackendAddressPool))] + public class RemoveAzureApplicationGatewayBackendAddressPoolCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the backend address pool")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var backendAddressPool = this.ApplicationGateway.BackendAddressPools.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (backendAddressPool != null) + { + this.ApplicationGateway.BackendAddressPools.Remove(backendAddressPool); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/SetAzureApplicationGatewayBackendAddressPoolCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/SetAzureApplicationGatewayBackendAddressPoolCommand.cs new file mode 100644 index 000000000000..bce396688aa6 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendAddressPool/SetAzureApplicationGatewayBackendAddressPoolCommand.cs @@ -0,0 +1,88 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewayBackendAddressPool"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayBackendAddressPoolCommand : AzureApplicationGatewayBackendAddressPoolBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var backendAddressPool = this.ApplicationGateway.BackendAddressPools.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (backendAddressPool == null) + { + throw new ArgumentException("Backend address pool with the specified name does not exist"); + } + + backendAddressPool = new PSApplicationGatewayBackendAddressPool(); + + backendAddressPool.Name = this.Name; + + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResourceId)) + { + backendAddressPool.BackendIpConfigurations = new System.Collections.Generic.List(); + foreach (string id in this.BackendIPConfigurationIds) + { + var backendIpConfig = new PSResourceId(); + backendIpConfig.Id = id; + backendAddressPool.BackendIpConfigurations.Add(backendIpConfig); + } + } + else if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByIP)) + { + backendAddressPool.BackendAddresses = new System.Collections.Generic.List(); + foreach (string ip in this.BackendIPAddresses) + { + var backendAddress = new PSApplicationGatewayBackendAddress(); + backendAddress.IpAddress = ip; + backendAddressPool.BackendAddresses.Add(backendAddress); + } + } + else + { + backendAddressPool.BackendAddresses = new System.Collections.Generic.List(); + foreach (string fqdn in this.BackendFqdns) + { + var backendAddress = new PSApplicationGatewayBackendAddress(); + backendAddress.Fqdn = fqdn; + backendAddressPool.BackendAddresses.Add(backendAddress); + } + } + + backendAddressPool.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayBackendAddressPoolName, + this.Name); + + this.ApplicationGateway.BackendAddressPools.Add(backendAddressPool); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs new file mode 100644 index 000000000000..fe8afcf26bd0 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var backendHttpSettings = this.ApplicationGateway.BackendHttpSettingsCollection.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (backendHttpSettings != null) + { + throw new ArgumentException("Backend http settings with the specified name already exists"); + } + + backendHttpSettings = new PSApplicationGatewayBackendHttpSettings(); + backendHttpSettings.Name = this.Name; + backendHttpSettings.Port = this.Port; + backendHttpSettings.Protocol = this.Protocol; + backendHttpSettings.CookieBasedAffinity = this.CookieBasedAffinity; + backendHttpSettings.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewaybackendHttpSettingsName, + this.Name); + + this.ApplicationGateway.BackendHttpSettingsCollection.Add(backendHttpSettings); + + WriteObject(this.ApplicationGateway); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/AzureApplicationGatewayBackendHttpSettingsBase.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/AzureApplicationGatewayBackendHttpSettingsBase.cs new file mode 100644 index 000000000000..7e0cd135c537 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/AzureApplicationGatewayBackendHttpSettingsBase.cs @@ -0,0 +1,50 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureApplicationGatewayBackendHttpSettingsBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the backend http settings")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Port")] + [ValidateNotNullOrEmpty] + public int Port { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Protocol")] + [ValidateSet("Http", IgnoreCase = true)] + [ValidateNotNullOrEmpty] + public string Protocol { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Cookie Based Affinity")] + [ValidateSet("Enabled", "Disabled", IgnoreCase = true)] + [ValidateNotNullOrEmpty] + public string CookieBasedAffinity { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs new file mode 100644 index 000000000000..85932867d928 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewayBackendHttpSettings"), + OutputType(typeof(PSApplicationGatewayBackendHttpSettings), typeof(IEnumerable))] + public class GetAzureApplicationGatewayBackendHttpSettings : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the backend http settings")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!string.IsNullOrEmpty(this.Name)) + { + var backendHttpSettings = + this.ApplicationGateway.BackendHttpSettingsCollection.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(backendHttpSettings); + } + else + { + var backendHttpSettings = this.ApplicationGateway.BackendHttpSettingsCollection; + WriteObject(backendHttpSettings, true); + } + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs new file mode 100644 index 000000000000..e37679c239ad --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -0,0 +1,41 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGatewayBackendHttpSettings))] + public class NewAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var backendHttpSettings = new PSApplicationGatewayBackendHttpSettings(); + backendHttpSettings.Name = this.Name; + backendHttpSettings.Port = this.Port; + backendHttpSettings.Protocol = this.Protocol; + backendHttpSettings.CookieBasedAffinity = this.CookieBasedAffinity; + backendHttpSettings.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewaybackendHttpSettingsName, + this.Name); + + WriteObject(backendHttpSettings); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs new file mode 100644 index 000000000000..c8f20f5b6b17 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))] + public class RemoveAzureApplicationGatewayBackendHttpSettingsCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the backend http settings")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var backendHttpSettings = this.ApplicationGateway.BackendHttpSettingsCollection.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (backendHttpSettings != null) + { + this.ApplicationGateway.BackendHttpSettingsCollection.Remove(backendHttpSettings); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs new file mode 100644 index 000000000000..b45ab42bd28d --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var backendHttpSettings = this.ApplicationGateway.BackendHttpSettingsCollection.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (backendHttpSettings == null) + { + throw new ArgumentException("Backend http settings with the specified name does not exist"); + } + + backendHttpSettings = new PSApplicationGatewayBackendHttpSettings(); + backendHttpSettings.Name = this.Name; + backendHttpSettings.Port = this.Port; + backendHttpSettings.Protocol = this.Protocol; + backendHttpSettings.CookieBasedAffinity = this.CookieBasedAffinity; + backendHttpSettings.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewaybackendHttpSettingsName, + this.Name); + + this.ApplicationGateway.BackendHttpSettingsCollection.Add(backendHttpSettings); + + WriteObject(this.ApplicationGateway); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/AddAzureApplicationGatewayFrontendIPConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/AddAzureApplicationGatewayFrontendIPConfigCommand.cs new file mode 100644 index 000000000000..aaf269d582cb --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/AddAzureApplicationGatewayFrontendIPConfigCommand.cs @@ -0,0 +1,94 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureApplicationGatewayFrontendIPConfig"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewayFrontendIPConfigCommand : AzureApplicationGatewayFrontendIPConfigBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The application gateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var existingFrontendIPConfig = this.ApplicationGateway.FrontendIPConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (existingFrontendIPConfig != null) + { + throw new ArgumentException("FrontendIPConfiguration with the specified name already exists"); + } + + + // Get the subnetId and publicIPAddressId from the object if specified + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResource)) + { + this.SubnetId = this.Subnet.Id; + + if (PublicIPAddress != null) + { + this.PublicIPAddressId = this.PublicIPAddress.Id; + } + } + + var frontendIPConfig = new PSApplicationGatewayFrontendIPConfiguration(); + frontendIPConfig.Name = this.Name; + + if (!string.IsNullOrEmpty(this.SubnetId)) + { + frontendIPConfig.Subnet = new PSResourceId(); + frontendIPConfig.Subnet.Id = this.SubnetId; + + if (!string.IsNullOrEmpty(this.PrivateIPAddress)) + { + frontendIPConfig.PrivateIPAddress = this.PrivateIPAddress; + frontendIPConfig.PrivateIPAllocationMethod = Management.Network.Models.IpAllocationMethod.Static; + } + else + { + frontendIPConfig.PrivateIPAllocationMethod = Management.Network.Models.IpAllocationMethod.Dynamic; + } + } + + if (!string.IsNullOrEmpty(this.PublicIPAddressId)) + { + frontendIPConfig.PublicIPAddress = new PSResourceId(); + frontendIPConfig.PublicIPAddress.Id = this.PublicIPAddressId; + } + + frontendIPConfig.Id = + ChildResourceHelper.GetResourceId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + this.ApplicationGateway.ResourceGroupName, + this.ApplicationGateway.Name, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayFrontendIpConfigName, + this.Name); + + this.ApplicationGateway.FrontendIPConfigurations.Add(frontendIPConfig); + + WriteObject(this.ApplicationGateway); + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/AzureApplicationGatewayFrontendIPConfigBase.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/AzureApplicationGatewayFrontendIPConfigBase.cs new file mode 100644 index 000000000000..9eb75fd4f671 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/AzureApplicationGatewayFrontendIPConfigBase.cs @@ -0,0 +1,75 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureApplicationGatewayFrontendIPConfigBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the FrontendIPConfiguration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The private ip address of the frontendIPConfiguration " + + "if static allocation is specified.")] + [Parameter(ParameterSetName = "SetByResourceId")] + [Parameter(ParameterSetName = "SetByResource")] + public string PrivateIPAddress { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "SubnetId")] + [ValidateNotNullOrEmpty] + public string SubnetId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "Subnet")] + public PSSubnet Subnet { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "PublicIPAddressId")] + public string PublicIPAddressId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "PublicIPAddress")] + public PSPublicIpAddress PublicIPAddress { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResource)) + { + if (this.Subnet != null) + { + this.SubnetId = this.Subnet.Id; + } + + if (this.PublicIPAddress != null) + { + this.PublicIPAddressId = this.PublicIPAddress.Id; + } + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/GetAzureApplicationGatewayFrontendIPConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/GetAzureApplicationGatewayFrontendIPConfigCommand.cs new file mode 100644 index 000000000000..1a797b9aa002 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/GetAzureApplicationGatewayFrontendIPConfigCommand.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewayFrontendIPConfig"), + OutputType(typeof(PSApplicationGatewayFrontendIPConfiguration), typeof(IEnumerable))] + public class GetAzureApplicationGatewayFrontendIPConfigCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the FrontendIPConfig")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationgateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!string.IsNullOrEmpty(this.Name)) + { + var frontendIpConfiguration = + this.ApplicationGateway.FrontendIPConfigurations.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(frontendIpConfiguration); + } + else + { + var frontendIpConfigurations = this.ApplicationGateway.FrontendIPConfigurations; + WriteObject(frontendIpConfigurations, true); + } + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/NewAzureApplicationGatewayFrontendIPConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/NewAzureApplicationGatewayFrontendIPConfigCommand.cs new file mode 100644 index 000000000000..1fa08646d2fd --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/NewAzureApplicationGatewayFrontendIPConfigCommand.cs @@ -0,0 +1,74 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewayFrontendIPConfig"), OutputType(typeof(PSApplicationGatewayFrontendIPConfiguration))] + public class NewAzureApplicationGatewayFrontendIPConfigCommand : AzureApplicationGatewayFrontendIPConfigBase + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + // Get the subnetId and publicIP AddressId from the object if specified + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResource)) + { + if (Subnet != null) + { + this.SubnetId = this.Subnet.Id; + } + + if (PublicIPAddress != null) + { + this.PublicIPAddressId = this.PublicIPAddress.Id; + } + } + + var frontendIPConfig = new PSApplicationGatewayFrontendIPConfiguration(); + frontendIPConfig.Name = this.Name; + + if (!string.IsNullOrEmpty(this.SubnetId)) + { + frontendIPConfig.Subnet = new PSResourceId(); + frontendIPConfig.Subnet.Id = this.SubnetId; + + if (!string.IsNullOrEmpty(this.PrivateIPAddress)) + { + frontendIPConfig.PrivateIPAddress = this.PrivateIPAddress; + frontendIPConfig.PrivateIPAllocationMethod = Management.Network.Models.IpAllocationMethod.Static; + } + else + { + frontendIPConfig.PrivateIPAllocationMethod = Management.Network.Models.IpAllocationMethod.Dynamic; + } + } + + if (!string.IsNullOrEmpty(this.PublicIPAddressId)) + { + frontendIPConfig.PublicIPAddress = new PSResourceId(); + frontendIPConfig.PublicIPAddress.Id = this.PublicIPAddressId; + } + + frontendIPConfig.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayFrontendIpConfigName, + this.Name); + + WriteObject(frontendIPConfig); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/RemoveAzureApplicationGatewayFrontendIPConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/RemoveAzureApplicationGatewayFrontendIPConfigCommand.cs new file mode 100644 index 000000000000..b8fd5657ac0e --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/RemoveAzureApplicationGatewayFrontendIPConfigCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGatewayFrontendIPConfig"), OutputType(typeof(PSApplicationGateway))] + public class RemoveAzureApplicationGatewayFrontendIPConfigCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the FrontendIP Configuration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The application gateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var frontendIPConfiguration = this.ApplicationGateway.FrontendIPConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (frontendIPConfiguration != null) + { + this.ApplicationGateway.FrontendIPConfigurations.Remove(frontendIPConfiguration); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/SetAzureApplicationGatewayFrontendIPConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/SetAzureApplicationGatewayFrontendIPConfigCommand.cs new file mode 100644 index 000000000000..2c57b50ac997 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendIPConfiguration/SetAzureApplicationGatewayFrontendIPConfigCommand.cs @@ -0,0 +1,95 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewayFrontendIPConfig"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayFrontendIPConfigCommand : AzureApplicationGatewayFrontendIPConfigBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The application gateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var frontendIPConfig = this.ApplicationGateway.FrontendIPConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (frontendIPConfig == null) + { + throw new ArgumentException("FrontendIPConfiguration with the specified name does not exist"); + } + + + // Get the subnetId and publicIPAddressId from the object if specified + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResource)) + { + this.SubnetId = this.Subnet.Id; + + if (PublicIPAddress != null) + { + this.PublicIPAddressId = this.PublicIPAddress.Id; + } + } + + frontendIPConfig.Name = this.Name; + + if (!string.IsNullOrEmpty(this.SubnetId)) + { + frontendIPConfig.Subnet = new PSResourceId(); + frontendIPConfig.Subnet.Id = this.SubnetId; + + if (!string.IsNullOrEmpty(this.PrivateIPAddress)) + { + frontendIPConfig.PrivateIPAddress = this.PrivateIPAddress; + frontendIPConfig.PrivateIPAllocationMethod = Management.Network.Models.IpAllocationMethod.Static; + } + else + { + frontendIPConfig.PrivateIPAllocationMethod = Management.Network.Models.IpAllocationMethod.Dynamic; + } + } + + if (!string.IsNullOrEmpty(this.PrivateIPAddress)) + { + frontendIPConfig.PrivateIPAddress = this.PrivateIPAddress; + } + + frontendIPConfig.Subnet = null; + if (!string.IsNullOrEmpty(this.SubnetId)) + { + frontendIPConfig.Subnet = new PSResourceId(); + frontendIPConfig.Subnet.Id = this.SubnetId; + } + + frontendIPConfig.PublicIPAddress = null; + if (!string.IsNullOrEmpty(this.PublicIPAddressId)) + { + frontendIPConfig.PublicIPAddress = new PSResourceId(); + frontendIPConfig.PublicIPAddress.Id = this.PublicIPAddressId; + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/AddAzureApplicationGatewayFrontendPortCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/AddAzureApplicationGatewayFrontendPortCommand.cs new file mode 100644 index 000000000000..a7e02c2495f9 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/AddAzureApplicationGatewayFrontendPortCommand.cs @@ -0,0 +1,72 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureApplicationGatewayFrontendPort"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewayFrontendPortCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the frontend port")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Frontend port")] + [ValidateNotNullOrEmpty] + public int Port { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var frontendPort = this.ApplicationGateway.FrontendPorts.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (frontendPort != null) + { + throw new ArgumentException("Frontend port with the specified name already exists"); + } + + frontendPort = new PSApplicationGatewayFrontendPort(); + frontendPort.Name = this.Name; + frontendPort.Port = this.Port; + + frontendPort.Id = + ChildResourceHelper.GetResourceId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + this.ApplicationGateway.ResourceGroupName, + this.ApplicationGateway.Name, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayFrontendPortName, + this.Name); + + this.ApplicationGateway.FrontendPorts.Add(frontendPort); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/GetAzureApplicationGatewayFrontendPortCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/GetAzureApplicationGatewayFrontendPortCommand.cs new file mode 100644 index 000000000000..a454c82d2209 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/GetAzureApplicationGatewayFrontendPortCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewayFrontendPort"), + OutputType(typeof(PSApplicationGatewayFrontendPort), typeof(IEnumerable))] + public class GetAzureApplicationGatewayFrontendPortCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the frontend port")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!string.IsNullOrEmpty(this.Name)) + { + var frontendPort = + this.ApplicationGateway.FrontendPorts.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(frontendPort); + } + else + { + var frontendPorts = this.ApplicationGateway.FrontendPorts; + WriteObject(frontendPorts, true); + } + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/NewAzureApplicationGatewayFrontendPortCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/NewAzureApplicationGatewayFrontendPortCommand.cs new file mode 100644 index 000000000000..9eeda2ff416c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/NewAzureApplicationGatewayFrontendPortCommand.cs @@ -0,0 +1,53 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewayFrontendPort"), OutputType(typeof(PSApplicationGatewayFrontendPort))] + public class NewAzureApplicationGatewayFrontendPortCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the frontend port")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Frontend port")] + [ValidateNotNullOrEmpty] + public int Port { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var frontendPort = new PSApplicationGatewayFrontendPort(); + frontendPort.Name = this.Name; + frontendPort.Port = this.Port; + + frontendPort.Id = + ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayFrontendPortName, + this.Name); + + WriteObject(frontendPort); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/RemoveAzureApplicationGatewayFrontendPortCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/RemoveAzureApplicationGatewayFrontendPortCommand.cs new file mode 100644 index 000000000000..429fd2ad616b --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/RemoveAzureApplicationGatewayFrontendPortCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGatewayFrontendPort"), OutputType(typeof(PSApplicationGateway))] + public class RemoveAzureApplicationGatewayFrontendPortCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the frontend port")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var frontendPort = this.ApplicationGateway.FrontendPorts.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (frontendPort != null) + { + this.ApplicationGateway.FrontendPorts.Remove(frontendPort); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/SetAzureApplicationGatewayFrontendPortCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/SetAzureApplicationGatewayFrontendPortCommand.cs new file mode 100644 index 000000000000..e889cddb7934 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/FrontendPort/SetAzureApplicationGatewayFrontendPortCommand.cs @@ -0,0 +1,60 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewayFrontendPort"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayFrontendPortCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the frontend port")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Frontend port")] + [ValidateNotNullOrEmpty] + public int Port { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var frontendPort = this.ApplicationGateway.FrontendPorts.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (frontendPort == null) + { + throw new ArgumentException("Frontend port with the specified name does not exist"); + } + + frontendPort.Port = this.Port; + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/AddAzureApplicationGatewayIPConfigurationCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/AddAzureApplicationGatewayIPConfigurationCommand.cs new file mode 100644 index 000000000000..7edd769225b9 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/AddAzureApplicationGatewayIPConfigurationCommand.cs @@ -0,0 +1,65 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureApplicationGatewayIPConfiguration"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewayIPConfigurationCommand : AzureApplicationGatewayIPConfigurationBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var gatewayIPConfiguration = this.ApplicationGateway.GatewayIPConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (gatewayIPConfiguration != null) + { + throw new ArgumentException("Application gateway IP configuration with the specified name already exists"); + } + + gatewayIPConfiguration = new PSApplicationGatewayIPConfiguration(); + + gatewayIPConfiguration.Name = this.Name; + + if (!string.IsNullOrEmpty(this.SubnetId)) + { + var gatewayIPConfig = new PSResourceId(); + gatewayIPConfig.Id = this.SubnetId; + gatewayIPConfiguration.Subnet = gatewayIPConfig; + } + + gatewayIPConfiguration.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayIpConfigurationName, + this.Name); + + this.ApplicationGateway.GatewayIPConfigurations.Add(gatewayIPConfiguration); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/AzureApplicationGatewayIPConfigurationBase.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/AzureApplicationGatewayIPConfigurationBase.cs new file mode 100644 index 000000000000..8d9a980cee34 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/AzureApplicationGatewayIPConfigurationBase.cs @@ -0,0 +1,54 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureApplicationGatewayIPConfigurationBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the application gateway IP configuration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "ID of subnet where application gateway gets its address from")] + [ValidateNotNullOrEmpty] + public string SubnetId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "Subnet where application gateway gets its address from")] + public PSSubnet Subnet { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResource)) + { + if (this.Subnet != null) + { + this.SubnetId = this.Subnet.Id; + } + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/GetAzureApplicationGatewayIPConfigurationCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/GetAzureApplicationGatewayIPConfigurationCommand.cs new file mode 100644 index 000000000000..026bec6aef75 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/GetAzureApplicationGatewayIPConfigurationCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewayIPConfiguration"), + OutputType(typeof(PSApplicationGatewayIPConfiguration), typeof(IEnumerable))] + public class GetAzureApplicationGatewayIPConfigurationCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the application gateway IP configuration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!string.IsNullOrEmpty(this.Name)) + { + var gatewayIpConfiguration = + this.ApplicationGateway.GatewayIPConfigurations.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(gatewayIpConfiguration); + } + else + { + var gatewayIPConfigurations = this.ApplicationGateway.GatewayIPConfigurations; + WriteObject(gatewayIPConfigurations, true); + } + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/NewAzureApplicationGatewayIPConfigurationCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/NewAzureApplicationGatewayIPConfigurationCommand.cs new file mode 100644 index 000000000000..564d56362da3 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/NewAzureApplicationGatewayIPConfigurationCommand.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewayIPConfiguration"), OutputType(typeof(PSApplicationGatewayIPConfiguration))] + public class NewAzureApplicationGatewayIPConfigurationCommand : AzureApplicationGatewayIPConfigurationBase + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var gatewayIPConfiguration = new PSApplicationGatewayIPConfiguration(); + + gatewayIPConfiguration.Name = this.Name; + + if (!string.IsNullOrEmpty(this.SubnetId)) + { + var gatewayIPConfig = new PSResourceId(); + gatewayIPConfig.Id = this.SubnetId; + gatewayIPConfiguration.Subnet = gatewayIPConfig; + } + + gatewayIPConfiguration.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayIpConfigurationName, + this.Name); + + WriteObject(gatewayIPConfiguration); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/RemoveAzureApplicationGatewayIPConfigurationCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/RemoveAzureApplicationGatewayIPConfigurationCommand.cs new file mode 100644 index 000000000000..f63d3b36ce9b --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/RemoveAzureApplicationGatewayIPConfigurationCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGatewayIPConfiguration"), OutputType(typeof(PSApplicationGateway))] + public class RemoveAzureApplicationGatewayIPConfigurationCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the application gateway IP configuration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var gatewayIPConfiguration = this.ApplicationGateway.GatewayIPConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (gatewayIPConfiguration != null) + { + this.ApplicationGateway.GatewayIPConfigurations.Remove(gatewayIPConfiguration); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/SetAzureApplicationGatewayIPConfigurationCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/SetAzureApplicationGatewayIPConfigurationCommand.cs new file mode 100644 index 000000000000..d489bdeaf758 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GatewayIPConfiguration/SetAzureApplicationGatewayIPConfigurationCommand.cs @@ -0,0 +1,64 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewayIPConfiguration"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayIPConfigurationCommand : AzureApplicationGatewayIPConfigurationBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var gatewayIPConfiguration = this.ApplicationGateway.GatewayIPConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (gatewayIPConfiguration == null) + { + throw new ArgumentException("Application gateway IP configuration with the specified name does not exist"); + } + + gatewayIPConfiguration = new PSApplicationGatewayIPConfiguration(); + + gatewayIPConfiguration.Name = this.Name; + + if (!string.IsNullOrEmpty(this.SubnetId)) + { + var gatewayIPConfig = new PSResourceId(); + gatewayIPConfig.Id = this.SubnetId; + gatewayIPConfiguration.Subnet = gatewayIPConfig; + } + + gatewayIPConfiguration.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayIpConfigurationName, + this.Name); + + this.ApplicationGateway.GatewayIPConfigurations.Add(gatewayIPConfiguration); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GetAzureApplicationGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GetAzureApplicationGatewayCommand.cs new file mode 100644 index 000000000000..0d62e8680835 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/GetAzureApplicationGatewayCommand.cs @@ -0,0 +1,84 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGateway"), OutputType(typeof(PSApplicationGateway))] + public class GetAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet + { + [Alias("ResourceName")] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource name.")] + [ValidateNotNullOrEmpty] + public virtual string Name { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (!string.IsNullOrEmpty(this.Name)) + { + var applicationGateway = this.GetApplicationGateway(this.ResourceGroupName, this.Name); + + WriteObject(applicationGateway); + } + else if (!string.IsNullOrEmpty(this.ResourceGroupName)) + { + var getAppGwResponse = this.ApplicationGatewayClient.List(this.ResourceGroupName); + + var psApplicationGateways = new List(); + + foreach (var appGw in getAppGwResponse.ApplicationGateways) + { + var psAppGw = this.ToPsApplicationGateway(appGw); + psAppGw.ResourceGroupName = this.ResourceGroupName; + psApplicationGateways.Add(psAppGw); + } + + WriteObject(psApplicationGateways, true); + } + else + { + var getAppGwResponse = this.ApplicationGatewayClient.ListAll(); + + var psApplicationGateways = new List(); + + foreach (var appGw in getAppGwResponse.ApplicationGateways) + { + var psAppGw = this.ToPsApplicationGateway(appGw); + psAppGw.ResourceGroupName = NetworkBaseCmdlet.GetResourceGroup(appGw.Id); + psApplicationGateways.Add(psAppGw); + } + + WriteObject(psApplicationGateways, true); + } + } + } +} + + \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/AddAzureApplicationGatewayHttpListenerCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/AddAzureApplicationGatewayHttpListenerCommand.cs new file mode 100644 index 000000000000..e88d933727a8 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/AddAzureApplicationGatewayHttpListenerCommand.cs @@ -0,0 +1,75 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureApplicationGatewayHttpListener"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewayHttpListenerCommand : AzureApplicationGatewayHttpListenerBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var httpListener = this.ApplicationGateway.HttpListeners.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (httpListener != null) + { + throw new ArgumentException("Http Listener with the specified name already exists"); + } + + httpListener = new PSApplicationGatewayHttpListener(); + httpListener.Name = this.Name; + httpListener.Protocol = this.Protocol; + + if (!string.IsNullOrEmpty(this.FrontendIPConfigurationId)) + { + httpListener.FrontendIpConfiguration = new PSResourceId(); + httpListener.FrontendIpConfiguration.Id = this.FrontendIPConfigurationId; + } + + if (!string.IsNullOrEmpty(this.FrontendPortId)) + { + httpListener.FrontendPort = new PSResourceId(); + httpListener.FrontendPort.Id = this.FrontendPortId; + } + if (!string.IsNullOrEmpty(this.SslCertificateId)) + { + httpListener.SslCertificate = new PSResourceId(); + httpListener.SslCertificate.Id = this.SslCertificateId; + } + + httpListener.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayHttpListenerName, + this.Name); + + this.ApplicationGateway.HttpListeners.Add(httpListener); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/AzureApplicationGatewayHttpListenerBase.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/AzureApplicationGatewayHttpListenerBase.cs new file mode 100644 index 000000000000..b88ec4bb0cbc --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/AzureApplicationGatewayHttpListenerBase.cs @@ -0,0 +1,94 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureApplicationGatewayHttpListenerBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the HTTP listener")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "ID of the application gateway FrontendIPConfiguration")] + [ValidateNotNullOrEmpty] + public string FrontendIPConfigurationId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "Application gateway FrontendIPConfiguration")] + [ValidateNotNullOrEmpty] + public PSApplicationGatewayFrontendIPConfiguration FrontendIPConfiguration { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "ID of the application gateway FrontendPort")] + [ValidateNotNullOrEmpty] + public string FrontendPortId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "Application gateway FrontendPort")] + [ValidateNotNullOrEmpty] + public PSApplicationGatewayFrontendPort FrontendPort { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "ID of the application gateway SslCertificate")] + [ValidateNotNullOrEmpty] + public string SslCertificateId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "Application gateway SslCertificate")] + [ValidateNotNullOrEmpty] + public PSApplicationGatewaySslCertificate SslCertificate { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Protocol")] + [ValidateSet("Http", "Https", IgnoreCase = true)] + [ValidateNotNullOrEmpty] + public string Protocol { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResource)) + { + if (FrontendIPConfiguration != null) + { + this.FrontendIPConfigurationId = this.FrontendIPConfiguration.Id; + } + if (FrontendPort != null) + { + this.FrontendPortId = this.FrontendPort.Id; + } + if (SslCertificate != null) + { + this.SslCertificateId = this.SslCertificate.Id; + } + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/GetAzureApplicationGatewayHttpListenerCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/GetAzureApplicationGatewayHttpListenerCommand.cs new file mode 100644 index 000000000000..465e4f72f9ce --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/GetAzureApplicationGatewayHttpListenerCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewayHttpListener"), + OutputType(typeof(PSApplicationGatewayHttpListener), typeof(IEnumerable))] + public class GetAzureApplicationGatewayHttpListenerCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the application gateway http listener")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!string.IsNullOrEmpty(this.Name)) + { + var httpListener = + this.ApplicationGateway.HttpListeners.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(httpListener); + } + else + { + var httpListeners = this.ApplicationGateway.HttpListeners; + WriteObject(httpListeners, true); + } + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/NewAzureApplicationGatewayHttpListenerCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/NewAzureApplicationGatewayHttpListenerCommand.cs new file mode 100644 index 000000000000..e8f068b0737a --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/NewAzureApplicationGatewayHttpListenerCommand.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewayHttpListener"), OutputType(typeof(PSApplicationGatewayHttpListener))] + public class NewAzureApplicationGatewayHttpListenerCommand : AzureApplicationGatewayHttpListenerBase + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var httpListener = new PSApplicationGatewayHttpListener(); + httpListener.Name = this.Name; + httpListener.Protocol = this.Protocol; + + if (!string.IsNullOrEmpty(this.FrontendIPConfigurationId)) + { + httpListener.FrontendIpConfiguration = new PSResourceId(); + httpListener.FrontendIpConfiguration.Id = this.FrontendIPConfigurationId; + } + + if (!string.IsNullOrEmpty(this.FrontendPortId)) + { + httpListener.FrontendPort = new PSResourceId(); + httpListener.FrontendPort.Id = this.FrontendPortId; + } + if (!string.IsNullOrEmpty(this.SslCertificateId)) + { + httpListener.SslCertificate = new PSResourceId(); + httpListener.SslCertificate.Id = this.SslCertificateId; + } + + httpListener.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayHttpListenerName, + this.Name); + + WriteObject(httpListener); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/RemoveAzureApplicationGatewayHttpListenerCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/RemoveAzureApplicationGatewayHttpListenerCommand.cs new file mode 100644 index 000000000000..2f1232d8710b --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/RemoveAzureApplicationGatewayHttpListenerCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGatewayHttpListener"), OutputType(typeof(PSApplicationGatewayHttpListener))] + public class RemoveAzureApplicationGatewayHttpListenerCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the application gateway http listener")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var httpListener = this.ApplicationGateway.HttpListeners.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (httpListener != null) + { + this.ApplicationGateway.HttpListeners.Remove(httpListener); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/SetAzureApplicationGatewayHttpListenerCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/SetAzureApplicationGatewayHttpListenerCommand.cs new file mode 100644 index 000000000000..535ebb739ab3 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/HttpListener/SetAzureApplicationGatewayHttpListenerCommand.cs @@ -0,0 +1,74 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewayHttpListener"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayHttpListenerCommand : AzureApplicationGatewayHttpListenerBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var httpListener = this.ApplicationGateway.HttpListeners.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (httpListener == null) + { + throw new ArgumentException("Http Listener with the specified name does not exist"); + } + + httpListener = new PSApplicationGatewayHttpListener(); + httpListener.Name = this.Name; + httpListener.Protocol = this.Protocol; + + if (!string.IsNullOrEmpty(this.FrontendIPConfigurationId)) + { + httpListener.FrontendIpConfiguration = new PSResourceId(); + httpListener.FrontendIpConfiguration.Id = this.FrontendIPConfigurationId; + } + + if (!string.IsNullOrEmpty(this.FrontendPortId)) + { + httpListener.FrontendPort = new PSResourceId(); + httpListener.FrontendPort.Id = this.FrontendPortId; + } + if (!string.IsNullOrEmpty(this.SslCertificateId)) + { + httpListener.SslCertificate = new PSResourceId(); + httpListener.SslCertificate.Id = this.SslCertificateId; + } + + httpListener.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayHttpListenerName, + this.Name); + + this.ApplicationGateway.HttpListeners.Add(httpListener); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs new file mode 100644 index 000000000000..4da396ecb697 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs @@ -0,0 +1,214 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using AutoMapper; +using Microsoft.Azure.Commands.Tags.Model; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Resources.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGateway"), OutputType(typeof(PSApplicationGateway))] + public class NewAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet + { + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource name.")] + [ValidateNotNullOrEmpty] + public virtual string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "location.")] + [ValidateNotNullOrEmpty] + public virtual string Location { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The SKU of application gateway")] + [ValidateNotNullOrEmpty] + public virtual PSApplicationGatewaySku Sku { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of IPConfiguration (subnet)")] + [ValidateNotNullOrEmpty] + public List GatewayIPConfigurations { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of ssl certificate")] + public List SslCertificates { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of frontend IP config")] + public List FrontendIPConfigurations { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of frontend port")] + public List FrontendPorts { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of backend address pool")] + public List BackendAddressPools { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of backend http settings")] + public List BackendHttpSettingsCollection { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of http listener")] + public List HttpListeners { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of request routing rule")] + public List RequestRoutingRules { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "An array of hashtables which represents resource tags.")] + public Hashtable[] Tag { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Do not ask for confirmation if you want to overrite a resource")] + public SwitchParameter Force { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (this.IsApplicationGatewayPresent(this.ResourceGroupName, this.Name)) + { + ConfirmAction( + Force.IsPresent, + string.Format(Microsoft.Azure.Commands.Network.Properties.Resources.OverwritingResource, Name), + Microsoft.Azure.Commands.Network.Properties.Resources.OverwritingResourceMessage, + Name, + () => CreateApplicationGateway()); + + WriteObject(this.GetApplicationGateway(this.ResourceGroupName, this.Name)); + } + else + { + var applicationGateway = this.CreateApplicationGateway(); + + WriteObject(applicationGateway); + } + } + + private PSApplicationGateway CreateApplicationGateway() + { + var applicationGateway = new PSApplicationGateway(); + applicationGateway.Name = this.Name; + applicationGateway.ResourceGroupName = this.ResourceGroupName; + applicationGateway.Location = this.Location; + applicationGateway.Sku = this.Sku; + + if (this.GatewayIPConfigurations != null) + { + applicationGateway.GatewayIPConfigurations = new List(); + applicationGateway.GatewayIPConfigurations = this.GatewayIPConfigurations; + } + + if (this.SslCertificates != null) + { + applicationGateway.SslCertificates = new List(); + applicationGateway.SslCertificates = this.SslCertificates; + } + + if (this.FrontendIPConfigurations != null) + { + applicationGateway.FrontendIPConfigurations = new List(); + applicationGateway.FrontendIPConfigurations = this.FrontendIPConfigurations; + } + + if (this.FrontendPorts != null) + { + applicationGateway.FrontendPorts = new List(); + applicationGateway.FrontendPorts = this.FrontendPorts; + } + + if (this.BackendAddressPools != null) + { + applicationGateway.BackendAddressPools = new List(); + applicationGateway.BackendAddressPools = this.BackendAddressPools; + } + + if (this.BackendHttpSettingsCollection != null) + { + applicationGateway.BackendHttpSettingsCollection = new List(); + applicationGateway.BackendHttpSettingsCollection = this.BackendHttpSettingsCollection; + } + + if (this.HttpListeners != null) + { + applicationGateway.HttpListeners = new List(); + applicationGateway.HttpListeners = this.HttpListeners; + } + + if (this.RequestRoutingRules != null) + { + applicationGateway.RequestRoutingRules = new List(); + applicationGateway.RequestRoutingRules = this.RequestRoutingRules; + } + + // Normalize the IDs + ApplicationGatewayChildResourceHelper.NormalizeChildResourcesId(applicationGateway); + + // Map to the sdk object + var appGwModel = Mapper.Map(applicationGateway); + appGwModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayType; + appGwModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true); + + // Execute the Create ApplicationGateway call + this.ApplicationGatewayClient.CreateOrUpdate(this.ResourceGroupName, this.Name, appGwModel); + + var getApplicationGateway = this.GetApplicationGateway(this.ResourceGroupName, this.Name); + + return getApplicationGateway; + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RemoveAzureApplicationGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RemoveAzureApplicationGatewayCommand.cs new file mode 100644 index 000000000000..890ed7a03394 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RemoveAzureApplicationGatewayCommand.cs @@ -0,0 +1,69 @@ + + +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Management.Network; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGateway")] + public class RemoveAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet + { + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource name.")] + [ValidateNotNullOrEmpty] + public virtual string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + ConfirmAction( + Force.IsPresent, + string.Format(Microsoft.Azure.Commands.Network.Properties.Resources.RemovingResource, Name), + Microsoft.Azure.Commands.Network.Properties.Resources.RemoveResourceMessage, + Name, + () => this.ApplicationGatewayClient.Delete(this.ResourceGroupName, this.Name)); + + if (PassThru) + { + WriteObject(true); + } + } + } +} + + \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/AddAzureApplicationGatewayRequestRoutingRuleCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/AddAzureApplicationGatewayRequestRoutingRuleCommand.cs new file mode 100644 index 000000000000..e92bbb2cba71 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/AddAzureApplicationGatewayRequestRoutingRuleCommand.cs @@ -0,0 +1,75 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureApplicationGatewayRequestRoutingRule"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewayRequestRoutingRuleCommand : AzureApplicationGatewayRequestRoutingRuleBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var requestRoutingRule = this.ApplicationGateway.RequestRoutingRules.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (requestRoutingRule != null) + { + throw new ArgumentException("RequestRoutingRule with the specified name already exists"); + } + + requestRoutingRule = new PSApplicationGatewayRequestRoutingRule(); + requestRoutingRule.Name = this.Name; + requestRoutingRule.RuleType = this.RuleType; + + if (!string.IsNullOrEmpty(this.BackendHttpSettingsId)) + { + requestRoutingRule.BackendHttpSettings = new PSResourceId(); + requestRoutingRule.BackendHttpSettings.Id = this.BackendHttpSettingsId; + } + + if (!string.IsNullOrEmpty(this.HttpListenerId)) + { + requestRoutingRule.HttpListener = new PSResourceId(); + requestRoutingRule.HttpListener.Id = this.HttpListenerId; + } + if (!string.IsNullOrEmpty(this.BackendAddressPoolId)) + { + requestRoutingRule.BackendAddressPool = new PSResourceId(); + requestRoutingRule.BackendAddressPool.Id = this.BackendAddressPoolId; + } + + requestRoutingRule.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayRequestRoutingRuleName, + this.Name); + + this.ApplicationGateway.RequestRoutingRules.Add(requestRoutingRule); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/AzureApplicationGatewayRequestRoutingRuleBase.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/AzureApplicationGatewayRequestRoutingRuleBase.cs new file mode 100644 index 000000000000..e4a32b9f538a --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/AzureApplicationGatewayRequestRoutingRuleBase.cs @@ -0,0 +1,93 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureApplicationGatewayRequestRoutingRuleBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the Request Routing Rule")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The type of rule")] + [ValidateSet("Basic", IgnoreCase = true)] + [ValidateNotNullOrEmpty] + public string RuleType { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "ID of the application gateway BackendHttpSettings")] + [ValidateNotNullOrEmpty] + public string BackendHttpSettingsId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "Application gateway BackendHttpSettings")] + [ValidateNotNullOrEmpty] + public PSApplicationGatewayBackendHttpSettings BackendHttpSettings { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "ID of the application gateway HttpListener")] + [ValidateNotNullOrEmpty] + public string HttpListenerId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "Application gateway HttpListener")] + [ValidateNotNullOrEmpty] + public PSApplicationGatewayHttpListener HttpListener { get; set; } + + [Parameter( + ParameterSetName = "SetByResourceId", + HelpMessage = "ID of the application gateway BackendAddressPool")] + [ValidateNotNullOrEmpty] + public string BackendAddressPoolId { get; set; } + + [Parameter( + ParameterSetName = "SetByResource", + HelpMessage = "Application gateway BackendAddressPool")] + [ValidateNotNullOrEmpty] + public PSApplicationGatewayBackendAddressPool BackendAddressPool { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (string.Equals(ParameterSetName, Microsoft.Azure.Commands.Network.Properties.Resources.SetByResource)) + { + if (BackendHttpSettings != null) + { + this.BackendHttpSettingsId = this.BackendHttpSettings.Id; + } + if (BackendAddressPool != null) + { + this.BackendAddressPoolId = this.BackendAddressPool.Id; + } + if (HttpListener != null) + { + this.HttpListenerId = this.HttpListener.Id; + } + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/GetAzureApplicationGatewayRequestRoutingRuleCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/GetAzureApplicationGatewayRequestRoutingRuleCommand.cs new file mode 100644 index 000000000000..f36fd0efcb89 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/GetAzureApplicationGatewayRequestRoutingRuleCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewayRequestRoutingRule"), + OutputType(typeof(PSApplicationGatewayRequestRoutingRule), typeof(IEnumerable))] + public class GetAzureApplicationGatewayRequestRoutingRuleCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the request routing rule")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!string.IsNullOrEmpty(this.Name)) + { + var requestRoutingRule = + this.ApplicationGateway.RequestRoutingRules.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(requestRoutingRule); + } + else + { + var requestRoutingRules = this.ApplicationGateway.RequestRoutingRules; + WriteObject(requestRoutingRules, true); + } + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/NewAzureApplicationGatewayRequestRoutingRuleCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/NewAzureApplicationGatewayRequestRoutingRuleCommand.cs new file mode 100644 index 000000000000..82598dead482 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/NewAzureApplicationGatewayRequestRoutingRuleCommand.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewayRequestRoutingRule"), OutputType(typeof(PSApplicationGatewayRequestRoutingRule))] + public class NewAzureApplicationGatewayRequestRoutingRuleCommand : AzureApplicationGatewayRequestRoutingRuleBase + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var requestRoutingRule = new PSApplicationGatewayRequestRoutingRule(); + requestRoutingRule.Name = this.Name; + requestRoutingRule.RuleType = this.RuleType; + + if (!string.IsNullOrEmpty(this.BackendHttpSettingsId)) + { + requestRoutingRule.BackendHttpSettings = new PSResourceId(); + requestRoutingRule.BackendHttpSettings.Id = this.BackendHttpSettingsId; + } + + if (!string.IsNullOrEmpty(this.HttpListenerId)) + { + requestRoutingRule.HttpListener = new PSResourceId(); + requestRoutingRule.HttpListener.Id = this.HttpListenerId; + } + if (!string.IsNullOrEmpty(this.BackendAddressPoolId)) + { + requestRoutingRule.BackendAddressPool = new PSResourceId(); + requestRoutingRule.BackendAddressPool.Id = this.BackendAddressPoolId; + } + + requestRoutingRule.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayRequestRoutingRuleName, + this.Name); + + WriteObject(requestRoutingRule); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/RemoveAzureApplicationGatewayRequestRoutingRuleCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/RemoveAzureApplicationGatewayRequestRoutingRuleCommand.cs new file mode 100644 index 000000000000..361fc87aee6b --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/RemoveAzureApplicationGatewayRequestRoutingRuleCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGatewayRequestRoutingRule"), OutputType(typeof(PSApplicationGatewayRequestRoutingRule))] + public class RemoveAzureApplicationGatewayRequestRoutingRuleCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the request routing rule")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var requestRoutingRule = this.ApplicationGateway.RequestRoutingRules.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (requestRoutingRule != null) + { + this.ApplicationGateway.RequestRoutingRules.Remove(requestRoutingRule); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/SetAzureApplicationGatewayRequestRoutingRuleCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/SetAzureApplicationGatewayRequestRoutingRuleCommand.cs new file mode 100644 index 000000000000..7d4da487f1d6 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/RequestRoutingRule/SetAzureApplicationGatewayRequestRoutingRuleCommand.cs @@ -0,0 +1,74 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewayRequestRoutingRule"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayRequestRoutingRuleCommand : AzureApplicationGatewayRequestRoutingRuleBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var requestRoutingRule = this.ApplicationGateway.RequestRoutingRules.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (requestRoutingRule == null) + { + throw new ArgumentException("RequestRoutingRule with the specified name does not exist"); + } + + requestRoutingRule = new PSApplicationGatewayRequestRoutingRule(); + requestRoutingRule.Name = this.Name; + requestRoutingRule.RuleType = this.RuleType; + + if (!string.IsNullOrEmpty(this.BackendHttpSettingsId)) + { + requestRoutingRule.BackendHttpSettings = new PSResourceId(); + requestRoutingRule.BackendHttpSettings.Id = this.BackendHttpSettingsId; + } + + if (!string.IsNullOrEmpty(this.HttpListenerId)) + { + requestRoutingRule.HttpListener = new PSResourceId(); + requestRoutingRule.HttpListener.Id = this.HttpListenerId; + } + if (!string.IsNullOrEmpty(this.BackendAddressPoolId)) + { + requestRoutingRule.BackendAddressPool = new PSResourceId(); + requestRoutingRule.BackendAddressPool.Id = this.BackendAddressPoolId; + } + + requestRoutingRule.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayRequestRoutingRuleName, + this.Name); + + this.ApplicationGateway.RequestRoutingRules.Add(requestRoutingRule); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SetAzureApplicationGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SetAzureApplicationGatewayCommand.cs new file mode 100644 index 000000000000..7dafd39f8a8b --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SetAzureApplicationGatewayCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using AutoMapper; +using Microsoft.Azure.Commands.Tags.Model; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Resources.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGateway"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!this.IsApplicationGatewayPresent(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name)) + { + throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound); + } + + // Normalize the IDs + ApplicationGatewayChildResourceHelper.NormalizeChildResourcesId(this.ApplicationGateway); + + // Map to the sdk object + var appGwModel = Mapper.Map(this.ApplicationGateway); + appGwModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayType; + appGwModel.Tags = TagsConversionHelper.CreateTagDictionary(this.ApplicationGateway.Tag, validate: true); + + // Execute the Create VirtualNetwork call + this.ApplicationGatewayClient.CreateOrUpdate(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name, appGwModel); + + var getApplicationGateway = this.GetApplicationGateway(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name); + WriteObject(getApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/AzureApplicationGatewaySkuBase.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/AzureApplicationGatewaySkuBase.cs new file mode 100644 index 000000000000..d58be8270b95 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/AzureApplicationGatewaySkuBase.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureApplicationGatewaySkuBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the SKU")] + [ValidateSet("Standard_Small", "Standard_Medium", "Standard_Large", IgnoreCase = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Application gateway tier")] + [ValidateSet("Standard", IgnoreCase = true)] + [ValidateNotNullOrEmpty] + public string Tier { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Application gateway instance count")] + [ValidateNotNullOrEmpty] + public int Capacity { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/GetAzureApplicationGatewaySkuCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/GetAzureApplicationGatewaySkuCommand.cs new file mode 100644 index 000000000000..485b5fc47452 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/GetAzureApplicationGatewaySkuCommand.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewaySku"), OutputType(typeof(PSApplicationGatewaySku))] + public class GetAzureApplicationGatewaySkuCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + WriteObject(this.ApplicationGateway.Sku, true); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/NewAzureApplicationGatewaySkuCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/NewAzureApplicationGatewaySkuCommand.cs new file mode 100644 index 000000000000..df1a4b739541 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/NewAzureApplicationGatewaySkuCommand.cs @@ -0,0 +1,38 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewaySku"), OutputType(typeof(PSApplicationGatewaySku))] + public class NewAzureApplicationGatewaySkuCommand : AzureApplicationGatewaySkuBase + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + PSApplicationGatewaySku sku = new PSApplicationGatewaySku() + { + Name = this.Name, + Tier = this.Tier, + Capacity = this.Capacity + }; + + WriteObject(sku); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/SetAzureApplicationGatewaySkuCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/SetAzureApplicationGatewaySkuCommand.cs new file mode 100644 index 000000000000..ccfeed0c1ada --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/Sku/SetAzureApplicationGatewaySkuCommand.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewaySku"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewaySkuCommand : AzureApplicationGatewaySkuBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + PSApplicationGatewaySku sku = new PSApplicationGatewaySku() + { + Name = this.Name, + Tier = this.Tier, + Capacity = this.Capacity + }; + + this.ApplicationGateway.Sku = sku; + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/AddAzureApplicationGatewaySslCertificateCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/AddAzureApplicationGatewaySslCertificateCommand.cs new file mode 100644 index 000000000000..76d589d8ba66 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/AddAzureApplicationGatewaySslCertificateCommand.cs @@ -0,0 +1,82 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureApplicationGatewaySslCertificate"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewaySslCertificateCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ssl certificate")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate data")] + [ValidateNotNullOrEmpty] + public string Data { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate password")] + [ValidateNotNullOrEmpty] + public string Password { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate public data")] + [ValidateNotNullOrEmpty] + public string PublicCertData { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var sslCertificate = this.ApplicationGateway.SslCertificates.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (sslCertificate != null) + { + throw new ArgumentException("Ssl certificate with the specified name already exists"); + } + + sslCertificate = new PSApplicationGatewaySslCertificate(); + sslCertificate.Name = this.Name; + sslCertificate.Data = this.Data; + sslCertificate.Password = this.Password; + sslCertificate.PublicCertData = this.PublicCertData; + sslCertificate.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewaySslCertificateName, + this.Name); + + this.ApplicationGateway.SslCertificates.Add(sslCertificate); + + WriteObject(this.ApplicationGateway); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/GetAzureApplicationGatewaySslCertificateCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/GetAzureApplicationGatewaySslCertificateCommand.cs new file mode 100644 index 000000000000..1e612ea2d611 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/GetAzureApplicationGatewaySslCertificateCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureApplicationGatewaySslCertificate"), + OutputType(typeof(PSApplicationGatewaySslCertificate), typeof(IEnumerable))] + public class GetAzureApplicationGatewaySslCertificate : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the ssl certificate")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!string.IsNullOrEmpty(this.Name)) + { + var sslCertificate = + this.ApplicationGateway.SslCertificates.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(sslCertificate); + } + else + { + var sslCertificates = this.ApplicationGateway.SslCertificates; + WriteObject(sslCertificates, true); + } + + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/NewAzureApplicationGatewaySslCertificateCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/NewAzureApplicationGatewaySslCertificateCommand.cs new file mode 100644 index 000000000000..e1d1e55da9c4 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/NewAzureApplicationGatewaySslCertificateCommand.cs @@ -0,0 +1,66 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureApplicationGatewaySslCertificate"), OutputType(typeof(PSApplicationGatewaySslCertificate))] + public class NewAzureApplicationGatewaySslCertificateCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ssl certificate")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate data")] + [ValidateNotNullOrEmpty] + public string Data { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate password")] + [ValidateNotNullOrEmpty] + public string Password { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate public data")] + [ValidateNotNullOrEmpty] + public string PublicCertData { get; set; } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var sslCertificate = new PSApplicationGatewaySslCertificate(); + sslCertificate.Name = this.Name; + sslCertificate.Data = this.Data; + sslCertificate.Password = this.Password; + sslCertificate.PublicCertData = this.PublicCertData; + + sslCertificate.Id = + ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewaySslCertificateName, + this.Name); + + WriteObject(sslCertificate); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/RemoveAzureApplicationGatewaySslCertificateCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/RemoveAzureApplicationGatewaySslCertificateCommand.cs new file mode 100644 index 000000000000..280a2bcc111a --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/RemoveAzureApplicationGatewaySslCertificateCommand.cs @@ -0,0 +1,50 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureApplicationGatewaySslCertificate"), OutputType(typeof(PSApplicationGateway))] + public class RemoveAzureApplicationGatewaySslCertificateCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ssl certificate")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var sslCertificate = this.ApplicationGateway.SslCertificates.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (sslCertificate != null) + { + this.ApplicationGateway.SslCertificates.Remove(sslCertificate); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/SetAzureApplicationGatewaySslCertificateCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/SetAzureApplicationGatewaySslCertificateCommand.cs new file mode 100644 index 000000000000..699a5dd682e8 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/SslCertificate/SetAzureApplicationGatewaySslCertificateCommand.cs @@ -0,0 +1,81 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureApplicationGatewaySslCertificate"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewaySslCertificateCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ssl certificate")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate data")] + [ValidateNotNullOrEmpty] + public string Data { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate password")] + [ValidateNotNullOrEmpty] + public string Password { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Certificate public data")] + [ValidateNotNullOrEmpty] + public string PublicCertData { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var sslCertificate = this.ApplicationGateway.SslCertificates.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (sslCertificate == null) + { + throw new ArgumentException("Ssl certificate with the specified name does not exist"); + } + + sslCertificate.Name = this.Name; + sslCertificate.Data = this.Data; + sslCertificate.Password = this.Password; + sslCertificate.PublicCertData = this.PublicCertData; + + sslCertificate.Id = + ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkResourceProviderClient.Credentials.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewaySslCertificateName, + this.Name); + + WriteObject(this.ApplicationGateway); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/StartAzureApplicationGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/StartAzureApplicationGatewayCommand.cs new file mode 100644 index 000000000000..86e3cdbdb239 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/StartAzureApplicationGatewayCommand.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using AutoMapper; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Resources.Models; +using MNM = Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Commands.Tags.Model; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsLifecycle.Start, "AzureApplicationGateway"), OutputType(typeof(PSApplicationGateway))] + public class StartAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The ApplicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!this.IsApplicationGatewayPresent(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name)) + { + throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound); + } + + // Map to the sdk object + var appGwModel = Mapper.Map(this.ApplicationGateway); + appGwModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayType; + appGwModel.Tags = TagsConversionHelper.CreateTagDictionary(this.ApplicationGateway.Tag, validate: true); + + this.ApplicationGatewayClient.Start(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name); + + var getApplicationGateway = this.GetApplicationGateway(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name); + + WriteObject(getApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/ApplicationGateway/StopAzureApplicationGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/StopAzureApplicationGatewayCommand.cs new file mode 100644 index 000000000000..a7e2ff5abbb8 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/ApplicationGateway/StopAzureApplicationGatewayCommand.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using AutoMapper; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Resources.Models; +using MNM = Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Commands.Tags.Model; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsLifecycle.Stop, "AzureApplicationGateway"), OutputType(typeof(PSApplicationGateway))] + public class StopAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The ApplicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!this.IsApplicationGatewayPresent(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name)) + { + throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound); + } + + // Map to the sdk object + var appGwModel = Mapper.Map(this.ApplicationGateway); + appGwModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayType; + appGwModel.Tags = TagsConversionHelper.CreateTagDictionary(this.ApplicationGateway.Tag, validate: true); + + this.ApplicationGatewayClient.Stop(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name); + + var getApplicationGateway = this.GetApplicationGateway(this.ApplicationGateway.ResourceGroupName, this.ApplicationGateway.Name); + + WriteObject(getApplicationGateway); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj index 415b90bef142..fd9a1d9bf793 100644 --- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj +++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj @@ -73,12 +73,12 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll - ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.4-preview\lib\net40\Microsoft.Azure.Management.Network.dll + ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.9-preview\lib\net40\Microsoft.Azure.Management.Network.dll True - False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + True False @@ -135,9 +135,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -204,10 +291,9 @@ - - + @@ -245,12 +331,7 @@ True True - - - - - - + diff --git a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs index 88d414d00706..beb6c0803b55 100644 --- a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs +++ b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs @@ -101,12 +101,12 @@ protected override void Configure() // NetworkInterface // CNM to MNM Mapper.CreateMap(); - Mapper.CreateMap(); + Mapper.CreateMap(); Mapper.CreateMap(); // MNM to CNM Mapper.CreateMap(); - Mapper.CreateMap(); + Mapper.CreateMap(); Mapper.CreateMap(); // LoadBalancer @@ -165,6 +165,20 @@ protected override void Configure() // MNM to CNM Mapper.CreateMap(); + // RouteTable + // CNM to MNM + Mapper.CreateMap(); + + // MNM to CNM + Mapper.CreateMap(); + + // Route + // CNM to MNM + Mapper.CreateMap(); + + // MNM to CNM + Mapper.CreateMap(); + // Gateways // CNM to MNM Mapper.CreateMap(); @@ -181,6 +195,35 @@ protected override void Configure() Mapper.CreateMap(); Mapper.CreateMap(); Mapper.CreateMap(); + + //Application Gateways + //CNM to MNM + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + + //MNM to CNM + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); + Mapper.CreateMap(); } } } \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/AddAzureLoadBalancerFrontendIpConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/AddAzureLoadBalancerFrontendIpConfigCommand.cs index 557c902b1920..f3b564f25557 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/AddAzureLoadBalancerFrontendIpConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/AddAzureLoadBalancerFrontendIpConfigCommand.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSBackendAddressPool))] + [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSLoadBalancer))] public class AddAzureLoadBalancerFrontendIpConfigCommand : AzureLoadBalancerFrontendIpConfigBase { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/RemoveAzureLoadBalancerFrontendIpConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/RemoveAzureLoadBalancerFrontendIpConfigCommand.cs index 1d7d01a25573..9977a0833f1a 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/RemoveAzureLoadBalancerFrontendIpConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/RemoveAzureLoadBalancerFrontendIpConfigCommand.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSBackendAddressPool))] + [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSLoadBalancer))] public class RemoveAzureLoadBalancerFrontendIpConfigCommand : NetworkBaseCmdlet { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/SetAzureLoadBalancerFrontendIpConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/SetAzureLoadBalancerFrontendIpConfigCommand.cs index f2ba09e7db14..49828cf9dd56 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/SetAzureLoadBalancerFrontendIpConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/SetAzureLoadBalancerFrontendIpConfigCommand.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSBackendAddressPool))] + [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSLoadBalancer))] public class SetAzureLoadBalancerFrontendIpConfigCommand : AzureLoadBalancerFrontendIpConfigBase { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/AddAzureLoadBalancerInboundNatRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/AddAzureLoadBalancerInboundNatRuleConfigCommand.cs index 6ea55e507dca..c116dedf82bc 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/AddAzureLoadBalancerInboundNatRuleConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/AddAzureLoadBalancerInboundNatRuleConfigCommand.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSFrontendIPConfiguration))] + [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSLoadBalancer))] public class AddAzureLoadBalancerInboundNatRuleConfigCommand : AzureLoadBalancerInboundNatRuleConfigBase { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/RemoveAzureLoadBalancerInboundNatRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/RemoveAzureLoadBalancerInboundNatRuleConfigCommand.cs index 1e6c7c2fbf10..ff7d9dc23cb3 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/RemoveAzureLoadBalancerInboundNatRuleConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/RemoveAzureLoadBalancerInboundNatRuleConfigCommand.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSFrontendIPConfiguration))] + [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSLoadBalancer))] public class RemoveAzureLoadBalancerInboundNatRuleConfigCommand : NetworkBaseCmdlet { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/SetAzureLoadBalancerInboundNatRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/SetAzureLoadBalancerInboundNatRuleConfigCommand.cs index b2203c7889d3..4c04263a08ab 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/SetAzureLoadBalancerInboundNatRuleConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/SetAzureLoadBalancerInboundNatRuleConfigCommand.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSFrontendIPConfiguration))] + [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSLoadBalancer))] public class SetAzureLoadBalancerInboundNatRuleConfigCommand : AzureLoadBalancerInboundNatRuleConfigBase { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AddAzureLoadBalancerProbeConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AddAzureLoadBalancerProbeConfigCommand.cs index 3d91b976620f..34f1effb0a50 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AddAzureLoadBalancerProbeConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AddAzureLoadBalancerProbeConfigCommand.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancingRule))] + [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancer))] public class AddAzureLoadBalancerProbeConfigCommand : AzureLoadBalancerProbeConfigBase { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AzureLoadBalancerProbeConfigBase.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AzureLoadBalancerProbeConfigBase.cs index 0caee7fe30da..b1856be2f5da 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AzureLoadBalancerProbeConfigBase.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AzureLoadBalancerProbeConfigBase.cs @@ -26,7 +26,7 @@ public class AzureLoadBalancerProbeConfigBase : NetworkBaseCmdlet public virtual string Name { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "Request path")] [ValidateNotNullOrEmpty] public string RequestPath { get; set; } diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/RemoveAzureLoadBalancerProbeCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/RemoveAzureLoadBalancerProbeCommand.cs index 599d7f2d4e10..5e77827debd4 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/RemoveAzureLoadBalancerProbeCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/RemoveAzureLoadBalancerProbeCommand.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancingRule))] + [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancer))] public class RemoveAzureLoadBalancerProbeCommand : NetworkBaseCmdlet { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/SetAzureLoadBalancerProbeConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/SetAzureLoadBalancerProbeConfigCommand.cs index 5e87259ce1b3..4621882a5f0e 100644 --- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/SetAzureLoadBalancerProbeConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/SetAzureLoadBalancerProbeConfigCommand.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancingRule))] + [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancer))] public class SetAzureLoadBalancerProbeConfigCommand : AzureLoadBalancerProbeConfigBase { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml index ce97bf4d1ee8..a27c5f7c480e 100644 --- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml +++ b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml @@ -2038,7 +2038,7 @@ SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map - Get-AzureCheckDnsAvailability + Test-AzureDnsAvailability Checks whether a domain name in the cloudapp.net zone is available for use @@ -2054,7 +2054,7 @@ SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map - Get-AzureCheckDnsAvailability + Test-AzureDnsAvailability DomainQualifiedName diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml index 4a811a7bbb56..fec2277b5e33 100644 --- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml +++ b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml @@ -96,6 +96,10 @@ NetworkSecurityGroupText + + + RouteTableText + @@ -213,8 +217,8 @@ DnsSettingsText - - AppliedDnsSettingsText + + EnableIPForwarding @@ -739,5 +743,97 @@ + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + + + + + + + Name + + + + ResourceGroupName + + + + Location + + + + Id + + + + Etag + + + + ProvisioningState + + + + TagsTable + + + + RoutesText + + + + SubnetsText + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSRoute + + Microsoft.Azure.Commands.Network.Models.PSRoute + + + + + + + + Name + + + + Id + + + + Etag + + + + ProvisioningState + + + + AddressPrefix + + + + NextHopType + + + + NextHopIpAddress + + + + + + diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGateway.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGateway.cs new file mode 100644 index 000000000000..fa567b104fab --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGateway.cs @@ -0,0 +1,93 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Collections.Generic; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGateway : PSTopLevelResource + { + public PSApplicationGatewaySku Sku { get; set; } + + public List GatewayIPConfigurations { get; set; } + + public List SslCertificates { get; set; } + + public List FrontendIPConfigurations { get; set; } + + public List FrontendPorts { get; set; } + + public List BackendAddressPools { get; set; } + + public List BackendHttpSettingsCollection { get; set; } + + public List HttpListeners { get; set; } + + public List RequestRoutingRules { get; set; } + + public string OperationalState { get; private set; } + + public string ProvisioningState { get; set; } + + [JsonIgnore] + public string GatewayIpConfigurationsText + { + get { return JsonConvert.SerializeObject(GatewayIPConfigurations, Formatting.Indented); } + } + + [JsonIgnore] + public string SslCertificatesText + { + get { return JsonConvert.SerializeObject(SslCertificates, Formatting.Indented); } + } + + [JsonIgnore] + public string FrontendIpConfigurationsText + { + get { return JsonConvert.SerializeObject(FrontendIPConfigurations, Formatting.Indented); } + } + + [JsonIgnore] + public string FrontendPortsText + { + get { return JsonConvert.SerializeObject(FrontendPorts, Formatting.Indented); } + } + + [JsonIgnore] + public string BackendAddressPoolsText + { + get { return JsonConvert.SerializeObject(BackendAddressPools, Formatting.Indented); } + } + + [JsonIgnore] + public string BackendHttpSettingsCollectionText + { + get { return JsonConvert.SerializeObject(BackendHttpSettingsCollection, Formatting.Indented); } + } + + [JsonIgnore] + public string HttpListenersText + { + get { return JsonConvert.SerializeObject(HttpListeners, Formatting.Indented); } + } + + [JsonIgnore] + public string RequestRoutingRulesText + { + get { return JsonConvert.SerializeObject(RequestRoutingRules, Formatting.Indented); } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSProbeProtocol.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendAddress.cs similarity index 80% rename from src/ResourceManager/Network/Commands.Network/Models/PSProbeProtocol.cs rename to src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendAddress.cs index 086a5144392a..dd7febac5267 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSProbeProtocol.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendAddress.cs @@ -15,10 +15,9 @@ namespace Microsoft.Azure.Commands.Network.Models { - public enum PSProbeProtocol - { - Http, - - Tcp, - } + public class PSApplicationGatewayBackendAddress + { + public string Fqdn { get; set; } + public string IpAddress { get; set; } + } } diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendAddressPool.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendAddressPool.cs new file mode 100644 index 000000000000..e9c8c7fd2744 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendAddressPool.cs @@ -0,0 +1,41 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Collections.Generic; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayBackendAddressPool : PSChildResource + { + public List BackendAddresses { get; set; } + + public List BackendIpConfigurations { get; set; } + + public string ProvisioningState { get; set; } + + [JsonIgnore] + public string BackendAddressesText + { + get { return JsonConvert.SerializeObject(BackendAddresses, Formatting.Indented); } + } + + [JsonIgnore] + public string BackendIpConfigurationsText + { + get { return JsonConvert.SerializeObject(BackendIpConfigurations, Formatting.Indented); } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendHttpSettings.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendHttpSettings.cs new file mode 100644 index 000000000000..abcfa15f7ff8 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayBackendHttpSettings.cs @@ -0,0 +1,25 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayBackendHttpSettings : PSChildResource + { + public int Port { get; set; } + public string Protocol { get; set; } + public string CookieBasedAffinity { get; set; } + public string ProvisioningState { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayFrontendIPConfiguration.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayFrontendIPConfiguration.cs new file mode 100644 index 000000000000..b4a7bf05e0a2 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayFrontendIPConfiguration.cs @@ -0,0 +1,40 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayFrontendIPConfiguration : PSChildResource + { + public string PrivateIPAddress { get; set; } + public string PrivateIPAllocationMethod { get; set; } + public PSResourceId Subnet { get; set; } + public PSResourceId PublicIPAddress { get; set; } + public string ProvisioningState { get; set; } + + [JsonIgnore] + public string SubnetText + { + get { return JsonConvert.SerializeObject(Subnet, Formatting.Indented); } + } + + [JsonIgnore] + public string PublicIpAddressText + { + get { return JsonConvert.SerializeObject(PublicIPAddress, Formatting.Indented); } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayFrontendPort.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayFrontendPort.cs new file mode 100644 index 000000000000..77bbca7c5e58 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayFrontendPort.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayFrontendPort : PSChildResource + { + public int Port { get; set; } + public string ProvisioningState { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayHttpListener.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayHttpListener.cs new file mode 100644 index 000000000000..053ef4e59952 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayHttpListener.cs @@ -0,0 +1,46 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayHttpListener : PSChildResource + { + public PSResourceId FrontendIpConfiguration { get; set; } + public PSResourceId FrontendPort { get; set; } + public string Protocol { get; set; } + public PSResourceId SslCertificate { get; set; } + public string ProvisioningState { get; set; } + + [JsonIgnore] + public string FrontendIpConfigurationText + { + get { return JsonConvert.SerializeObject(FrontendIpConfiguration, Formatting.Indented); } + } + + [JsonIgnore] + public string FrontendPortText + { + get { return JsonConvert.SerializeObject(FrontendPort, Formatting.Indented); } + } + + [JsonIgnore] + public string SslCertificateText + { + get { return JsonConvert.SerializeObject(SslCertificate, Formatting.Indented); } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayIPConfiguration.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayIPConfiguration.cs new file mode 100644 index 000000000000..f9c38b6f583c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayIPConfiguration.cs @@ -0,0 +1,32 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Collections.Generic; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayIPConfiguration : PSChildResource + { + public PSResourceId Subnet { get; set; } + public string ProvisioningState { get; set; } + + [JsonIgnore] + public string SubnetText + { + get { return JsonConvert.SerializeObject(Subnet, Formatting.Indented); } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayRequestRoutingRule.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayRequestRoutingRule.cs new file mode 100644 index 000000000000..eb0d9583884a --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewayRequestRoutingRule.cs @@ -0,0 +1,47 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Collections.Generic; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayRequestRoutingRule : PSChildResource + { + public string RuleType { get; set; } + public PSResourceId BackendAddressPool { get; set; } + public PSResourceId BackendHttpSettings { get; set; } + public PSResourceId HttpListener { get; set; } + public string ProvisioningState { get; set; } + + [JsonIgnore] + public string BackendAddressPoolText + { + get { return JsonConvert.SerializeObject(BackendAddressPool, Formatting.Indented); } + } + + [JsonIgnore] + public string BackendHttpSettingsText + { + get { return JsonConvert.SerializeObject(BackendHttpSettings, Formatting.Indented); } + } + + [JsonIgnore] + public string HttpListenerText + { + get { return JsonConvert.SerializeObject(HttpListener, Formatting.Indented); } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewaySku.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewaySku.cs new file mode 100644 index 000000000000..2312fd509d4a --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewaySku.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewaySku + { + public string Name { get; set; } + public string Tier { get; set; } + public int Capacity { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewaySslCertificate.cs b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewaySslCertificate.cs new file mode 100644 index 000000000000..95b70978e1c5 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSApplicationGatewaySslCertificate.cs @@ -0,0 +1,25 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewaySslCertificate : PSChildResource + { + public string Data { get; set; } + public string Password { get; set; } + public string PublicCertData { get; set; } + public string ProvisioningState { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSBackendAddressPool.cs b/src/ResourceManager/Network/Commands.Network/Models/PSBackendAddressPool.cs index f0222f47c9e4..fe9e69db16cc 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSBackendAddressPool.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSBackendAddressPool.cs @@ -21,10 +21,13 @@ namespace Microsoft.Azure.Commands.Network.Models public class PSBackendAddressPool : PSChildResource { + [JsonProperty(Order = 1)] public List BackendIpConfigurations { get; set; } + [JsonProperty(Order = 1)] public List LoadBalancingRules { get; set; } + [JsonProperty(Order = 1)] public string ProvisioningState { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSFrontendIpConfiguration.cs b/src/ResourceManager/Network/Commands.Network/Models/PSFrontendIpConfiguration.cs index f1c448abeb97..d20499895e72 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSFrontendIpConfiguration.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSFrontendIpConfiguration.cs @@ -21,18 +21,25 @@ namespace Microsoft.Azure.Commands.Network.Models public class PSFrontendIPConfiguration : PSChildResource { + [JsonProperty(Order = 1)] public string PrivateIpAddress { get; set; } + [JsonProperty(Order = 1)] public string PrivateIpAllocationMethod { get; set; } + [JsonProperty(Order = 1)] public PSResourceId Subnet { get; set; } + [JsonProperty(Order = 1)] public PSResourceId PublicIpAddress { get; set; } + [JsonProperty(Order = 1)] public List InboundNatRules { get; set; } + [JsonProperty(Order = 1)] public List LoadBalancingRules { get; set; } + [JsonProperty(Order = 1)] public string ProvisioningState { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSInboundNatRule.cs b/src/ResourceManager/Network/Commands.Network/Models/PSInboundNatRule.cs index e8e6c1727c40..035c64150a90 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSInboundNatRule.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSInboundNatRule.cs @@ -19,20 +19,28 @@ namespace Microsoft.Azure.Commands.Network.Models public class PSInboundNatRule : PSChildResource { + [JsonProperty(Order = 1)] public PSResourceId FrontendIPConfiguration { get; set; } + [JsonProperty(Order = 1)] public PSResourceId BackendIPConfiguration { get; set; } + [JsonProperty(Order = 1)] public string Protocol { get; set; } + [JsonProperty(Order = 1)] public int FrontendPort { get; set; } + [JsonProperty(Order = 1)] public int BackendPort { get; set; } + [JsonProperty(Order = 1)] public int? IdleTimeoutInMinutes { get; set; } + [JsonProperty(Order = 1)] public bool EnableFloatingIP { get; set; } + [JsonProperty(Order = 1)] public string ProvisioningState { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSLoadBalancingRule.cs b/src/ResourceManager/Network/Commands.Network/Models/PSLoadBalancingRule.cs index 3f5d8aaa3a0f..1458351c6e63 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSLoadBalancingRule.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSLoadBalancingRule.cs @@ -19,24 +19,34 @@ namespace Microsoft.Azure.Commands.Network.Models public class PSLoadBalancingRule : PSChildResource { + [JsonProperty(Order = 1)] public PSResourceId FrontendIPConfiguration { get; set; } + [JsonProperty(Order = 1)] public PSResourceId BackendAddressPool { get; set; } + [JsonProperty(Order = 1)] public PSResourceId Probe { get; set; } + [JsonProperty(Order = 1)] public string Protocol { get; set; } + [JsonProperty(Order = 1)] public int FrontendPort { get; set; } + [JsonProperty(Order = 1)] public int BackendPort { get; set; } + [JsonProperty(Order = 1)] public int? IdleTimeoutInMinutes { get; set; } + [JsonProperty(Order = 1)] public string LoadDistribution { get; set; } + [JsonProperty(Order = 1)] public bool EnableFloatingIP { get; set; } + [JsonProperty(Order = 1)] public string ProvisioningState { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs b/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs index a355fd058b20..5ef1080dd50a 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs @@ -24,14 +24,16 @@ public class PSNetworkInterface : PSTopLevelResource public List IpConfigurations { get; set; } - public PSDnsSettings DnsSettings { get; set; } + public PSNetworkInterfaceDnsSettings DnsSettings { get; set; } public string MacAddress { get; set; } public bool Primary { get; set; } - public PSResourceId NetworkSecurityGroup { get; set; } + public bool EnableIPForwarding { get; set; } + public PSResourceId NetworkSecurityGroup { get; set; } + public string ProvisioningState { get; set; } [JsonIgnore] @@ -49,7 +51,7 @@ public string IpConfigurationsText [JsonIgnore] public string DnsSettingsText { - get { return JsonConvert.SerializeObject(DnsSettings, Formatting.Indented); } + get { return JsonConvert.SerializeObject(this.DnsSettings, Formatting.Indented); } } [JsonIgnore] diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSDnsSettings.cs b/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterfaceDnsSettings.cs similarity index 86% rename from src/ResourceManager/Network/Commands.Network/Models/PSDnsSettings.cs rename to src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterfaceDnsSettings.cs index 5d6e280ed29c..636a00ac4472 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSDnsSettings.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterfaceDnsSettings.cs @@ -16,10 +16,14 @@ namespace Microsoft.Azure.Commands.Network.Models { - public class PSDnsSettings + public class PSNetworkInterfaceDnsSettings { public List DnsServers { get; set; } public List AppliedDnsServers { get; set; } + + public string InternalDnsNameLabel { get; set; } + + public string InternalFqdn { get; set; } } } diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterfaceIpConfiguration.cs b/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterfaceIpConfiguration.cs index c78f7699025a..e58c5dd330c1 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterfaceIpConfiguration.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterfaceIpConfiguration.cs @@ -20,18 +20,25 @@ namespace Microsoft.Azure.Commands.Network.Models public class PSNetworkInterfaceIpConfiguration : PSChildResource { + [JsonProperty(Order = 1)] public string PrivateIpAddress { get; set; } + [JsonProperty(Order = 1)] public string PrivateIpAllocationMethod { get; set; } + [JsonProperty(Order = 1)] public PSResourceId Subnet { get; set; } + [JsonProperty(Order = 1)] public PSResourceId PublicIpAddress { get; set; } + [JsonProperty(Order = 1)] public List LoadBalancerBackendAddressPools { get; set; } + [JsonProperty(Order = 1)] public List LoadBalancerInboundNatRules { get; set; } + [JsonProperty(Order = 1)] public string ProvisioningState { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSProbe.cs b/src/ResourceManager/Network/Commands.Network/Models/PSProbe.cs index 75105b42bcaf..b090bf5ea697 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSProbe.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSProbe.cs @@ -21,18 +21,25 @@ namespace Microsoft.Azure.Commands.Network.Models public class PSProbe : PSChildResource { + [JsonProperty(Order = 1)] public List LoadBalancingRules { get; set; } + [JsonProperty(Order = 1)] public string Protocol { get; set; } + [JsonProperty(Order = 1)] public int Port { get; set; } + [JsonProperty(Order = 1)] public int IntervalInSeconds { get; set; } + [JsonProperty(Order = 1)] public int NumberOfProbes { get; set; } + [JsonProperty(Order = 1)] public string RequestPath { get; set; } + [JsonProperty(Order = 1)] public string ProvisioningState { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSRoute.cs b/src/ResourceManager/Network/Commands.Network/Models/PSRoute.cs new file mode 100644 index 000000000000..838c8e5470b0 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSRoute.cs @@ -0,0 +1,34 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Microsoft.Azure.Commands.Network.Models +{ + using Newtonsoft.Json; + + public class PSRoute : PSChildResource + { + [JsonProperty(Order = 1)] + public string AddressPrefix { get; set; } + + [JsonProperty(Order = 1)] + public string NextHopType { get; set; } + + [JsonProperty(Order = 1)] + public string NextHopIpAddress { get; set; } + + [JsonProperty(Order = 1)] + public string ProvisioningState { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSRouteTable.cs b/src/ResourceManager/Network/Commands.Network/Models/PSRouteTable.cs new file mode 100644 index 000000000000..a4d4d7ec5bbc --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSRouteTable.cs @@ -0,0 +1,42 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Microsoft.Azure.Commands.Network.Models +{ + using System.Collections.Generic; + + using Newtonsoft.Json; + + public class PSRouteTable : PSTopLevelResource + { + public List Routes { get; set; } + + public List Subnets { get; set; } + + public string ProvisioningState { get; set; } + + [JsonIgnore] + public string RoutesText + { + get { return JsonConvert.SerializeObject(Routes, Formatting.Indented); } + } + + [JsonIgnore] + public string SubnetsText + { + get { return JsonConvert.SerializeObject(Subnets, Formatting.Indented); } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule - Copy.cs b/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule - Copy.cs new file mode 100644 index 000000000000..cb61ec97cda3 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule - Copy.cs @@ -0,0 +1,40 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSSecurityRule : PSChildResource + { + public string Description { get; set; } + + public string Protocol { get; set; } + + public string SourcePortRange { get; set; } + + public string DestinationPortRange { get; set; } + + public string SourceAddressPrefix { get; set; } + + public string DestinationAddressPrefix { get; set; } + + public string Access { get; set; } + + public int Priority { get; set; } + + public string Direction { get; set; } + + public string ProvisioningState { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule.cs b/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule.cs index cb61ec97cda3..93892df2cfc6 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule.cs @@ -15,26 +15,38 @@ namespace Microsoft.Azure.Commands.Network.Models { + using Newtonsoft.Json; + public class PSSecurityRule : PSChildResource { + [JsonProperty(Order = 1)] public string Description { get; set; } + [JsonProperty(Order = 1)] public string Protocol { get; set; } + [JsonProperty(Order = 1)] public string SourcePortRange { get; set; } + [JsonProperty(Order = 1)] public string DestinationPortRange { get; set; } + [JsonProperty(Order = 1)] public string SourceAddressPrefix { get; set; } + [JsonProperty(Order = 1)] public string DestinationAddressPrefix { get; set; } + [JsonProperty(Order = 1)] public string Access { get; set; } + [JsonProperty(Order = 1)] public int Priority { get; set; } + [JsonProperty(Order = 1)] public string Direction { get; set; } + [JsonProperty(Order = 1)] public string ProvisioningState { get; set; } } } diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs b/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs index 9a3aaa36bffb..96877ccfd7b3 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs @@ -20,12 +20,19 @@ namespace Microsoft.Azure.Commands.Network.Models public class PSSubnet : PSChildResource { + [JsonProperty(Order = 1)] public string AddressPrefix { get; set; } + [JsonProperty(Order = 1)] public List IpConfigurations { get; set; } + [JsonProperty(Order = 1)] public PSResourceId NetworkSecurityGroup { get; set; } + [JsonProperty(Order = 1)] + public PSResourceId RouteTable { get; set; } + + [JsonProperty(Order = 1)] public string ProvisioningState { get; set; } [JsonIgnore] @@ -39,5 +46,11 @@ public string NetworkSecurityGroupText { get { return JsonConvert.SerializeObject(NetworkSecurityGroup, Formatting.Indented); } } + + [JsonIgnore] + public string RouteTableText + { + get { return JsonConvert.SerializeObject(RouteTable, Formatting.Indented); } + } } } diff --git a/src/ResourceManager/Network/Commands.Network/NetworkInterface/NewAzureNetworkInterfaceCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkInterface/NewAzureNetworkInterfaceCommand.cs index c1d09e893717..b7a22030e811 100644 --- a/src/ResourceManager/Network/Commands.Network/NetworkInterface/NewAzureNetworkInterfaceCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/NetworkInterface/NewAzureNetworkInterfaceCommand.cs @@ -143,6 +143,17 @@ public class NewAzureNetworkInterfaceCommand : NetworkInterfaceBaseCmdlet HelpMessage = "The list of Dns Servers")] public List DnsServer { get; set; } + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Internal Dns name")] + public string InternalDnsNameLabel { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "EnableIPForwarding")] + public SwitchParameter EnableIPForwarding { get; set; } + [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, @@ -196,18 +207,18 @@ private PSNetworkInterface CreateNetworkInterface() if (this.LoadBalancerBackendAddressPool != null) { + this.LoadBalancerBackendAddressPoolId = new List(); foreach (var bepool in this.LoadBalancerBackendAddressPool) { - this.LoadBalancerBackendAddressPoolId = new List(); this.LoadBalancerBackendAddressPoolId.Add(bepool.Id); } } if (this.LoadBalancerInboundNatRule != null) { + this.LoadBalancerInboundNatRuleId = new List(); foreach (var natRule in this.LoadBalancerInboundNatRule) { - this.LoadBalancerInboundNatRuleId = new List(); this.LoadBalancerInboundNatRuleId.Add(natRule.Id); } } @@ -216,6 +227,7 @@ private PSNetworkInterface CreateNetworkInterface() var networkInterface = new PSNetworkInterface(); networkInterface.Name = this.Name; networkInterface.Location = this.Location; + networkInterface.EnableIPForwarding = this.EnableIPForwarding.IsPresent; networkInterface.IpConfigurations = new List(); var nicIpConfiguration = new PSNetworkInterfaceIpConfiguration(); @@ -261,10 +273,18 @@ private PSNetworkInterface CreateNetworkInterface() } } - if (this.DnsServer != null) + if (this.DnsServer != null || this.InternalDnsNameLabel != null) { - networkInterface.DnsSettings = new PSDnsSettings(); - networkInterface.DnsSettings.DnsServers = this.DnsServer; + networkInterface.DnsSettings = new PSNetworkInterfaceDnsSettings(); + if (this.DnsServer != null) + { + networkInterface.DnsSettings.DnsServers = this.DnsServer; + } + if (this.InternalDnsNameLabel != null) + { + networkInterface.DnsSettings.InternalDnsNameLabel = this.InternalDnsNameLabel; + } + } networkInterface.IpConfigurations.Add(nicIpConfiguration); diff --git a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/RemoveAzureNetworkSecurityRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/RemoveAzureNetworkSecurityRuleConfigCommand.cs index e1166e30e690..744153a54299 100644 --- a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/RemoveAzureNetworkSecurityRuleConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/RemoveAzureNetworkSecurityRuleConfigCommand.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Remove, "AzureNetworkSecurityRuleConfig"), OutputType(typeof(PSSecurityRule))] + [Cmdlet(VerbsCommon.Remove, "AzureNetworkSecurityRuleConfig"), OutputType(typeof(PSNetworkSecurityGroup))] public class RemoveAzureNetworkSecurityRuleConfigCommand : NetworkBaseCmdlet { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs index d07dd6986d8e..647e89fc0ac5 100644 --- a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs @@ -83,9 +83,9 @@ public override void ExecuteCmdlet() } else { - var virtualNetwork = this.CreateNetworkSecurityGroup(); + var networkSecurityGroup = this.CreateNetworkSecurityGroup(); - WriteObject(virtualNetwork); + WriteObject(networkSecurityGroup); } } @@ -102,7 +102,7 @@ private PSNetworkSecurityGroup CreateNetworkSecurityGroup() nsgModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.NetworkSecurityGroupType; nsgModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true); - // Execute the Create VirtualNetwork call + // Execute the Create NetworkSecurityGroup call this.NetworkSecurityGroupClient.CreateOrUpdate(this.ResourceGroupName, this.Name, nsgModel); var getNetworkSecurityGroup = this.GetNetworkSecurityGroup(this.ResourceGroupName, this.Name); diff --git a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/SetAzureNetworkSecurityGroupCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/SetAzureNetworkSecurityGroupCommand.cs index 98dc8d3faea1..6011d9761270 100644 --- a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/SetAzureNetworkSecurityGroupCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/SetAzureNetworkSecurityGroupCommand.cs @@ -45,7 +45,7 @@ public override void ExecuteCmdlet() nsgModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.NetworkSecurityGroupType; nsgModel.Tags = TagsConversionHelper.CreateTagDictionary(this.NetworkSecurityGroup.Tag, validate: true); - // Execute the Create VirtualNetwork call + // Execute the PUT NetworkSecurityGroup call this.NetworkSecurityGroupClient.CreateOrUpdate(this.NetworkSecurityGroup.ResourceGroupName, this.NetworkSecurityGroup.Name, nsgModel); var getNetworkSecurityGroup = this.GetNetworkSecurityGroup(this.NetworkSecurityGroup.ResourceGroupName, this.NetworkSecurityGroup.Name); diff --git a/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs b/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs index 48be96949944..3b9314352545 100644 --- a/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34014 +// Runtime Version:4.0.30319.34209 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -63,49 +63,125 @@ internal Resources() { /// /// Looks up a localized string similar to backendAddressPools. /// - public static string LoadBalancerBackendAddressPoolName { + public static string ApplicationGatewayBackendAddressPoolName { get { - return ResourceManager.GetString("LoadBalancerBackendAddressPoolName", resourceCulture); + return ResourceManager.GetString("ApplicationGatewayBackendAddressPoolName", resourceCulture); } } /// - /// Looks up a localized string similar to /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Network/loadBalancers/{2}/{3}/{4}. + /// Looks up a localized string similar to backendHttpSettingsCollection. /// - public static string LoadBalancerChildResourceId { + public static string ApplicationGatewaybackendHttpSettingsName { get { - return ResourceManager.GetString("LoadBalancerChildResourceId", resourceCulture); + return ResourceManager.GetString("ApplicationGatewaybackendHttpSettingsName", resourceCulture); } } /// - /// Looks up a localized string similar to frontendIPConfigurations. + /// Looks up a localized string similar to /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Network/applicationGateways/{2}/{3}/{4}. /// - public static string LoadBalancerFrontendIpConfigName { + public static string ApplicationGatewayChildResourceId { get { - return ResourceManager.GetString("LoadBalancerFrontendIpConfigName", resourceCulture); + return ResourceManager.GetString("ApplicationGatewayChildResourceId", resourceCulture); } } - + /// - /// Looks up a localized string similar to /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Network/virtualNetworkGateways/{2}/{3}/{4}. + /// Looks up a localized string similar to frontendIpConfigurations. /// - public static string VirtualNetworkGatewayChildResourceId - { - get - { - return ResourceManager.GetString("VirtualNetworkGatewayChildResourceId", resourceCulture); + public static string ApplicationGatewayFrontendIpConfigName { + get { + return ResourceManager.GetString("ApplicationGatewayFrontendIpConfigName", resourceCulture); } } - + /// - /// Looks up a localized string similar to virtualNetworkGatewayIpConfigurations. + /// Looks up a localized string similar to frontendPorts. /// - public static string VirtualNetworkGatewayIpConfigName - { - get - { - return ResourceManager.GetString("VirtualNetworkGatewayIpConfigName", resourceCulture); + public static string ApplicationGatewayFrontendPortName { + get { + return ResourceManager.GetString("ApplicationGatewayFrontendPortName", resourceCulture); + } + } + /// + /// Looks up a localized string similar to httpListeners. + /// + public static string ApplicationGatewayHttpListenerName { + get { + return ResourceManager.GetString("ApplicationGatewayHttpListenerName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to gatewayIpConfigurations. + /// + public static string ApplicationGatewayIpConfigurationName { + get { + return ResourceManager.GetString("ApplicationGatewayIpConfigurationName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ApplicationGatewayNameNotSet. + /// + public static string ApplicationGatewayNameNotSet { + get { + return ResourceManager.GetString("ApplicationGatewayNameNotSet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to requestRoutingRules. + /// + public static string ApplicationGatewayRequestRoutingRuleName { + get { + return ResourceManager.GetString("ApplicationGatewayRequestRoutingRuleName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to sslCertificates. + /// + public static string ApplicationGatewaySslCertificateName { + get { + return ResourceManager.GetString("ApplicationGatewaySslCertificateName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to microsoft.network/applicationGateways. + /// + public static string ApplicationGatewayType { + get { + return ResourceManager.GetString("ApplicationGatewayType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to backendAddressPools. + /// + public static string LoadBalancerBackendAddressPoolName { + get { + return ResourceManager.GetString("LoadBalancerBackendAddressPoolName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Network/loadBalancers/{2}/{3}/{4}. + /// + public static string LoadBalancerChildResourceId { + get { + return ResourceManager.GetString("LoadBalancerChildResourceId", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to frontendIPConfigurations. + /// + public static string LoadBalancerFrontendIpConfigName { + get { + return ResourceManager.GetString("LoadBalancerFrontendIpConfigName", resourceCulture); } } @@ -154,6 +230,15 @@ public static string LoadBalancerType { } } + /// + /// Looks up a localized string similar to microsoft.network/localNetworkGateways. + /// + public static string LocalNetworkGatewayType { + get { + return ResourceManager.GetString("LocalNetworkGatewayType", resourceCulture); + } + } + /// /// Looks up a localized string similar to microsoft.network/networkInterfaces. /// @@ -245,7 +330,15 @@ public static string ResourceNotFound { } /// - /// Looks up a localized string similar to SetByResource. + /// Looks up a localized string similar to microsoft.network/routeTables. + /// + public static string RouteTableType { + get { + return ResourceManager.GetString("RouteTableType", resourceCulture); + } + } + + /// /// Looks up a localized string similar to SetByResource. /// public static string SetByResource { get { @@ -253,6 +346,24 @@ public static string SetByResource { } } + /// + /// Looks up a localized string similar to SetByFqdn. + /// + public static string SetByFqdn { + get { + return ResourceManager.GetString("SetByFqdn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SetByIP. + /// + public static string SetByIP { + get { + return ResourceManager.GetString("SetByIP", resourceCulture); + } + } + /// /// Looks up a localized string similar to SetByResourceId. /// @@ -272,55 +383,56 @@ public static string StaticIpAddressErrorMessage { } /// - /// Looks up a localized string similar to microsoft.network/virtualNetworks. + /// Looks up a localized string similar to /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Network/virtualNetworkGateways/{2}/{3}/{4}. /// - public static string VirtualNetworkType { + public static string VirtualNetworkGatewayChildResourceId { get { - return ResourceManager.GetString("VirtualNetworkType", resourceCulture); + return ResourceManager.GetString("VirtualNetworkGatewayChildResourceId", resourceCulture); } } - + /// - /// Looks up a localized string similar to microsoft.network/virtualnetworkgateways. + /// Looks up a localized string similar to microsoft.network/connections. /// - public static string VirtualNetworkGatewayType - { - get - { - return ResourceManager.GetString("VirtualNetworkGatewayType", resourceCulture); + public static string VirtualNetworkGatewayConnectionType { + get { + return ResourceManager.GetString("VirtualNetworkGatewayConnectionType", resourceCulture); } } - + /// - /// Looks up a localized string similar to microsoft.network/localNetworkGateways. + /// Looks up a localized string similar to virtualNetworkGatewayIpConfigurations. /// - public static string LocalNetworkGatewayType - { - get - { - return ResourceManager.GetString("LocalNetworkGatewayType", resourceCulture); + public static string VirtualNetworkGatewayIpConfigName { + get { + return ResourceManager.GetString("VirtualNetworkGatewayIpConfigName", resourceCulture); } } - + /// - /// Looks up a localized string similar to microsoft.network/connections. + /// Looks up a localized string similar to VirtualNetworkGatewayNameNotSet. /// - public static string VirtualNetworkGatewayConnectionType - { - get - { - return ResourceManager.GetString("VirtualNetworkGatewayConnectionType", resourceCulture); + public static string VirtualNetworkGatewayNameNotSet { + get { + return ResourceManager.GetString("VirtualNetworkGatewayNameNotSet", resourceCulture); } } - + /// - /// Looks up a localized string similar to VirtualNetworkGatewayNameNotSet. + /// Looks up a localized string similar to microsoft.network/virtualnetworkgateways. /// - public static string VirtualNetworkGatewayNameNotSet - { - get - { - return ResourceManager.GetString("VirtualNetworkGatewayNameNotSet", resourceCulture); + public static string VirtualNetworkGatewayType { + get { + return ResourceManager.GetString("VirtualNetworkGatewayType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to microsoft.network/virtualNetworks. + /// + public static string VirtualNetworkType { + get { + return ResourceManager.GetString("VirtualNetworkType", resourceCulture); } } } diff --git a/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx b/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx index f1ec8826a8aa..9391a761e400 100644 --- a/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx +++ b/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx @@ -131,7 +131,7 @@ /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Network/virtualNetworkGateways/{2}/{3}/{4} The ID of a virtual network gateway child resource - + virtualNetworkGatewayIpConfigurations @@ -191,16 +191,57 @@ microsoft.network/virtualNetworks - + microsoft.network/virtualnetworkgateways - + microsoft.network/localNetworkGateways - + microsoft.network/connections - + VirtualNetworkGatewayNameNotSet - \ No newline at end of file + + microsoft.network/routeTables + + backendAddressPools + + + backendHttpSettingsCollection + + + /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Network/applicationGateways/{2}/{3}/{4} + The ID of a application gateway child resource + + + frontendIpConfigurations + + + frontendPorts + + + httpListeners + + + gatewayIpConfigurations + + + ApplicationGatewayNameNotSet + + + requestRoutingRules + + + sslCertificates + + + microsoft.network/applicationGateways + + + SetByFqdn + + + SetByIP + \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/GetAzureCheckDnsAvailabilityCmdlet.cs b/src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/TestAzureDnsAvailabilityCmdlet.cs similarity index 84% rename from src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/GetAzureCheckDnsAvailabilityCmdlet.cs rename to src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/TestAzureDnsAvailabilityCmdlet.cs index 5023c70339f7..833559a54fe6 100644 --- a/src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/GetAzureCheckDnsAvailabilityCmdlet.cs +++ b/src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/TestAzureDnsAvailabilityCmdlet.cs @@ -17,8 +17,8 @@ namespace Microsoft.Azure.Commands.Network { - [Cmdlet(VerbsCommon.Get, "AzureCheckDnsAvailability")] - public class GetAzureCheckDnsAvailabilityCmdlet : NetworkBaseCmdlet + [Cmdlet(VerbsDiagnostic.Test, "AzureDnsAvailability"), OutputType(typeof(bool))] + public class TestAzureDnsAvailabilityCmdlet : NetworkBaseCmdlet { [Parameter( Mandatory = true, @@ -34,8 +34,9 @@ public class GetAzureCheckDnsAvailabilityCmdlet : NetworkBaseCmdlet public override void ExecuteCmdlet() { + this.Location = this.Location.Replace(" ", string.Empty); var result = this.NetworkClient.NetworkResourceProviderClient.CheckDnsNameAvailability(this.Location, this.DomainQualifiedName); - WriteObject(result); + WriteObject(result.DnsNameAvailability); } } } diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/GetAzureRouteTableCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/GetAzureRouteTableCommand.cs new file mode 100644 index 000000000000..ecb29f42c33c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/GetAzureRouteTableCommand.cs @@ -0,0 +1,82 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureRouteTable"), OutputType(typeof(PSRouteTable))] + public class GetAzureRouteTableCommand : RouteTableBaseCmdlet + { + [Alias("ResourceName")] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource name.")] + [ValidateNotNullOrEmpty] + public virtual string Name { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (!string.IsNullOrEmpty(this.Name)) + { + var routeTable = this.GetRouteTable(this.ResourceGroupName, this.Name); + + WriteObject(routeTable); + } + else if (!string.IsNullOrEmpty(this.ResourceGroupName)) + { + var routeTableGetResponse = this.RouteTableClient.List(this.ResourceGroupName); + + var psRouteTables = new List(); + + foreach (var routeTable in routeTableGetResponse.RouteTables) + { + var psRouteTable = this.ToPsRouteTable(routeTable); + psRouteTable.ResourceGroupName = this.ResourceGroupName; + psRouteTables.Add(psRouteTable); + } + + WriteObject(psRouteTables, true); + } + else + { + var nsgGetResponse = this.RouteTableClient.ListAll(); + + var psRouteTables = new List(); + + foreach (var routeTable in nsgGetResponse.RouteTables) + { + var psRouteTable = this.ToPsRouteTable(routeTable); + psRouteTable.ResourceGroupName = NetworkBaseCmdlet.GetResourceGroup(routeTable.Id); + psRouteTables.Add(psRouteTable); + } + + WriteObject(psRouteTables, true); + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/NewAzureRouteTableCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/NewAzureRouteTableCommand.cs new file mode 100644 index 000000000000..e5a734f74a1d --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/NewAzureRouteTableCommand.cs @@ -0,0 +1,113 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using AutoMapper; +using Microsoft.Azure.Commands.Tags.Model; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Resources.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureRouteTable"), OutputType(typeof(PSRouteTable))] + public class NewAzureRouteTableCommand : RouteTableBaseCmdlet + { + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource name.")] + [ValidateNotNullOrEmpty] + public virtual string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "location.")] + [ValidateNotNullOrEmpty] + public virtual string Location { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of Routes")] + public List Route { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "An array of hashtables which represents resource tags.")] + public Hashtable[] Tag { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Do not ask for confirmation if you want to overrite a resource")] + public SwitchParameter Force { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (this.IsRouteTablePresent(this.ResourceGroupName, this.Name)) + { + ConfirmAction( + Force.IsPresent, + string.Format(Microsoft.Azure.Commands.Network.Properties.Resources.OverwritingResource, Name), + Microsoft.Azure.Commands.Network.Properties.Resources.OverwritingResourceMessage, + Name, + () => this.CreateRouteTable()); + + WriteObject(this.GetRouteTable(this.ResourceGroupName, this.Name)); + } + else + { + var routeTable = this.CreateRouteTable(); + + WriteObject(routeTable); + } + } + + private PSRouteTable CreateRouteTable() + { + var psRouteTable = new PSRouteTable(); + psRouteTable.Name = this.Name; + psRouteTable.ResourceGroupName = this.ResourceGroupName; + psRouteTable.Location = this.Location; + psRouteTable.Routes = this.Route; + + // Map to the sdk object + var routeTableModel = Mapper.Map(psRouteTable); + routeTableModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.RouteTableType; + routeTableModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true); + + // Execute the Create RouteTable call + this.RouteTableClient.CreateOrUpdate(this.ResourceGroupName, this.Name, routeTableModel); + + var getRouteTable = this.GetRouteTable(this.ResourceGroupName, this.Name); + + return getRouteTable; + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/RemoveAzureRouteTableCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/RemoveAzureRouteTableCommand.cs new file mode 100644 index 000000000000..a0e3162a6221 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/RemoveAzureRouteTableCommand.cs @@ -0,0 +1,64 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Management.Network; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureRouteTable")] + public class RemoveAzureRouteTableCommand : RouteTableBaseCmdlet + { + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource name.")] + [ValidateNotNullOrEmpty] + public virtual string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + ConfirmAction( + Force.IsPresent, + string.Format(Microsoft.Azure.Commands.Network.Properties.Resources.RemovingResource, Name), + Microsoft.Azure.Commands.Network.Properties.Resources.RemoveResourceMessage, + Name, + () => this.RouteTableClient.Delete(this.ResourceGroupName, this.Name)); + + if (PassThru) + { + WriteObject(true); + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AddAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AddAzureRouteConfigCommand.cs new file mode 100644 index 000000000000..a4ec27d53b36 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AddAzureRouteConfigCommand.cs @@ -0,0 +1,61 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, "AzureRouteConfig"), OutputType(typeof(PSRouteTable))] + public class AddAzureRouteConfigCommand : AzureRouteConfigBase + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the route")] + [ValidateNotNullOrEmpty] + public override string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The RouteTable")] + public PSRouteTable RouteTable { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + // Verify if the Route exists in the RouteTable + var route = this.RouteTable.Routes.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (route != null) + { + throw new ArgumentException("Route with the specified name already exists"); + } + + route = new PSRoute(); + + route.Name = this.Name; + route.AddressPrefix = this.AddressPrefix; + route.NextHopType = this.NextHopType; + route.NextHopIpAddress = this.NextHopIpAddress; + + this.RouteTable.Routes.Add(route); + + WriteObject(this.RouteTable); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AzureRouteConfigBase.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AzureRouteConfigBase.cs new file mode 100644 index 000000000000..46ad2e7a4283 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AzureRouteConfigBase.cs @@ -0,0 +1,54 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureRouteConfigBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the route")] + [ValidateNotNullOrEmpty] + public virtual string Name { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The destination CIDR to which the route applies")] + [ValidateNotNullOrEmpty] + public string AddressPrefix { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The type of Azure hop the packet should be sent to.")] + [ValidateSet( + MNM.RouteNextHopType.Internet, + MNM.RouteNextHopType.None, + MNM.RouteNextHopType.VirtualAppliance, + MNM.RouteNextHopType.VirtualNetworkGateway, + MNM.RouteNextHopType.VnetLocal, + IgnoreCase = true)] + [ValidateNotNullOrEmpty] + public string NextHopType { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The IP address packets should be forwarded to. " + + "Next hop values are only allowed in routes where the " + + "next hop type is VirtualAppliance.")] + public string NextHopIpAddress { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/GetAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/GetAzureRouteConfigCommand.cs new file mode 100644 index 000000000000..f0c73e792006 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/GetAzureRouteConfigCommand.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, "AzureRouteConfig"), OutputType(typeof(PSRoute))] + public class GetAzureRouteConfigCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The name of the route")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The RouteTable")] + public PSRouteTable RouteTable { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var routes = this.RouteTable.Routes; + + if (!string.IsNullOrEmpty(this.Name)) + { + var route = + routes.First( + resource => + string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + WriteObject(route); + } + else + { + WriteObject(routes, true); + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/NewAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/NewAzureRouteConfigCommand.cs new file mode 100644 index 000000000000..a7682a462001 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/NewAzureRouteConfigCommand.cs @@ -0,0 +1,43 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureRouteConfig"), OutputType(typeof(PSRoute))] + public class NewAzureRouteConfigCommand : AzureRouteConfigBase + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the route")] + [ValidateNotNullOrEmpty] + public override string Name { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var route = new PSRoute(); + + route.Name = this.Name; + route.AddressPrefix = this.AddressPrefix; + route.NextHopType = this.NextHopType; + route.NextHopIpAddress = this.NextHopIpAddress; + + WriteObject(route); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/RemoveAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/RemoveAzureRouteConfigCommand.cs new file mode 100644 index 000000000000..25319cecaa39 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/RemoveAzureRouteConfigCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureRouteConfig"), OutputType(typeof(PSRouteTable))] + public class RemoveAzurReouteConfigCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the route")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The RouteTable")] + public PSRouteTable RouteTable { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + // Verify if the route exists in the RouteTable + var route = this.RouteTable.Routes.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (route != null) + { + this.RouteTable.Routes.Remove(route); + } + + WriteObject(this.RouteTable); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/SetAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/SetAzureRouteConfigCommand.cs new file mode 100644 index 000000000000..77041ae07150 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/SetAzureRouteConfigCommand.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureRouteConfig"), OutputType(typeof(PSRouteTable))] + public class SetAzureRouteConfigCommand : AzureRouteConfigBase + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the route")] + [ValidateNotNullOrEmpty] + public override string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The RouteTable")] + public PSRouteTable RouteTable { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + // Verify if the subnet exists in the NetworkSecurityGroup + var route = this.RouteTable.Routes.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (route == null) + { + throw new ArgumentException("route with the specified name does not exist"); + } + + route.Name = this.Name; + route.AddressPrefix = this.AddressPrefix; + route.NextHopType = this.NextHopType; + route.NextHopIpAddress = this.NextHopIpAddress; + + WriteObject(this.RouteTable); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/RouteTableBaseCmdlet.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/RouteTableBaseCmdlet.cs new file mode 100644 index 000000000000..9bdf87fcd6ed --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/RouteTableBaseCmdlet.cs @@ -0,0 +1,79 @@ + +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Net; +using AutoMapper; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Tags.Model; +using Microsoft.Azure.Management.Network; + +using Hyak.Common; + +namespace Microsoft.Azure.Commands.Network +{ + using Microsoft.Azure.Management.Network.Models; + + public abstract class RouteTableBaseCmdlet : NetworkBaseCmdlet + { + public IRouteTableOperations RouteTableClient + { + get + { + return NetworkClient.NetworkResourceProviderClient.RouteTables; + } + } + + public bool IsRouteTablePresent(string resourceGroupName, string name) + { + try + { + this.GetRouteTable(resourceGroupName, name); + } + catch (CloudException exception) + { + if (exception.Response.StatusCode == HttpStatusCode.NotFound) + { + // Resource is not present + return false; + } + + throw; + } + + return true; + } + + public PSRouteTable GetRouteTable(string resourceGroupName, string name) + { + var getRouteTableResponse = this.RouteTableClient.Get(resourceGroupName, name); + + var routeTable = Mapper.Map(getRouteTableResponse.RouteTable); + routeTable.ResourceGroupName = resourceGroupName; + + routeTable.Tag = TagsConversionHelper.CreateTagHashtable(getRouteTableResponse.RouteTable.Tags); + + return routeTable; + } + + public PSRouteTable ToPsRouteTable(RouteTable routeTable) + { + var psRouteTable = Mapper.Map(routeTable); + + psRouteTable.Tag = TagsConversionHelper.CreateTagHashtable(routeTable.Tags); + + return psRouteTable; + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/SetAzureRouteTableCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/SetAzureRouteTableCommand.cs new file mode 100644 index 000000000000..da3b09124ecb --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/RouteTable/SetAzureRouteTableCommand.cs @@ -0,0 +1,55 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using AutoMapper; +using Microsoft.Azure.Commands.Tags.Model; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Commands.Network.Models; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, "AzureRouteTable"), OutputType(typeof(PSRouteTable))] + public class SetAzureRouteTableCommand : RouteTableBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The RouteTable")] + public PSRouteTable RouteTable { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (!this.IsRouteTablePresent(this.RouteTable.ResourceGroupName, this.RouteTable.Name)) + { + throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound); + } + + // Map to the sdk object + var routeTableModel = Mapper.Map(this.RouteTable); + routeTableModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.RouteTableType; + routeTableModel.Tags = TagsConversionHelper.CreateTagDictionary(this.RouteTable.Tag, validate: true); + + // Execute the PUT RouteTable call + this.RouteTableClient.CreateOrUpdate(this.RouteTable.ResourceGroupName, this.RouteTable.Name, routeTableModel); + + var getRouteTable = this.GetRouteTable(this.RouteTable.ResourceGroupName, this.RouteTable.Name); + WriteObject(getRouteTable); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs index a95820e0c3c6..4240d56a1f17 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs @@ -52,6 +52,11 @@ public override void ExecuteCmdlet() { this.NetworkSecurityGroupId = this.NetworkSecurityGroup.Id; } + + if (this.RouteTable != null) + { + this.RouteTableId = this.RouteTable.Id; + } } subnet = new PSSubnet(); @@ -65,6 +70,12 @@ public override void ExecuteCmdlet() subnet.NetworkSecurityGroup.Id = this.NetworkSecurityGroupId; } + if (!string.IsNullOrEmpty(this.RouteTableId)) + { + subnet.RouteTable = new PSResourceId(); + subnet.RouteTable.Id = this.RouteTableId; + } + this.VirtualNetwork.Subnets.Add(subnet); WriteObject(this.VirtualNetwork); diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs index 752ba918b4ab..562a7aa31056 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs @@ -45,5 +45,19 @@ public class AzureVirtualNetworkSubnetConfigBase : NetworkBaseCmdlet ParameterSetName = "SetByResource", HelpMessage = "NetworkSecurityGroup")] public PSNetworkSecurityGroup NetworkSecurityGroup { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SetByResourceId", + HelpMessage = "RouteTableId")] + public string RouteTableId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SetByResource", + HelpMessage = "RouteTable")] + public PSRouteTable RouteTable { get; set; } } } diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs index e5b2f268827f..971687e4c087 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs @@ -36,6 +36,11 @@ public override void ExecuteCmdlet() { this.NetworkSecurityGroupId = this.NetworkSecurityGroup.Id; } + + if (this.RouteTable != null) + { + this.RouteTableId = this.RouteTable.Id; + } } var subnet = new PSSubnet(); @@ -48,6 +53,12 @@ public override void ExecuteCmdlet() subnet.NetworkSecurityGroup.Id = this.NetworkSecurityGroupId; } + if (!string.IsNullOrEmpty(this.RouteTableId)) + { + subnet.RouteTable = new PSResourceId(); + subnet.RouteTable.Id = this.RouteTableId; + } + WriteObject(subnet); } } diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs index 3cf676d81769..0f0237c016eb 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs @@ -52,6 +52,11 @@ public override void ExecuteCmdlet() { this.NetworkSecurityGroupId = this.NetworkSecurityGroup.Id; } + + if (this.RouteTable != null) + { + this.RouteTableId = this.RouteTable.Id; + } } subnet.AddressPrefix = this.AddressPrefix; @@ -62,6 +67,12 @@ public override void ExecuteCmdlet() subnet.NetworkSecurityGroup.Id = this.NetworkSecurityGroupId; } + if (!string.IsNullOrEmpty(this.RouteTableId)) + { + subnet.RouteTable = new PSResourceId(); + subnet.RouteTable.Id = this.RouteTableId; + } + WriteObject(this.VirtualNetwork); } } diff --git a/src/ResourceManager/Network/Commands.Network/packages.config b/src/ResourceManager/Network/Commands.Network/packages.config index 0e8483abe794..69398476d71a 100644 --- a/src/ResourceManager/Network/Commands.Network/packages.config +++ b/src/ResourceManager/Network/Commands.Network/packages.config @@ -8,9 +8,8 @@ - + - diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj index 6f57e5632fac..810f182231f2 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj @@ -56,8 +56,9 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - ..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll + + False + ..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -162,13 +163,16 @@ PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest + + + PreserveNewest diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs index 12b1efff8128..8fd5f15be630 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs @@ -40,5 +40,12 @@ public void TestRedisCachePipeline() { RunPowerShellTest("Test-RedisCachePipeline"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSetRedisCacheBugFixTest() + { + RunPowerShellTest("Test-SetRedisCacheBugFixTest"); + } } } diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 index 08e8a9912f2f..ad9fe3e69fed 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 @@ -150,7 +150,7 @@ function Test-SetNonExistingRedisCacheTest $location = "North Central US" # Creating Cache - Assert-Throws {Set-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -MaxMemoryPolicy AllKeysLRU} + Assert-Throws {Set-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-random"} } } <# @@ -237,4 +237,25 @@ function Test-RedisCachePipeline # Delete cache Assert-True {Get-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName | Remove-AzureRedisCache -Force -PassThru} "Remove cache failed." +} + +<# +.SYNOPSIS +Tests bug fix in set redis cache. +#> +function Test-SetRedisCacheBugFixTest +{ + # Setup + # resource group should exists + $resourceGroupName = "Siddharth" + $cacheName = "siddharthchatrola" + $location = "North Central US" + + # Updating Cache + $cacheUpdated = Set-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -EnableNonSslPort $true + Assert-True { $cacheUpdated.EnableNonSslPort } + + $cacheUpdated2 = Set-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"} + Assert-AreEqual "allkeys-lru" $cacheUpdated2.RedisConfiguration.Item("maxmemory-policy") + Assert-True { $cacheUpdated2.EnableNonSslPort } } \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json new file mode 100644 index 000000000000..a5338808dcfc --- /dev/null +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json @@ -0,0 +1,236 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d34afb29-3727-40f2-bd5e-1a93e08c60ea" + ], + "x-rp-server-mvid": [ + "ab3b6d8f-58d8-4b26-88cf-56dfac613ddb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "dc991535-debb-470c-8fe6-4ec8e38ecefa" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150713T215524Z:dc991535-debb-470c-8fe6-4ec8e38ecefa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 21:55:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "11090a79-684b-4dac-8dad-d686e7645e0b" + ], + "x-rp-server-mvid": [ + "ab3b6d8f-58d8-4b26-88cf-56dfac613ddb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "3612d84f-91dd-4a30-a0c2-e7cd9fdf5211" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150713T215525Z:3612d84f-91dd-4a30-a0c2-e7cd9fdf5211" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 21:55:25 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "228" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": {\r\n \"primaryKey\": \"82xerhg0P27QVoRKKEWb2XdLsemKyJ+Fe4BmlHhItS8=\",\r\n \"secondaryKey\": \"W9q9jLz3ICEys0a7ao7T673xQ+gxIhLZl0eBDO4YgG4=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "620" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "85dde2a3-eabd-4f95-ac46-f9fd973764e0" + ], + "x-rp-server-mvid": [ + "ab3b6d8f-58d8-4b26-88cf-56dfac613ddb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "981c04ef-e83d-436a-bb27-d825eaa25bee" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150713T215525Z:981c04ef-e83d-436a-bb27-d825eaa25bee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 21:55:24 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "275" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"82xerhg0P27QVoRKKEWb2XdLsemKyJ+Fe4BmlHhItS8=\",\r\n \"secondaryKey\": \"W9q9jLz3ICEys0a7ao7T673xQ+gxIhLZl0eBDO4YgG4=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "652" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eaeff665-e073-44b2-b9cc-bc49a209369c" + ], + "x-rp-server-mvid": [ + "ab3b6d8f-58d8-4b26-88cf-56dfac613ddb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "cbc65150-86a3-4b48-9577-fa6f89bcf69d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150713T215526Z:cbc65150-86a3-4b48-9577-fa6f89bcf69d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 21:55:25 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b" + } +} \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config index d2ef09aa5968..3bc06a3f34c6 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config @@ -4,10 +4,10 @@ + - diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj index 48a0e58cd1ed..09df6323d35b 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj @@ -59,9 +59,9 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - + False - ..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll + ..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll False diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs index a99315395b1e..3bff9915d4c4 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models using System.Collections; using System.Collections.Generic; - class RedisCacheAttributes + public class RedisCacheAttributes { public RedisCacheAttributes(RedisResource cache, string resourceGroupName) { @@ -31,7 +31,7 @@ public RedisCacheAttributes(RedisResource cache, string resourceGroupName) ProvisioningState = cache.Properties.ProvisioningState; SslPort = cache.Properties.SslPort; RedisConfiguration = cache.Properties.RedisConfiguration; - EnableNonSslPort = cache.Properties.EnableNonSslPort; + EnableNonSslPort = cache.Properties.EnableNonSslPort.Value; RedisVersion = cache.Properties.RedisVersion; Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Properties.Sku.Family, cache.Properties.Sku.Capacity); Sku = cache.Properties.Sku.Name; @@ -49,7 +49,7 @@ public RedisCacheAttributes(RedisGetResponse cache, string resourceGroupName) ProvisioningState = cache.Resource.Properties.ProvisioningState; SslPort = cache.Resource.Properties.SslPort; RedisConfiguration = cache.Resource.Properties.RedisConfiguration; - EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort; + EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort.Value; RedisVersion = cache.Resource.Properties.RedisVersion; Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Resource.Properties.Sku.Family, cache.Resource.Properties.Sku.Capacity); Sku = cache.Resource.Properties.Sku.Name; diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs index c7a8606673fe..ab28ef1c9e00 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models { using Microsoft.Azure.Management.Redis.Models; - class RedisCacheAttributesWithAccessKeys : RedisCacheAttributes + public class RedisCacheAttributesWithAccessKeys : RedisCacheAttributes { public RedisCacheAttributesWithAccessKeys(RedisCreateOrUpdateResponse cache, string resourceGroupName) { @@ -29,7 +29,7 @@ public RedisCacheAttributesWithAccessKeys(RedisCreateOrUpdateResponse cache, str ProvisioningState = cache.Resource.Properties.ProvisioningState; SslPort = cache.Resource.Properties.SslPort; RedisConfiguration = cache.Resource.Properties.RedisConfiguration; - EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort; + EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort.Value; RedisVersion = cache.Resource.Properties.RedisVersion; Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Resource.Properties.Sku.Family, cache.Resource.Properties.Sku.Capacity); Sku = cache.Resource.Properties.Sku.Name; diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config index 3ab71ae5e8c3..031ea715fde8 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config @@ -4,8 +4,8 @@ + - diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs index 0b3a3ddad57f..05b8ca0f26a5 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs @@ -129,7 +129,7 @@ protected override void OnProcessRecord() var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true) .WaitOnOperation(operationResult: operationResult); - this.TryConvertAndWriteObject(result, this.OutputObjectFormat.Value); + this.TryConvertToResourceAndWriteObject(result, this.OutputObjectFormat.Value); }); } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs index 6eed73f61fb6..62f0e6985864 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs @@ -277,6 +277,24 @@ protected void TryConvertAndWriteObject(string resultString, ResourceObjectForma } } + /// + /// Writes the object + /// + /// The result as a string + /// The + protected void TryConvertToResourceAndWriteObject(string resultString, ResourceObjectFormat objectFormat) + { + Resource resultResource; + if (resultString.TryConvertTo>(out resultResource)) + { + this.WriteObject(resultResource.ToPsObject(objectFormat)); + } + else + { + this.WriteObject(resultString); + } + } + /// /// Writes a object as a . /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs index 6287c131833a..d47782fbf631 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs @@ -123,8 +123,8 @@ protected override void OnProcessRecord() var activity = string.Format("{0} {1}", this.ShouldUsePatchSemantics() ? "PATCH" : "PUT", managementUri.PathAndQuery); var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true) .WaitOnOperation(operationResult: operationResult); - - this.TryConvertAndWriteObject(result, this.OutputObjectFormat.Value); + + this.TryConvertToResourceAndWriteObject(result, this.OutputObjectFormat.Value); }); } diff --git a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 deleted file mode 100644 index adecd3733f1e..000000000000 --- a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 +++ /dev/null @@ -1,135 +0,0 @@ -# -# Module manifest for module 'Microsoft.Azure.Commands.Resources' -# -# Generated by: Microsoft Corporation -# -# Generated on: 4/01/2014 -# - -@{ - -# Version number of this module. -ModuleVersion = '0.9.4' - -# ID used to uniquely identify this module -GUID = '81d522a4-6e5d-4105-8f58-376204c47458' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = '© Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = '' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '3.0' - -# Name of the Windows PowerShell host required by this module -PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -PowerShellHostVersion = '' - -# Minimum version of the .NET Framework required by this module -DotNetFrameworkVersion = '4.0' - -# Minimum version of the common language runtime (CLR) required by this module -CLRVersion='4.0' - -# Processor architecture (None, X86, Amd64, IA64) required by this module -ProcessorArchitecture = 'None' - -# Modules that must be imported into the global environment prior to importing this module -RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module -ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @( - '.\Compute\Microsoft.Azure.Commands.Compute.Types.ps1xml' -) - -# Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @( - '.\Resources\Microsoft.Azure.Commands.Resources.format.ps1xml', - '.\Tags\Microsoft.Azure.Commands.Tags.format.ps1xml', - '.\Resources\Microsoft.WindowsAzure.Commands.Profile.format.ps1xml', - '.\DataFactories\Microsoft.Azure.Commands.DataFactories.format.ps1xml', - '.\RedisCache\Microsoft.Azure.Commands.RedisCache.format.ps1xml', - '.\Batch\Microsoft.Azure.Commands.Batch.format.ps1xml', - '.\KeyVault\Microsoft.Azure.Commands.KeyVault.format.ps1xml', - '.\StreamAnalytics\Microsoft.Azure.Commands.StreamAnalytics.format.ps1xml', - '.\Compute\Microsoft.Azure.Commands.Compute.format.ps1xml', - '.\Compute\Microsoft.Azure.Commands.Compute.format.generated.ps1xml', - '.\Network\Microsoft.Azure.Commands.Network.format.ps1xml', - '.\Storage\Microsoft.WindowsAzure.Commands.Storage.format.ps1xml', - '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.format.ps1xml', - '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.format.ps1xml', - '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml' -) - -# Modules to import as nested modules of the module specified in ModuleToProcess -NestedModules = @( - '.\Automation\Microsoft.Azure.Commands.ResourceManager.Automation.dll', - '.\Resources\Microsoft.Azure.Commands.Resources.dll', - '.\Resources\Microsoft.WindowsAzure.Commands.Profile.dll', - '.\Tags\Microsoft.Azure.Commands.Tags.dll', - '.\Sql\Microsoft.Azure.Commands.Sql.dll', - '.\DataFactories\Microsoft.Azure.Commands.DataFactories.dll', - '.\RedisCache\Microsoft.Azure.Commands.RedisCache.dll', - '.\Batch\Microsoft.Azure.Commands.Batch.dll', - '.\Dns\Microsoft.Azure.Commands.Dns.dll', - '.\KeyVault\Microsoft.Azure.Commands.KeyVault.dll', - '.\TrafficManager\Microsoft.Azure.Commands.TrafficManager.dll', - '.\StreamAnalytics\Microsoft.Azure.Commands.StreamAnalytics.dll', - '.\Insights\Microsoft.Azure.Commands.Insights.dll', - '.\Websites\Microsoft.Azure.Commands.Websites.dll', - '.\Compute\Microsoft.Azure.Commands.Compute.dll', - '.\Network\Microsoft.Azure.Commands.Network.dll', - '.\Storage\Microsoft.WindowsAzure.Commands.Storage.dll', - '.\ResourceManager\Microsoft.Azure.Commands.ResourceManager.Cmdlets.dll', - '.\ApiManagement\Microsoft.Azure.Commands.ApiManagement.dll', - '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.dll', - '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.dll', - '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.dll' -) - -# Functions to export from this module -FunctionsToExport = '*' - -# Cmdlets to export from this module -CmdletsToExport = '*' - -# Variables to export from this module -VariablesToExport = '*' - -# Aliases to export from this module -AliasesToExport = @( - 'Get-AzureSqlDatabaseServerAuditingPolicy', - 'Remove-AzureSqlDatabaseServerAuditing', - 'Set-AzureSqlDatabaseServerAuditingPolicy', - 'Use-AzureSqlDatabaseServerAuditingPolicy', - 'Get-AzureStorageContainerAcl', - 'Start-CopyAzureStorageBlob', - 'Stop-CopyAzureStorageBlob' -) - -# List of all modules packaged with this module -ModuleList = @() - -# List of all files packaged with this module -FileList = @() - -# Private data to pass to the module specified in ModuleToProcess -PrivateData = '' - -} diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index d44df88d76fd..0f2cfdf062ec 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -240,6 +240,10 @@ {c60342b1-47d3-4a0e-8081-9b97ce60b7af} Commands.Profile + + {ed8ba708-af42-4c08-9f4e-daa1037797d5} + Commands.ApiManagement.ServiceManagement + {dc0a9742-df36-48c9-bd2f-68d01aed6257} Commands.ApiManagement diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index d75d01e7ab62..e9e9172eb175 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -70,6 +70,9 @@ ..\..\..\packages\Microsoft.Azure.Management.Sql.0.28.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll + + ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -281,6 +284,7 @@ PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 index 0d6ace228855..8d7aada0cca2 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 @@ -63,6 +63,17 @@ function Create-TestEnvironmentWithParams ($params) New-AzureResourceGroup -Name $params.rgname -Location "West US" -TemplateFile ".\Templates\sql-audit-test-env-setup.json" -serverName $params.serverName -databaseName $params.databaseName -EnvLocation "West US" -Force } +<# +.SYNOPSIS +Creates the test environment needed to perform the Sql auditing tests, while using storage V2 as the used storage account +#> +function Create-TestEnvironmentWithStorageV2 ($testSuffix) +{ + $params = Get-SqlAuditingTestEnvironmentParameters $testSuffix + New-AzureResourceGroup -Name $params.rgname -Location "West US" -TemplateFile ".\Templates\sql-audit-test-env-setup.json" -serverName $params.serverName -databaseName $params.databaseName -EnvLocation "West US" -Force + New-AzureStorageAccount -Name $params.storageAccount -Location "West US" -ResourceGroupName $params.rgname -Type "Standard_GRS" +} + <# .SYNOPSIS Creates the test environment needed to perform the Sql data masking tests diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SecurityTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SecurityTests.cs index cbe30ea6bc2d..9fe50f265ac9 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SecurityTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SecurityTests.cs @@ -12,6 +12,8 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Test; +using Microsoft.Azure.Test.HttpRecorder; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; @@ -19,6 +21,28 @@ namespace Microsoft.Azure.Commands.ScenarioTest.SqlTests { public class SecurityTests : SqlTestsBase { + protected Microsoft.Azure.Management.Storage.StorageManagementClient GetStorageV2Client() + { + var client = TestBase.GetServiceClient(new CSMTestEnvironmentFactory()); + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + client.LongRunningOperationInitialTimeout = 0; + client.LongRunningOperationRetryTimeout = 0; + } + return client; + } + + protected override void SetupManagementClients() + { + var sqlCSMClient = GetSqlClient(); // to interact with the security endpoints + var storageClient = GetStorageClient(); + var storageV2Client = GetStorageV2Client(); + var resourcesClient = GetResourcesClient(); + var authorizationClient = GetAuthorizationManagementClient(); + helper.SetupSomeOfManagementClients(sqlCSMClient, storageClient, storageV2Client, resourcesClient, authorizationClient); + } + + [Fact(Skip = "Skip for the version header upgrade on Storage library.")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseUpdatePolicyWithStorage() @@ -26,6 +50,13 @@ public void TestDatabaseUpdatePolicyWithStorage() RunPowerShellTest("Test-DatabaseUpdatePolicyWithStorage"); } + [Fact(Skip = "Skip for the version header upgrade on Storage library.")] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDatabaseUpdatePolicyWithStorageV2() + { + RunPowerShellTest("Test-DatabaseUpdatePolicyWithStorageV2"); + } + [Fact(Skip = "Skip for the version header upgrade on Storage library.")] [Trait(Category.RunType, Category.LiveOnly)] public void TestServerUpdatePolicyWithStorage() diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SecurityTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SecurityTests.ps1 index 12ea87c4e7a3..e79daf8b0071 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SecurityTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SecurityTests.ps1 @@ -12,6 +12,36 @@ # limitations under the License. # ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Tests that when setting the storage account property's value in a database's auditing policy, that value is later fetched properly +#> +function Test-DatabaseUpdatePolicyWithStorageV2 +{ + # Setup + $testSuffix = 102 + Create-TestEnvironmentWithStorageV2 $testSuffix + $params = Get-SqlAuditingTestEnvironmentParameters $testSuffix + + try + { + # Test + Set-AzureSqlDatabaseAuditingPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageAccountName $params.storageAccount + $policy = Get-AzureSqlDatabaseAuditingPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName + + # Assert + Assert-AreEqual $policy.StorageAccountName $params.storageAccount + Assert-AreEqual $policy.AuditState "Enabled" + Assert-AreEqual $policy.UseServerDefault "Disabled" + } + finally + { + # Cleanup + Remove-TestEnvironment $testSuffix + } +} + <# .SYNOPSIS Tests that when setting the storage account property's value in a database's auditing policy, that value is later fetched properly diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs index e22403cf56c6..3c108f01f8fa 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs @@ -26,14 +26,14 @@ namespace Microsoft.Azure.Commands.ScenarioTest.SqlTests { public class SqlTestsBase { - private EnvironmentSetupHelper helper; + protected EnvironmentSetupHelper helper; protected SqlTestsBase() { helper = new EnvironmentSetupHelper(); } - protected void SetupManagementClients() + protected virtual void SetupManagementClients() { var sqlCSMClient = GetSqlClient(); // to interact with the security endpoints var storageClient = GetStorageClient(); @@ -95,7 +95,7 @@ protected ResourceManagementClient GetResourcesClient() return client; } - private AuthorizationManagementClient GetAuthorizationManagementClient() + protected AuthorizationManagementClient GetAuthorizationManagementClient() { AuthorizationManagementClient client = TestBase.GetServiceClient(new CSMTestEnvironmentFactory()); if (HttpMockServer.Mode == HttpRecorderMode.Playback) @@ -104,7 +104,6 @@ private AuthorizationManagementClient GetAuthorizationManagementClient() client.LongRunningOperationRetryTimeout = 0; } return client; - } } } diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseDisableEnableKeepProperties.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseDisableEnableKeepProperties.json index 9e08327c9735..ff7ceeeff069 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseDisableEnableKeepProperties.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseDisableEnableKeepProperties.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "5c965d36fc5dbac0ab070ea1225cf095" + "0a7da1d5bf38c175b5c00601991d9d64" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:41:37 GMT" + "Mon, 13 Jul 2015 11:39:09 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets121" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5c965d36fc5dbac0ab070ea1225cf095", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzVjOTY1ZDM2ZmM1ZGJhYzBhYjA3MGVhMTIyNWNmMDk1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/0a7da1d5bf38c175b5c00601991d9d64", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzBhN2RhMWQ1YmYzOGMxNzViNWMwMDYwMTk5MWQ5ZDY0", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 5c965d36-fc5d-bac0-ab07-0ea1225cf095\r\n InProgress\r\n", + "ResponseBody": "\r\n 0a7da1d5-bf38-c175-b5c0-0601991d9d64\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "2ff824580730b263ae3b0882aa79a2a0" + "f365eac9e00cc46ba569551a88c43887" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:41:37 GMT" + "Mon, 13 Jul 2015 11:39:10 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5c965d36fc5dbac0ab070ea1225cf095", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzVjOTY1ZDM2ZmM1ZGJhYzBhYjA3MGVhMTIyNWNmMDk1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/0a7da1d5bf38c175b5c00601991d9d64", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzBhN2RhMWQ1YmYzOGMxNzViNWMwMDYwMTk5MWQ5ZDY0", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 5c965d36-fc5d-bac0-ab07-0ea1225cf095\r\n InProgress\r\n", + "ResponseBody": "\r\n 0a7da1d5-bf38-c175-b5c0-0601991d9d64\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "2b8b00cf46abb0ab8189d32e01680b63" + "87d281183e68cb369e4578be2cc184e5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:07 GMT" + "Mon, 13 Jul 2015 11:39:40 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5c965d36fc5dbac0ab070ea1225cf095", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzVjOTY1ZDM2ZmM1ZGJhYzBhYjA3MGVhMTIyNWNmMDk1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/0a7da1d5bf38c175b5c00601991d9d64", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzBhN2RhMWQ1YmYzOGMxNzViNWMwMDYwMTk5MWQ5ZDY0", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 5c965d36-fc5d-bac0-ab07-0ea1225cf095\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 0a7da1d5-bf38-c175-b5c0-0601991d9d64\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "ba28524b1d7cb649a98a93f4bc01f676" + "db2393d17448c956af800c68e5f8826c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:37 GMT" + "Mon, 13 Jul 2015 11:40:12 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14544" + "14859" ], "x-ms-request-id": [ - "d2aeef44-0796-4779-8a03-659969a3a3bf" + "26101415-3d7b-4211-8e82-dfb7d8f51fb8" ], "x-ms-correlation-request-id": [ - "d2aeef44-0796-4779-8a03-659969a3a3bf" + "26101415-3d7b-4211-8e82-dfb7d8f51fb8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094239Z:d2aeef44-0796-4779-8a03-659969a3a3bf" + "WESTEUROPE:20150713T114013Z:26101415-3d7b-4211-8e82-dfb7d8f51fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:38 GMT" + "Mon, 13 Jul 2015 11:40:12 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-request-id": [ - "c66e69bf-a01f-4eac-b21c-1de6681bcc9c" + "52a6bedc-b668-45ce-acf8-080e0609399f" ], "x-ms-correlation-request-id": [ - "c66e69bf-a01f-4eac-b21c-1de6681bcc9c" + "52a6bedc-b668-45ce-acf8-080e0609399f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094240Z:c66e69bf-a01f-4eac-b21c-1de6681bcc9c" + "WESTEUROPE:20150713T114014Z:52a6bedc-b668-45ce-acf8-080e0609399f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:39 GMT" + "Mon, 13 Jul 2015 11:40:14 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T09:42:41.2823571Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"0c1a692e-81a5-483c-b84e-fd5f27c0e620\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:40:15.2381099Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"c2f676e9-1486-407e-a6eb-fbb541d08908\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1194" ], "x-ms-request-id": [ - "0c1a692e-81a5-483c-b84e-fd5f27c0e620" + "c2f676e9-1486-407e-a6eb-fbb541d08908" ], "x-ms-correlation-request-id": [ - "0c1a692e-81a5-483c-b84e-fd5f27c0e620" + "c2f676e9-1486-407e-a6eb-fbb541d08908" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094241Z:0c1a692e-81a5-483c-b84e-fd5f27c0e620" + "WESTEUROPE:20150713T114015Z:c2f676e9-1486-407e-a6eb-fbb541d08908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:40 GMT" + "Mon, 13 Jul 2015 11:40:15 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T09:42:43.3542365Z\",\r\n \"duration\": \"PT1.2875929S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:40:17.0203501Z\",\r\n \"duration\": \"PT1.0210784S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1193" ], "x-ms-request-id": [ - "4ab1ca50-468a-4fb1-bda7-f6d9e41587df" + "1316525b-2108-4e4e-8de9-fdfb97326e49" ], "x-ms-correlation-request-id": [ - "4ab1ca50-468a-4fb1-bda7-f6d9e41587df" + "1316525b-2108-4e4e-8de9-fdfb97326e49" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094244Z:4ab1ca50-468a-4fb1-bda7-f6d9e41587df" + "WESTEUROPE:20150713T114017Z:1316525b-2108-4e4e-8de9-fdfb97326e49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:43 GMT" + "Mon, 13 Jul 2015 11:40:17 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14543" + "14858" ], "x-ms-request-id": [ - "b6b28ab0-8e0d-4b0c-9d17-40840b0aefd5" + "138f61a9-c7dc-4486-be53-b3684eac87bb" ], "x-ms-correlation-request-id": [ - "b6b28ab0-8e0d-4b0c-9d17-40840b0aefd5" + "138f61a9-c7dc-4486-be53-b3684eac87bb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094244Z:b6b28ab0-8e0d-4b0c-9d17-40840b0aefd5" + "WESTEUROPE:20150713T114018Z:138f61a9-c7dc-4486-be53-b3684eac87bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:44 GMT" + "Mon, 13 Jul 2015 11:40:18 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14541" + "14856" ], "x-ms-request-id": [ - "b3dce56a-587c-49ab-8203-466383b079ec" + "9b5fc380-6b37-4730-bf25-6d703aec81c9" ], "x-ms-correlation-request-id": [ - "b3dce56a-587c-49ab-8203-466383b079ec" + "9b5fc380-6b37-4730-bf25-6d703aec81c9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094247Z:b3dce56a-587c-49ab-8203-466383b079ec" + "WESTEUROPE:20150713T114021Z:9b5fc380-6b37-4730-bf25-6d703aec81c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:47 GMT" + "Mon, 13 Jul 2015 11:40:21 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14539" + "14854" ], "x-ms-request-id": [ - "fd27be2f-ba1a-43c7-ad2f-33557dd84358" + "8a3574f2-127c-4a62-8dea-8a70268eb71a" ], "x-ms-correlation-request-id": [ - "fd27be2f-ba1a-43c7-ad2f-33557dd84358" + "8a3574f2-127c-4a62-8dea-8a70268eb71a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094250Z:fd27be2f-ba1a-43c7-ad2f-33557dd84358" + "WESTEUROPE:20150713T114024Z:8a3574f2-127c-4a62-8dea-8a70268eb71a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:50 GMT" + "Mon, 13 Jul 2015 11:40:24 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14537" + "14852" ], "x-ms-request-id": [ - "4a42a383-7ddf-49b4-aa2f-13111ca0bcde" + "b0f5bcc9-353b-472a-8e85-060786d92792" ], "x-ms-correlation-request-id": [ - "4a42a383-7ddf-49b4-aa2f-13111ca0bcde" + "b0f5bcc9-353b-472a-8e85-060786d92792" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094253Z:4a42a383-7ddf-49b4-aa2f-13111ca0bcde" + "WESTEUROPE:20150713T114027Z:b0f5bcc9-353b-472a-8e85-060786d92792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:53 GMT" + "Mon, 13 Jul 2015 11:40:27 GMT" ] }, "StatusCode": 200 @@ -585,10 +585,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:42:56.238945Z\",\r\n \"duration\": \"PT12.1208459S\",\r\n \"trackingId\": \"a2531e65-dc74-415e-80d8-d1a7549c222a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:40:29.7701869Z\",\r\n \"duration\": \"PT11.3650906S\",\r\n \"trackingId\": \"93189b1d-2d4d-4981-adab-752ccda2ccbb\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14535" + "14850" ], "x-ms-request-id": [ - "9a442a52-721f-40b4-b477-89ea9d0633df" + "b60f3377-0dfd-42f0-bf31-5ad9cfb4e401" ], "x-ms-correlation-request-id": [ - "9a442a52-721f-40b4-b477-89ea9d0633df" + "b60f3377-0dfd-42f0-bf31-5ad9cfb4e401" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094256Z:9a442a52-721f-40b4-b477-89ea9d0633df" + "WESTEUROPE:20150713T114030Z:b60f3377-0dfd-42f0-bf31-5ad9cfb4e401" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:56 GMT" + "Mon, 13 Jul 2015 11:40:29 GMT" ] }, "StatusCode": 200 @@ -633,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:42:56.238945Z\",\r\n \"duration\": \"PT12.1208459S\",\r\n \"trackingId\": \"a2531e65-dc74-415e-80d8-d1a7549c222a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:40:29.7701869Z\",\r\n \"duration\": \"PT11.3650906S\",\r\n \"trackingId\": \"93189b1d-2d4d-4981-adab-752ccda2ccbb\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14533" + "14848" ], "x-ms-request-id": [ - "f3937e67-0cf6-4e68-b1fa-4ec9b0a6d90f" + "2e8f0bee-be61-4044-a2e6-519e86abc710" ], "x-ms-correlation-request-id": [ - "f3937e67-0cf6-4e68-b1fa-4ec9b0a6d90f" + "2e8f0bee-be61-4044-a2e6-519e86abc710" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094259Z:f3937e67-0cf6-4e68-b1fa-4ec9b0a6d90f" + "WESTEUROPE:20150713T114033Z:2e8f0bee-be61-4044-a2e6-519e86abc710" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:59 GMT" + "Mon, 13 Jul 2015 11:40:32 GMT" ] }, "StatusCode": 200 @@ -681,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:42:56.238945Z\",\r\n \"duration\": \"PT12.1208459S\",\r\n \"trackingId\": \"a2531e65-dc74-415e-80d8-d1a7549c222a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:40:29.7701869Z\",\r\n \"duration\": \"PT11.3650906S\",\r\n \"trackingId\": \"93189b1d-2d4d-4981-adab-752ccda2ccbb\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14531" + "14846" ], "x-ms-request-id": [ - "cc801e1d-f716-4926-80d0-3194a69b73ed" + "7821e0a5-eaf0-4a9b-83e8-ebb106ed14d9" ], "x-ms-correlation-request-id": [ - "cc801e1d-f716-4926-80d0-3194a69b73ed" + "7821e0a5-eaf0-4a9b-83e8-ebb106ed14d9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094302Z:cc801e1d-f716-4926-80d0-3194a69b73ed" + "WESTEUROPE:20150713T114036Z:7821e0a5-eaf0-4a9b-83e8-ebb106ed14d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:02 GMT" + "Mon, 13 Jul 2015 11:40:35 GMT" ] }, "StatusCode": 200 @@ -729,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:42:56.238945Z\",\r\n \"duration\": \"PT12.1208459S\",\r\n \"trackingId\": \"a2531e65-dc74-415e-80d8-d1a7549c222a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/A83328B581459D84\",\r\n \"operationId\": \"A83328B581459D84\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:40:36.9175624Z\",\r\n \"duration\": \"PT7.0722706S\",\r\n \"trackingId\": \"dd039aad-4d9a-4e25-9c3b-d4f90ecb03d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:40:29.7701869Z\",\r\n \"duration\": \"PT11.3650906S\",\r\n \"trackingId\": \"93189b1d-2d4d-4981-adab-752ccda2ccbb\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14529" + "14844" ], "x-ms-request-id": [ - "fc5e4f86-e672-487a-a883-33af448ba49a" + "bdd877fa-c951-4975-8df0-652fcf0aad2e" ], "x-ms-correlation-request-id": [ - "fc5e4f86-e672-487a-a883-33af448ba49a" + "bdd877fa-c951-4975-8df0-652fcf0aad2e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094305Z:fc5e4f86-e672-487a-a883-33af448ba49a" + "WESTEUROPE:20150713T114039Z:bdd877fa-c951-4975-8df0-652fcf0aad2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:05 GMT" + "Mon, 13 Jul 2015 11:40:39 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/A83328B581459D84\",\r\n \"operationId\": \"A83328B581459D84\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:43:06.1775797Z\",\r\n \"duration\": \"PT9.8498874S\",\r\n \"trackingId\": \"35957402-d1be-4c6a-841f-e6c5af43a651\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:42:56.238945Z\",\r\n \"duration\": \"PT12.1208459S\",\r\n \"trackingId\": \"a2531e65-dc74-415e-80d8-d1a7549c222a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/A83328B581459D84\",\r\n \"operationId\": \"A83328B581459D84\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:40:36.9175624Z\",\r\n \"duration\": \"PT7.0722706S\",\r\n \"trackingId\": \"dd039aad-4d9a-4e25-9c3b-d4f90ecb03d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup/operations/4E3E3392FA56B90F\",\r\n \"operationId\": \"4E3E3392FA56B90F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:40:29.7701869Z\",\r\n \"duration\": \"PT11.3650906S\",\r\n \"trackingId\": \"93189b1d-2d4d-4981-adab-752ccda2ccbb\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14527" + "14842" ], "x-ms-request-id": [ - "2fe13ef5-cc60-42af-917e-c4ee57b823e4" + "5ba9fcf3-25ed-473e-9b89-444e970f8a22" ], "x-ms-correlation-request-id": [ - "2fe13ef5-cc60-42af-917e-c4ee57b823e4" + "5ba9fcf3-25ed-473e-9b89-444e970f8a22" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094308Z:2fe13ef5-cc60-42af-917e-c4ee57b823e4" + "WESTEUROPE:20150713T114042Z:5ba9fcf3-25ed-473e-9b89-444e970f8a22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:08 GMT" + "Mon, 13 Jul 2015 11:40:42 GMT" ] }, "StatusCode": 200 @@ -825,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:42:44.052745Z\",\r\n \"duration\": \"PT1.9861014S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:40:17.9408825Z\",\r\n \"duration\": \"PT1.9416108S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14542" + "14857" ], "x-ms-request-id": [ - "773e0101-08c2-4160-b2d5-aba8666528f1" + "d702a899-1881-4f77-8e85-2d822aeb5744" ], "x-ms-correlation-request-id": [ - "773e0101-08c2-4160-b2d5-aba8666528f1" + "d702a899-1881-4f77-8e85-2d822aeb5744" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094245Z:773e0101-08c2-4160-b2d5-aba8666528f1" + "WESTEUROPE:20150713T114018Z:d702a899-1881-4f77-8e85-2d822aeb5744" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:44 GMT" + "Mon, 13 Jul 2015 11:40:18 GMT" ] }, "StatusCode": 200 @@ -873,10 +873,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:42:44.052745Z\",\r\n \"duration\": \"PT1.9861014S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:40:17.9408825Z\",\r\n \"duration\": \"PT1.9416108S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14540" + "14855" ], "x-ms-request-id": [ - "00a09073-05fd-46fb-b37a-5c65b6ecbdc7" + "50358cd3-493a-4458-9b90-54899ac65876" ], "x-ms-correlation-request-id": [ - "00a09073-05fd-46fb-b37a-5c65b6ecbdc7" + "50358cd3-493a-4458-9b90-54899ac65876" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094248Z:00a09073-05fd-46fb-b37a-5c65b6ecbdc7" + "WESTEUROPE:20150713T114021Z:50358cd3-493a-4458-9b90-54899ac65876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:47 GMT" + "Mon, 13 Jul 2015 11:40:21 GMT" ] }, "StatusCode": 200 @@ -921,10 +921,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:42:44.052745Z\",\r\n \"duration\": \"PT1.9861014S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:40:17.9408825Z\",\r\n \"duration\": \"PT1.9416108S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14538" + "14853" ], "x-ms-request-id": [ - "1cebe373-4ea4-4dca-8280-ad707ee9e472" + "9f034c7c-e778-45b8-801e-fe701885e0ec" ], "x-ms-correlation-request-id": [ - "1cebe373-4ea4-4dca-8280-ad707ee9e472" + "9f034c7c-e778-45b8-801e-fe701885e0ec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094251Z:1cebe373-4ea4-4dca-8280-ad707ee9e472" + "WESTEUROPE:20150713T114024Z:9f034c7c-e778-45b8-801e-fe701885e0ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:50 GMT" + "Mon, 13 Jul 2015 11:40:24 GMT" ] }, "StatusCode": 200 @@ -969,10 +969,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:42:44.052745Z\",\r\n \"duration\": \"PT1.9861014S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:40:17.9408825Z\",\r\n \"duration\": \"PT1.9416108S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14536" + "14851" ], "x-ms-request-id": [ - "7a8661c7-0fd1-4e37-bfcc-56a79b6861e3" + "b6d8ab48-d814-424c-b0ea-dcc761cca096" ], "x-ms-correlation-request-id": [ - "7a8661c7-0fd1-4e37-bfcc-56a79b6861e3" + "b6d8ab48-d814-424c-b0ea-dcc761cca096" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094253Z:7a8661c7-0fd1-4e37-bfcc-56a79b6861e3" + "WESTEUROPE:20150713T114027Z:b6d8ab48-d814-424c-b0ea-dcc761cca096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:53 GMT" + "Mon, 13 Jul 2015 11:40:27 GMT" ] }, "StatusCode": 200 @@ -1017,10 +1017,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:42:44.052745Z\",\r\n \"duration\": \"PT1.9861014S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:40:17.9408825Z\",\r\n \"duration\": \"PT1.9416108S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14534" + "14849" ], "x-ms-request-id": [ - "86482c4c-e988-4bc2-a023-0540f4c14c56" + "3b3a6ca0-7382-4427-9332-5389cc2d0b2f" ], "x-ms-correlation-request-id": [ - "86482c4c-e988-4bc2-a023-0540f4c14c56" + "3b3a6ca0-7382-4427-9332-5389cc2d0b2f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094256Z:86482c4c-e988-4bc2-a023-0540f4c14c56" + "WESTEUROPE:20150713T114030Z:3b3a6ca0-7382-4427-9332-5389cc2d0b2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:56 GMT" + "Mon, 13 Jul 2015 11:40:30 GMT" ] }, "StatusCode": 200 @@ -1065,10 +1065,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:42:44.052745Z\",\r\n \"duration\": \"PT1.9861014S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:40:17.9408825Z\",\r\n \"duration\": \"PT1.9416108S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1080,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14532" + "14847" ], "x-ms-request-id": [ - "0ecc87f7-ff93-437a-8521-cfb21bcefa7b" + "f1894523-56b3-4819-837d-aecd4c6a3f19" ], "x-ms-correlation-request-id": [ - "0ecc87f7-ff93-437a-8521-cfb21bcefa7b" + "f1894523-56b3-4819-837d-aecd4c6a3f19" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094259Z:0ecc87f7-ff93-437a-8521-cfb21bcefa7b" + "WESTEUROPE:20150713T114033Z:f1894523-56b3-4819-837d-aecd4c6a3f19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:42:59 GMT" + "Mon, 13 Jul 2015 11:40:33 GMT" ] }, "StatusCode": 200 @@ -1113,10 +1113,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:42:44.052745Z\",\r\n \"duration\": \"PT1.9861014S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:40:17.9408825Z\",\r\n \"duration\": \"PT1.9416108S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1128,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14530" + "14845" ], "x-ms-request-id": [ - "1b17e190-e36c-4e51-a538-a0985e19c135" + "82b5a6cb-a30b-4ea9-be47-3627f3c2861d" ], "x-ms-correlation-request-id": [ - "1b17e190-e36c-4e51-a538-a0985e19c135" + "82b5a6cb-a30b-4ea9-be47-3627f3c2861d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094302Z:1b17e190-e36c-4e51-a538-a0985e19c135" + "WESTEUROPE:20150713T114036Z:82b5a6cb-a30b-4ea9-be47-3627f3c2861d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:02 GMT" + "Mon, 13 Jul 2015 11:40:36 GMT" ] }, "StatusCode": 200 @@ -1161,10 +1161,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:42:44.052745Z\",\r\n \"duration\": \"PT1.9861014S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:40:17.9408825Z\",\r\n \"duration\": \"PT1.9416108S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1176,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14528" + "14843" ], "x-ms-request-id": [ - "f5afe625-a2c3-4444-a0bb-a85cb1528795" + "36175cc8-d773-4d88-8efe-183edfad2c63" ], "x-ms-correlation-request-id": [ - "f5afe625-a2c3-4444-a0bb-a85cb1528795" + "36175cc8-d773-4d88-8efe-183edfad2c63" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094305Z:f5afe625-a2c3-4444-a0bb-a85cb1528795" + "WESTEUROPE:20150713T114039Z:36175cc8-d773-4d88-8efe-183edfad2c63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:05 GMT" + "Mon, 13 Jul 2015 11:40:39 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:43:06.7425427Z\",\r\n \"duration\": \"PT24.6758991S\",\r\n \"correlationId\": \"4ab1ca50-468a-4fb1-bda7-f6d9e41587df\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db121\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server121\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:40:39.5359666Z\",\r\n \"duration\": \"PT23.5366949S\",\r\n \"correlationId\": \"1316525b-2108-4e4e-8de9-fdfb97326e49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server121/sql-audit-cmdlet-db121\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server121\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14526" + "14841" ], "x-ms-request-id": [ - "8c9bcb05-9d7d-420c-bc47-3ff86989532c" + "b6f5b40c-97b1-453a-8832-165358b6cae4" ], "x-ms-correlation-request-id": [ - "8c9bcb05-9d7d-420c-bc47-3ff86989532c" + "b6f5b40c-97b1-453a-8832-165358b6cae4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094309Z:8c9bcb05-9d7d-420c-bc47-3ff86989532c" + "WESTEUROPE:20150713T114042Z:b6f5b40c-97b1-453a-8832-165358b6cae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:08 GMT" + "Mon, 13 Jul 2015 11:40:42 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14525" + "14840" ], "x-ms-request-id": [ - "29b854e6-4ff3-4173-97ef-8c32d1853ef0" + "6fbf5aec-8d1c-4ae9-ba63-6dabfd3203b1" ], "x-ms-correlation-request-id": [ - "29b854e6-4ff3-4173-97ef-8c32d1853ef0" + "6fbf5aec-8d1c-4ae9-ba63-6dabfd3203b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094311Z:29b854e6-4ff3-4173-97ef-8c32d1853ef0" + "WESTEUROPE:20150713T114045Z:6fbf5aec-8d1c-4ae9-ba63-6dabfd3203b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:10 GMT" + "Mon, 13 Jul 2015 11:40:44 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:196603a0-414b-4760-8967-3c0ef8408f1b" + "westeurope:d21d91f6-a701-4ee4-aa4b-bc404e71f4bf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14578" + "14845" ], "x-ms-correlation-request-id": [ - "b27c213f-1ecd-4029-8dc8-c95f2fdd0ff9" + "015e20a6-ad69-43e1-b2e0-497030003ebd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094312Z:b27c213f-1ecd-4029-8dc8-c95f2fdd0ff9" + "WESTEUROPE:20150713T114045Z:015e20a6-ad69-43e1-b2e0-497030003ebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:12 GMT" + "Mon, 13 Jul 2015 11:40:45 GMT" ] }, "StatusCode": 200 @@ -1356,19 +1356,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bbdfd645-bc5d-45b1-ace3-bafdff62bc8e" + "3f44a56b-1c30-4de4-bddb-28e5fd30a14d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "898" + "814" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d7801032-9c7b-4c33-acab-ff9b11febf7e" + "bf348542-ab4a-4ade-a0b7-183643da695f" ], "X-Content-Type-Options": [ "nosniff" @@ -1377,13 +1377,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14668" + "14869" ], "x-ms-correlation-request-id": [ - "f58259e2-d4d1-46b3-b1ac-4ad5d20afc4d" + "0ef7be00-e5e7-456a-84c3-90794b5d2342" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094314Z:f58259e2-d4d1-46b3-b1ac-4ad5d20afc4d" + "WESTEUROPE:20150713T114047Z:0ef7be00-e5e7-456a-84c3-90794b5d2342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1392,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:13 GMT" + "Mon, 13 Jul 2015 11:40:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,7 +1410,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "0ed13963-58d0-467b-86c2-5527667c2f7f" + "a059fad0-ee73-4ec5-a043-763c0710ba6b" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1422,7 +1422,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8632d574-074a-41a8-bc9f-cd6d6d47671a" + "46c33292-114d-4c1d-8eda-b32398bdade2" ], "X-Content-Type-Options": [ "nosniff" @@ -1431,13 +1431,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14664" + "14867" ], "x-ms-correlation-request-id": [ - "e990af7c-8495-4140-a7b1-b376fd51d878" + "49eb7295-ea70-4dcb-af3a-7e882f972ff7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094320Z:e990af7c-8495-4140-a7b1-b376fd51d878" + "WESTEUROPE:20150713T114052Z:49eb7295-ea70-4dcb-af3a-7e882f972ff7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,7 +1446,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:20 GMT" + "Mon, 13 Jul 2015 11:40:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1464,7 +1464,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "336ef759-3223-412d-992a-d2304ab1e15c" + "ecb84e96-6155-45e2-9e48-4b3600d5e9b4" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1476,7 +1476,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ca8defde-88f2-4de0-a28a-20be0fb1daa2" + "d31f0f13-ce8c-4462-a39c-8d794fd4c0b8" ], "X-Content-Type-Options": [ "nosniff" @@ -1485,13 +1485,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14660" + "14865" ], "x-ms-correlation-request-id": [ - "b205cb23-2716-469e-90f7-0be6ba48884a" + "9c2f5927-0b88-484b-9734-9e4443a4cf2e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094325Z:b205cb23-2716-469e-90f7-0be6ba48884a" + "WESTEUROPE:20150713T114057Z:9c2f5927-0b88-484b-9734-9e4443a4cf2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1500,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:24 GMT" + "Mon, 13 Jul 2015 11:40:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1518,7 +1518,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f9a6a6f6-d81a-43f8-b733-eb1f4dd420c0" + "0c75e4da-7717-4744-b084-2cb1472d7022" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1530,7 +1530,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "0159e898-df58-4dcc-82d6-f3f8e2edc158" + "c350f00b-e640-4b9c-af73-b2cbf3db6623" ], "X-Content-Type-Options": [ "nosniff" @@ -1539,13 +1539,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14658" + "14863" ], "x-ms-correlation-request-id": [ - "fb4eb966-227a-4245-90a2-32949f2b1661" + "1688d122-574e-4434-8c62-e0212b69b2aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094330Z:fb4eb966-227a-4245-90a2-32949f2b1661" + "WESTEUROPE:20150713T114103Z:1688d122-574e-4434-8c62-e0212b69b2aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +1554,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:30 GMT" + "Mon, 13 Jul 2015 11:41:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1572,10 +1572,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bbdfd645-bc5d-45b1-ace3-bafdff62bc8e" + "3f44a56b-1c30-4de4-bddb-28e5fd30a14d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"name\": \"sql-audit-cmdlet-db121\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a7f2dacf-0b6d-4926-8896-8368917cf337\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T09:43:04.447Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:13:04.447Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"name\": \"sql-audit-cmdlet-db121\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d33d8865-ff11-4db0-93d9-1b600368fd17\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:40:34.207Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:10:34.207Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1584,7 +1584,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "733eba73-c1a7-477b-ba96-87750252771d" + "126fa1c7-2344-432e-aefb-0002a7044277" ], "X-Content-Type-Options": [ "nosniff" @@ -1593,13 +1593,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14667" + "14868" ], "x-ms-correlation-request-id": [ - "88d0caf4-924e-4bb1-9ac0-2f2924f84684" + "70096c3d-c046-432d-9aa6-6ba97257f136" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094315Z:88d0caf4-924e-4bb1-9ac0-2f2924f84684" + "WESTEUROPE:20150713T114048Z:70096c3d-c046-432d-9aa6-6ba97257f136" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1608,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:14 GMT" + "Mon, 13 Jul 2015 11:40:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1626,10 +1626,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "0ed13963-58d0-467b-86c2-5527667c2f7f" + "a059fad0-ee73-4ec5-a043-763c0710ba6b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"name\": \"sql-audit-cmdlet-db121\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a7f2dacf-0b6d-4926-8896-8368917cf337\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T09:43:04.447Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:13:04.447Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"name\": \"sql-audit-cmdlet-db121\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d33d8865-ff11-4db0-93d9-1b600368fd17\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:40:34.207Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:10:34.207Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1638,7 +1638,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9a092ce1-7cb4-4971-8c2c-d35f47542f55" + "0e2215ac-ad2f-4782-ab32-07c1ec3ba9a1" ], "X-Content-Type-Options": [ "nosniff" @@ -1647,13 +1647,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14663" + "14866" ], "x-ms-correlation-request-id": [ - "732b4204-10d8-4009-b8d9-f61db43481f0" + "af52c733-2f4e-40f6-bc5c-70b7b66a5e71" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094322Z:732b4204-10d8-4009-b8d9-f61db43481f0" + "WESTEUROPE:20150713T114054Z:af52c733-2f4e-40f6-bc5c-70b7b66a5e71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1662,7 +1662,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:21 GMT" + "Mon, 13 Jul 2015 11:40:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1680,10 +1680,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "336ef759-3223-412d-992a-d2304ab1e15c" + "ecb84e96-6155-45e2-9e48-4b3600d5e9b4" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"name\": \"sql-audit-cmdlet-db121\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a7f2dacf-0b6d-4926-8896-8368917cf337\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T09:43:04.447Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:13:04.447Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121\",\r\n \"name\": \"sql-audit-cmdlet-db121\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d33d8865-ff11-4db0-93d9-1b600368fd17\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:40:34.207Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:10:34.207Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1692,7 +1692,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "82a57b83-48a9-4841-a138-f049da10acb9" + "15cb7591-d0c1-4dc7-a1e9-ad5f953251b5" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,13 +1701,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14659" + "14864" ], "x-ms-correlation-request-id": [ - "242bd2a4-0482-4287-85a1-303390225006" + "106053b9-6edd-4abf-9d31-b5e91b48e64b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094326Z:242bd2a4-0482-4287-85a1-303390225006" + "WESTEUROPE:20150713T114058Z:106053b9-6edd-4abf-9d31-b5e91b48e64b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,187 +1716,9 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets121\",\r\n \"name\": \"auditcmdlets121\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3799" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14524" - ], - "x-ms-request-id": [ - "098a6d33-9cd1-435d-8493-bf42ae757904" - ], - "x-ms-correlation-request-id": [ - "098a6d33-9cd1-435d-8493-bf42ae757904" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094315Z:098a6d33-9cd1-435d-8493-bf42ae757904" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 09:43:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets121\",\r\n \"name\": \"auditcmdlets121\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3799" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14523" - ], - "x-ms-request-id": [ - "4b7990b0-04fd-47cc-8891-d7200a0d4798" - ], - "x-ms-correlation-request-id": [ - "4b7990b0-04fd-47cc-8891-d7200a0d4798" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094326Z:4b7990b0-04fd-47cc-8891-d7200a0d4798" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 09:43:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets121", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMTIx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets121\r\n auditcmdlets121\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets121.blob.core.windows.net/\r\n https://auditcmdlets121.queue.core.windows.net/\r\n https://auditcmdlets121.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T09:41:36Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1281" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "6a7239b69741b0b896161c87b1dad1cf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 09:43:16 GMT" + "Mon, 13 Jul 2015 11:40:57 GMT" ], "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets121", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMTIx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets121\r\n auditcmdlets121\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets121.blob.core.windows.net/\r\n https://auditcmdlets121.queue.core.windows.net/\r\n https://auditcmdlets121.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T09:41:36Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1281" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "6e0be8ba0db8bf3cba79839b54bcc433" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 09:43:27 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", "Microsoft-HTTPAPI/2.0" ] }, @@ -1915,7 +1737,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"jkHhKMymhgzibp2bCQUeYZga0h6/ncf8DgK7FNHB3hKesLaDTlJl+fwLxAOJWsiLZJQxBVnXngTdwNsuhOmmgg==\",\r\n \"secondaryKey\": \"VLR/jaBVgrWSNkHRoKJnVgHivVjDB8krBaYdYEhDQQK89T/vUX8xeUsQxERgDOWP8pxOJhRcuWwRFPv3coFB6w==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"vOm/s0XJXMd1eWSa/NQq0k1STC6R5SBmqRiPM/nCjQiRuzQfiznUnFVDnkvSVu50CmN0RmASzHIR+cSabP5P8A==\",\r\n \"secondaryKey\": \"umRBoXoLXbthHzogvZRbZt2QuZGcLzWNSUe1tC8rYoBJB472LlKkK6c6jCJZH5CiHVZnS34dkHe4HjGw4CFiDg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1933,16 +1755,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:5c7cf56d-2202-45ad-a8f6-722ed12c3ee4" + "southcentralus:aae8ac4f-325f-4ea1-be20-cd2b296fa206" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "dfa86db3-f90f-4030-a08f-a5c9a9f1592b" + "446c9060-83ae-4cfc-a833-d174dd3a1d37" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094317Z:dfa86db3-f90f-4030-a08f-a5c9a9f1592b" + "WESTEUROPE:20150713T114049Z:446c9060-83ae-4cfc-a833-d174dd3a1d37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1951,7 +1773,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:16 GMT" + "Mon, 13 Jul 2015 11:40:48 GMT" ] }, "StatusCode": 200 @@ -1969,7 +1791,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"jkHhKMymhgzibp2bCQUeYZga0h6/ncf8DgK7FNHB3hKesLaDTlJl+fwLxAOJWsiLZJQxBVnXngTdwNsuhOmmgg==\",\r\n \"secondaryKey\": \"VLR/jaBVgrWSNkHRoKJnVgHivVjDB8krBaYdYEhDQQK89T/vUX8xeUsQxERgDOWP8pxOJhRcuWwRFPv3coFB6w==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"vOm/s0XJXMd1eWSa/NQq0k1STC6R5SBmqRiPM/nCjQiRuzQfiznUnFVDnkvSVu50CmN0RmASzHIR+cSabP5P8A==\",\r\n \"secondaryKey\": \"umRBoXoLXbthHzogvZRbZt2QuZGcLzWNSUe1tC8rYoBJB472LlKkK6c6jCJZH5CiHVZnS34dkHe4HjGw4CFiDg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1987,16 +1809,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:0e605480-a6d0-4682-b12e-460f17f931cd" + "southcentralus:91265e44-ec3a-40e8-9799-a7d073e216dc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "c8a0316d-1a61-469c-877c-aa15f3531189" + "6e3b1c41-d5ca-46b3-8590-a1c2d6e11a2a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094327Z:c8a0316d-1a61-469c-877c-aa15f3531189" + "WESTEUROPE:20150713T114100Z:6e3b1c41-d5ca-46b3-8590-a1c2d6e11a2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2005,7 +1827,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:27 GMT" + "Mon, 13 Jul 2015 11:41:00 GMT" ] }, "StatusCode": 200 @@ -2014,7 +1836,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTIxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTIxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"storageAccountKey\": \"jkHhKMymhgzibp2bCQUeYZga0h6/ncf8DgK7FNHB3hKesLaDTlJl+fwLxAOJWsiLZJQxBVnXngTdwNsuhOmmgg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"storageAccountKey\": \"vOm/s0XJXMd1eWSa/NQq0k1STC6R5SBmqRiPM/nCjQiRuzQfiznUnFVDnkvSVu50CmN0RmASzHIR+cSabP5P8A==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2026,10 +1848,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bbdfd645-bc5d-45b1-ace3-bafdff62bc8e" + "3f44a56b-1c30-4de4-bddb-28e5fd30a14d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": \"jkHhKMymhgzibp2bCQUeYZga0h6/ncf8DgK7FNHB3hKesLaDTlJl+fwLxAOJWsiLZJQxBVnXngTdwNsuhOmmgg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": \"vOm/s0XJXMd1eWSa/NQq0k1STC6R5SBmqRiPM/nCjQiRuzQfiznUnFVDnkvSVu50CmN0RmASzHIR+cSabP5P8A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "889" @@ -2038,7 +1860,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cceb989d-b838-4e95-a5d6-6b9b63bb9aae" + "ec6a0acb-43d0-474b-bb12-d231334e9764" ], "X-Content-Type-Options": [ "nosniff" @@ -2050,13 +1872,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "147bfa59-dd90-496d-b30c-540f4fb8d1ae" + "3ae10c55-a7a6-4451-8727-eab6bf7f46b0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094319Z:147bfa59-dd90-496d-b30c-540f4fb8d1ae" + "WESTEUROPE:20150713T114051Z:3ae10c55-a7a6-4451-8727-eab6bf7f46b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2065,7 +1887,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:18 GMT" + "Mon, 13 Jul 2015 11:40:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2089,7 +1911,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "0ed13963-58d0-467b-86c2-5527667c2f7f" + "a059fad0-ee73-4ec5-a043-763c0710ba6b" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2101,7 +1923,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "67ff8480-cdf3-477b-9d31-c9c077878624" + "f47b7863-62d4-470b-924c-44c3d9905a8b" ], "X-Content-Type-Options": [ "nosniff" @@ -2113,13 +1935,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "1a8216f0-5ee4-4f09-abf0-41912ce4cdc9" + "20eb4477-f4e2-462f-9e4f-bd04490cac65" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094323Z:1a8216f0-5ee4-4f09-abf0-41912ce4cdc9" + "WESTEUROPE:20150713T114055Z:20eb4477-f4e2-462f-9e4f-bd04490cac65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2128,7 +1950,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:23 GMT" + "Mon, 13 Jul 2015 11:40:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2140,7 +1962,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTIxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTIxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"storageAccountKey\": \"jkHhKMymhgzibp2bCQUeYZga0h6/ncf8DgK7FNHB3hKesLaDTlJl+fwLxAOJWsiLZJQxBVnXngTdwNsuhOmmgg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"storageAccountKey\": \"vOm/s0XJXMd1eWSa/NQq0k1STC6R5SBmqRiPM/nCjQiRuzQfiznUnFVDnkvSVu50CmN0RmASzHIR+cSabP5P8A==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2152,10 +1974,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "336ef759-3223-412d-992a-d2304ab1e15c" + "ecb84e96-6155-45e2-9e48-4b3600d5e9b4" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": \"jkHhKMymhgzibp2bCQUeYZga0h6/ncf8DgK7FNHB3hKesLaDTlJl+fwLxAOJWsiLZJQxBVnXngTdwNsuhOmmgg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg121/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server121/databases/sql-audit-cmdlet-db121/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"Login_Failure\",\r\n \"storageAccountName\": \"auditcmdlets121\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver12Sqlauditcmdletdb121\",\r\n \"storageAccountKey\": \"vOm/s0XJXMd1eWSa/NQq0k1STC6R5SBmqRiPM/nCjQiRuzQfiznUnFVDnkvSVu50CmN0RmASzHIR+cSabP5P8A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets121.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "889" @@ -2164,7 +1986,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ab17c2ad-00c0-445f-a299-3ba6491ea25b" + "25448387-87c7-46e5-8165-0dd83728b1c0" ], "X-Content-Type-Options": [ "nosniff" @@ -2176,13 +1998,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "cc2b5d3a-9f59-48cc-a79b-20aab2b42536" + "0aa1e49f-0220-410a-81d2-84b228cdccd6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094329Z:cc2b5d3a-9f59-48cc-a79b-20aab2b42536" + "WESTEUROPE:20150713T114102Z:0aa1e49f-0220-410a-81d2-84b228cdccd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2191,7 +2013,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:29 GMT" + "Mon, 13 Jul 2015 11:41:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2199,6 +2021,95 @@ }, "StatusCode": 200 }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets121\",\r\n \"name\": \"auditcmdlets121\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3542" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14838" + ], + "x-ms-request-id": [ + "949ee0dd-fd17-45cf-94bc-49e27bdd8756" + ], + "x-ms-correlation-request-id": [ + "949ee0dd-fd17-45cf-94bc-49e27bdd8756" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114058Z:949ee0dd-fd17-45cf-94bc-49e27bdd8756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:40:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets121", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMTIx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets121\r\n auditcmdlets121\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets121.blob.core.windows.net/\r\n https://auditcmdlets121.queue.core.windows.net/\r\n https://auditcmdlets121.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T11:39:09Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "e2aa0728e6e3c7d69da35de1d1eaf35c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:40:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, { "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets121", "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMTIx", @@ -2221,13 +2132,13 @@ "ussouth3" ], "x-ms-request-id": [ - "88b7f8175bceb164bb12b89a6fa67a16" + "447c4ef5d6acc0378939696f244816be" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:37 GMT" + "Mon, 13 Jul 2015 11:41:06 GMT" ], "Server": [ "1.0.6198.243", @@ -2238,8 +2149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/88b7f8175bceb164bb12b89a6fa67a16", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg4YjdmODE3NWJjZWIxNjRiYjEyYjg5YTZmYTY3YTE2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/447c4ef5d6acc0378939696f244816be", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQ0N2M0ZWY1ZDZhY2MwMzc4OTM5Njk2ZjI0NDgxNmJl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2250,7 +2161,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 88b7f817-5bce-b164-bb12-b89a6fa67a16\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 447c4ef5-d6ac-c037-8939-696f244816be\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2262,13 +2173,13 @@ "ussouth3" ], "x-ms-request-id": [ - "bc680600e8a4b51d808e01d93615979d" + "be0a3f6a6fcbcdacadca252bc414cc06" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:43:38 GMT" + "Mon, 13 Jul 2015 11:41:07 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseRetentionKeepProperties.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseRetentionKeepProperties.json index 166f415504ac..49d106c36bbe 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseRetentionKeepProperties.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseRetentionKeepProperties.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "89fbab43cc3db6719b6976c8d35b2839" + "f51bb03f1ccac4fc9283b272f78593c5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:45:19 GMT" + "Mon, 13 Jul 2015 11:42:18 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets205" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/89fbab43cc3db6719b6976c8d35b2839", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg5ZmJhYjQzY2MzZGI2NzE5YjY5NzZjOGQzNWIyODM5", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f51bb03f1ccac4fc9283b272f78593c5", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y1MWJiMDNmMWNjYWM0ZmM5MjgzYjI3MmY3ODU5M2M1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 89fbab43-cc3d-b671-9b69-76c8d35b2839\r\n InProgress\r\n", + "ResponseBody": "\r\n f51bb03f-1cca-c4fc-9283-b272f78593c5\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "6363ee325e81bffbbf4d02e997ecc4ee" + "33b50374d592c977ac894b2b36adf9b9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:45:19 GMT" + "Mon, 13 Jul 2015 11:42:18 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/89fbab43cc3db6719b6976c8d35b2839", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg5ZmJhYjQzY2MzZGI2NzE5YjY5NzZjOGQzNWIyODM5", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f51bb03f1ccac4fc9283b272f78593c5", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y1MWJiMDNmMWNjYWM0ZmM5MjgzYjI3MmY3ODU5M2M1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 89fbab43-cc3d-b671-9b69-76c8d35b2839\r\n InProgress\r\n", + "ResponseBody": "\r\n f51bb03f-1cca-c4fc-9283-b272f78593c5\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "bccded120b34b848872f2381e2280ff1" + "5fdc6bdd7dffc120b5f49decb0c4d12a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:45:49 GMT" + "Mon, 13 Jul 2015 11:42:49 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/89fbab43cc3db6719b6976c8d35b2839", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg5ZmJhYjQzY2MzZGI2NzE5YjY5NzZjOGQzNWIyODM5", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f51bb03f1ccac4fc9283b272f78593c5", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y1MWJiMDNmMWNjYWM0ZmM5MjgzYjI3MmY3ODU5M2M1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 89fbab43-cc3d-b671-9b69-76c8d35b2839\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n f51bb03f-1cca-c4fc-9283-b272f78593c5\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "f5ef60955af1b5e6bcde114bf8c8307c" + "0311dfb5f809c2a1bfcbda73083cc413" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:19 GMT" + "Mon, 13 Jul 2015 11:43:20 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14516" + "14828" ], "x-ms-request-id": [ - "79161454-421e-422c-bdb1-aa2618212e4f" + "5a79f7e5-e608-464a-858a-f46115364fca" ], "x-ms-correlation-request-id": [ - "79161454-421e-422c-bdb1-aa2618212e4f" + "5a79f7e5-e608-464a-858a-f46115364fca" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094620Z:79161454-421e-422c-bdb1-aa2618212e4f" + "WESTEUROPE:20150713T114321Z:5a79f7e5-e608-464a-858a-f46115364fca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:19 GMT" + "Mon, 13 Jul 2015 11:43:20 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1199" ], "x-ms-request-id": [ - "9f303722-2b92-45fd-9465-c3f9348c253e" + "2e083329-5a87-455b-9ef2-84ebf8f71bcd" ], "x-ms-correlation-request-id": [ - "9f303722-2b92-45fd-9465-c3f9348c253e" + "2e083329-5a87-455b-9ef2-84ebf8f71bcd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094622Z:9f303722-2b92-45fd-9465-c3f9348c253e" + "WESTEUROPE:20150713T114322Z:2e083329-5a87-455b-9ef2-84ebf8f71bcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:21 GMT" + "Mon, 13 Jul 2015 11:43:22 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T09:46:23.2469557Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"462e155b-b131-4b24-9358-932601297c8c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:43:23.4878737Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"184a185d-82f0-400b-b765-cec4d3e78244\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1198" ], "x-ms-request-id": [ - "462e155b-b131-4b24-9358-932601297c8c" + "184a185d-82f0-400b-b765-cec4d3e78244" ], "x-ms-correlation-request-id": [ - "462e155b-b131-4b24-9358-932601297c8c" + "184a185d-82f0-400b-b765-cec4d3e78244" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094623Z:462e155b-b131-4b24-9358-932601297c8c" + "WESTEUROPE:20150713T114323Z:184a185d-82f0-400b-b765-cec4d3e78244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:22 GMT" + "Mon, 13 Jul 2015 11:43:23 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T09:46:25.2798707Z\",\r\n \"duration\": \"PT1.2727507S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:43:26.5085843Z\",\r\n \"duration\": \"PT2.2485762S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1197" ], "x-ms-request-id": [ - "4c60cfe2-f23c-461a-85e0-31d22b15d7fd" + "d13ea6e5-1c28-45f9-a7e6-6a6304f43627" ], "x-ms-correlation-request-id": [ - "4c60cfe2-f23c-461a-85e0-31d22b15d7fd" + "d13ea6e5-1c28-45f9-a7e6-6a6304f43627" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094625Z:4c60cfe2-f23c-461a-85e0-31d22b15d7fd" + "WESTEUROPE:20150713T114327Z:d13ea6e5-1c28-45f9-a7e6-6a6304f43627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:25 GMT" + "Mon, 13 Jul 2015 11:43:26 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14515" + "14827" ], "x-ms-request-id": [ - "58f66875-59b8-40df-94fa-ee47da213bd5" + "214a272c-2541-48b8-8a93-3235f7ef15b1" ], "x-ms-correlation-request-id": [ - "58f66875-59b8-40df-94fa-ee47da213bd5" + "214a272c-2541-48b8-8a93-3235f7ef15b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094626Z:58f66875-59b8-40df-94fa-ee47da213bd5" + "WESTEUROPE:20150713T114327Z:214a272c-2541-48b8-8a93-3235f7ef15b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:25 GMT" + "Mon, 13 Jul 2015 11:43:27 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14513" + "14825" ], "x-ms-request-id": [ - "7dff45ae-1378-46dd-aaf6-f326d363a8d2" + "2d5eef0b-a3f7-498e-bd9d-ba4081396515" ], "x-ms-correlation-request-id": [ - "7dff45ae-1378-46dd-aaf6-f326d363a8d2" + "2d5eef0b-a3f7-498e-bd9d-ba4081396515" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094629Z:7dff45ae-1378-46dd-aaf6-f326d363a8d2" + "WESTEUROPE:20150713T114330Z:2d5eef0b-a3f7-498e-bd9d-ba4081396515" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:28 GMT" + "Mon, 13 Jul 2015 11:43:30 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14510" + "14823" ], "x-ms-request-id": [ - "1571aeee-085d-420c-a85d-93b9e8e6fac7" + "ce402f4a-1248-4bd7-9c5f-64d7229b3925" ], "x-ms-correlation-request-id": [ - "1571aeee-085d-420c-a85d-93b9e8e6fac7" + "ce402f4a-1248-4bd7-9c5f-64d7229b3925" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094632Z:1571aeee-085d-420c-a85d-93b9e8e6fac7" + "WESTEUROPE:20150713T114333Z:ce402f4a-1248-4bd7-9c5f-64d7229b3925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:31 GMT" + "Mon, 13 Jul 2015 11:43:33 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14508" + "14820" ], "x-ms-request-id": [ - "20998e8f-4daf-435a-ade0-9d33277664b5" + "39acb80c-7efd-4eae-a6a2-ee1ec5fff60e" ], "x-ms-correlation-request-id": [ - "20998e8f-4daf-435a-ade0-9d33277664b5" + "39acb80c-7efd-4eae-a6a2-ee1ec5fff60e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094635Z:20998e8f-4daf-435a-ade0-9d33277664b5" + "WESTEUROPE:20150713T114336Z:39acb80c-7efd-4eae-a6a2-ee1ec5fff60e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:34 GMT" + "Mon, 13 Jul 2015 11:43:36 GMT" ] }, "StatusCode": 200 @@ -585,10 +585,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:38.8232245Z\",\r\n \"duration\": \"PT11.8098688S\",\r\n \"trackingId\": \"9c59e132-19af-4f8d-b1f4-97f529a985fc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14506" + "14818" ], "x-ms-request-id": [ - "39d4489c-59d6-41af-a8e8-dee67b6ae045" + "120d97b3-4837-4a33-8079-e99efeddc5f5" ], "x-ms-correlation-request-id": [ - "39d4489c-59d6-41af-a8e8-dee67b6ae045" + "120d97b3-4837-4a33-8079-e99efeddc5f5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094638Z:39d4489c-59d6-41af-a8e8-dee67b6ae045" + "WESTEUROPE:20150713T114339Z:120d97b3-4837-4a33-8079-e99efeddc5f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:37 GMT" + "Mon, 13 Jul 2015 11:43:38 GMT" ] }, "StatusCode": 200 @@ -633,7 +633,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:46:40.0273569Z\",\r\n \"duration\": \"PT12.9992919S\",\r\n \"trackingId\": \"9d3758cd-a093-4c20-b973-626e6ffc3c6f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:38.8232245Z\",\r\n \"duration\": \"PT11.8098688S\",\r\n \"trackingId\": \"9c59e132-19af-4f8d-b1f4-97f529a985fc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14503" + "14816" ], "x-ms-request-id": [ - "92126bb1-3a43-4b15-ad26-4530ced8fb91" + "c416fcee-0c6e-4976-985d-aba30137ecbe" ], "x-ms-correlation-request-id": [ - "92126bb1-3a43-4b15-ad26-4530ced8fb91" + "c416fcee-0c6e-4976-985d-aba30137ecbe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094641Z:92126bb1-3a43-4b15-ad26-4530ced8fb91" + "WESTEUROPE:20150713T114342Z:c416fcee-0c6e-4976-985d-aba30137ecbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:41 GMT" + "Mon, 13 Jul 2015 11:43:41 GMT" ] }, "StatusCode": 200 @@ -681,7 +681,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:46:40.0273569Z\",\r\n \"duration\": \"PT12.9992919S\",\r\n \"trackingId\": \"9d3758cd-a093-4c20-b973-626e6ffc3c6f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:38.8232245Z\",\r\n \"duration\": \"PT11.8098688S\",\r\n \"trackingId\": \"9c59e132-19af-4f8d-b1f4-97f529a985fc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14500" + "14814" ], "x-ms-request-id": [ - "81297be2-d631-4e1d-ae0f-f14c21dd8ff7" + "a6af0471-5796-48e7-8de1-b2cbef7519e5" ], "x-ms-correlation-request-id": [ - "81297be2-d631-4e1d-ae0f-f14c21dd8ff7" + "a6af0471-5796-48e7-8de1-b2cbef7519e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094644Z:81297be2-d631-4e1d-ae0f-f14c21dd8ff7" + "WESTEUROPE:20150713T114345Z:a6af0471-5796-48e7-8de1-b2cbef7519e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:44 GMT" + "Mon, 13 Jul 2015 11:43:44 GMT" ] }, "StatusCode": 200 @@ -729,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/4FE5F4837AA988D0\",\r\n \"operationId\": \"4FE5F4837AA988D0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:46:47.0218485Z\",\r\n \"duration\": \"PT6.7994161S\",\r\n \"trackingId\": \"7aaf7223-004b-482e-8879-23f397493057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:46:40.0273569Z\",\r\n \"duration\": \"PT12.9992919S\",\r\n \"trackingId\": \"9d3758cd-a093-4c20-b973-626e6ffc3c6f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:38.8232245Z\",\r\n \"duration\": \"PT11.8098688S\",\r\n \"trackingId\": \"9c59e132-19af-4f8d-b1f4-97f529a985fc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14498" + "14812" ], "x-ms-request-id": [ - "578371e9-5821-45c7-b5a6-32f500fb7786" + "b5969710-613c-4b3c-9239-89e2f2bc2c7b" ], "x-ms-correlation-request-id": [ - "578371e9-5821-45c7-b5a6-32f500fb7786" + "b5969710-613c-4b3c-9239-89e2f2bc2c7b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094647Z:578371e9-5821-45c7-b5a6-32f500fb7786" + "WESTEUROPE:20150713T114348Z:b5969710-613c-4b3c-9239-89e2f2bc2c7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:47 GMT" + "Mon, 13 Jul 2015 11:43:47 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/4FE5F4837AA988D0\",\r\n \"operationId\": \"4FE5F4837AA988D0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:46:47.0218485Z\",\r\n \"duration\": \"PT6.7994161S\",\r\n \"trackingId\": \"7aaf7223-004b-482e-8879-23f397493057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:46:40.0273569Z\",\r\n \"duration\": \"PT12.9992919S\",\r\n \"trackingId\": \"9d3758cd-a093-4c20-b973-626e6ffc3c6f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/4FE5F4837AA988D0\",\r\n \"operationId\": \"4FE5F4837AA988D0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:51.2972033Z\",\r\n \"duration\": \"PT11.9393292S\",\r\n \"trackingId\": \"799cff59-6283-4adb-847f-cfe76155fa2c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:38.8232245Z\",\r\n \"duration\": \"PT11.8098688S\",\r\n \"trackingId\": \"9c59e132-19af-4f8d-b1f4-97f529a985fc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14495" + "14810" ], "x-ms-request-id": [ - "16231e16-5883-4cf1-900c-a1a9fd63237f" + "4ec43e77-3a82-44bf-baf2-75578002efbe" ], "x-ms-correlation-request-id": [ - "16231e16-5883-4cf1-900c-a1a9fd63237f" + "4ec43e77-3a82-44bf-baf2-75578002efbe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094650Z:16231e16-5883-4cf1-900c-a1a9fd63237f" + "WESTEUROPE:20150713T114351Z:4ec43e77-3a82-44bf-baf2-75578002efbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,55 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:50 GMT" + "Mon, 13 Jul 2015 11:43:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/4FE5F4837AA988D0\",\r\n \"operationId\": \"4FE5F4837AA988D0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:51.2972033Z\",\r\n \"duration\": \"PT11.9393292S\",\r\n \"trackingId\": \"799cff59-6283-4adb-847f-cfe76155fa2c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup/operations/B4685CA64ABADA60\",\r\n \"operationId\": \"B4685CA64ABADA60\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:38.8232245Z\",\r\n \"duration\": \"PT11.8098688S\",\r\n \"trackingId\": \"9c59e132-19af-4f8d-b1f4-97f529a985fc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1391" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-request-id": [ + "46a10fc9-8ffd-4535-b05c-2f5954da323e" + ], + "x-ms-correlation-request-id": [ + "46a10fc9-8ffd-4535-b05c-2f5954da323e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114354Z:46a10fc9-8ffd-4535-b05c-2f5954da323e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:43:53 GMT" ] }, "StatusCode": 200 @@ -825,10 +873,58 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T09:46:25.2798707Z\",\r\n \"duration\": \"PT1.2727507S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "x-ms-request-id": [ + "933f7f52-3ac3-4bea-a457-919e2f1592a4" + ], + "x-ms-correlation-request-id": [ + "933f7f52-3ac3-4bea-a457-919e2f1592a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114328Z:933f7f52-3ac3-4bea-a457-919e2f1592a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:43:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14514" + "14824" ], "x-ms-request-id": [ - "f0e545db-807f-4e72-bc1f-d7cf31704183" + "d5d5fa6f-1743-49fb-a940-1c77e3f3ee97" ], "x-ms-correlation-request-id": [ - "f0e545db-807f-4e72-bc1f-d7cf31704183" + "d5d5fa6f-1743-49fb-a940-1c77e3f3ee97" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094626Z:f0e545db-807f-4e72-bc1f-d7cf31704183" + "WESTEUROPE:20150713T114331Z:d5d5fa6f-1743-49fb-a940-1c77e3f3ee97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:26 GMT" + "Mon, 13 Jul 2015 11:43:30 GMT" ] }, "StatusCode": 200 @@ -873,10 +969,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:46:26.5190057Z\",\r\n \"duration\": \"PT2.5118857S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14512" + "14821" ], "x-ms-request-id": [ - "28bfcaee-140e-4278-8b52-6d243885545b" + "753595df-86dc-4b78-bb6a-b1c1da64e64d" ], "x-ms-correlation-request-id": [ - "28bfcaee-140e-4278-8b52-6d243885545b" + "753595df-86dc-4b78-bb6a-b1c1da64e64d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094629Z:28bfcaee-140e-4278-8b52-6d243885545b" + "WESTEUROPE:20150713T114334Z:753595df-86dc-4b78-bb6a-b1c1da64e64d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:28 GMT" + "Mon, 13 Jul 2015 11:43:33 GMT" ] }, "StatusCode": 200 @@ -921,10 +1017,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:46:26.5190057Z\",\r\n \"duration\": \"PT2.5118857S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14509" + "14819" ], "x-ms-request-id": [ - "b6c6dc23-eb48-475b-9e28-46af7b42680d" + "0dd68461-ca8b-486a-8e2c-83cab65071ab" ], "x-ms-correlation-request-id": [ - "b6c6dc23-eb48-475b-9e28-46af7b42680d" + "0dd68461-ca8b-486a-8e2c-83cab65071ab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094632Z:b6c6dc23-eb48-475b-9e28-46af7b42680d" + "WESTEUROPE:20150713T114337Z:0dd68461-ca8b-486a-8e2c-83cab65071ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:31 GMT" + "Mon, 13 Jul 2015 11:43:36 GMT" ] }, "StatusCode": 200 @@ -969,10 +1065,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:46:26.5190057Z\",\r\n \"duration\": \"PT2.5118857S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14507" + "14817" ], "x-ms-request-id": [ - "7361f99b-f7f4-4096-ad83-729400efcd92" + "171aba24-44fb-49ef-8f0d-1f2e14534c57" ], "x-ms-correlation-request-id": [ - "7361f99b-f7f4-4096-ad83-729400efcd92" + "171aba24-44fb-49ef-8f0d-1f2e14534c57" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094635Z:7361f99b-f7f4-4096-ad83-729400efcd92" + "WESTEUROPE:20150713T114340Z:171aba24-44fb-49ef-8f0d-1f2e14534c57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:34 GMT" + "Mon, 13 Jul 2015 11:43:39 GMT" ] }, "StatusCode": 200 @@ -1017,10 +1113,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:46:26.5190057Z\",\r\n \"duration\": \"PT2.5118857S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14505" + "14815" ], "x-ms-request-id": [ - "1c780e91-8d7c-4ab8-a867-6d3595f76f1f" + "e8c56ceb-3905-4cbf-8251-8abd8c70cffe" ], "x-ms-correlation-request-id": [ - "1c780e91-8d7c-4ab8-a867-6d3595f76f1f" + "e8c56ceb-3905-4cbf-8251-8abd8c70cffe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094638Z:1c780e91-8d7c-4ab8-a867-6d3595f76f1f" + "WESTEUROPE:20150713T114343Z:e8c56ceb-3905-4cbf-8251-8abd8c70cffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:37 GMT" + "Mon, 13 Jul 2015 11:43:42 GMT" ] }, "StatusCode": 200 @@ -1065,10 +1161,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:46:26.5190057Z\",\r\n \"duration\": \"PT2.5118857S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1080,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14502" + "14813" ], "x-ms-request-id": [ - "9b084d7d-7d15-4af7-a07e-2e52ed8b49ef" + "f36577d0-8b31-426e-9113-90aa7a8bf3fa" ], "x-ms-correlation-request-id": [ - "9b084d7d-7d15-4af7-a07e-2e52ed8b49ef" + "f36577d0-8b31-426e-9113-90aa7a8bf3fa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094641Z:9b084d7d-7d15-4af7-a07e-2e52ed8b49ef" + "WESTEUROPE:20150713T114346Z:f36577d0-8b31-426e-9113-90aa7a8bf3fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:41 GMT" + "Mon, 13 Jul 2015 11:43:45 GMT" ] }, "StatusCode": 200 @@ -1113,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:46:26.5190057Z\",\r\n \"duration\": \"PT2.5118857S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1128,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14499" + "14811" ], "x-ms-request-id": [ - "78ca039a-e07d-4e7a-b0c4-22e693f1005f" + "3d664fb9-77ee-4a7f-8ccf-4bdf18b6ac6f" ], "x-ms-correlation-request-id": [ - "78ca039a-e07d-4e7a-b0c4-22e693f1005f" + "3d664fb9-77ee-4a7f-8ccf-4bdf18b6ac6f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094644Z:78ca039a-e07d-4e7a-b0c4-22e693f1005f" + "WESTEUROPE:20150713T114349Z:3d664fb9-77ee-4a7f-8ccf-4bdf18b6ac6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:44 GMT" + "Mon, 13 Jul 2015 11:43:48 GMT" ] }, "StatusCode": 200 @@ -1161,10 +1257,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T09:46:26.5190057Z\",\r\n \"duration\": \"PT2.5118857S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:43:26.9421081Z\",\r\n \"duration\": \"PT2.6821S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1176,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14497" + "14809" ], "x-ms-request-id": [ - "aff626d9-52b5-4f86-80c0-28528e73a6db" + "b219e953-dd63-4d6e-bfbc-61882aadc014" ], "x-ms-correlation-request-id": [ - "aff626d9-52b5-4f86-80c0-28528e73a6db" + "b219e953-dd63-4d6e-bfbc-61882aadc014" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094647Z:aff626d9-52b5-4f86-80c0-28528e73a6db" + "WESTEUROPE:20150713T114352Z:b219e953-dd63-4d6e-bfbc-61882aadc014" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:47 GMT" + "Mon, 13 Jul 2015 11:43:51 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1305,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T09:46:49.3924913Z\",\r\n \"duration\": \"PT25.3853713S\",\r\n \"correlationId\": \"4c60cfe2-f23c-461a-85e0-31d22b15d7fd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db205\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server205\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:43:53.8169181Z\",\r\n \"duration\": \"PT29.55691S\",\r\n \"correlationId\": \"d13ea6e5-1c28-45f9-a7e6-6a6304f43627\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server205/sql-audit-cmdlet-db205\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server205\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1320,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14494" + "14807" ], "x-ms-request-id": [ - "13f2a966-c3bc-4f63-9788-5ecca45f0066" + "1b59eac4-f6cd-4312-9c3b-b74d54eda10d" ], "x-ms-correlation-request-id": [ - "13f2a966-c3bc-4f63-9788-5ecca45f0066" + "1b59eac4-f6cd-4312-9c3b-b74d54eda10d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094651Z:13f2a966-c3bc-4f63-9788-5ecca45f0066" + "WESTEUROPE:20150713T114355Z:1b59eac4-f6cd-4312-9c3b-b74d54eda10d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1338,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:50 GMT" + "Mon, 13 Jul 2015 11:43:54 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14493" + "14806" ], "x-ms-request-id": [ - "26253f72-e014-49e2-bf5b-06369b5405ae" + "8e0890b9-25a4-474c-a8e7-3987ad8a6906" ], "x-ms-correlation-request-id": [ - "26253f72-e014-49e2-bf5b-06369b5405ae" + "8e0890b9-25a4-474c-a8e7-3987ad8a6906" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094653Z:26253f72-e014-49e2-bf5b-06369b5405ae" + "WESTEUROPE:20150713T114357Z:8e0890b9-25a4-474c-a8e7-3987ad8a6906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:52 GMT" + "Mon, 13 Jul 2015 11:43:57 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1419,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:2cb52c46-a2e2-423d-8688-eb54645d8adf" + "westeurope:fcf6e38a-869b-4a29-971c-903ca607ab0b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14668" + "14860" ], "x-ms-correlation-request-id": [ - "b492be9d-7b02-4fcd-8647-d91e412589a5" + "bc3657c0-787c-44a1-b64c-100594003e21" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094653Z:b492be9d-7b02-4fcd-8647-d91e412589a5" + "WESTEUROPE:20150713T114358Z:bc3657c0-787c-44a1-b64c-100594003e21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1437,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:53 GMT" + "Mon, 13 Jul 2015 11:43:57 GMT" ] }, "StatusCode": 200 @@ -1356,19 +1452,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c6296a7b-f563-4584-9fae-b9ff9cc8082b" + "6320f6dd-9ac5-4767-a2b6-52c96fcc11b5" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver20Sqlauditcmdletdb205\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1205\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "898" + "1008" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e7f0e4e3-72f7-48c5-ae9c-44b7aa776fca" + "b6cd9415-7cbe-4438-9d3d-fac324816fb0" ], "X-Content-Type-Options": [ "nosniff" @@ -1377,13 +1473,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14672" + "14848" ], "x-ms-correlation-request-id": [ - "e8777968-3ba5-4216-bdc5-192efa9f8c24" + "30b1c1ba-5b19-4a09-8528-09297187dc6f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094655Z:e8777968-3ba5-4216-bdc5-192efa9f8c24" + "WESTEUROPE:20150713T114400Z:30b1c1ba-5b19-4a09-8528-09297187dc6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1488,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:54 GMT" + "Mon, 13 Jul 2015 11:43:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,7 +1506,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "270285bf-c252-4bb3-86cc-4ed179ab236b" + "385b8091-e1d7-4789-85fd-ec8bf10bcdcb" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", @@ -1422,7 +1518,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ae06b45e-5f7a-412a-959f-bb98f5423ba6" + "9e09f3cb-4468-4a62-9fc2-94adc25617d8" ], "X-Content-Type-Options": [ "nosniff" @@ -1431,13 +1527,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14668" + "14846" ], "x-ms-correlation-request-id": [ - "3097b327-f6f4-4b49-bb70-8429379b5fca" + "72a55e84-b473-4d4c-9420-716838267768" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094702Z:3097b327-f6f4-4b49-bb70-8429379b5fca" + "WESTEUROPE:20150713T114406Z:72a55e84-b473-4d4c-9420-716838267768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,7 +1542,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:01 GMT" + "Mon, 13 Jul 2015 11:44:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1464,7 +1560,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "1fa602ee-98b8-49f7-a907-c4c10cc476f1" + "c173964c-7464-4d3a-accd-fd97bd34df62" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", @@ -1476,7 +1572,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6c8edb53-cfac-464d-910b-774f735703c2" + "205899d4-c2b2-45c1-b65f-e54ea06d00dc" ], "X-Content-Type-Options": [ "nosniff" @@ -1485,13 +1581,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14666" + "14844" ], "x-ms-correlation-request-id": [ - "adecf6ec-d094-476e-9f94-91acfa286db9" + "fbe27b68-fd8e-4d1b-94bc-2bd043ffa529" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094707Z:adecf6ec-d094-476e-9f94-91acfa286db9" + "WESTEUROPE:20150713T114411Z:fbe27b68-fd8e-4d1b-94bc-2bd043ffa529" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1596,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:07 GMT" + "Mon, 13 Jul 2015 11:44:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1518,7 +1614,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f88bbceb-6b19-48a9-8e95-822c9dabc020" + "14cee434-7e4b-41cd-842e-83a950f4c925" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", @@ -1530,7 +1626,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "df132f3b-24e6-4c6d-9398-0704cd640172" + "66a32fde-a139-4d1a-9fae-7decb25a1062" ], "X-Content-Type-Options": [ "nosniff" @@ -1539,13 +1635,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14665" + "14843" ], "x-ms-correlation-request-id": [ - "f115bc56-19d4-427b-a88b-51b69b7a69ff" + "c07afe11-aa36-4f55-86a0-108f18a15adf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094709Z:f115bc56-19d4-427b-a88b-51b69b7a69ff" + "WESTEUROPE:20150713T114412Z:c07afe11-aa36-4f55-86a0-108f18a15adf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +1650,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:09 GMT" + "Mon, 13 Jul 2015 11:44:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1572,7 +1668,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a5a991a5-0e8e-4873-bd9e-3de9a5444be5" + "3d7e6e64-1729-4bd7-9c90-5a1832f22e4f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1205\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", @@ -1584,7 +1680,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ece89f59-e8d5-4cef-81f1-e11478369d83" + "e0947e71-b2d8-459b-be05-ed1d753c2554" ], "X-Content-Type-Options": [ "nosniff" @@ -1593,13 +1689,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14663" + "14841" ], "x-ms-correlation-request-id": [ - "fbe546d8-6e7f-43f2-9819-e1a6462dd68c" + "89599a37-c4b6-4228-98de-20b0773b166b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094714Z:fbe546d8-6e7f-43f2-9819-e1a6462dd68c" + "WESTEUROPE:20150713T114417Z:89599a37-c4b6-4228-98de-20b0773b166b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1704,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:14 GMT" + "Mon, 13 Jul 2015 11:44:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1626,19 +1722,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c6296a7b-f563-4584-9fae-b9ff9cc8082b" + "6320f6dd-9ac5-4767-a2b6-52c96fcc11b5" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"name\": \"sql-audit-cmdlet-db205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fbe01382-dd64-43c7-a52d-b8bce508381c\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T09:46:44.17Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:16:44.17Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"name\": \"sql-audit-cmdlet-db205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b5f520eb-3e4a-4b33-b542-d786881dd573\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:43:47.697Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:13:47.697Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "815" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "56cde141-2ff6-409e-a470-a18366c59879" + "e1eabb07-94ed-478c-b022-b2506f50b661" ], "X-Content-Type-Options": [ "nosniff" @@ -1647,13 +1743,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" + "14847" ], "x-ms-correlation-request-id": [ - "f91df0b6-da6c-460c-8870-616ce4945b79" + "dad9db8a-7f7b-4032-b5d9-0560c604f3c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094656Z:f91df0b6-da6c-460c-8870-616ce4945b79" + "WESTEUROPE:20150713T114401Z:dad9db8a-7f7b-4032-b5d9-0560c604f3c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1662,7 +1758,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:56 GMT" + "Mon, 13 Jul 2015 11:44:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1680,19 +1776,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "270285bf-c252-4bb3-86cc-4ed179ab236b" + "385b8091-e1d7-4789-85fd-ec8bf10bcdcb" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"name\": \"sql-audit-cmdlet-db205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fbe01382-dd64-43c7-a52d-b8bce508381c\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T09:46:44.17Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:16:44.17Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"name\": \"sql-audit-cmdlet-db205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b5f520eb-3e4a-4b33-b542-d786881dd573\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:43:47.697Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:13:47.697Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "815" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "86644b41-97a1-4b42-8207-138a624cb8ec" + "7081ee70-05e4-4576-94f0-e4580cf27d6c" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,13 +1797,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14667" + "14845" ], "x-ms-correlation-request-id": [ - "237cacab-8d72-4536-86ef-b937f3e52b9d" + "23049cb0-6e34-4077-8a6b-fd5315da47a2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094703Z:237cacab-8d72-4536-86ef-b937f3e52b9d" + "WESTEUROPE:20150713T114407Z:23049cb0-6e34-4077-8a6b-fd5315da47a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,7 +1812,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:03 GMT" + "Mon, 13 Jul 2015 11:44:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1734,19 +1830,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f88bbceb-6b19-48a9-8e95-822c9dabc020" + "14cee434-7e4b-41cd-842e-83a950f4c925" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"name\": \"sql-audit-cmdlet-db205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fbe01382-dd64-43c7-a52d-b8bce508381c\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T09:46:44.17Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:16:44.17Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205\",\r\n \"name\": \"sql-audit-cmdlet-db205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b5f520eb-3e4a-4b33-b542-d786881dd573\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:43:47.697Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:13:47.697Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "815" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cfed56ce-9b38-41c2-90c3-bd7c21ad46bb" + "318e7ea1-6938-469d-b7ab-f44790bb4b6f" ], "X-Content-Type-Options": [ "nosniff" @@ -1755,13 +1851,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14664" + "14842" ], "x-ms-correlation-request-id": [ - "861e7bf8-1ee1-4bc5-afd4-99d18a88fba4" + "c8f75505-48e8-4336-9791-77e4c4a4480f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094710Z:861e7bf8-1ee1-4bc5-afd4-99d18a88fba4" + "WESTEUROPE:20150713T114414Z:c8f75505-48e8-4336-9791-77e4c4a4480f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1770,7 +1866,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:10 GMT" + "Mon, 13 Jul 2015 11:44:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1778,95 +1874,6 @@ }, "StatusCode": 200 }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets205\",\r\n \"name\": \"auditcmdlets205\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3799" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14492" - ], - "x-ms-request-id": [ - "79328998-ac20-4648-9ab0-0cbbe16abc73" - ], - "x-ms-correlation-request-id": [ - "79328998-ac20-4648-9ab0-0cbbe16abc73" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094657Z:79328998-ac20-4648-9ab0-0cbbe16abc73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 09:46:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets205", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMjA1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets205\r\n auditcmdlets205\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets205.blob.core.windows.net/\r\n https://auditcmdlets205.queue.core.windows.net/\r\n https://auditcmdlets205.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T09:45:18Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1281" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "1b842eec78c1bc4292e4aefca94cb1ea" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 09:46:58 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets205/listKeys?api-version=2014-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXVkaXRjbWRsZXRzMjA1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDYtMDE=", @@ -1880,7 +1887,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"secondaryKey\": \"P4vR1Am8r1CUMZR7+h1njc4GYCF7cKB32dI1HGlAn19/75hXgdn1xaJ/U9NA39zymIfjD9MtjCGtrGMezhXMog==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"secondaryKey\": \"A7lkRyYn5HqjooU+97VW2eKkkdsPUdtcEf9KTWdPMuxrHdw8eqERiL/uP7tFtYuk1Ip1vIDAbKnEskDxYsjdwg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1898,16 +1905,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:29aa8bf5-e62a-4908-9165-0ff324148c1c" + "southcentralus:0e43e961-bc69-4602-9994-e8cf1b155616" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "0835155a-a7d4-4eff-ab91-1cb12549512c" + "19ba4d7b-ae2b-4cc6-b204-0484f3685a31" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094659Z:0835155a-a7d4-4eff-ab91-1cb12549512c" + "WESTEUROPE:20150713T114403Z:19ba4d7b-ae2b-4cc6-b204-0484f3685a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1916,7 +1923,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:46:58 GMT" + "Mon, 13 Jul 2015 11:44:02 GMT" ] }, "StatusCode": 200 @@ -1934,7 +1941,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"secondaryKey\": \"P4vR1Am8r1CUMZR7+h1njc4GYCF7cKB32dI1HGlAn19/75hXgdn1xaJ/U9NA39zymIfjD9MtjCGtrGMezhXMog==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"secondaryKey\": \"A7lkRyYn5HqjooU+97VW2eKkkdsPUdtcEf9KTWdPMuxrHdw8eqERiL/uP7tFtYuk1Ip1vIDAbKnEskDxYsjdwg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1952,16 +1959,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:1884880c-da87-4a1c-9d25-a1cdd3446f57" + "southcentralus:a3096c7d-ec1d-458a-89bb-cacdb07a715d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "2ae69c66-9592-4743-9205-df91703c7c7b" + "d02125d5-36ae-42df-abe3-7dd8f917497b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094704Z:2ae69c66-9592-4743-9205-df91703c7c7b" + "WESTEUROPE:20150713T114408Z:d02125d5-36ae-42df-abe3-7dd8f917497b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1970,7 +1977,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:03 GMT" + "Mon, 13 Jul 2015 11:44:07 GMT" ] }, "StatusCode": 200 @@ -1988,7 +1995,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"secondaryKey\": \"P4vR1Am8r1CUMZR7+h1njc4GYCF7cKB32dI1HGlAn19/75hXgdn1xaJ/U9NA39zymIfjD9MtjCGtrGMezhXMog==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"secondaryKey\": \"A7lkRyYn5HqjooU+97VW2eKkkdsPUdtcEf9KTWdPMuxrHdw8eqERiL/uP7tFtYuk1Ip1vIDAbKnEskDxYsjdwg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2006,16 +2013,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:b971a6fc-c19d-4360-b1c0-e3e9008c014b" + "southcentralus:a4fb8b89-7027-4419-b4c4-20a0347e71f1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "a93ca129-95f6-46fa-a4ec-48030a6b368a" + "27a9318e-a64f-45c1-bef1-dffd998138e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094711Z:a93ca129-95f6-46fa-a4ec-48030a6b368a" + "WESTEUROPE:20150713T114414Z:27a9318e-a64f-45c1-bef1-dffd998138e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2024,7 +2031,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:11 GMT" + "Mon, 13 Jul 2015 11:44:13 GMT" ] }, "StatusCode": 200 @@ -2033,7 +2040,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjA1L2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMjA1L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"storageAccountKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"storageAccountKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2045,10 +2052,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c6296a7b-f563-4584-9fae-b9ff9cc8082b" + "6320f6dd-9ac5-4767-a2b6-52c96fcc11b5" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\",\r\n \"storageAccountKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\",\r\n \"storageAccountKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1082" @@ -2057,7 +2064,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9dc5e7e4-67c8-4845-b432-7f3351c728c3" + "02413bfe-d78a-44a3-8be5-919a127395e7" ], "X-Content-Type-Options": [ "nosniff" @@ -2069,13 +2076,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "35eec55c-f463-4a98-9e5a-1b3413a81b34" + "e3507bbc-b8c8-44a0-b322-8408c339670f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094701Z:35eec55c-f463-4a98-9e5a-1b3413a81b34" + "WESTEUROPE:20150713T114404Z:e3507bbc-b8c8-44a0-b322-8408c339670f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2084,7 +2091,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:00 GMT" + "Mon, 13 Jul 2015 11:44:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2096,7 +2103,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjA1L2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMjA1L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"storageAccountKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"storageAccountKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2108,10 +2115,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "270285bf-c252-4bb3-86cc-4ed179ab236b" + "385b8091-e1d7-4789-85fd-ec8bf10bcdcb" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\",\r\n \"storageAccountKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier205\",\r\n \"storageAccountKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1082" @@ -2120,7 +2127,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ec133ae3-beb1-4304-a11d-5e95c079e70f" + "6444ffca-5a40-4294-9f85-358f70659979" ], "X-Content-Type-Options": [ "nosniff" @@ -2132,13 +2139,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "823a60a8-10fc-48d7-970e-82b39065aa6b" + "4361206c-bfe3-44aa-8c33-53c88192427a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094706Z:823a60a8-10fc-48d7-970e-82b39065aa6b" + "WESTEUROPE:20150713T114410Z:4361206c-bfe3-44aa-8c33-53c88192427a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2147,7 +2154,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:06 GMT" + "Mon, 13 Jul 2015 11:44:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2159,7 +2166,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjA1L2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMjA1L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"storageAccountKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1205\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"storageAccountKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1205\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2171,10 +2178,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f88bbceb-6b19-48a9-8e95-822c9dabc020" + "14cee434-7e4b-41cd-842e-83a950f4c925" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1205\",\r\n \"storageAccountKey\": \"Y9W9cdJ8ygw1uH95LOR9eKK1Hg2xfWRu2vf4il1CHT+0nnVzfztLi7BHs2spt5WfgAoR1xbLChRA4BnEb37xTg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg205/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server205/databases/sql-audit-cmdlet-db205/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets205\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1205\",\r\n \"storageAccountKey\": \"mrzbwnC7v39xElFDm9F3OFbbXljKVrAlCNmQevW3r6dSFfStA7yY7dz8FltsuMRRDr9YRPKeA4VfMOndy39D6A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets205.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1083" @@ -2183,7 +2190,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "27b9219d-72eb-4999-a159-d0b0b87f7012" + "24eb3656-a089-4068-b8d1-684e70bf85b3" ], "X-Content-Type-Options": [ "nosniff" @@ -2195,13 +2202,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-correlation-request-id": [ - "b8b1e53d-0d2b-4cef-b1b4-3ba720eeab0d" + "57fa865d-eb64-4638-996f-3f0d9448f71b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T094713Z:b8b1e53d-0d2b-4cef-b1b4-3ba720eeab0d" + "WESTEUROPE:20150713T114416Z:57fa865d-eb64-4638-996f-3f0d9448f71b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2210,7 +2217,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:12 GMT" + "Mon, 13 Jul 2015 11:44:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2240,13 +2247,13 @@ "ussouth3" ], "x-ms-request-id": [ - "5e2b816c9c8fbec5a97f8f216bfa3b35" + "6503c0cac88bcf2abe610b5eb5bc9a83" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:20 GMT" + "Mon, 13 Jul 2015 11:44:21 GMT" ], "Server": [ "1.0.6198.243", @@ -2257,8 +2264,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5e2b816c9c8fbec5a97f8f216bfa3b35", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzVlMmI4MTZjOWM4ZmJlYzVhOTdmOGYyMTZiZmEzYjM1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6503c0cac88bcf2abe610b5eb5bc9a83", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzY1MDNjMGNhYzg4YmNmMmFiZTYxMGI1ZWI1YmM5YTgz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2269,7 +2276,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 5e2b816c-9c8f-bec5-a97f-8f216bfa3b35\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 6503c0ca-c88b-cf2a-be61-0b5eb5bc9a83\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2281,13 +2288,13 @@ "ussouth3" ], "x-ms-request-id": [ - "34404b66f549b622b4ae5fc54c39a088" + "f3a2c7c2e470c1279a541bdfd971b93d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 09:47:22 GMT" + "Mon, 13 Jul 2015 11:44:22 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseStorageKeyRotation.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseStorageKeyRotation.json index 8c54f2c8fdee..1f8555d509d0 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseStorageKeyRotation.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseStorageKeyRotation.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "1a7c752f954bb2f094b4f5934d351a12" + "5384022ab805c369bc13d09eb2ae2aa2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:02:26 GMT" + "Mon, 13 Jul 2015 11:45:37 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets680" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/1a7c752f954bb2f094b4f5934d351a12", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzFhN2M3NTJmOTU0YmIyZjA5NGI0ZjU5MzRkMzUxYTEy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5384022ab805c369bc13d09eb2ae2aa2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzUzODQwMjJhYjgwNWMzNjliYzEzZDA5ZWIyYWUyYWEy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 1a7c752f-954b-b2f0-94b4-f5934d351a12\r\n InProgress\r\n", + "ResponseBody": "\r\n 5384022a-b805-c369-bc13-d09eb2ae2aa2\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "88ad41561133b986933ae81b2658188f" + "a960e5e7143ccebebed20576e745764b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:02:26 GMT" + "Mon, 13 Jul 2015 11:45:37 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/1a7c752f954bb2f094b4f5934d351a12", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzFhN2M3NTJmOTU0YmIyZjA5NGI0ZjU5MzRkMzUxYTEy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5384022ab805c369bc13d09eb2ae2aa2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzUzODQwMjJhYjgwNWMzNjliYzEzZDA5ZWIyYWUyYWEy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 1a7c752f-954b-b2f0-94b4-f5934d351a12\r\n InProgress\r\n", + "ResponseBody": "\r\n 5384022a-b805-c369-bc13-d09eb2ae2aa2\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b46bb1e75a36b7f8abe38b7d07d1c4e6" + "119b2c518512cc29af86ef6bd317239a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:02:57 GMT" + "Mon, 13 Jul 2015 11:46:08 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/1a7c752f954bb2f094b4f5934d351a12", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzFhN2M3NTJmOTU0YmIyZjA5NGI0ZjU5MzRkMzUxYTEy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5384022ab805c369bc13d09eb2ae2aa2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzUzODQwMjJhYjgwNWMzNjliYzEzZDA5ZWIyYWUyYWEy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,48 +142,514 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 1a7c752f-954b-b2f0-94b4-f5934d351a12\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 5384022a-b805-c369-bc13-d09eb2ae2aa2\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "a558b9e272c7c01db947b3569aa86b12" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:46:38 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5384022ab805c369bc13d09eb2ae2aa2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzUzODQwMjJhYjgwNWMzNjliYzEzZDA5ZWIyYWUyYWEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 5384022a-b805-c369-bc13-d09eb2ae2aa2\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "b592b3e4f7cacb3ca9d0b7322c9be5be" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:47:08 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5384022ab805c369bc13d09eb2ae2aa2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzUzODQwMjJhYjgwNWMzNjliYzEzZDA5ZWIyYWUyYWEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 5384022a-b805-c369-bc13-d09eb2ae2aa2\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "06f379a12b1ecb55ba0c49e41938aa81" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:47:39 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5384022ab805c369bc13d09eb2ae2aa2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzUzODQwMjJhYjgwNWMzNjliYzEzZDA5ZWIyYWUyYWEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 5384022a-b805-c369-bc13-d09eb2ae2aa2\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "0b7d8cc3a245cbefb4721e1e837d8596" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:48:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5384022ab805c369bc13d09eb2ae2aa2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzUzODQwMjJhYjgwNWMzNjliYzEzZDA5ZWIyYWUyYWEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 5384022a-b805-c369-bc13-d09eb2ae2aa2\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "985a827b9faac114bea8c8ebe9f149f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:48:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/5384022ab805c369bc13d09eb2ae2aa2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzUzODQwMjJhYjgwNWMzNjliYzEzZDA5ZWIyYWUyYWEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 5384022a-b805-c369-bc13-d09eb2ae2aa2\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" ], "Content-Type": [ - "application/xml; charset=utf-8" + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9c70e36ce4fbcc88a8bfdead4c2f722e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:49:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-request-id": [ + "cfa202e9-6834-49a1-97e4-731479895dc2" + ], + "x-ms-correlation-request-id": [ + "cfa202e9-6834-49a1-97e4-731479895dc2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114913Z:cfa202e9-6834-49a1-97e4-731479895dc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:49:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680\",\r\n \"name\": \"sql-audit-cmdlet-test-rg680\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "219e125c-1f89-42b8-ad92-3a42710d6866" + ], + "x-ms-correlation-request-id": [ + "219e125c-1f89-42b8-ad92-3a42710d6866" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114914Z:219e125c-1f89-42b8-ad92-3a42710d6866" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:49:14 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/validate?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2360" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:49:15.3090728Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"6754897f-cd08-4c32-8861-53731ee17253\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1643" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-request-id": [ + "6754897f-cd08-4c32-8861-53731ee17253" + ], + "x-ms-correlation-request-id": [ + "6754897f-cd08-4c32-8861-53731ee17253" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114915Z:6754897f-cd08-4c32-8861-53731ee17253" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:49:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2360" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:49:17.4284706Z\",\r\n \"duration\": \"PT1.2875451S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "2079d2d1-92da-4f64-b245-bdd52de645d5" + ], + "x-ms-correlation-request-id": [ + "2079d2d1-92da-4f64-b245-bdd52de645d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114917Z:2079d2d1-92da-4f64-b245-bdd52de645d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:49:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], - "x-ms-servedbyregion": [ - "ussouth3" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" ], "x-ms-request-id": [ - "ed474620f39fb0d8b602ffd8db00f2a7" + "e28a7547-3a35-43b0-88db-97c92d0a9314" + ], + "x-ms-correlation-request-id": [ + "e28a7547-3a35-43b0-88db-97c92d0a9314" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114918Z:e28a7547-3a35-43b0-88db-97c92d0a9314" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:27 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 11:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "HEAD", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "119" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -194,20 +660,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14454" + "14853" ], "x-ms-request-id": [ - "34b2dd29-3ff1-4742-b62d-73aea0259683" + "c84d8376-3381-410a-bf18-12b1092dcf05" ], "x-ms-correlation-request-id": [ - "34b2dd29-3ff1-4742-b62d-73aea0259683" + "c84d8376-3381-410a-bf18-12b1092dcf05" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100328Z:34b2dd29-3ff1-4742-b62d-73aea0259683" + "WESTEUROPE:20150713T114921Z:c84d8376-3381-410a-bf18-12b1092dcf05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,31 +679,73 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:28 GMT" + "Mon, 13 Jul 2015 11:49:20 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "29" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-request-id": [ + "c2b1c590-0cd1-43e0-b18b-e5fa42e905a6" + ], + "x-ms-correlation-request-id": [ + "c2b1c590-0cd1-43e0-b18b-e5fa42e905a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114924Z:c2b1c590-0cd1-43e0-b18b-e5fa42e905a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:49:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680\",\r\n \"name\": \"sql-audit-cmdlet-test-rg680\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "207" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,17 +756,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" ], "x-ms-request-id": [ - "8190ec94-10c6-4958-9794-bf6fa8d4af4f" + "5135d805-8d75-4601-9410-fd37f5852b38" ], "x-ms-correlation-request-id": [ - "8190ec94-10c6-4958-9794-bf6fa8d4af4f" + "5135d805-8d75-4601-9410-fd37f5852b38" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100330Z:8190ec94-10c6-4958-9794-bf6fa8d4af4f" + "WESTEUROPE:20150713T114928Z:5135d805-8d75-4601-9410-fd37f5852b38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,31 +775,73 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:30 GMT" + "Mon, 13 Jul 2015 11:49:27 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/validate?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "2360" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-request-id": [ + "ef48df57-fc8d-4eac-9d48-7deb0f32a0ef" + ], + "x-ms-correlation-request-id": [ + "ef48df57-fc8d-4eac-9d48-7deb0f32a0ef" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114931Z:ef48df57-fc8d-4eac-9d48-7deb0f32a0ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], + "Date": [ + "Mon, 13 Jul 2015 11:49:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:03:31.1717976Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"fb54bff5-f74c-4375-84db-dcb18438696c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1643" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -305,17 +852,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" ], "x-ms-request-id": [ - "fb54bff5-f74c-4375-84db-dcb18438696c" + "ef96131b-dacc-482a-ada9-941d137715ef" ], "x-ms-correlation-request-id": [ - "fb54bff5-f74c-4375-84db-dcb18438696c" + "ef96131b-dacc-482a-ada9-941d137715ef" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100331Z:fb54bff5-f74c-4375-84db-dcb18438696c" + "WESTEUROPE:20150713T114934Z:ef96131b-dacc-482a-ada9-941d137715ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,31 +871,73 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:30 GMT" + "Mon, 13 Jul 2015 11:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:34.7133501Z\",\r\n \"duration\": \"PT14.5830992S\",\r\n \"trackingId\": \"15664bb0-2aed-4d80-8655-7334fb1ab945\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "668" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "2360" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14843" + ], + "x-ms-request-id": [ + "3301f3e8-65e6-4901-bbd1-110bcd7c9a83" + ], + "x-ms-correlation-request-id": [ + "3301f3e8-65e6-4901-bbd1-110bcd7c9a83" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T114937Z:3301f3e8-65e6-4901-bbd1-110bcd7c9a83" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:49:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:03:33.101111Z\",\r\n \"duration\": \"PT1.1647321S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:34.7133501Z\",\r\n \"duration\": \"PT14.5830992S\",\r\n \"trackingId\": \"15664bb0-2aed-4d80-8655-7334fb1ab945\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -359,17 +948,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14841" ], "x-ms-request-id": [ - "a9db6588-9bde-429b-98c5-29c6f796bde8" + "f72b0af5-21c3-4e53-84de-61c853c8bf25" ], "x-ms-correlation-request-id": [ - "a9db6588-9bde-429b-98c5-29c6f796bde8" + "f72b0af5-21c3-4e53-84de-61c853c8bf25" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100333Z:a9db6588-9bde-429b-98c5-29c6f796bde8" + "WESTEUROPE:20150713T114940Z:f72b0af5-21c3-4e53-84de-61c853c8bf25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,10 +967,10 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:33 GMT" + "Mon, 13 Jul 2015 11:49:39 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", @@ -393,10 +982,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:34.7133501Z\",\r\n \"duration\": \"PT14.5830992S\",\r\n \"trackingId\": \"15664bb0-2aed-4d80-8655-7334fb1ab945\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -408,16 +997,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14453" + "14839" ], "x-ms-request-id": [ - "533334e2-085a-4575-a207-c70d80bc86e9" + "d8ef8c4e-3076-4203-b737-2b78061e8ab0" ], "x-ms-correlation-request-id": [ - "533334e2-085a-4575-a207-c70d80bc86e9" + "d8ef8c4e-3076-4203-b737-2b78061e8ab0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100334Z:533334e2-085a-4575-a207-c70d80bc86e9" + "WESTEUROPE:20150713T114943Z:d8ef8c4e-3076-4203-b737-2b78061e8ab0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +1015,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:34 GMT" + "Mon, 13 Jul 2015 11:49:42 GMT" ] }, "StatusCode": 200 @@ -441,10 +1030,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:34.7133501Z\",\r\n \"duration\": \"PT14.5830992S\",\r\n \"trackingId\": \"15664bb0-2aed-4d80-8655-7334fb1ab945\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -456,16 +1045,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14451" + "14837" ], "x-ms-request-id": [ - "c7cbdde9-db3f-40e5-9248-ec41fa1c1ec1" + "b9cb75ff-ac27-4bbf-9f41-fe847fa56657" ], "x-ms-correlation-request-id": [ - "c7cbdde9-db3f-40e5-9248-ec41fa1c1ec1" + "b9cb75ff-ac27-4bbf-9f41-fe847fa56657" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100337Z:c7cbdde9-db3f-40e5-9248-ec41fa1c1ec1" + "WESTEUROPE:20150713T114946Z:b9cb75ff-ac27-4bbf-9f41-fe847fa56657" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +1063,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:36 GMT" + "Mon, 13 Jul 2015 11:49:45 GMT" ] }, "StatusCode": 200 @@ -489,10 +1078,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/1F97A67882C6532C\",\r\n \"operationId\": \"1F97A67882C6532C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:47.4075707Z\",\r\n \"duration\": \"PT12.5953831S\",\r\n \"trackingId\": \"8982b14b-8948-4bc5-befc-26a632f3e78e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:34.7133501Z\",\r\n \"duration\": \"PT14.5830992S\",\r\n \"trackingId\": \"15664bb0-2aed-4d80-8655-7334fb1ab945\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,16 +1093,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14449" + "14835" ], "x-ms-request-id": [ - "05ba195e-4530-45b7-8e5e-8105f5fc719a" + "4fc09bf5-616a-4919-ad85-654f308e428a" ], "x-ms-correlation-request-id": [ - "05ba195e-4530-45b7-8e5e-8105f5fc719a" + "4fc09bf5-616a-4919-ad85-654f308e428a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100340Z:05ba195e-4530-45b7-8e5e-8105f5fc719a" + "WESTEUROPE:20150713T114949Z:4fc09bf5-616a-4919-ad85-654f308e428a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +1111,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:39 GMT" + "Mon, 13 Jul 2015 11:49:48 GMT" ] }, "StatusCode": 200 @@ -537,10 +1126,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/1F97A67882C6532C\",\r\n \"operationId\": \"1F97A67882C6532C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:47.4075707Z\",\r\n \"duration\": \"PT12.5953831S\",\r\n \"trackingId\": \"8982b14b-8948-4bc5-befc-26a632f3e78e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:34.7133501Z\",\r\n \"duration\": \"PT14.5830992S\",\r\n \"trackingId\": \"15664bb0-2aed-4d80-8655-7334fb1ab945\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -552,16 +1141,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14446" + "14833" ], "x-ms-request-id": [ - "347c5d5b-637a-447b-8513-6b5550fccdf1" + "2273cdf2-2b42-46f8-afe0-d4c4851724b7" ], "x-ms-correlation-request-id": [ - "347c5d5b-637a-447b-8513-6b5550fccdf1" + "2273cdf2-2b42-46f8-afe0-d4c4851724b7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100343Z:347c5d5b-637a-447b-8513-6b5550fccdf1" + "WESTEUROPE:20150713T114952Z:2273cdf2-2b42-46f8-afe0-d4c4851724b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,14 +1159,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:42 GMT" + "Mon, 13 Jul 2015 11:49:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -585,10 +1174,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:03:44.7551176Z\",\r\n \"duration\": \"PT10.8078062S\",\r\n \"trackingId\": \"226ba7e4-97c7-4e82-8be1-849fe5bcd40b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:49:17.4284706Z\",\r\n \"duration\": \"PT1.2875451S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "1651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,16 +1189,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14444" + "14854" ], "x-ms-request-id": [ - "3cb23ebd-ad14-4d42-bdce-8ad81664d78b" + "d2cfca3f-c50c-401a-a087-0d5f86c0eeef" ], "x-ms-correlation-request-id": [ - "3cb23ebd-ad14-4d42-bdce-8ad81664d78b" + "d2cfca3f-c50c-401a-a087-0d5f86c0eeef" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100346Z:3cb23ebd-ad14-4d42-bdce-8ad81664d78b" + "WESTEUROPE:20150713T114918Z:d2cfca3f-c50c-401a-a087-0d5f86c0eeef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,14 +1207,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:45 GMT" + "Mon, 13 Jul 2015 11:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -633,10 +1222,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:03:44.7551176Z\",\r\n \"duration\": \"PT10.8078062S\",\r\n \"trackingId\": \"226ba7e4-97c7-4e82-8be1-849fe5bcd40b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +1237,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14441" + "14852" ], "x-ms-request-id": [ - "48d87944-c753-4ecd-82f5-b3eb9ee117c1" + "827e51b0-5813-4c2e-8660-38f0e654cdf8" ], "x-ms-correlation-request-id": [ - "48d87944-c753-4ecd-82f5-b3eb9ee117c1" + "827e51b0-5813-4c2e-8660-38f0e654cdf8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100349Z:48d87944-c753-4ecd-82f5-b3eb9ee117c1" + "WESTEUROPE:20150713T114921Z:827e51b0-5813-4c2e-8660-38f0e654cdf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,14 +1255,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:48 GMT" + "Mon, 13 Jul 2015 11:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -681,10 +1270,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:03:44.7551176Z\",\r\n \"duration\": \"PT10.8078062S\",\r\n \"trackingId\": \"226ba7e4-97c7-4e82-8be1-849fe5bcd40b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +1285,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14439" + "14850" ], "x-ms-request-id": [ - "c5d6b759-8438-4007-b365-42bdf975fb28" + "1c78135f-2764-4b21-90bd-a0eca6f395dd" ], "x-ms-correlation-request-id": [ - "c5d6b759-8438-4007-b365-42bdf975fb28" + "1c78135f-2764-4b21-90bd-a0eca6f395dd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100352Z:c5d6b759-8438-4007-b365-42bdf975fb28" + "WESTEUROPE:20150713T114924Z:1c78135f-2764-4b21-90bd-a0eca6f395dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,14 +1303,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:51 GMT" + "Mon, 13 Jul 2015 11:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -729,10 +1318,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/1F97A67882C6532C\",\r\n \"operationId\": \"1F97A67882C6532C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:03:53.3132734Z\",\r\n \"duration\": \"PT8.4786633S\",\r\n \"trackingId\": \"9f3f57c9-d258-4f18-83c2-0ae95b0dc330\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:03:44.7551176Z\",\r\n \"duration\": \"PT10.8078062S\",\r\n \"trackingId\": \"226ba7e4-97c7-4e82-8be1-849fe5bcd40b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +1333,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14435" + "14848" ], "x-ms-request-id": [ - "3b6182c9-cbcc-492e-b136-3be924f0231e" + "5b854775-2786-46dc-88d9-fc6a45b8dcfe" ], "x-ms-correlation-request-id": [ - "3b6182c9-cbcc-492e-b136-3be924f0231e" + "5b854775-2786-46dc-88d9-fc6a45b8dcfe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100355Z:3b6182c9-cbcc-492e-b136-3be924f0231e" + "WESTEUROPE:20150713T114928Z:5b854775-2786-46dc-88d9-fc6a45b8dcfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +1351,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:54 GMT" + "Mon, 13 Jul 2015 11:49:27 GMT" ] }, "StatusCode": 200 @@ -777,7 +1366,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:03:33.8303261Z\",\r\n \"duration\": \"PT1.8939472S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -792,16 +1381,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14452" + "14846" ], "x-ms-request-id": [ - "76e16b89-d3ae-4ea8-8a7d-e4c507e052bc" + "66582037-a48f-4e8d-b012-f8f066fd1007" ], "x-ms-correlation-request-id": [ - "76e16b89-d3ae-4ea8-8a7d-e4c507e052bc" + "66582037-a48f-4e8d-b012-f8f066fd1007" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100334Z:76e16b89-d3ae-4ea8-8a7d-e4c507e052bc" + "WESTEUROPE:20150713T114931Z:66582037-a48f-4e8d-b012-f8f066fd1007" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +1399,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:34 GMT" + "Mon, 13 Jul 2015 11:49:30 GMT" ] }, "StatusCode": 200 @@ -825,7 +1414,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:03:33.8303261Z\",\r\n \"duration\": \"PT1.8939472S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -840,16 +1429,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14450" + "14844" ], "x-ms-request-id": [ - "9ca9e85c-afbd-4008-ba92-dcd36b2f8d0f" + "7b0eddf6-da50-4c59-aace-b252dda28fc7" ], "x-ms-correlation-request-id": [ - "9ca9e85c-afbd-4008-ba92-dcd36b2f8d0f" + "7b0eddf6-da50-4c59-aace-b252dda28fc7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100337Z:9ca9e85c-afbd-4008-ba92-dcd36b2f8d0f" + "WESTEUROPE:20150713T114934Z:7b0eddf6-da50-4c59-aace-b252dda28fc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +1447,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:37 GMT" + "Mon, 13 Jul 2015 11:49:33 GMT" ] }, "StatusCode": 200 @@ -873,7 +1462,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:03:33.8303261Z\",\r\n \"duration\": \"PT1.8939472S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +1477,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14448" + "14842" ], "x-ms-request-id": [ - "1fd8b2f2-c9c0-420a-9c3b-b05248c4bf65" + "6706fa9f-e668-4233-88a9-e26d92cf0032" ], "x-ms-correlation-request-id": [ - "1fd8b2f2-c9c0-420a-9c3b-b05248c4bf65" + "6706fa9f-e668-4233-88a9-e26d92cf0032" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100340Z:1fd8b2f2-c9c0-420a-9c3b-b05248c4bf65" + "WESTEUROPE:20150713T114937Z:6706fa9f-e668-4233-88a9-e26d92cf0032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +1495,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:40 GMT" + "Mon, 13 Jul 2015 11:49:36 GMT" ] }, "StatusCode": 200 @@ -921,7 +1510,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:03:33.8303261Z\",\r\n \"duration\": \"PT1.8939472S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +1525,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14445" + "14840" ], "x-ms-request-id": [ - "c03aebd0-62b7-4e9f-96ef-77ddf672f4f2" + "575a1680-5953-44c1-bc18-b4d8d2ab5cd9" ], "x-ms-correlation-request-id": [ - "c03aebd0-62b7-4e9f-96ef-77ddf672f4f2" + "575a1680-5953-44c1-bc18-b4d8d2ab5cd9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100343Z:c03aebd0-62b7-4e9f-96ef-77ddf672f4f2" + "WESTEUROPE:20150713T114940Z:575a1680-5953-44c1-bc18-b4d8d2ab5cd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +1543,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:43 GMT" + "Mon, 13 Jul 2015 11:49:39 GMT" ] }, "StatusCode": 200 @@ -969,7 +1558,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:03:33.8303261Z\",\r\n \"duration\": \"PT1.8939472S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +1573,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14443" + "14838" ], "x-ms-request-id": [ - "4bdac504-cdba-4176-8ebc-4cd664bfc47a" + "c737e4ee-14bd-459a-be0e-acaed6b38998" ], "x-ms-correlation-request-id": [ - "4bdac504-cdba-4176-8ebc-4cd664bfc47a" + "c737e4ee-14bd-459a-be0e-acaed6b38998" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100346Z:4bdac504-cdba-4176-8ebc-4cd664bfc47a" + "WESTEUROPE:20150713T114943Z:c737e4ee-14bd-459a-be0e-acaed6b38998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1591,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:46 GMT" + "Mon, 13 Jul 2015 11:49:42 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1606,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:03:33.8303261Z\",\r\n \"duration\": \"PT1.8939472S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1621,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14440" + "14836" ], "x-ms-request-id": [ - "08e3b609-9cd9-4410-8da3-2d36f16d1680" + "ef00bd08-fdaa-45df-b697-d5ac36132ed4" ], "x-ms-correlation-request-id": [ - "08e3b609-9cd9-4410-8da3-2d36f16d1680" + "ef00bd08-fdaa-45df-b697-d5ac36132ed4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100349Z:08e3b609-9cd9-4410-8da3-2d36f16d1680" + "WESTEUROPE:20150713T114946Z:ef00bd08-fdaa-45df-b697-d5ac36132ed4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1639,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:49 GMT" + "Mon, 13 Jul 2015 11:49:45 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1654,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:03:33.8303261Z\",\r\n \"duration\": \"PT1.8939472S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:49:19.6471861Z\",\r\n \"duration\": \"PT3.5062606S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1669,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14436" + "14834" ], "x-ms-request-id": [ - "2ea34afe-f168-492f-9f67-911975e03788" + "04810167-33eb-4326-acd8-2a14bc8aa628" ], "x-ms-correlation-request-id": [ - "2ea34afe-f168-492f-9f67-911975e03788" + "04810167-33eb-4326-acd8-2a14bc8aa628" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100352Z:2ea34afe-f168-492f-9f67-911975e03788" + "WESTEUROPE:20150713T114949Z:04810167-33eb-4326-acd8-2a14bc8aa628" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1687,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:52 GMT" + "Mon, 13 Jul 2015 11:49:48 GMT" ] }, "StatusCode": 200 @@ -1113,10 +1702,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:03:55.7740301Z\",\r\n \"duration\": \"PT23.8376512S\",\r\n \"correlationId\": \"a9db6588-9bde-429b-98c5-29c6f796bde8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:49:49.3309428Z\",\r\n \"duration\": \"PT33.1900173S\",\r\n \"correlationId\": \"2079d2d1-92da-4f64-b245-bdd52de645d5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server680\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1128,16 +1717,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14434" + "14832" ], "x-ms-request-id": [ - "0fe8520d-bd76-4260-8b49-343de8717414" + "2e31a0b8-a5f4-4441-895f-56333ab2cc45" ], "x-ms-correlation-request-id": [ - "0fe8520d-bd76-4260-8b49-343de8717414" + "2e31a0b8-a5f4-4441-895f-56333ab2cc45" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100355Z:0fe8520d-bd76-4260-8b49-343de8717414" + "WESTEUROPE:20150713T114952Z:2e31a0b8-a5f4-4441-895f-56333ab2cc45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1735,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:55 GMT" + "Mon, 13 Jul 2015 11:49:51 GMT" ] }, "StatusCode": 200 @@ -1176,16 +1765,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14433" + "14831" ], "x-ms-request-id": [ - "118c59be-5c35-4bf3-9efc-6597294a9f5f" + "323234bf-f6de-44ff-b028-ddbf4594b457" ], "x-ms-correlation-request-id": [ - "118c59be-5c35-4bf3-9efc-6597294a9f5f" + "323234bf-f6de-44ff-b028-ddbf4594b457" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100358Z:118c59be-5c35-4bf3-9efc-6597294a9f5f" + "WESTEUROPE:20150713T114954Z:323234bf-f6de-44ff-b028-ddbf4594b457" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1783,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:57 GMT" + "Mon, 13 Jul 2015 11:49:53 GMT" ] }, "StatusCode": 200 @@ -1227,16 +1816,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:18297083-8283-43c0-80e4-ceef6fc5b6eb" + "westeurope:9a4c344a-5c95-4d02-bed3-870afce2577a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14643" + "14839" ], "x-ms-correlation-request-id": [ - "6a122899-e59b-412e-b6e1-b6767176944f" + "70c9319e-5cdd-461d-add0-b1b456aca1aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100358Z:6a122899-e59b-412e-b6e1-b6767176944f" + "WESTEUROPE:20150713T114955Z:70c9319e-5cdd-461d-add0-b1b456aca1aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,7 +1834,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:58 GMT" + "Mon, 13 Jul 2015 11:49:55 GMT" ] }, "StatusCode": 200 @@ -1260,7 +1849,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f01f2fa8-71d6-44f0-85db-db7f6bdedfa8" + "0bcccba3-83dc-41e0-b079-d395b45726e9" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1272,7 +1861,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e3eacc92-3974-45f2-b2ed-bd8340183e4a" + "37eb0809-fc9e-4c1b-8c54-7ad1c9c6f2e3" ], "X-Content-Type-Options": [ "nosniff" @@ -1281,13 +1870,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14537" + "14817" ], "x-ms-correlation-request-id": [ - "1e30b1f1-f663-4d2c-9f51-3b7b0848cd1d" + "5b77dc45-b3a6-4b92-9266-38a5c065cdfe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100400Z:1e30b1f1-f663-4d2c-9f51-3b7b0848cd1d" + "WESTEUROPE:20150713T114957Z:5b77dc45-b3a6-4b92-9266-38a5c065cdfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1296,7 +1885,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:03:59 GMT" + "Mon, 13 Jul 2015 11:49:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1314,7 +1903,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f0bab2c2-fd92-4901-899e-4cca769aff56" + "11d1d6a7-4a9f-4283-a2d6-d0d03e436f9a" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1326,7 +1915,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c352be5f-910f-4482-8e5b-428726d3c954" + "43613327-d985-4cf4-9986-3bcbd0a51d75" ], "X-Content-Type-Options": [ "nosniff" @@ -1335,13 +1924,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14535" + "14830" ], "x-ms-correlation-request-id": [ - "b6e5f2d3-43f7-4b52-8208-261fe617ff12" + "a8477f84-64c3-4a76-93b2-1c44c159fbb9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100407Z:b6e5f2d3-43f7-4b52-8208-261fe617ff12" + "WESTEUROPE:20150713T115003Z:a8477f84-64c3-4a76-93b2-1c44c159fbb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,7 +1939,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:06 GMT" + "Mon, 13 Jul 2015 11:50:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1368,7 +1957,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "41f720a0-3c2f-4ce6-a7d3-0c7705da5a06" + "182f33fe-2722-4a78-b6aa-18d98b91c3fc" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1380,7 +1969,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6a30edb4-14d5-49bb-99a2-db3cb1a7afd9" + "fe4f0208-f071-4491-a26c-06ff1cc93a4e" ], "X-Content-Type-Options": [ "nosniff" @@ -1389,13 +1978,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14534" + "14829" ], "x-ms-correlation-request-id": [ - "85f59d80-ddfa-4b9a-af67-73e06e1a4f7b" + "645cd1a5-1fd3-47f8-9d05-cc7ea5bd3314" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100408Z:85f59d80-ddfa-4b9a-af67-73e06e1a4f7b" + "WESTEUROPE:20150713T115004Z:645cd1a5-1fd3-47f8-9d05-cc7ea5bd3314" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1404,7 +1993,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:07 GMT" + "Mon, 13 Jul 2015 11:50:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1422,7 +2011,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "da988f6b-2f4b-4c97-ad66-f0045ae66716" + "057f6983-7156-4bc8-be53-6a20a8dc4c0d" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": \"********\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1434,7 +2023,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ed1fe283-3750-4d3e-b95b-704df197b107" + "5e746990-20a5-4cfb-af7f-cca4591c3461" ], "X-Content-Type-Options": [ "nosniff" @@ -1443,13 +2032,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14532" + "14827" ], "x-ms-correlation-request-id": [ - "ac6200a7-bba3-4825-a5f1-dd18aef817a7" + "ce9584ec-e6a0-43fd-9894-599539982fcb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100414Z:ac6200a7-bba3-4825-a5f1-dd18aef817a7" + "WESTEUROPE:20150713T115010Z:ce9584ec-e6a0-43fd-9894-599539982fcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1458,7 +2047,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:14 GMT" + "Mon, 13 Jul 2015 11:50:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1476,7 +2065,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "eebaf608-2256-438a-a40f-56bb9a73538b" + "213de51b-618a-410c-a0f6-027dc4a17f1c" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": \"********\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1488,7 +2077,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "53b2300d-588a-4439-9a27-3e87f1e3b43f" + "381fa565-2fcb-4430-b284-e2216594d0cb" ], "X-Content-Type-Options": [ "nosniff" @@ -1497,13 +2086,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14531" + "14826" ], "x-ms-correlation-request-id": [ - "9d534bb2-2830-4e15-ae76-c4a5eb7491c6" + "6c3f13ae-b90d-410b-9801-7357acbfbdbb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100415Z:9d534bb2-2830-4e15-ae76-c4a5eb7491c6" + "WESTEUROPE:20150713T115011Z:6c3f13ae-b90d-410b-9801-7357acbfbdbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1512,7 +2101,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:15 GMT" + "Mon, 13 Jul 2015 11:50:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1530,7 +2119,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a1a874ea-dec9-4425-a4da-73fa663f91ac" + "e1d428a2-7556-4501-a87f-2f73bd7e6e01" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1542,7 +2131,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2bf4ca91-51bb-4ec5-a8a4-f8a5ac8d695b" + "e215fbf9-9532-46f0-9986-79b9c8866f53" ], "X-Content-Type-Options": [ "nosniff" @@ -1551,13 +2140,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14529" + "14823" ], "x-ms-correlation-request-id": [ - "d9d6d8ed-74a8-4cca-94c6-d6275f3592ad" + "b195f971-1157-4831-8bcd-4b0c18071c50" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100420Z:d9d6d8ed-74a8-4cca-94c6-d6275f3592ad" + "WESTEUROPE:20150713T115016Z:b195f971-1157-4831-8bcd-4b0c18071c50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1566,7 +2155,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:20 GMT" + "Mon, 13 Jul 2015 11:50:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1584,19 +2173,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f01f2fa8-71d6-44f0-85db-db7f6bdedfa8" + "0bcccba3-83dc-41e0-b079-d395b45726e9" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"name\": \"sql-audit-cmdlet-db680\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"93a2ac01-e6dc-4116-bbed-94d91bf0c814\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:03:50.737Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:33:50.737Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"name\": \"sql-audit-cmdlet-db680\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2533dd3b-77b2-4422-bb63-ab80af21566d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:49:40.17Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:19:40.17Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "815" + "813" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "38754d82-1fa3-4864-b748-c054492f21e6" + "7cdf2a8a-6a94-4165-9b51-95f45f5de151" ], "X-Content-Type-Options": [ "nosniff" @@ -1605,13 +2194,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14536" + "14816" ], "x-ms-correlation-request-id": [ - "2ae2d2c6-895a-4a52-a1e9-6e38ab6a0a4d" + "81761cf9-7fcb-4ee0-9101-d1bb87357623" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100402Z:2ae2d2c6-895a-4a52-a1e9-6e38ab6a0a4d" + "WESTEUROPE:20150713T114958Z:81761cf9-7fcb-4ee0-9101-d1bb87357623" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1620,7 +2209,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:01 GMT" + "Mon, 13 Jul 2015 11:49:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1638,19 +2227,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "41f720a0-3c2f-4ce6-a7d3-0c7705da5a06" + "182f33fe-2722-4a78-b6aa-18d98b91c3fc" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"name\": \"sql-audit-cmdlet-db680\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"93a2ac01-e6dc-4116-bbed-94d91bf0c814\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:03:50.737Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:33:50.737Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"name\": \"sql-audit-cmdlet-db680\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2533dd3b-77b2-4422-bb63-ab80af21566d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:49:40.17Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:19:40.17Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "815" + "813" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6b0d0892-bbfa-46ce-8c30-900cdb471e91" + "1a12a0e6-3701-48c0-9f30-04b5c9d1812d" ], "X-Content-Type-Options": [ "nosniff" @@ -1659,13 +2248,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14533" + "14828" ], "x-ms-correlation-request-id": [ - "d439925a-3b3b-47ca-bda1-cd6a39a173a9" + "9b8f2e1e-752b-4d58-afd8-7807047f186e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100409Z:d439925a-3b3b-47ca-bda1-cd6a39a173a9" + "WESTEUROPE:20150713T115005Z:9b8f2e1e-752b-4d58-afd8-7807047f186e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,7 +2263,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:08 GMT" + "Mon, 13 Jul 2015 11:50:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1692,19 +2281,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "eebaf608-2256-438a-a40f-56bb9a73538b" + "213de51b-618a-410c-a0f6-027dc4a17f1c" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"name\": \"sql-audit-cmdlet-db680\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"93a2ac01-e6dc-4116-bbed-94d91bf0c814\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:03:50.737Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:33:50.737Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"name\": \"sql-audit-cmdlet-db680\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2533dd3b-77b2-4422-bb63-ab80af21566d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:49:40.17Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:19:40.17Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "815" + "813" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "7f303ec7-8929-42bc-b6c0-97d16ad0b23c" + "f10a3506-6406-42e9-9005-a79da6bfc868" ], "X-Content-Type-Options": [ "nosniff" @@ -1713,13 +2302,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14530" + "14825" ], "x-ms-correlation-request-id": [ - "7beec6fa-a10e-4c37-8046-e7beb51f3dbd" + "4185c933-932c-4d34-a23c-39ffc1a4003f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100416Z:7beec6fa-a10e-4c37-8046-e7beb51f3dbd" + "WESTEUROPE:20150713T115012Z:4185c933-932c-4d34-a23c-39ffc1a4003f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1728,7 +2317,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:16 GMT" + "Mon, 13 Jul 2015 11:50:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1746,10 +2335,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets680\",\r\n \"name\": \"auditcmdlets680\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets680\",\r\n \"name\": \"auditcmdlets680\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1761,16 +2350,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14431" + "14830" ], "x-ms-request-id": [ - "26aee13c-eb13-4362-a322-11f007e99973" + "92b20188-f1d5-4b0e-9541-ffc6da96a40e" ], "x-ms-correlation-request-id": [ - "26aee13c-eb13-4362-a322-11f007e99973" + "92b20188-f1d5-4b0e-9541-ffc6da96a40e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100402Z:26aee13c-eb13-4362-a322-11f007e99973" + "WESTEUROPE:20150713T114958Z:92b20188-f1d5-4b0e-9541-ffc6da96a40e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,7 +2368,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:01 GMT" + "Mon, 13 Jul 2015 11:49:58 GMT" ] }, "StatusCode": 200 @@ -1797,7 +2386,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets680\r\n auditcmdlets680\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets680.blob.core.windows.net/\r\n https://auditcmdlets680.queue.core.windows.net/\r\n https://auditcmdlets680.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:02:26Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets680\r\n auditcmdlets680\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets680.blob.core.windows.net/\r\n https://auditcmdlets680.queue.core.windows.net/\r\n https://auditcmdlets680.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T11:45:37Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1809,13 +2398,13 @@ "ussouth3" ], "x-ms-request-id": [ - "38ef8be7e2ffb5f4b532e1528b76134a" + "c296c0d0724ecd7b8277c6ac908614cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:02 GMT" + "Mon, 13 Jul 2015 11:49:58 GMT" ], "Server": [ "1.0.6198.243", @@ -1838,7 +2427,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"CFvuN2G7WDqUEl+66Aba/nOvUiTihpv+hubOlpzHrjht/K226WTai+mu7eu+g1YGGyR9Lbz6sbrWYTYRwVlwXA==\",\r\n \"secondaryKey\": \"U5+03LOLCA/TWOZHw4K9Ndihy9dGExWRsJsK8k78OwPZZw2NeBnq/Z38WCxS8Of+H9cdp43OZEaHseE7O2l9xw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"Tm1sMocLmW6qDfk5lHeP9NDAPnlMnED8azC9OvbwQw9yHt/0B9rMHCjD4JWMXuZfjSV4c1pQBg17MezR3UZbBw==\",\r\n \"secondaryKey\": \"aTGQWcJXFRB8Z2LDBgQCFqwi+p500tQDhpojCuSQinVj98vPd6cMrGKUl7tXPO6wOSt/EEapG4kfRfDZLlmbbQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1856,16 +2445,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:684190fe-9f2f-43d0-bf2b-3cf997eddbdd" + "southcentralus:869a11c6-9409-47e8-977f-23de5d98a62d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "1ec3f97a-d9a4-4754-96b7-2360fb4eab89" + "7a2c5778-6c3d-42bc-aea5-ee9d42834c64" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100404Z:1ec3f97a-d9a4-4754-96b7-2360fb4eab89" + "WESTEUROPE:20150713T115000Z:7a2c5778-6c3d-42bc-aea5-ee9d42834c64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1874,7 +2463,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:03 GMT" + "Mon, 13 Jul 2015 11:49:59 GMT" ] }, "StatusCode": 200 @@ -1892,7 +2481,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"CFvuN2G7WDqUEl+66Aba/nOvUiTihpv+hubOlpzHrjht/K226WTai+mu7eu+g1YGGyR9Lbz6sbrWYTYRwVlwXA==\",\r\n \"secondaryKey\": \"U5+03LOLCA/TWOZHw4K9Ndihy9dGExWRsJsK8k78OwPZZw2NeBnq/Z38WCxS8Of+H9cdp43OZEaHseE7O2l9xw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"Tm1sMocLmW6qDfk5lHeP9NDAPnlMnED8azC9OvbwQw9yHt/0B9rMHCjD4JWMXuZfjSV4c1pQBg17MezR3UZbBw==\",\r\n \"secondaryKey\": \"aTGQWcJXFRB8Z2LDBgQCFqwi+p500tQDhpojCuSQinVj98vPd6cMrGKUl7tXPO6wOSt/EEapG4kfRfDZLlmbbQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1910,16 +2499,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:12ea54ad-56fa-4bc5-9002-910d10388b5f" + "southcentralus:572299ef-a7e0-4bc5-bb5e-37824e5881e4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "e4d84463-27ba-4a54-8a07-003c4b25fee6" + "cf205f41-1838-4e35-a951-eaf9ad0bf099" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100410Z:e4d84463-27ba-4a54-8a07-003c4b25fee6" + "WESTEUROPE:20150713T115007Z:cf205f41-1838-4e35-a951-eaf9ad0bf099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1928,7 +2517,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:09 GMT" + "Mon, 13 Jul 2015 11:50:06 GMT" ] }, "StatusCode": 200 @@ -1946,7 +2535,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"CFvuN2G7WDqUEl+66Aba/nOvUiTihpv+hubOlpzHrjht/K226WTai+mu7eu+g1YGGyR9Lbz6sbrWYTYRwVlwXA==\",\r\n \"secondaryKey\": \"U5+03LOLCA/TWOZHw4K9Ndihy9dGExWRsJsK8k78OwPZZw2NeBnq/Z38WCxS8Of+H9cdp43OZEaHseE7O2l9xw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"Tm1sMocLmW6qDfk5lHeP9NDAPnlMnED8azC9OvbwQw9yHt/0B9rMHCjD4JWMXuZfjSV4c1pQBg17MezR3UZbBw==\",\r\n \"secondaryKey\": \"aTGQWcJXFRB8Z2LDBgQCFqwi+p500tQDhpojCuSQinVj98vPd6cMrGKUl7tXPO6wOSt/EEapG4kfRfDZLlmbbQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1964,16 +2553,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:4785a7f1-7ccb-4963-8cc0-ec21452e3d80" + "southcentralus:7423ede6-cf07-4ded-9174-66857e071dd6" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "cb945d26-e072-4df0-a7a7-b91529816244" + "6d7f2ffd-6cd6-4206-b366-43912ccc9e76" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100417Z:cb945d26-e072-4df0-a7a7-b91529816244" + "WESTEUROPE:20150713T115013Z:6d7f2ffd-6cd6-4206-b366-43912ccc9e76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1982,7 +2571,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:17 GMT" + "Mon, 13 Jul 2015 11:50:12 GMT" ] }, "StatusCode": 200 @@ -1991,7 +2580,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjgwL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNjgwL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountKey\": \"CFvuN2G7WDqUEl+66Aba/nOvUiTihpv+hubOlpzHrjht/K226WTai+mu7eu+g1YGGyR9Lbz6sbrWYTYRwVlwXA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountKey\": \"Tm1sMocLmW6qDfk5lHeP9NDAPnlMnED8azC9OvbwQw9yHt/0B9rMHCjD4JWMXuZfjSV4c1pQBg17MezR3UZbBw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2003,10 +2592,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f01f2fa8-71d6-44f0-85db-db7f6bdedfa8" + "0bcccba3-83dc-41e0-b079-d395b45726e9" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": \"CFvuN2G7WDqUEl+66Aba/nOvUiTihpv+hubOlpzHrjht/K226WTai+mu7eu+g1YGGyR9Lbz6sbrWYTYRwVlwXA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": \"Tm1sMocLmW6qDfk5lHeP9NDAPnlMnED8azC9OvbwQw9yHt/0B9rMHCjD4JWMXuZfjSV4c1pQBg17MezR3UZbBw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -2015,7 +2604,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "358afde6-bdbc-4583-9513-b496cdf11f0d" + "065cffac-4754-477e-b2c0-ad12d1ba84a4" ], "X-Content-Type-Options": [ "nosniff" @@ -2027,13 +2616,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "21c35374-77d5-4ff8-8b64-74ad940c245b" + "202dc26f-7f30-495e-8916-56ae7136be99" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100405Z:21c35374-77d5-4ff8-8b64-74ad940c245b" + "WESTEUROPE:20150713T115001Z:202dc26f-7f30-495e-8916-56ae7136be99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2042,7 +2631,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:04 GMT" + "Mon, 13 Jul 2015 11:50:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2054,7 +2643,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjgwL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNjgwL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountSecondaryKey\": \"U5+03LOLCA/TWOZHw4K9Ndihy9dGExWRsJsK8k78OwPZZw2NeBnq/Z38WCxS8Of+H9cdp43OZEaHseE7O2l9xw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountSecondaryKey\": \"aTGQWcJXFRB8Z2LDBgQCFqwi+p500tQDhpojCuSQinVj98vPd6cMrGKUl7tXPO6wOSt/EEapG4kfRfDZLlmbbQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2066,10 +2655,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "41f720a0-3c2f-4ce6-a7d3-0c7705da5a06" + "182f33fe-2722-4a78-b6aa-18d98b91c3fc" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": \"U5+03LOLCA/TWOZHw4K9Ndihy9dGExWRsJsK8k78OwPZZw2NeBnq/Z38WCxS8Of+H9cdp43OZEaHseE7O2l9xw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": \"aTGQWcJXFRB8Z2LDBgQCFqwi+p500tQDhpojCuSQinVj98vPd6cMrGKUl7tXPO6wOSt/EEapG4kfRfDZLlmbbQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -2078,7 +2667,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c1742798-25d0-4125-900d-ce73b4cd5d9c" + "6ea9a2ab-ac22-4a82-847e-f03a4f838b05" ], "X-Content-Type-Options": [ "nosniff" @@ -2090,13 +2679,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "f7f875d1-be0e-4574-ae3b-b0646fb9b4d3" + "bd5877cf-c557-438a-86bd-e1b3f99af083" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100412Z:f7f875d1-be0e-4574-ae3b-b0646fb9b4d3" + "WESTEUROPE:20150713T115008Z:bd5877cf-c557-438a-86bd-e1b3f99af083" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2105,7 +2694,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:11 GMT" + "Mon, 13 Jul 2015 11:50:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2117,7 +2706,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjgwL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNjgwL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountKey\": \"CFvuN2G7WDqUEl+66Aba/nOvUiTihpv+hubOlpzHrjht/K226WTai+mu7eu+g1YGGyR9Lbz6sbrWYTYRwVlwXA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountKey\": \"Tm1sMocLmW6qDfk5lHeP9NDAPnlMnED8azC9OvbwQw9yHt/0B9rMHCjD4JWMXuZfjSV4c1pQBg17MezR3UZbBw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2129,10 +2718,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "eebaf608-2256-438a-a40f-56bb9a73538b" + "213de51b-618a-410c-a0f6-027dc4a17f1c" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": \"CFvuN2G7WDqUEl+66Aba/nOvUiTihpv+hubOlpzHrjht/K226WTai+mu7eu+g1YGGyR9Lbz6sbrWYTYRwVlwXA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver68Sqlauditcmdletdb680\",\r\n \"storageAccountKey\": \"Tm1sMocLmW6qDfk5lHeP9NDAPnlMnED8azC9OvbwQw9yHt/0B9rMHCjD4JWMXuZfjSV4c1pQBg17MezR3UZbBw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -2141,7 +2730,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "828ffe80-480c-41c4-aa43-5293509eb6f8" + "586fe8e1-5488-4900-a588-440b4352081a" ], "X-Content-Type-Options": [ "nosniff" @@ -2153,13 +2742,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-correlation-request-id": [ - "6b4cdbe6-9744-4e86-857c-61de808279a6" + "6dbe8d6e-7365-4873-9996-7e7f26750b18" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100419Z:6b4cdbe6-9744-4e86-857c-61de808279a6" + "WESTEUROPE:20150713T115015Z:6dbe8d6e-7365-4873-9996-7e7f26750b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2168,7 +2757,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:19 GMT" + "Mon, 13 Jul 2015 11:50:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2198,13 +2787,13 @@ "ussouth3" ], "x-ms-request-id": [ - "67fbb62707b0bad0b9f1fd3a951368fc" + "a33e6f8fb693cf1a99932649ddbcf7f0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:29 GMT" + "Mon, 13 Jul 2015 11:50:20 GMT" ], "Server": [ "1.0.6198.243", @@ -2215,8 +2804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/67fbb62707b0bad0b9f1fd3a951368fc", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzY3ZmJiNjI3MDdiMGJhZDBiOWYxZmQzYTk1MTM2OGZj", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/a33e6f8fb693cf1a99932649ddbcf7f0", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2EzM2U2ZjhmYjY5M2NmMWE5OTkzMjY0OWRkYmNmN2Yw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,7 +2816,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 67fbb627-07b0-bad0-b9f1-fd3a951368fc\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n a33e6f8f-b693-cf1a-9993-2649ddbcf7f0\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2239,13 +2828,13 @@ "ussouth3" ], "x-ms-request-id": [ - "2371d3246209b593ae45d1bc1e225edf" + "76a10323e2dac7b59f4ab8e03711a183" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:04:31 GMT" + "Mon, 13 Jul 2015 11:50:21 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyKeepPreviousStorage.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyKeepPreviousStorage.json index 3e3ccf387b0b..cd6724bc6cfe 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyKeepPreviousStorage.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyKeepPreviousStorage.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "df76a610b8d4b418bdfbc69fb3fe4276" + "6fe9fe2cafcac38fa49a82f25c365c92" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:05:46 GMT" + "Mon, 13 Jul 2015 11:52:09 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets301" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/df76a610b8d4b418bdfbc69fb3fe4276", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2RmNzZhNjEwYjhkNGI0MThiZGZiYzY5ZmIzZmU0Mjc2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6fe9fe2cafcac38fa49a82f25c365c92", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZmZTlmZTJjYWZjYWMzOGZhNDlhODJmMjVjMzY1Yzky", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n df76a610-b8d4-b418-bdfb-c69fb3fe4276\r\n InProgress\r\n", + "ResponseBody": "\r\n 6fe9fe2c-afca-c38f-a49a-82f25c365c92\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "20c90677353cb2748494c3f26330140e" + "2925174818ccc7a7aa95357da8192312" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:05:46 GMT" + "Mon, 13 Jul 2015 11:52:09 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/df76a610b8d4b418bdfbc69fb3fe4276", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2RmNzZhNjEwYjhkNGI0MThiZGZiYzY5ZmIzZmU0Mjc2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6fe9fe2cafcac38fa49a82f25c365c92", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZmZTlmZTJjYWZjYWMzOGZhNDlhODJmMjVjMzY1Yzky", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n df76a610-b8d4-b418-bdfb-c69fb3fe4276\r\n InProgress\r\n", + "ResponseBody": "\r\n 6fe9fe2c-afca-c38f-a49a-82f25c365c92\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "e790e01f3802ba7598a204676b1acad6" + "2169199cff78c865bf25e6ec5999874e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:17 GMT" + "Mon, 13 Jul 2015 11:52:39 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/df76a610b8d4b418bdfbc69fb3fe4276", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2RmNzZhNjEwYjhkNGI0MThiZGZiYzY5ZmIzZmU0Mjc2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6fe9fe2cafcac38fa49a82f25c365c92", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZmZTlmZTJjYWZjYWMzOGZhNDlhODJmMjVjMzY1Yzky", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n df76a610-b8d4-b418-bdfb-c69fb3fe4276\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 6fe9fe2c-afca-c38f-a49a-82f25c365c92\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c2302487abf3bd409ca887e4f10fa727" + "cbbde8ae19ffcea4b6e523048a73f485" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:47 GMT" + "Mon, 13 Jul 2015 11:53:09 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14432" + "14820" ], "x-ms-request-id": [ - "e03fc742-76cf-47e6-812c-c076f5bb8198" + "d389d56b-60be-4268-aceb-721f1eba7cd4" ], "x-ms-correlation-request-id": [ - "e03fc742-76cf-47e6-812c-c076f5bb8198" + "d389d56b-60be-4268-aceb-721f1eba7cd4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100647Z:e03fc742-76cf-47e6-812c-c076f5bb8198" + "WESTEUROPE:20150713T115311Z:d389d56b-60be-4268-aceb-721f1eba7cd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:47 GMT" + "Mon, 13 Jul 2015 11:53:10 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1190" ], "x-ms-request-id": [ - "9e9a357a-c3b0-46c1-b8f2-f747a67b4d00" + "4928b09d-432d-45e0-bafd-8279bf22849d" ], "x-ms-correlation-request-id": [ - "9e9a357a-c3b0-46c1-b8f2-f747a67b4d00" + "4928b09d-432d-45e0-bafd-8279bf22849d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100649Z:9e9a357a-c3b0-46c1-b8f2-f747a67b4d00" + "WESTEUROPE:20150713T115312Z:4928b09d-432d-45e0-bafd-8279bf22849d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:48 GMT" + "Mon, 13 Jul 2015 11:53:12 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:06:50.3501685Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"32fa4e81-b322-431e-aa00-e2002863f3a1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:53:13.7075156Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"118a2442-0df7-4713-b651-46159b1ed113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1189" ], "x-ms-request-id": [ - "32fa4e81-b322-431e-aa00-e2002863f3a1" + "118a2442-0df7-4713-b651-46159b1ed113" ], "x-ms-correlation-request-id": [ - "32fa4e81-b322-431e-aa00-e2002863f3a1" + "118a2442-0df7-4713-b651-46159b1ed113" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100650Z:32fa4e81-b322-431e-aa00-e2002863f3a1" + "WESTEUROPE:20150713T115313Z:118a2442-0df7-4713-b651-46159b1ed113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:49 GMT" + "Mon, 13 Jul 2015 11:53:12 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:06:52.3878154Z\",\r\n \"duration\": \"PT1.2877012S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:53:15.7734432Z\",\r\n \"duration\": \"PT1.2942247S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1188" ], "x-ms-request-id": [ - "03395c65-5827-4259-9223-89e3fe79924c" + "8df7ad2c-f89e-481c-bac0-e72623a76856" ], "x-ms-correlation-request-id": [ - "03395c65-5827-4259-9223-89e3fe79924c" + "8df7ad2c-f89e-481c-bac0-e72623a76856" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100652Z:03395c65-5827-4259-9223-89e3fe79924c" + "WESTEUROPE:20150713T115316Z:8df7ad2c-f89e-481c-bac0-e72623a76856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:52 GMT" + "Mon, 13 Jul 2015 11:53:15 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14431" + "14819" ], "x-ms-request-id": [ - "c566d0a8-ef0b-4b12-951a-aa3a5e516af6" + "ca29ffe8-a763-4ab6-a725-6c684ace355b" ], "x-ms-correlation-request-id": [ - "c566d0a8-ef0b-4b12-951a-aa3a5e516af6" + "ca29ffe8-a763-4ab6-a725-6c684ace355b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100653Z:c566d0a8-ef0b-4b12-951a-aa3a5e516af6" + "WESTEUROPE:20150713T115316Z:ca29ffe8-a763-4ab6-a725-6c684ace355b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:52 GMT" + "Mon, 13 Jul 2015 11:53:16 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14429" + "14817" ], "x-ms-request-id": [ - "7e2a3eb4-5989-4c4c-9872-993936bfe649" + "65e59038-7531-4617-bcbe-fd295aa322a0" ], "x-ms-correlation-request-id": [ - "7e2a3eb4-5989-4c4c-9872-993936bfe649" + "65e59038-7531-4617-bcbe-fd295aa322a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100656Z:7e2a3eb4-5989-4c4c-9872-993936bfe649" + "WESTEUROPE:20150713T115319Z:65e59038-7531-4617-bcbe-fd295aa322a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:55 GMT" + "Mon, 13 Jul 2015 11:53:19 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14427" + "14815" ], "x-ms-request-id": [ - "6feed60f-2df7-45f7-857d-362642deb78f" + "776a0f63-a1c5-4903-acfa-af755a9b4aed" ], "x-ms-correlation-request-id": [ - "6feed60f-2df7-45f7-857d-362642deb78f" + "776a0f63-a1c5-4903-acfa-af755a9b4aed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100659Z:6feed60f-2df7-45f7-857d-362642deb78f" + "WESTEUROPE:20150713T115322Z:776a0f63-a1c5-4903-acfa-af755a9b4aed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:58 GMT" + "Mon, 13 Jul 2015 11:53:21 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14423" + "14813" ], "x-ms-request-id": [ - "4e9d80e3-38ef-475e-9a13-3a46023e33d0" + "ad3197d8-9670-40ed-8cb9-2b3e6ee8eaa9" ], "x-ms-correlation-request-id": [ - "4e9d80e3-38ef-475e-9a13-3a46023e33d0" + "ad3197d8-9670-40ed-8cb9-2b3e6ee8eaa9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100702Z:4e9d80e3-38ef-475e-9a13-3a46023e33d0" + "WESTEUROPE:20150713T115325Z:ad3197d8-9670-40ed-8cb9-2b3e6ee8eaa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:01 GMT" + "Mon, 13 Jul 2015 11:53:24 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14421" + "14811" ], "x-ms-request-id": [ - "bf71e117-7b9c-416c-8beb-657c672eaaf0" + "e435fe2b-ad7f-49fe-b599-550f01245355" ], "x-ms-correlation-request-id": [ - "bf71e117-7b9c-416c-8beb-657c672eaaf0" + "e435fe2b-ad7f-49fe-b599-550f01245355" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100705Z:bf71e117-7b9c-416c-8beb-657c672eaaf0" + "WESTEUROPE:20150713T115328Z:e435fe2b-ad7f-49fe-b599-550f01245355" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:05 GMT" + "Mon, 13 Jul 2015 11:53:28 GMT" ] }, "StatusCode": 200 @@ -633,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:53:29.9679759Z\",\r\n \"duration\": \"PT13.0708967S\",\r\n \"trackingId\": \"10d504bb-3e69-4e26-b848-4c1811193b38\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14419" + "14809" ], "x-ms-request-id": [ - "e82b7be9-1f63-4f99-8dbe-a672009b3d92" + "21ee3a20-802b-474c-ba0c-390e7e12fc0a" ], "x-ms-correlation-request-id": [ - "e82b7be9-1f63-4f99-8dbe-a672009b3d92" + "21ee3a20-802b-474c-ba0c-390e7e12fc0a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100708Z:e82b7be9-1f63-4f99-8dbe-a672009b3d92" + "WESTEUROPE:20150713T115331Z:21ee3a20-802b-474c-ba0c-390e7e12fc0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:08 GMT" + "Mon, 13 Jul 2015 11:53:31 GMT" ] }, "StatusCode": 200 @@ -681,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:53:29.9679759Z\",\r\n \"duration\": \"PT13.0708967S\",\r\n \"trackingId\": \"10d504bb-3e69-4e26-b848-4c1811193b38\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14417" + "14807" ], "x-ms-request-id": [ - "d986f502-4b8a-4bf9-95b3-574138859012" + "2099b9f2-c3fe-4cc2-b504-f6fb8a70ce37" ], "x-ms-correlation-request-id": [ - "d986f502-4b8a-4bf9-95b3-574138859012" + "2099b9f2-c3fe-4cc2-b504-f6fb8a70ce37" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100711Z:d986f502-4b8a-4bf9-95b3-574138859012" + "WESTEUROPE:20150713T115334Z:2099b9f2-c3fe-4cc2-b504-f6fb8a70ce37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:11 GMT" + "Mon, 13 Jul 2015 11:53:34 GMT" ] }, "StatusCode": 200 @@ -729,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:07:13.3271173Z\",\r\n \"duration\": \"PT20.711878S\",\r\n \"trackingId\": \"a7526257-9083-4dba-9270-cec73f7058c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:53:29.9679759Z\",\r\n \"duration\": \"PT13.0708967S\",\r\n \"trackingId\": \"10d504bb-3e69-4e26-b848-4c1811193b38\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14413" + "14805" ], "x-ms-request-id": [ - "6409f2de-6910-4f16-8c17-9af0aeee788e" + "606c0549-f5d3-42f5-9013-f8c9788f19a0" ], "x-ms-correlation-request-id": [ - "6409f2de-6910-4f16-8c17-9af0aeee788e" + "606c0549-f5d3-42f5-9013-f8c9788f19a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100714Z:6409f2de-6910-4f16-8c17-9af0aeee788e" + "WESTEUROPE:20150713T115337Z:606c0549-f5d3-42f5-9013-f8c9788f19a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:14 GMT" + "Mon, 13 Jul 2015 11:53:37 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:07:13.3271173Z\",\r\n \"duration\": \"PT20.711878S\",\r\n \"trackingId\": \"a7526257-9083-4dba-9270-cec73f7058c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/285A958569840D9F\",\r\n \"operationId\": \"285A958569840D9F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:53:39.1615968Z\",\r\n \"duration\": \"PT8.6118929S\",\r\n \"trackingId\": \"0da38f31-4bdb-4ae6-afd2-eea725e5bbf7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:53:29.9679759Z\",\r\n \"duration\": \"PT13.0708967S\",\r\n \"trackingId\": \"10d504bb-3e69-4e26-b848-4c1811193b38\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14411" + "14803" ], "x-ms-request-id": [ - "216ddd5b-79e4-4d6f-9fed-e1e40bdf00fd" + "9d630ee5-3013-4944-a199-a6703ca09174" ], "x-ms-correlation-request-id": [ - "216ddd5b-79e4-4d6f-9fed-e1e40bdf00fd" + "9d630ee5-3013-4944-a199-a6703ca09174" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100717Z:216ddd5b-79e4-4d6f-9fed-e1e40bdf00fd" + "WESTEUROPE:20150713T115340Z:9d630ee5-3013-4944-a199-a6703ca09174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:17 GMT" + "Mon, 13 Jul 2015 11:53:40 GMT" ] }, "StatusCode": 200 @@ -825,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/285A958569840D9F\",\r\n \"operationId\": \"285A958569840D9F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:07:20.4227347Z\",\r\n \"duration\": \"PT7.0254841S\",\r\n \"trackingId\": \"9c9fa877-f0ca-4317-ad14-611ff727ed23\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:07:13.3271173Z\",\r\n \"duration\": \"PT20.711878S\",\r\n \"trackingId\": \"a7526257-9083-4dba-9270-cec73f7058c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/285A958569840D9F\",\r\n \"operationId\": \"285A958569840D9F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:53:39.1615968Z\",\r\n \"duration\": \"PT8.6118929S\",\r\n \"trackingId\": \"0da38f31-4bdb-4ae6-afd2-eea725e5bbf7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:53:29.9679759Z\",\r\n \"duration\": \"PT13.0708967S\",\r\n \"trackingId\": \"10d504bb-3e69-4e26-b848-4c1811193b38\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14409" + "14800" ], "x-ms-request-id": [ - "9fd5f719-c04b-4e4d-824a-1531acb80e5a" + "f4c5d2ca-3ff1-4426-a94b-160edff633c2" ], "x-ms-correlation-request-id": [ - "9fd5f719-c04b-4e4d-824a-1531acb80e5a" + "f4c5d2ca-3ff1-4426-a94b-160edff633c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100720Z:9fd5f719-c04b-4e4d-824a-1531acb80e5a" + "WESTEUROPE:20150713T115344Z:f4c5d2ca-3ff1-4426-a94b-160edff633c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,103 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzMwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/285A958569840D9F\",\r\n \"operationId\": \"285A958569840D9F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:07:20.4227347Z\",\r\n \"duration\": \"PT7.0254841S\",\r\n \"trackingId\": \"9c9fa877-f0ca-4317-ad14-611ff727ed23\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup/operations/0A66FDB400D214A7\",\r\n \"operationId\": \"0A66FDB400D214A7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:07:13.3271173Z\",\r\n \"duration\": \"PT20.711878S\",\r\n \"trackingId\": \"a7526257-9083-4dba-9270-cec73f7058c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1389" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14407" - ], - "x-ms-request-id": [ - "9e4326fc-d536-476b-9213-3ef3d0a581dc" - ], - "x-ms-correlation-request-id": [ - "9e4326fc-d536-476b-9213-3ef3d0a581dc" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100723Z:9e4326fc-d536-476b-9213-3ef3d0a581dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:07:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzMwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14430" - ], - "x-ms-request-id": [ - "d4859970-6215-4fb5-8036-83cb4f254b67" - ], - "x-ms-correlation-request-id": [ - "d4859970-6215-4fb5-8036-83cb4f254b67" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100653Z:d4859970-6215-4fb5-8036-83cb4f254b67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:06:53 GMT" + "Mon, 13 Jul 2015 11:53:43 GMT" ] }, "StatusCode": 200 @@ -969,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14428" + "14818" ], "x-ms-request-id": [ - "067e207d-0782-4d8f-bd1b-fa49aac8886c" + "6cea7780-acc3-4f7a-bd9e-a1b7c8f81580" ], "x-ms-correlation-request-id": [ - "067e207d-0782-4d8f-bd1b-fa49aac8886c" + "6cea7780-acc3-4f7a-bd9e-a1b7c8f81580" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100656Z:067e207d-0782-4d8f-bd1b-fa49aac8886c" + "WESTEUROPE:20150713T115317Z:6cea7780-acc3-4f7a-bd9e-a1b7c8f81580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:56 GMT" + "Mon, 13 Jul 2015 11:53:16 GMT" ] }, "StatusCode": 200 @@ -1017,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14425" + "14816" ], "x-ms-request-id": [ - "51b8c5c9-ca7e-4d84-bc5b-f5d1392ba0bd" + "e908366d-318f-4a18-820c-841ed133f174" ], "x-ms-correlation-request-id": [ - "51b8c5c9-ca7e-4d84-bc5b-f5d1392ba0bd" + "e908366d-318f-4a18-820c-841ed133f174" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100659Z:51b8c5c9-ca7e-4d84-bc5b-f5d1392ba0bd" + "WESTEUROPE:20150713T115320Z:e908366d-318f-4a18-820c-841ed133f174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:06:59 GMT" + "Mon, 13 Jul 2015 11:53:19 GMT" ] }, "StatusCode": 200 @@ -1065,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14422" + "14814" ], "x-ms-request-id": [ - "57ee09fe-f960-4713-8724-a00c35f356d8" + "259fdc98-1520-4e7b-91ea-6b936f2ee8b3" ], "x-ms-correlation-request-id": [ - "57ee09fe-f960-4713-8724-a00c35f356d8" + "259fdc98-1520-4e7b-91ea-6b936f2ee8b3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100702Z:57ee09fe-f960-4713-8724-a00c35f356d8" + "WESTEUROPE:20150713T115323Z:259fdc98-1520-4e7b-91ea-6b936f2ee8b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:01 GMT" + "Mon, 13 Jul 2015 11:53:22 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14420" + "14812" ], "x-ms-request-id": [ - "0872a904-63f8-45a5-a858-dca8947b9903" + "fe3bfdc0-e07d-486b-aad4-6895db6fb15b" ], "x-ms-correlation-request-id": [ - "0872a904-63f8-45a5-a858-dca8947b9903" + "fe3bfdc0-e07d-486b-aad4-6895db6fb15b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100705Z:0872a904-63f8-45a5-a858-dca8947b9903" + "WESTEUROPE:20150713T115326Z:fe3bfdc0-e07d-486b-aad4-6895db6fb15b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:05 GMT" + "Mon, 13 Jul 2015 11:53:25 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14418" + "14810" ], "x-ms-request-id": [ - "004bf8e4-b478-4126-a309-f96fc3edf719" + "486c8a6b-9b1e-431b-8f9e-b4e4782734d1" ], "x-ms-correlation-request-id": [ - "004bf8e4-b478-4126-a309-f96fc3edf719" + "486c8a6b-9b1e-431b-8f9e-b4e4782734d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100709Z:004bf8e4-b478-4126-a309-f96fc3edf719" + "WESTEUROPE:20150713T115329Z:486c8a6b-9b1e-431b-8f9e-b4e4782734d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:08 GMT" + "Mon, 13 Jul 2015 11:53:29 GMT" ] }, "StatusCode": 200 @@ -1209,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1224,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14416" + "14808" ], "x-ms-request-id": [ - "672c2d0e-4a3f-463f-a074-5f6b12ee619c" + "cb68b4a1-e808-4e8f-b717-507fc30722a0" ], "x-ms-correlation-request-id": [ - "672c2d0e-4a3f-463f-a074-5f6b12ee619c" + "cb68b4a1-e808-4e8f-b717-507fc30722a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100712Z:672c2d0e-4a3f-463f-a074-5f6b12ee619c" + "WESTEUROPE:20150713T115332Z:cb68b4a1-e808-4e8f-b717-507fc30722a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:11 GMT" + "Mon, 13 Jul 2015 11:53:32 GMT" ] }, "StatusCode": 200 @@ -1257,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1272,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14412" + "14806" ], "x-ms-request-id": [ - "db17d805-0ef5-421e-b2c0-de2926ac4df5" + "f0a15543-4e27-4f89-926a-e86993367425" ], "x-ms-correlation-request-id": [ - "db17d805-0ef5-421e-b2c0-de2926ac4df5" + "f0a15543-4e27-4f89-926a-e86993367425" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100714Z:db17d805-0ef5-421e-b2c0-de2926ac4df5" + "WESTEUROPE:20150713T115335Z:f0a15543-4e27-4f89-926a-e86993367425" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:14 GMT" + "Mon, 13 Jul 2015 11:53:35 GMT" ] }, "StatusCode": 200 @@ -1305,7 +1209,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1320,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14410" + "14804" ], "x-ms-request-id": [ - "ae3a78c7-b1b4-44a4-9241-cdb087b3525b" + "6679e44a-6ac1-412b-9cdd-7a742af1fb2b" ], "x-ms-correlation-request-id": [ - "ae3a78c7-b1b4-44a4-9241-cdb087b3525b" + "6679e44a-6ac1-412b-9cdd-7a742af1fb2b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100717Z:ae3a78c7-b1b4-44a4-9241-cdb087b3525b" + "WESTEUROPE:20150713T115338Z:6679e44a-6ac1-412b-9cdd-7a742af1fb2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:17 GMT" + "Mon, 13 Jul 2015 11:53:38 GMT" ] }, "StatusCode": 200 @@ -1353,7 +1257,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:06:52.4917827Z\",\r\n \"duration\": \"PT1.3916685S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:53:16.4318924Z\",\r\n \"duration\": \"PT1.9526739S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1368,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14408" + "14802" ], "x-ms-request-id": [ - "3a2ac108-9f5b-4412-bd49-880e3f2058cf" + "cdaca9c8-a6b6-4938-9bd6-d9d66764cdad" ], "x-ms-correlation-request-id": [ - "3a2ac108-9f5b-4412-bd49-880e3f2058cf" + "cdaca9c8-a6b6-4938-9bd6-d9d66764cdad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100721Z:3a2ac108-9f5b-4412-bd49-880e3f2058cf" + "WESTEUROPE:20150713T115341Z:cdaca9c8-a6b6-4938-9bd6-d9d66764cdad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:20 GMT" + "Mon, 13 Jul 2015 11:53:41 GMT" ] }, "StatusCode": 200 @@ -1401,10 +1305,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:07:21.5738467Z\",\r\n \"duration\": \"PT30.4737325S\",\r\n \"correlationId\": \"03395c65-5827-4259-9223-89e3fe79924c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db301\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server301\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:53:41.3001891Z\",\r\n \"duration\": \"PT26.8209706S\",\r\n \"correlationId\": \"8df7ad2c-f89e-481c-bac0-e72623a76856\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server301/sql-audit-cmdlet-db301\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server301\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1416,16 +1320,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14406" + "14799" ], "x-ms-request-id": [ - "e7bdf541-0e6f-4ab0-8254-d685eea1ce37" + "2bbf1db5-80e0-4385-a770-855a9db517f8" ], "x-ms-correlation-request-id": [ - "e7bdf541-0e6f-4ab0-8254-d685eea1ce37" + "2bbf1db5-80e0-4385-a770-855a9db517f8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100724Z:e7bdf541-0e6f-4ab0-8254-d685eea1ce37" + "WESTEUROPE:20150713T115344Z:2bbf1db5-80e0-4385-a770-855a9db517f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,7 +1338,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:23 GMT" + "Mon, 13 Jul 2015 11:53:44 GMT" ] }, "StatusCode": 200 @@ -1464,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14405" + "14798" ], "x-ms-request-id": [ - "94c67cc2-5319-42c9-b854-2ecfb0ca514b" + "f17a6ad8-f4c6-4ae5-a627-21f1e0778d6b" ], "x-ms-correlation-request-id": [ - "94c67cc2-5319-42c9-b854-2ecfb0ca514b" + "f17a6ad8-f4c6-4ae5-a627-21f1e0778d6b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100726Z:94c67cc2-5319-42c9-b854-2ecfb0ca514b" + "WESTEUROPE:20150713T115346Z:f17a6ad8-f4c6-4ae5-a627-21f1e0778d6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:26 GMT" + "Mon, 13 Jul 2015 11:53:46 GMT" ] }, "StatusCode": 200 @@ -1515,16 +1419,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:b6b8c25a-4146-40c1-bb7c-44bc7223a85f" + "westeurope:7ef2ed01-e06b-42ce-913f-4a669cc936be" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14565" + "14855" ], "x-ms-correlation-request-id": [ - "ba858293-37eb-4294-bda9-f8aeadcdfced" + "6e1b97ae-8436-46cc-b535-d86805c3401f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100727Z:ba858293-37eb-4294-bda9-f8aeadcdfced" + "WESTEUROPE:20150713T115347Z:6e1b97ae-8436-46cc-b535-d86805c3401f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1533,7 +1437,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:26 GMT" + "Mon, 13 Jul 2015 11:53:46 GMT" ] }, "StatusCode": 200 @@ -1548,7 +1452,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5e998634-9477-4460-be2b-eae8e70e0c05" + "55b59cf7-2ad9-40be-a4f3-7ca5ca49785c" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1560,7 +1464,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4b40dcb6-68ab-4959-8ea8-a3b9d48794b7" + "b554b888-25fb-461f-8d46-16a5947808c7" ], "X-Content-Type-Options": [ "nosniff" @@ -1569,13 +1473,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14404" + "14830" ], "x-ms-correlation-request-id": [ - "1f6d5906-f851-407b-9af9-c24855d2de4b" + "e2398ed4-74ba-457c-8318-36534fccbaa3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100729Z:1f6d5906-f851-407b-9af9-c24855d2de4b" + "WESTEUROPE:20150713T115348Z:e2398ed4-74ba-457c-8318-36534fccbaa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,7 +1488,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:28 GMT" + "Mon, 13 Jul 2015 11:53:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1602,7 +1506,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ed6e62bd-0aea-4249-8ae0-edff79ed3dff" + "5b1ac9a5-7621-43e2-95b0-03d8bfbd95cb" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1614,7 +1518,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "7f0f6e2a-7b82-496f-b521-b5888efb34a4" + "8b805edb-216a-426d-9a0f-8b9d026736f7" ], "X-Content-Type-Options": [ "nosniff" @@ -1623,13 +1527,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14401" + "14827" ], "x-ms-correlation-request-id": [ - "4b24764c-607b-41a5-adfb-63282763287a" + "2f015a3a-c9ca-4b98-8bcc-a3873136c274" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100735Z:4b24764c-607b-41a5-adfb-63282763287a" + "WESTEUROPE:20150713T115354Z:2f015a3a-c9ca-4b98-8bcc-a3873136c274" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,7 +1542,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:34 GMT" + "Mon, 13 Jul 2015 11:53:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1656,7 +1560,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "984145ed-3d84-4119-b22b-f42396a1dfee" + "e2e143ee-a428-40d1-abc1-50cc55b35c5f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1668,7 +1572,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cc202ad6-67f0-4255-b082-50d306f8b2eb" + "9d11124d-7856-4ea5-a116-46044e65c0b3" ], "X-Content-Type-Options": [ "nosniff" @@ -1677,13 +1581,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14400" + "14826" ], "x-ms-correlation-request-id": [ - "b9fe404e-fbef-49fe-8ca4-04451d8ca967" + "a21ed2a1-2e49-406b-a386-d771e00d0b2f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100736Z:b9fe404e-fbef-49fe-8ca4-04451d8ca967" + "WESTEUROPE:20150713T115355Z:a21ed2a1-2e49-406b-a386-d771e00d0b2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1692,7 +1596,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:36 GMT" + "Mon, 13 Jul 2015 11:53:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1710,7 +1614,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d75d3c84-989d-48a5-9295-4a6841615535" + "7071573d-7799-49aa-aed1-d1a5ce4250b7" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1722,7 +1626,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "26d64dc4-f842-4ca2-9bd5-463a5e737c66" + "c75a8e72-0400-4358-a547-7ffac19c9565" ], "X-Content-Type-Options": [ "nosniff" @@ -1731,13 +1635,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14397" + "14824" ], "x-ms-correlation-request-id": [ - "ab2af9df-e85c-4e3b-8e16-d49c95728277" + "b2ffeb0e-34ca-463a-af70-8f41f86b6ed9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100742Z:ab2af9df-e85c-4e3b-8e16-d49c95728277" + "WESTEUROPE:20150713T115400Z:b2ffeb0e-34ca-463a-af70-8f41f86b6ed9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1746,7 +1650,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:41 GMT" + "Mon, 13 Jul 2015 11:53:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1764,10 +1668,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5e998634-9477-4460-be2b-eae8e70e0c05" + "55b59cf7-2ad9-40be-a4f3-7ca5ca49785c" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"name\": \"sql-audit-cmdlet-db301\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"759e0fe2-7e83-45c5-9afa-ccce789c75f4\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:07:18.097Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:37:18.097Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"name\": \"sql-audit-cmdlet-db301\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"aaf7619a-526c-436a-8f6d-d077af0ac296\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:53:35.877Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:23:35.877Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1776,7 +1680,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "01527752-91eb-4aae-ac02-f5c6394af54e" + "4b4f0607-5322-4aee-b9e0-9155def37ffc" ], "X-Content-Type-Options": [ "nosniff" @@ -1785,13 +1689,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14403" + "14829" ], "x-ms-correlation-request-id": [ - "3d96a797-9aa9-46cf-a9eb-18e95de003cc" + "52cad2db-acc7-41ad-b85f-6cad49d6e1be" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100730Z:3d96a797-9aa9-46cf-a9eb-18e95de003cc" + "WESTEUROPE:20150713T115350Z:52cad2db-acc7-41ad-b85f-6cad49d6e1be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,7 +1704,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:30 GMT" + "Mon, 13 Jul 2015 11:53:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1818,10 +1722,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "984145ed-3d84-4119-b22b-f42396a1dfee" + "e2e143ee-a428-40d1-abc1-50cc55b35c5f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"name\": \"sql-audit-cmdlet-db301\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"759e0fe2-7e83-45c5-9afa-ccce789c75f4\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:07:18.097Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:37:18.097Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301\",\r\n \"name\": \"sql-audit-cmdlet-db301\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"aaf7619a-526c-436a-8f6d-d077af0ac296\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:53:35.877Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:23:35.877Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1830,7 +1734,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ee017f14-7f75-452a-9bbb-e77fe0e66787" + "f2121a94-7178-4197-93ab-865916d38f25" ], "X-Content-Type-Options": [ "nosniff" @@ -1839,13 +1743,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14398" + "14825" ], "x-ms-correlation-request-id": [ - "70fcba21-cda3-4c07-9748-04053a780a69" + "1f2c1937-e780-40be-8fb1-30dbf967018a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100738Z:70fcba21-cda3-4c07-9748-04053a780a69" + "WESTEUROPE:20150713T115356Z:1f2c1937-e780-40be-8fb1-30dbf967018a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1854,7 +1758,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:37 GMT" + "Mon, 13 Jul 2015 11:53:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1872,10 +1776,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets301\",\r\n \"name\": \"auditcmdlets301\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets301\",\r\n \"name\": \"auditcmdlets301\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1887,16 +1791,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14402" + "14797" ], "x-ms-request-id": [ - "f171771c-6160-44be-907f-9503c9b4a6cd" + "b3c225d0-5a4b-41ef-85eb-2e77493534a1" ], "x-ms-correlation-request-id": [ - "f171771c-6160-44be-907f-9503c9b4a6cd" + "b3c225d0-5a4b-41ef-85eb-2e77493534a1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100730Z:f171771c-6160-44be-907f-9503c9b4a6cd" + "WESTEUROPE:20150713T115350Z:b3c225d0-5a4b-41ef-85eb-2e77493534a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1905,7 +1809,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:30 GMT" + "Mon, 13 Jul 2015 11:53:49 GMT" ] }, "StatusCode": 200 @@ -1923,7 +1827,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets301\r\n auditcmdlets301\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets301.blob.core.windows.net/\r\n https://auditcmdlets301.queue.core.windows.net/\r\n https://auditcmdlets301.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:05:46Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets301\r\n auditcmdlets301\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets301.blob.core.windows.net/\r\n https://auditcmdlets301.queue.core.windows.net/\r\n https://auditcmdlets301.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T11:52:08Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1935,13 +1839,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b101183394bbbf6ebf6b57fc2bfdeef4" + "3acd7bfb69cdcffa96061b43a12d61d2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:31 GMT" + "Mon, 13 Jul 2015 11:53:50 GMT" ], "Server": [ "1.0.6198.243", @@ -1964,7 +1868,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"fpagJS5KERaD1z35xCKHFhoMCFeUskXPhseqD1spDbQfRS9/gGMscXyotfmBYRMOCBHKDoaH2PP4b5m/sMRJeg==\",\r\n \"secondaryKey\": \"05KXtArppP80pY+rusqjry4iHWcQPTF8PeA1RY+AYszOJQOl1B2/pwFGdYpNAjMphffFxDjI1j6f6S8ksIA1Uw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"UT3B7+xg3EhZxgAtIwkcwnWpHXsPSBRqi5UwumTqQutPWkqqGqDXQOqJJVVLcUBvRYPXyzXLxCsknW/5zKGceg==\",\r\n \"secondaryKey\": \"sYCtFWb0V4QrB2ExUwpQlaXrjA61Zy/IG8Pue9S+xxyRNK5hSiF/T9WEfyTsHzrEHeMYRXY6yAAka9QtgObgJw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1982,16 +1886,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:4287688f-b923-469f-8e70-4bbbbd93321a" + "southcentralus:f2532f38-83a5-4ed8-8646-71f991d203d8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1190" ], "x-ms-correlation-request-id": [ - "a95c618b-c3a0-4ca1-80ac-0b2de58aadb3" + "346aeea7-7fe8-47b4-862c-54d0b3a6518a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100732Z:a95c618b-c3a0-4ca1-80ac-0b2de58aadb3" + "WESTEUROPE:20150713T115351Z:346aeea7-7fe8-47b4-862c-54d0b3a6518a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2000,7 +1904,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:31 GMT" + "Mon, 13 Jul 2015 11:53:50 GMT" ] }, "StatusCode": 200 @@ -2018,7 +1922,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"fpagJS5KERaD1z35xCKHFhoMCFeUskXPhseqD1spDbQfRS9/gGMscXyotfmBYRMOCBHKDoaH2PP4b5m/sMRJeg==\",\r\n \"secondaryKey\": \"05KXtArppP80pY+rusqjry4iHWcQPTF8PeA1RY+AYszOJQOl1B2/pwFGdYpNAjMphffFxDjI1j6f6S8ksIA1Uw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"UT3B7+xg3EhZxgAtIwkcwnWpHXsPSBRqi5UwumTqQutPWkqqGqDXQOqJJVVLcUBvRYPXyzXLxCsknW/5zKGceg==\",\r\n \"secondaryKey\": \"sYCtFWb0V4QrB2ExUwpQlaXrjA61Zy/IG8Pue9S+xxyRNK5hSiF/T9WEfyTsHzrEHeMYRXY6yAAka9QtgObgJw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2036,16 +1940,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:0104042e-c60f-476e-b5dd-3bfac3c7986d" + "southcentralus:9c9026fc-1a69-4dcf-a35c-e67ef4881b65" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1188" ], "x-ms-correlation-request-id": [ - "eb857742-6d03-4657-b1de-c5f6fffbdbdd" + "ea6d4372-cfab-425f-b0ee-0090538c282a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100739Z:eb857742-6d03-4657-b1de-c5f6fffbdbdd" + "WESTEUROPE:20150713T115357Z:ea6d4372-cfab-425f-b0ee-0090538c282a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2054,7 +1958,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:38 GMT" + "Mon, 13 Jul 2015 11:53:56 GMT" ] }, "StatusCode": 200 @@ -2063,7 +1967,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzMwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMzAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMzAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"storageAccountKey\": \"fpagJS5KERaD1z35xCKHFhoMCFeUskXPhseqD1spDbQfRS9/gGMscXyotfmBYRMOCBHKDoaH2PP4b5m/sMRJeg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"storageAccountKey\": \"UT3B7+xg3EhZxgAtIwkcwnWpHXsPSBRqi5UwumTqQutPWkqqGqDXQOqJJVVLcUBvRYPXyzXLxCsknW/5zKGceg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2075,10 +1979,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5e998634-9477-4460-be2b-eae8e70e0c05" + "55b59cf7-2ad9-40be-a4f3-7ca5ca49785c" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\",\r\n \"storageAccountKey\": \"fpagJS5KERaD1z35xCKHFhoMCFeUskXPhseqD1spDbQfRS9/gGMscXyotfmBYRMOCBHKDoaH2PP4b5m/sMRJeg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\",\r\n \"storageAccountKey\": \"UT3B7+xg3EhZxgAtIwkcwnWpHXsPSBRqi5UwumTqQutPWkqqGqDXQOqJJVVLcUBvRYPXyzXLxCsknW/5zKGceg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -2087,7 +1991,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d4cb464b-4cc1-442b-af9a-809f1d91a430" + "480314c0-797f-46ba-a1c8-46a2b9d8e05c" ], "X-Content-Type-Options": [ "nosniff" @@ -2099,13 +2003,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1189" ], "x-ms-correlation-request-id": [ - "b8684a12-4d16-49a6-829d-0bb3b6522631" + "a9ebbce5-ae42-4f3d-8df1-37470d7eb6fb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100734Z:b8684a12-4d16-49a6-829d-0bb3b6522631" + "WESTEUROPE:20150713T115353Z:a9ebbce5-ae42-4f3d-8df1-37470d7eb6fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2114,7 +2018,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:33 GMT" + "Mon, 13 Jul 2015 11:53:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2126,7 +2030,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzMwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMzAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMzAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"storageAccountKey\": \"fpagJS5KERaD1z35xCKHFhoMCFeUskXPhseqD1spDbQfRS9/gGMscXyotfmBYRMOCBHKDoaH2PP4b5m/sMRJeg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"storageAccountKey\": \"UT3B7+xg3EhZxgAtIwkcwnWpHXsPSBRqi5UwumTqQutPWkqqGqDXQOqJJVVLcUBvRYPXyzXLxCsknW/5zKGceg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2138,10 +2042,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "984145ed-3d84-4119-b22b-f42396a1dfee" + "e2e143ee-a428-40d1-abc1-50cc55b35c5f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\",\r\n \"storageAccountKey\": \"fpagJS5KERaD1z35xCKHFhoMCFeUskXPhseqD1spDbQfRS9/gGMscXyotfmBYRMOCBHKDoaH2PP4b5m/sMRJeg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg301/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server301/databases/sql-audit-cmdlet-db301/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets301\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver30Sqlauditcmdletdb301\",\r\n \"storageAccountKey\": \"UT3B7+xg3EhZxgAtIwkcwnWpHXsPSBRqi5UwumTqQutPWkqqGqDXQOqJJVVLcUBvRYPXyzXLxCsknW/5zKGceg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets301.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -2150,7 +2054,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fd9912ce-694c-4733-8547-82d95824b325" + "7a849a83-b2f7-46a5-9de1-5ffb415491be" ], "X-Content-Type-Options": [ "nosniff" @@ -2162,13 +2066,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1187" ], "x-ms-correlation-request-id": [ - "d2c3ee0a-1421-4142-a9ec-042e7b33d7eb" + "4e7a95b2-921f-4875-a20f-d5bd8ec63ad3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T100740Z:d2c3ee0a-1421-4142-a9ec-042e7b33d7eb" + "WESTEUROPE:20150713T115359Z:4e7a95b2-921f-4875-a20f-d5bd8ec63ad3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2177,7 +2081,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:40 GMT" + "Mon, 13 Jul 2015 11:53:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2207,13 +2111,13 @@ "ussouth3" ], "x-ms-request-id": [ - "e5d5219a6a2fb31da489509e08795d84" + "67f67027097dce668a88d177c1d5fdaa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:50 GMT" + "Mon, 13 Jul 2015 11:54:03 GMT" ], "Server": [ "1.0.6198.243", @@ -2224,8 +2128,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/e5d5219a6a2fb31da489509e08795d84", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2U1ZDUyMTlhNmEyZmIzMWRhNDg5NTA5ZTA4Nzk1ZDg0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/67f67027097dce668a88d177c1d5fdaa", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzY3ZjY3MDI3MDk3ZGNlNjY4YTg4ZDE3N2MxZDVmZGFh", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,7 +2140,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n e5d5219a-6a2f-b31d-a489-509e08795d84\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 67f67027-097d-ce66-8a88-d177c1d5fdaa\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2248,13 +2152,13 @@ "ussouth3" ], "x-ms-request-id": [ - "f0eecf937e5abec483f3ec3283b0ee5c" + "8842a350c7aec611bfa84ad6fb939729" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:07:52 GMT" + "Mon, 13 Jul 2015 11:54:05 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithEventTypeShortcuts.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithEventTypeShortcuts.json index 1f8a65f63f03..4950ed160b21 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithEventTypeShortcuts.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithEventTypeShortcuts.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "614640a0f038b7e4a8f64beaf6723334" + "6505bf71c01dc7368da29a0c6dc34f2b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:37:27 GMT" + "Mon, 13 Jul 2015 11:55:20 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets701" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/614640a0f038b7e4a8f64beaf6723334", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzYxNDY0MGEwZjAzOGI3ZTRhOGY2NGJlYWY2NzIzMzM0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6505bf71c01dc7368da29a0c6dc34f2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzY1MDViZjcxYzAxZGM3MzY4ZGEyOWEwYzZkYzM0ZjJi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 614640a0-f038-b7e4-a8f6-4beaf6723334\r\n InProgress\r\n", + "ResponseBody": "\r\n 6505bf71-c01d-c736-8da2-9a0c6dc34f2b\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "110f9d7705cdb4eb802ccccafe876a56" + "ce29adf74688c007b740b0dce3930374" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:37:27 GMT" + "Mon, 13 Jul 2015 11:55:22 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/614640a0f038b7e4a8f64beaf6723334", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzYxNDY0MGEwZjAzOGI3ZTRhOGY2NGJlYWY2NzIzMzM0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6505bf71c01dc7368da29a0c6dc34f2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzY1MDViZjcxYzAxZGM3MzY4ZGEyOWEwYzZkYzM0ZjJi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 614640a0-f038-b7e4-a8f6-4beaf6723334\r\n InProgress\r\n", + "ResponseBody": "\r\n 6505bf71-c01d-c736-8da2-9a0c6dc34f2b\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "4fd4f88ee2a9bab1876775fe2e9e51bb" + "7a99dc72c553c66da48bcd4b5de78377" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:37:58 GMT" + "Mon, 13 Jul 2015 11:55:52 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/614640a0f038b7e4a8f64beaf6723334", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzYxNDY0MGEwZjAzOGI3ZTRhOGY2NGJlYWY2NzIzMzM0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6505bf71c01dc7368da29a0c6dc34f2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzY1MDViZjcxYzAxZGM3MzY4ZGEyOWEwYzZkYzM0ZjJi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 614640a0-f038-b7e4-a8f6-4beaf6723334\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 6505bf71-c01d-c736-8da2-9a0c6dc34f2b\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "606a870e37aeb362a29000cc21b2f38f" + "10b39e50b40fc884bb2c30c329873c61" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:28 GMT" + "Mon, 13 Jul 2015 11:56:22 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "14998" ], "x-ms-request-id": [ - "0582ff82-5297-432d-bf69-487d34044d20" + "24e51d34-65da-4c29-81e7-062f41072a40" ], "x-ms-correlation-request-id": [ - "0582ff82-5297-432d-bf69-487d34044d20" + "24e51d34-65da-4c29-81e7-062f41072a40" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103830Z:0582ff82-5297-432d-bf69-487d34044d20" + "NORTHEUROPE:20150713T115623Z:24e51d34-65da-4c29-81e7-062f41072a40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:29 GMT" + "Mon, 13 Jul 2015 11:56:23 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-request-id": [ - "551d8224-f92a-45cd-bfd0-1d802e4eccaa" + "c85e7d0a-d9a9-47ca-9e99-273b43ac6c87" ], "x-ms-correlation-request-id": [ - "551d8224-f92a-45cd-bfd0-1d802e4eccaa" + "c85e7d0a-d9a9-47ca-9e99-273b43ac6c87" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103832Z:551d8224-f92a-45cd-bfd0-1d802e4eccaa" + "NORTHEUROPE:20150713T115625Z:c85e7d0a-d9a9-47ca-9e99-273b43ac6c87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:32 GMT" + "Mon, 13 Jul 2015 11:56:25 GMT" ] }, "StatusCode": 201 @@ -291,10 +291,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:38:32.889484Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"1a252c83-fe04-4e06-89d1-96390f9ac3d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:56:26.8316468Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"291fedf3-60f6-498b-8247-a0ec7d96ead5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1642" + "1643" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1198" ], "x-ms-request-id": [ - "1a252c83-fe04-4e06-89d1-96390f9ac3d8" + "291fedf3-60f6-498b-8247-a0ec7d96ead5" ], "x-ms-correlation-request-id": [ - "1a252c83-fe04-4e06-89d1-96390f9ac3d8" + "291fedf3-60f6-498b-8247-a0ec7d96ead5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103832Z:1a252c83-fe04-4e06-89d1-96390f9ac3d8" + "NORTHEUROPE:20150713T115627Z:291fedf3-60f6-498b-8247-a0ec7d96ead5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:32 GMT" + "Mon, 13 Jul 2015 11:56:26 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:38:35.1501495Z\",\r\n \"duration\": \"PT1.4320008S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:56:29.2184666Z\",\r\n \"duration\": \"PT1.4364647S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1197" ], "x-ms-request-id": [ - "9b610dc4-4c01-4bc7-8f23-0a24e923bf76" + "1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e" ], "x-ms-correlation-request-id": [ - "9b610dc4-4c01-4bc7-8f23-0a24e923bf76" + "1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103835Z:9b610dc4-4c01-4bc7-8f23-0a24e923bf76" + "NORTHEUROPE:20150713T115629Z:1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:35 GMT" + "Mon, 13 Jul 2015 11:56:29 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" + "14997" ], "x-ms-request-id": [ - "8ffbb7ca-1efb-471b-b437-077fb684a13f" + "a3bf690a-a631-440d-a727-f8d9e883624f" ], "x-ms-correlation-request-id": [ - "8ffbb7ca-1efb-471b-b437-077fb684a13f" + "a3bf690a-a631-440d-a727-f8d9e883624f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103836Z:8ffbb7ca-1efb-471b-b437-077fb684a13f" + "NORTHEUROPE:20150713T115630Z:a3bf690a-a631-440d-a727-f8d9e883624f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:36 GMT" + "Mon, 13 Jul 2015 11:56:29 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" + "14995" ], "x-ms-request-id": [ - "5fca390c-5633-4092-a18b-f1e1f32b04ae" + "08ed6817-fd97-4fe0-8de0-49a81d2c29e5" ], "x-ms-correlation-request-id": [ - "5fca390c-5633-4092-a18b-f1e1f32b04ae" + "08ed6817-fd97-4fe0-8de0-49a81d2c29e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103839Z:5fca390c-5633-4092-a18b-f1e1f32b04ae" + "NORTHEUROPE:20150713T115633Z:08ed6817-fd97-4fe0-8de0-49a81d2c29e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:39 GMT" + "Mon, 13 Jul 2015 11:56:33 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14793" + "14993" ], "x-ms-request-id": [ - "e422be19-453d-4957-b050-0bc38aaad95a" + "2b91e48b-eb42-4252-89dc-cb8271b67869" ], "x-ms-correlation-request-id": [ - "e422be19-453d-4957-b050-0bc38aaad95a" + "2b91e48b-eb42-4252-89dc-cb8271b67869" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103842Z:e422be19-453d-4957-b050-0bc38aaad95a" + "NORTHEUROPE:20150713T115636Z:2b91e48b-eb42-4252-89dc-cb8271b67869" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:42 GMT" + "Mon, 13 Jul 2015 11:56:36 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" + "14991" ], "x-ms-request-id": [ - "2c3b3c9a-6b4a-414e-9f4b-7cb161d75d42" + "ab84271a-5b34-4112-aa71-4eb62b26d9b0" ], "x-ms-correlation-request-id": [ - "2c3b3c9a-6b4a-414e-9f4b-7cb161d75d42" + "ab84271a-5b34-4112-aa71-4eb62b26d9b0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103845Z:2c3b3c9a-6b4a-414e-9f4b-7cb161d75d42" + "NORTHEUROPE:20150713T115639Z:ab84271a-5b34-4112-aa71-4eb62b26d9b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:45 GMT" + "Mon, 13 Jul 2015 11:56:39 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,64 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14789" + "14989" + ], + "x-ms-request-id": [ + "c9d42b16-a427-42be-8b46-52d2fdb7e05e" + ], + "x-ms-correlation-request-id": [ + "c9d42b16-a427-42be-8b46-52d2fdb7e05e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20150713T115642Z:c9d42b16-a427-42be-8b46-52d2fdb7e05e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:56:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzcwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:56:44.9872991Z\",\r\n \"duration\": \"PT13.4413849S\",\r\n \"trackingId\": \"e486eda4-0dbf-4591-97f6-718a93678f2e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "668" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" ], "x-ms-request-id": [ - "ea36d06a-c656-4d44-9b7d-88dcccc1c8de" + "afc8c837-1c41-4f66-8f32-c9d331f50eca" ], "x-ms-correlation-request-id": [ - "ea36d06a-c656-4d44-9b7d-88dcccc1c8de" + "afc8c837-1c41-4f66-8f32-c9d331f50eca" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103848Z:ea36d06a-c656-4d44-9b7d-88dcccc1c8de" + "NORTHEUROPE:20150713T115645Z:afc8c837-1c41-4f66-8f32-c9d331f50eca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:48 GMT" + "Mon, 13 Jul 2015 11:56:44 GMT" ] }, "StatusCode": 200 @@ -633,7 +681,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:38:49.4228994Z\",\r\n \"duration\": \"PT13.4994863S\",\r\n \"trackingId\": \"f43f9927-6bec-4069-a5a1-f16c1c84728e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:56:44.9872991Z\",\r\n \"duration\": \"PT13.4413849S\",\r\n \"trackingId\": \"e486eda4-0dbf-4591-97f6-718a93678f2e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -648,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "14985" ], "x-ms-request-id": [ - "7d058f5e-cf0f-4045-b2f1-42d36d35c714" + "f09ac1ae-aa22-4c73-8f47-08f3b24af285" ], "x-ms-correlation-request-id": [ - "7d058f5e-cf0f-4045-b2f1-42d36d35c714" + "f09ac1ae-aa22-4c73-8f47-08f3b24af285" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103851Z:7d058f5e-cf0f-4045-b2f1-42d36d35c714" + "NORTHEUROPE:20150713T115648Z:f09ac1ae-aa22-4c73-8f47-08f3b24af285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:51 GMT" + "Mon, 13 Jul 2015 11:56:47 GMT" ] }, "StatusCode": 200 @@ -681,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:38:49.4228994Z\",\r\n \"duration\": \"PT13.4994863S\",\r\n \"trackingId\": \"f43f9927-6bec-4069-a5a1-f16c1c84728e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:56:44.9872991Z\",\r\n \"duration\": \"PT13.4413849S\",\r\n \"trackingId\": \"e486eda4-0dbf-4591-97f6-718a93678f2e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -696,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14983" ], "x-ms-request-id": [ - "509e551b-d59a-48b0-a3aa-e74a65fb4a9e" + "32baf850-8ed4-4018-aa3e-dbf7d82c5129" ], "x-ms-correlation-request-id": [ - "509e551b-d59a-48b0-a3aa-e74a65fb4a9e" + "32baf850-8ed4-4018-aa3e-dbf7d82c5129" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103854Z:509e551b-d59a-48b0-a3aa-e74a65fb4a9e" + "NORTHEUROPE:20150713T115651Z:32baf850-8ed4-4018-aa3e-dbf7d82c5129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:54 GMT" + "Mon, 13 Jul 2015 11:56:51 GMT" ] }, "StatusCode": 200 @@ -729,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/3BE02D34F7ABD946\",\r\n \"operationId\": \"3BE02D34F7ABD946\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:38:56.773748Z\",\r\n \"duration\": \"PT7.2749193S\",\r\n \"trackingId\": \"b82f6cef-a988-4751-9353-68bfa1006809\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:38:49.4228994Z\",\r\n \"duration\": \"PT13.4994863S\",\r\n \"trackingId\": \"f43f9927-6bec-4069-a5a1-f16c1c84728e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/3BE02D34F7ABD946\",\r\n \"operationId\": \"3BE02D34F7ABD946\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:56:54.3736706Z\",\r\n \"duration\": \"PT8.8292801S\",\r\n \"trackingId\": \"3b65dc1e-0dda-4251-855b-b440f2be1c9e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:56:44.9872991Z\",\r\n \"duration\": \"PT13.4413849S\",\r\n \"trackingId\": \"e486eda4-0dbf-4591-97f6-718a93678f2e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" + "14981" ], "x-ms-request-id": [ - "c8025230-9810-4f10-8758-2318eb2d49a7" + "d5b6709e-605e-46f6-9840-37f22556f630" ], "x-ms-correlation-request-id": [ - "c8025230-9810-4f10-8758-2318eb2d49a7" + "d5b6709e-605e-46f6-9840-37f22556f630" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103857Z:c8025230-9810-4f10-8758-2318eb2d49a7" + "NORTHEUROPE:20150713T115654Z:d5b6709e-605e-46f6-9840-37f22556f630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:57 GMT" + "Mon, 13 Jul 2015 11:56:53 GMT" ] }, "StatusCode": 200 @@ -777,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/3BE02D34F7ABD946\",\r\n \"operationId\": \"3BE02D34F7ABD946\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:38:56.773748Z\",\r\n \"duration\": \"PT7.2749193S\",\r\n \"trackingId\": \"b82f6cef-a988-4751-9353-68bfa1006809\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:38:49.4228994Z\",\r\n \"duration\": \"PT13.4994863S\",\r\n \"trackingId\": \"f43f9927-6bec-4069-a5a1-f16c1c84728e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/3BE02D34F7ABD946\",\r\n \"operationId\": \"3BE02D34F7ABD946\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:56:54.3736706Z\",\r\n \"duration\": \"PT8.8292801S\",\r\n \"trackingId\": \"3b65dc1e-0dda-4251-855b-b440f2be1c9e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup/operations/CF8B59EAD6182D32\",\r\n \"operationId\": \"CF8B59EAD6182D32\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:56:44.9872991Z\",\r\n \"duration\": \"PT13.4413849S\",\r\n \"trackingId\": \"e486eda4-0dbf-4591-97f6-718a93678f2e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14979" ], "x-ms-request-id": [ - "19e09c66-a518-488a-b87e-0cf292a806e5" + "ed0deda9-9a1f-465b-942c-82bdc5388e64" ], "x-ms-correlation-request-id": [ - "19e09c66-a518-488a-b87e-0cf292a806e5" + "ed0deda9-9a1f-465b-942c-82bdc5388e64" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103900Z:19e09c66-a518-488a-b87e-0cf292a806e5" + "NORTHEUROPE:20150713T115657Z:ed0deda9-9a1f-465b-942c-82bdc5388e64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:00 GMT" + "Mon, 13 Jul 2015 11:56:57 GMT" ] }, "StatusCode": 200 @@ -825,7 +873,55 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:38:35.7709323Z\",\r\n \"duration\": \"PT2.0527836S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T11:56:29.2184666Z\",\r\n \"duration\": \"PT1.4364647S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "0b28940c-c179-4d48-84c8-551596a2bb8a" + ], + "x-ms-correlation-request-id": [ + "0b28940c-c179-4d48-84c8-551596a2bb8a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20150713T115630Z:0b28940c-c179-4d48-84c8-551596a2bb8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 11:56:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzcwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:56:31.0702025Z\",\r\n \"duration\": \"PT3.2882006S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -840,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14796" + "14994" ], "x-ms-request-id": [ - "cf19c642-ae7c-45f8-9b02-d3541a2da07d" + "42859425-dc9d-4604-9c94-e1f9ef079887" ], "x-ms-correlation-request-id": [ - "cf19c642-ae7c-45f8-9b02-d3541a2da07d" + "42859425-dc9d-4604-9c94-e1f9ef079887" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103836Z:cf19c642-ae7c-45f8-9b02-d3541a2da07d" + "NORTHEUROPE:20150713T115633Z:42859425-dc9d-4604-9c94-e1f9ef079887" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:36 GMT" + "Mon, 13 Jul 2015 11:56:33 GMT" ] }, "StatusCode": 200 @@ -873,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:38:35.7709323Z\",\r\n \"duration\": \"PT2.0527836S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:56:31.0702025Z\",\r\n \"duration\": \"PT3.2882006S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14794" + "14992" ], "x-ms-request-id": [ - "c023870c-0203-4915-8e46-30fa9036f41d" + "3a444d1c-2605-470f-ae3c-7cc6d7b811f7" ], "x-ms-correlation-request-id": [ - "c023870c-0203-4915-8e46-30fa9036f41d" + "3a444d1c-2605-470f-ae3c-7cc6d7b811f7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103839Z:c023870c-0203-4915-8e46-30fa9036f41d" + "NORTHEUROPE:20150713T115636Z:3a444d1c-2605-470f-ae3c-7cc6d7b811f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:39 GMT" + "Mon, 13 Jul 2015 11:56:36 GMT" ] }, "StatusCode": 200 @@ -921,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:38:35.7709323Z\",\r\n \"duration\": \"PT2.0527836S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:56:31.0702025Z\",\r\n \"duration\": \"PT3.2882006S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14792" + "14990" ], "x-ms-request-id": [ - "73f0dbce-2a65-4718-bbb7-fbf5e2990653" + "1b77e084-37f5-4f7a-9fa0-0db1e99902e6" ], "x-ms-correlation-request-id": [ - "73f0dbce-2a65-4718-bbb7-fbf5e2990653" + "1b77e084-37f5-4f7a-9fa0-0db1e99902e6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103842Z:73f0dbce-2a65-4718-bbb7-fbf5e2990653" + "NORTHEUROPE:20150713T115639Z:1b77e084-37f5-4f7a-9fa0-0db1e99902e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:42 GMT" + "Mon, 13 Jul 2015 11:56:39 GMT" ] }, "StatusCode": 200 @@ -969,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:38:35.7709323Z\",\r\n \"duration\": \"PT2.0527836S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:56:31.0702025Z\",\r\n \"duration\": \"PT3.2882006S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14988" ], "x-ms-request-id": [ - "567d1f75-319b-4620-a711-18119a7de73b" + "0ea5b7b9-6f93-4570-98bc-e72b102b0d30" ], "x-ms-correlation-request-id": [ - "567d1f75-319b-4620-a711-18119a7de73b" + "0ea5b7b9-6f93-4570-98bc-e72b102b0d30" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103845Z:567d1f75-319b-4620-a711-18119a7de73b" + "NORTHEUROPE:20150713T115642Z:0ea5b7b9-6f93-4570-98bc-e72b102b0d30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:45 GMT" + "Mon, 13 Jul 2015 11:56:42 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:38:35.7709323Z\",\r\n \"duration\": \"PT2.0527836S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:56:31.0702025Z\",\r\n \"duration\": \"PT3.2882006S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14986" ], "x-ms-request-id": [ - "00777027-d94b-4edd-b704-5f1777348f69" + "783b7bdd-86b7-4390-af38-8cac9f1627c7" ], "x-ms-correlation-request-id": [ - "00777027-d94b-4edd-b704-5f1777348f69" + "783b7bdd-86b7-4390-af38-8cac9f1627c7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103848Z:00777027-d94b-4edd-b704-5f1777348f69" + "NORTHEUROPE:20150713T115645Z:783b7bdd-86b7-4390-af38-8cac9f1627c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:48 GMT" + "Mon, 13 Jul 2015 11:56:45 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:38:35.7709323Z\",\r\n \"duration\": \"PT2.0527836S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:56:31.0702025Z\",\r\n \"duration\": \"PT3.2882006S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14786" + "14984" ], "x-ms-request-id": [ - "d9d7b323-1ead-46e7-a757-c838bc0707cb" + "485daea5-4895-4dfe-bf70-e2ecf4a93cc5" ], "x-ms-correlation-request-id": [ - "d9d7b323-1ead-46e7-a757-c838bc0707cb" + "485daea5-4895-4dfe-bf70-e2ecf4a93cc5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103851Z:d9d7b323-1ead-46e7-a757-c838bc0707cb" + "NORTHEUROPE:20150713T115648Z:485daea5-4895-4dfe-bf70-e2ecf4a93cc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:51 GMT" + "Mon, 13 Jul 2015 11:56:48 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1209,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:38:35.7709323Z\",\r\n \"duration\": \"PT2.0527836S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:56:31.0702025Z\",\r\n \"duration\": \"PT3.2882006S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14982" ], "x-ms-request-id": [ - "09c2700c-e504-4429-af2e-e4a78a98c850" + "50ee9650-c69c-4fbf-a90e-9bd74337330b" ], "x-ms-correlation-request-id": [ - "09c2700c-e504-4429-af2e-e4a78a98c850" + "50ee9650-c69c-4fbf-a90e-9bd74337330b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103854Z:09c2700c-e504-4429-af2e-e4a78a98c850" + "NORTHEUROPE:20150713T115651Z:50ee9650-c69c-4fbf-a90e-9bd74337330b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:54 GMT" + "Mon, 13 Jul 2015 11:56:51 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1257,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:38:35.7709323Z\",\r\n \"duration\": \"PT2.0527836S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T11:56:31.0702025Z\",\r\n \"duration\": \"PT3.2882006S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14980" ], "x-ms-request-id": [ - "47455502-9827-4415-8725-5939b88143b1" + "f8df5378-2989-4422-b45f-1df5623286c6" ], "x-ms-correlation-request-id": [ - "47455502-9827-4415-8725-5939b88143b1" + "f8df5378-2989-4422-b45f-1df5623286c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103858Z:47455502-9827-4415-8725-5939b88143b1" + "NORTHEUROPE:20150713T115655Z:f8df5378-2989-4422-b45f-1df5623286c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:38:57 GMT" + "Mon, 13 Jul 2015 11:56:55 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1305,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:38:59.2204203Z\",\r\n \"duration\": \"PT25.5022716S\",\r\n \"correlationId\": \"9b610dc4-4c01-4bc7-8f23-0a24e923bf76\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db701\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server701\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T11:56:56.3203395Z\",\r\n \"duration\": \"PT28.5383376S\",\r\n \"correlationId\": \"1a19f2e5-6c0d-4703-8e2f-25c90e44ff4e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server701/sql-audit-cmdlet-db701\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server701\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1320,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "14978" ], "x-ms-request-id": [ - "a47afc88-6554-4d57-a5db-9ea5b7c45f7f" + "687967f7-4649-40a6-86d8-5adc6cbeb5a1" ], "x-ms-correlation-request-id": [ - "a47afc88-6554-4d57-a5db-9ea5b7c45f7f" + "687967f7-4649-40a6-86d8-5adc6cbeb5a1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103901Z:a47afc88-6554-4d57-a5db-9ea5b7c45f7f" + "NORTHEUROPE:20150713T115658Z:687967f7-4649-40a6-86d8-5adc6cbeb5a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1338,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:00 GMT" + "Mon, 13 Jul 2015 11:56:57 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" + "14977" ], "x-ms-request-id": [ - "24534259-ee7d-4402-aaee-6bc7c2ef83bf" + "bce7b81d-2ecb-42f3-a728-eda2a0b0b1e3" ], "x-ms-correlation-request-id": [ - "24534259-ee7d-4402-aaee-6bc7c2ef83bf" + "bce7b81d-2ecb-42f3-a728-eda2a0b0b1e3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103903Z:24534259-ee7d-4402-aaee-6bc7c2ef83bf" + "NORTHEUROPE:20150713T115700Z:bce7b81d-2ecb-42f3-a728-eda2a0b0b1e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:02 GMT" + "Mon, 13 Jul 2015 11:57:00 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1419,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:340101cb-ccdd-44e6-b10d-1b10be9a455a" + "westeurope:464f8340-2e68-471d-80e6-81aaa8e9fd4c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14659" + "14830" ], "x-ms-correlation-request-id": [ - "7873859c-e007-4a9f-852d-da729927de32" + "66322065-e48e-4aa9-b31e-5a9e63f6a958" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103903Z:7873859c-e007-4a9f-852d-da729927de32" + "WESTEUROPE:20150713T115701Z:66322065-e48e-4aa9-b31e-5a9e63f6a958" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1437,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:03 GMT" + "Mon, 13 Jul 2015 11:57:00 GMT" ] }, "StatusCode": 200 @@ -1356,7 +1452,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4a46f8f9-76a4-4ac8-87dc-8847c2e1d35d" + "1df7a864-d13f-4d01-add4-0fd053dd3ebe" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1368,7 +1464,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cc3e6084-0c46-48ac-aa8e-dfe6fd4c4344" + "68657b92-e87e-4a9b-9840-b7902f5b3e90" ], "X-Content-Type-Options": [ "nosniff" @@ -1377,13 +1473,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14843" ], "x-ms-correlation-request-id": [ - "429e37e4-0fa1-43c5-b1f2-135034c42260" + "16fdf876-c41e-4766-8491-a5c56329dcff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103905Z:429e37e4-0fa1-43c5-b1f2-135034c42260" + "WESTEUROPE:20150713T115703Z:16fdf876-c41e-4766-8491-a5c56329dcff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1488,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:05 GMT" + "Mon, 13 Jul 2015 11:57:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,7 +1506,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5ab05319-b246-4169-8211-9e2669259ee7" + "fbf4a7ac-797e-415b-89d1-681b2156a064" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1422,7 +1518,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e61ec9bf-23a5-4542-af3b-de8c7e4a87fe" + "9d033d60-e005-4c2c-aa8a-ff29e455259b" ], "X-Content-Type-Options": [ "nosniff" @@ -1431,13 +1527,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14841" ], "x-ms-correlation-request-id": [ - "85aaddb1-b55a-436a-ac9d-a3fb2ffbe6bf" + "26e94e7c-2bdc-4d2b-9f95-d93cec7055e9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103912Z:85aaddb1-b55a-436a-ac9d-a3fb2ffbe6bf" + "WESTEUROPE:20150713T115710Z:26e94e7c-2bdc-4d2b-9f95-d93cec7055e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,7 +1542,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:12 GMT" + "Mon, 13 Jul 2015 11:57:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1464,7 +1560,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6f68aa38-c279-4c63-98a1-07c16fc8c406" + "6b5b160b-2b62-414f-a511-e36c29758dca" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1476,7 +1572,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c69d1afc-f517-4dd4-9386-d8296bf969e1" + "e3265459-4354-4a3e-8f37-d198b7fe1579" ], "X-Content-Type-Options": [ "nosniff" @@ -1485,13 +1581,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14840" ], "x-ms-correlation-request-id": [ - "27c841f2-44b3-4166-84cb-189f6536d4df" + "b92eb0a0-8f8a-4af0-915f-a773c532636e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103913Z:27c841f2-44b3-4166-84cb-189f6536d4df" + "WESTEUROPE:20150713T115711Z:b92eb0a0-8f8a-4af0-915f-a773c532636e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1596,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:13 GMT" + "Mon, 13 Jul 2015 11:57:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1518,7 +1614,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b403d337-e7fe-4f21-acd4-ea198a6b8d27" + "84146aa7-99d2-4f70-acb6-1c23e71d539d" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1530,7 +1626,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3fe975ff-d5cd-4777-ab3e-0d8ec8cbaa1c" + "9af8a850-c67d-4485-9cb9-1076f428cbcf" ], "X-Content-Type-Options": [ "nosniff" @@ -1539,13 +1635,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14838" ], "x-ms-correlation-request-id": [ - "8e3c079a-ed48-4a5f-bebf-ef281825a69d" + "89b551ad-a21a-43d2-8899-f5fe673813ac" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103919Z:8e3c079a-ed48-4a5f-bebf-ef281825a69d" + "WESTEUROPE:20150713T115716Z:89b551ad-a21a-43d2-8899-f5fe673813ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +1650,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:19 GMT" + "Mon, 13 Jul 2015 11:57:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1572,7 +1668,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6f1dbdac-8dff-4d54-ae25-5a80bf2633be" + "09ad69d4-6f3f-4d41-aba1-cd8044ceb734" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1584,7 +1680,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2f8a9f20-e2c0-49b9-8ce8-c53e048b14fa" + "29702542-f68c-4d05-9eca-4b643c5236ba" ], "X-Content-Type-Options": [ "nosniff" @@ -1593,13 +1689,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14837" ], "x-ms-correlation-request-id": [ - "132e7538-296f-4e58-8452-b69986304083" + "da62ff80-d83c-42cf-ad4c-c6977c794dc1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103921Z:132e7538-296f-4e58-8452-b69986304083" + "WESTEUROPE:20150713T115717Z:da62ff80-d83c-42cf-ad4c-c6977c794dc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1704,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:21 GMT" + "Mon, 13 Jul 2015 11:57:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1626,7 +1722,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4cafdcd8-ea69-4fc5-ae9c-4433e3de7596" + "2461648e-483f-4502-b23e-d3745a5afbd8" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1638,7 +1734,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a3f11922-fa29-4ee1-b374-e412670b91a1" + "6ec3d20b-d12d-4f1b-94c4-f3bf04ffe9b5" ], "X-Content-Type-Options": [ "nosniff" @@ -1647,13 +1743,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14835" ], "x-ms-correlation-request-id": [ - "62e22913-3df7-4e17-899c-bd72d8ac387a" + "341abd72-630c-48da-943e-7639141a1fb6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103926Z:62e22913-3df7-4e17-899c-bd72d8ac387a" + "WESTEUROPE:20150713T115722Z:341abd72-630c-48da-943e-7639141a1fb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1662,7 +1758,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:26 GMT" + "Mon, 13 Jul 2015 11:57:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1680,7 +1776,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "16800999-1c99-4206-ab7b-dad9c540fe73" + "467c6981-f2de-4e24-a0fb-8c69ec903547" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1692,7 +1788,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "648a9f3c-6b57-4886-9e4b-833853f802e0" + "49a4b7de-2b97-4312-8fdb-d67f3d8dcc48" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,13 +1797,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14834" ], "x-ms-correlation-request-id": [ - "421c59ed-2ee2-4487-8618-730443204567" + "90ed56c5-f717-4dde-830a-9bcd1ce60687" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103927Z:421c59ed-2ee2-4487-8618-730443204567" + "WESTEUROPE:20150713T115723Z:90ed56c5-f717-4dde-830a-9bcd1ce60687" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,7 +1812,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:27 GMT" + "Mon, 13 Jul 2015 11:57:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1734,7 +1830,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f4fec12b-9db4-48c3-ae2f-4eca47ade8df" + "c8850f42-fabc-438a-beee-833cee748f71" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1746,7 +1842,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "12d47a8b-83da-40a3-8f61-83ffe7391103" + "9a129130-0efc-4d40-ada6-11aa51dcdf54" ], "X-Content-Type-Options": [ "nosniff" @@ -1755,13 +1851,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14832" ], "x-ms-correlation-request-id": [ - "a7ddffb3-d69d-4d3d-b87c-7498b163fcc3" + "497e057c-9801-419c-b172-2646754e5f2a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103932Z:a7ddffb3-d69d-4d3d-b87c-7498b163fcc3" + "WESTEUROPE:20150713T115728Z:497e057c-9801-419c-b172-2646754e5f2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1770,7 +1866,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:32 GMT" + "Mon, 13 Jul 2015 11:57:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1788,7 +1884,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9e659be6-a918-4c84-9351-23f352e00079" + "3d50a10c-b06e-4cb4-8dc5-f123c48e8279" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1800,7 +1896,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4f71637d-31b7-43f0-89c0-8627610a9c7a" + "b6f864f2-f266-41e9-bdcd-223b6a722c4f" ], "X-Content-Type-Options": [ "nosniff" @@ -1809,13 +1905,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "14831" ], "x-ms-correlation-request-id": [ - "aca7ca11-d6d2-4634-9a21-c63aaf463ee6" + "26911083-bb4b-4b79-8e77-c52d0aa26792" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103934Z:aca7ca11-d6d2-4634-9a21-c63aaf463ee6" + "WESTEUROPE:20150713T115730Z:26911083-bb4b-4b79-8e77-c52d0aa26792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1824,7 +1920,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:33 GMT" + "Mon, 13 Jul 2015 11:57:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1842,7 +1938,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4b56951e-965b-4f44-ba53-7fb61e877107" + "1ba0ac2e-1e03-41b7-a91b-cadf5a8888f6" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1854,7 +1950,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2448e94c-408d-4444-82ad-e8c7119ba838" + "de32d919-c38a-4b6a-a27d-94e85d902459" ], "X-Content-Type-Options": [ "nosniff" @@ -1863,13 +1959,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "14830" ], "x-ms-correlation-request-id": [ - "a93ca2d7-4f17-4e92-88c9-4b7f2994ac25" + "2fec9d05-2086-4be8-b427-39bb3f2cb152" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103935Z:a93ca2d7-4f17-4e92-88c9-4b7f2994ac25" + "WESTEUROPE:20150713T115731Z:2fec9d05-2086-4be8-b427-39bb3f2cb152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1878,7 +1974,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:34 GMT" + "Mon, 13 Jul 2015 11:57:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1896,7 +1992,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c83a8b42-e849-4e67-93ec-6b4e008d4890" + "96081362-c43d-450b-a502-4a9462d337c5" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1908,7 +2004,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "382ac206-2769-475e-bd1d-f12aa8c4bdf1" + "973c288a-7739-47cd-bf4f-b898f35c0215" ], "X-Content-Type-Options": [ "nosniff" @@ -1917,13 +2013,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" + "14829" ], "x-ms-correlation-request-id": [ - "0b34e9cf-8cbb-4441-878a-ecf3303fc18b" + "59d05cfb-5de0-444f-a092-6580d1f1ccd7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103936Z:0b34e9cf-8cbb-4441-878a-ecf3303fc18b" + "WESTEUROPE:20150713T115732Z:59d05cfb-5de0-444f-a092-6580d1f1ccd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1932,7 +2028,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:36 GMT" + "Mon, 13 Jul 2015 11:57:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1950,7 +2046,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bf4b6c01-76c0-4118-a749-905352ba01b1" + "9c98c324-1418-4de7-b45c-47ef17999b32" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1962,7 +2058,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f768a8d0-9c36-455e-8b16-575edaefdd0b" + "3017131b-8fec-4339-95ea-1c274b177406" ], "X-Content-Type-Options": [ "nosniff" @@ -1971,13 +2067,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14828" ], "x-ms-correlation-request-id": [ - "26cb44ba-b510-4bb6-a1ae-779812eb5a1f" + "8b5c52d4-f3d9-4e04-864d-38ccda1f9db6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103938Z:26cb44ba-b510-4bb6-a1ae-779812eb5a1f" + "WESTEUROPE:20150713T115734Z:8b5c52d4-f3d9-4e04-864d-38ccda1f9db6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1986,7 +2082,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:37 GMT" + "Mon, 13 Jul 2015 11:57:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2004,19 +2100,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4a46f8f9-76a4-4ac8-87dc-8847c2e1d35d" + "1df7a864-d13f-4d01-add4-0fd053dd3ebe" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"name\": \"sql-audit-cmdlet-db701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1bcced0b-312f-47e4-a8e6-3c319d4825a9\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:38:53.59Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T11:08:53.59Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"name\": \"sql-audit-cmdlet-db701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"492e73bf-46c9-46bd-960e-546867cd4c88\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:56:51.313Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:26:51.313Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "815" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9c0501c7-df3b-4e64-92e7-469bc3501193" + "d62e1075-0d55-48cb-b036-73877aa47dd0" ], "X-Content-Type-Options": [ "nosniff" @@ -2025,13 +2121,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14842" ], "x-ms-correlation-request-id": [ - "36b1db51-37ad-4e4e-9f51-77c16e89e432" + "8ec5728e-a790-480d-81a9-e432c24276d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103906Z:36b1db51-37ad-4e4e-9f51-77c16e89e432" + "WESTEUROPE:20150713T115704Z:8ec5728e-a790-480d-81a9-e432c24276d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2040,7 +2136,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:06 GMT" + "Mon, 13 Jul 2015 11:57:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2058,19 +2154,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6f68aa38-c279-4c63-98a1-07c16fc8c406" + "6b5b160b-2b62-414f-a511-e36c29758dca" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"name\": \"sql-audit-cmdlet-db701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1bcced0b-312f-47e4-a8e6-3c319d4825a9\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:38:53.59Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T11:08:53.59Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"name\": \"sql-audit-cmdlet-db701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"492e73bf-46c9-46bd-960e-546867cd4c88\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:56:51.313Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:26:51.313Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "815" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "562b2e8c-0510-4bda-9d5d-793e464c93ac" + "5dd2a664-7590-493d-ac4e-d96acec67133" ], "X-Content-Type-Options": [ "nosniff" @@ -2079,13 +2175,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14839" ], "x-ms-correlation-request-id": [ - "a59c05ab-6ae3-47da-8ff3-f085653ea92e" + "111d1dca-cb4d-41c6-8060-003f9d26a0c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103915Z:a59c05ab-6ae3-47da-8ff3-f085653ea92e" + "WESTEUROPE:20150713T115712Z:111d1dca-cb4d-41c6-8060-003f9d26a0c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,7 +2190,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:14 GMT" + "Mon, 13 Jul 2015 11:57:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2112,19 +2208,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6f1dbdac-8dff-4d54-ae25-5a80bf2633be" + "09ad69d4-6f3f-4d41-aba1-cd8044ceb734" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"name\": \"sql-audit-cmdlet-db701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1bcced0b-312f-47e4-a8e6-3c319d4825a9\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:38:53.59Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T11:08:53.59Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"name\": \"sql-audit-cmdlet-db701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"492e73bf-46c9-46bd-960e-546867cd4c88\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:56:51.313Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:26:51.313Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "815" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3513ae25-e43b-4a47-a1da-7c048b3f3995" + "687f9f14-3b58-469e-8a28-8319dcaca329" ], "X-Content-Type-Options": [ "nosniff" @@ -2133,13 +2229,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" + "14836" ], "x-ms-correlation-request-id": [ - "c0de1a44-09b5-4a0c-bec0-5fc5ff811c46" + "608cf220-9a9b-4212-a8d5-8e6290fc4c3d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103922Z:c0de1a44-09b5-4a0c-bec0-5fc5ff811c46" + "WESTEUROPE:20150713T115718Z:608cf220-9a9b-4212-a8d5-8e6290fc4c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2148,7 +2244,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:22 GMT" + "Mon, 13 Jul 2015 11:57:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2166,19 +2262,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "16800999-1c99-4206-ab7b-dad9c540fe73" + "467c6981-f2de-4e24-a0fb-8c69ec903547" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"name\": \"sql-audit-cmdlet-db701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1bcced0b-312f-47e4-a8e6-3c319d4825a9\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:38:53.59Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T11:08:53.59Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701\",\r\n \"name\": \"sql-audit-cmdlet-db701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"492e73bf-46c9-46bd-960e-546867cd4c88\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T11:56:51.313Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:26:51.313Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "815" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d6dd0a9b-4352-4629-969a-0f5ec185b044" + "37bff053-d669-460a-b740-1a03d6e3e7f6" ], "X-Content-Type-Options": [ "nosniff" @@ -2187,13 +2283,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "14833" ], "x-ms-correlation-request-id": [ - "2530e7d3-c67f-46de-a62b-447847033ab4" + "57b8034e-b4ea-4a3f-b058-0bb141863346" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103928Z:2530e7d3-c67f-46de-a62b-447847033ab4" + "WESTEUROPE:20150713T115724Z:57b8034e-b4ea-4a3f-b058-0bb141863346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2202,7 +2298,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:28 GMT" + "Mon, 13 Jul 2015 11:57:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2220,10 +2316,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets701\",\r\n \"name\": \"auditcmdlets701\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets701\",\r\n \"name\": \"auditcmdlets701\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,16 +2331,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14976" ], "x-ms-request-id": [ - "bfee9e48-7f2d-4eba-be35-a55b431c0b90" + "70e8275d-167b-4d33-983b-f3ac629f1790" ], "x-ms-correlation-request-id": [ - "bfee9e48-7f2d-4eba-be35-a55b431c0b90" + "70e8275d-167b-4d33-983b-f3ac629f1790" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103906Z:bfee9e48-7f2d-4eba-be35-a55b431c0b90" + "NORTHEUROPE:20150713T115705Z:70e8275d-167b-4d33-983b-f3ac629f1790" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2253,7 +2349,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:06 GMT" + "Mon, 13 Jul 2015 11:57:05 GMT" ] }, "StatusCode": 200 @@ -2271,7 +2367,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets701\r\n auditcmdlets701\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets701.blob.core.windows.net/\r\n https://auditcmdlets701.queue.core.windows.net/\r\n https://auditcmdlets701.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:37:27Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets701\r\n auditcmdlets701\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets701.blob.core.windows.net/\r\n https://auditcmdlets701.queue.core.windows.net/\r\n https://auditcmdlets701.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T11:55:21Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -2283,13 +2379,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b7e6f1387c48b8e7af9fffc442c146f0" + "9b0ca5d74319c282a6f1178da33b06ab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:06 GMT" + "Mon, 13 Jul 2015 11:57:04 GMT" ], "Server": [ "1.0.6198.243", @@ -2312,7 +2408,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"secondaryKey\": \"XZDnwbhza95ND1B4ipHiu28R7K1W8uOQlsRAYTYSw1KQ9wRivUUA8Vh81pM/2SjhGh4pTsJiquDNcVfM/ZVJ3A==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"secondaryKey\": \"PBgInFZw/Mny7rQOdJWoeeLnjBuk46rrM+FaOdvnLsMD90WbDuLpQpTDZbHyUro10xRf9QbAlp6U/BOE5Z5YQw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2330,16 +2426,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:911d13f1-8497-422d-aec2-3095379d40a0" + "southcentralus:b8a2da2a-0ea4-4d37-b713-26b5b168caf5" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1193" ], "x-ms-correlation-request-id": [ - "f97cb651-fdf5-4310-a0ee-88b6099e3325" + "ad1360ac-8c42-4579-b95e-5097ce1be098" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103908Z:f97cb651-fdf5-4310-a0ee-88b6099e3325" + "WESTEUROPE:20150713T115706Z:ad1360ac-8c42-4579-b95e-5097ce1be098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2348,7 +2444,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:08 GMT" + "Mon, 13 Jul 2015 11:57:06 GMT" ] }, "StatusCode": 200 @@ -2366,7 +2462,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"secondaryKey\": \"XZDnwbhza95ND1B4ipHiu28R7K1W8uOQlsRAYTYSw1KQ9wRivUUA8Vh81pM/2SjhGh4pTsJiquDNcVfM/ZVJ3A==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"secondaryKey\": \"PBgInFZw/Mny7rQOdJWoeeLnjBuk46rrM+FaOdvnLsMD90WbDuLpQpTDZbHyUro10xRf9QbAlp6U/BOE5Z5YQw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2384,16 +2480,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:b85c7cb8-9102-485e-9ef4-77d359ba15bc" + "southcentralus:06763402-ca0e-4a2e-b5fc-52ac8b69b4df" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1191" ], "x-ms-correlation-request-id": [ - "43d44eb7-a14d-4b20-9c6e-2116df1c72cc" + "1603bf09-75c9-421f-b097-8d770e8d25b7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103915Z:43d44eb7-a14d-4b20-9c6e-2116df1c72cc" + "WESTEUROPE:20150713T115713Z:1603bf09-75c9-421f-b097-8d770e8d25b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2402,7 +2498,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:15 GMT" + "Mon, 13 Jul 2015 11:57:12 GMT" ] }, "StatusCode": 200 @@ -2420,7 +2516,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"secondaryKey\": \"XZDnwbhza95ND1B4ipHiu28R7K1W8uOQlsRAYTYSw1KQ9wRivUUA8Vh81pM/2SjhGh4pTsJiquDNcVfM/ZVJ3A==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"secondaryKey\": \"PBgInFZw/Mny7rQOdJWoeeLnjBuk46rrM+FaOdvnLsMD90WbDuLpQpTDZbHyUro10xRf9QbAlp6U/BOE5Z5YQw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2438,16 +2534,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:d1d89641-4513-4c82-968f-ad8781e46da0" + "southcentralus:770f4647-12f7-4e82-8f19-d326878c0b13" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1189" ], "x-ms-correlation-request-id": [ - "5a86b8aa-7559-4a73-8a11-8bd13f064c8b" + "12dcfa9c-06bf-43bb-9a9d-f99c4f57398b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103923Z:5a86b8aa-7559-4a73-8a11-8bd13f064c8b" + "WESTEUROPE:20150713T115719Z:12dcfa9c-06bf-43bb-9a9d-f99c4f57398b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2456,7 +2552,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:23 GMT" + "Mon, 13 Jul 2015 11:57:18 GMT" ] }, "StatusCode": 200 @@ -2474,7 +2570,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"secondaryKey\": \"XZDnwbhza95ND1B4ipHiu28R7K1W8uOQlsRAYTYSw1KQ9wRivUUA8Vh81pM/2SjhGh4pTsJiquDNcVfM/ZVJ3A==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"secondaryKey\": \"PBgInFZw/Mny7rQOdJWoeeLnjBuk46rrM+FaOdvnLsMD90WbDuLpQpTDZbHyUro10xRf9QbAlp6U/BOE5Z5YQw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2492,16 +2588,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:fd9c3e2d-f205-4fdd-b127-80841274cb15" + "southcentralus:41d3694a-430e-4f26-b4cd-9aa91bd12d27" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1187" ], "x-ms-correlation-request-id": [ - "6e3d779d-4db0-4661-975a-20552bbbcc14" + "e479f8ed-241b-4ee5-ad2a-196b810e24cc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103929Z:6e3d779d-4db0-4661-975a-20552bbbcc14" + "WESTEUROPE:20150713T115725Z:e479f8ed-241b-4ee5-ad2a-196b810e24cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2510,7 +2606,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:29 GMT" + "Mon, 13 Jul 2015 11:57:25 GMT" ] }, "StatusCode": 200 @@ -2519,7 +2615,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzcwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNzAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNzAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"storageAccountKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"storageAccountKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2531,10 +2627,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4a46f8f9-76a4-4ac8-87dc-8847c2e1d35d" + "1df7a864-d13f-4d01-add4-0fd053dd3ebe" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -2543,7 +2639,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1bbc7ce6-57ff-4665-978a-8e9a4dc9a6c2" + "8574d637-a2dc-41cf-83ec-9f1566e9a000" ], "X-Content-Type-Options": [ "nosniff" @@ -2555,13 +2651,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1192" ], "x-ms-correlation-request-id": [ - "8b6e8205-1308-4164-9f84-30876ea80243" + "1acd2401-ce5e-4ac0-903b-de66f2ac4fc5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103910Z:8b6e8205-1308-4164-9f84-30876ea80243" + "WESTEUROPE:20150713T115708Z:1acd2401-ce5e-4ac0-903b-de66f2ac4fc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2570,7 +2666,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:10 GMT" + "Mon, 13 Jul 2015 11:57:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2582,7 +2678,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzcwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNzAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNzAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"storageAccountKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"storageAccountKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2594,10 +2690,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6f68aa38-c279-4c63-98a1-07c16fc8c406" + "6b5b160b-2b62-414f-a511-e36c29758dca" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -2606,7 +2702,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c56edad9-ad29-4305-b590-572ed13abd7c" + "3027ffea-0844-4db6-bd43-4f85f4dcf36d" ], "X-Content-Type-Options": [ "nosniff" @@ -2618,13 +2714,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1190" ], "x-ms-correlation-request-id": [ - "0478ce3b-ec46-47ba-9636-3f96bddd1447" + "c29e0b5d-7073-4f6e-b9cd-0247077aceab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103918Z:0478ce3b-ec46-47ba-9636-3f96bddd1447" + "WESTEUROPE:20150713T115714Z:c29e0b5d-7073-4f6e-b9cd-0247077aceab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2633,7 +2729,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:18 GMT" + "Mon, 13 Jul 2015 11:57:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2645,7 +2741,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzcwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNzAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNzAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"storageAccountKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"storageAccountKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2657,10 +2753,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6f1dbdac-8dff-4d54-ae25-5a80bf2633be" + "09ad69d4-6f3f-4d41-aba1-cd8044ceb734" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "876" @@ -2669,7 +2765,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2880daea-cd31-4ba8-8c93-ba44b4366038" + "e341f641-8d58-4045-994d-6d6a7f9e788b" ], "X-Content-Type-Options": [ "nosniff" @@ -2681,13 +2777,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1188" ], "x-ms-correlation-request-id": [ - "466da572-15b1-4f72-b9f0-e2889b79bfd9" + "e5641af6-fea2-4ac8-a976-a36c5849ecb4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103925Z:466da572-15b1-4f72-b9f0-e2889b79bfd9" + "WESTEUROPE:20150713T115721Z:e5641af6-fea2-4ac8-a976-a36c5849ecb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2696,7 +2792,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:24 GMT" + "Mon, 13 Jul 2015 11:57:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2708,7 +2804,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzcwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNzAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNzAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"storageAccountKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"storageAccountKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2720,10 +2816,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "16800999-1c99-4206-ab7b-dad9c540fe73" + "467c6981-f2de-4e24-a0fb-8c69ec903547" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"oFuIIWQrxi9tOQ9VxzvwNwkvbDBA3st9p/rEw6xOGQ66bEyD0i/IU2hvZKIUU1fJR7+7JE3JEPLHGYc8bZuh/g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg701/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server701/databases/sql-audit-cmdlet-db701/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets701\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver70Sqlauditcmdletdb701\",\r\n \"storageAccountKey\": \"HEFRewC4R8aOZqveeaI7rBV4gMSdPFqm081BLJ/Li6UIC8eAdPbWeBgzAsyGXVUNgWjRZ1zQ8i3oFyCrAUWrLg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets701.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "876" @@ -2732,7 +2828,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "0e598fa9-3d84-4642-828f-8d1aef12025d" + "467a2135-7dfa-44fb-a78b-303a245f0c19" ], "X-Content-Type-Options": [ "nosniff" @@ -2744,13 +2840,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1186" ], "x-ms-correlation-request-id": [ - "c1a339ed-00ef-4e3d-870f-22bc8c7e99de" + "e1468c14-5d14-43ba-962c-bae2e6b0ce75" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103931Z:c1a339ed-00ef-4e3d-870f-22bc8c7e99de" + "WESTEUROPE:20150713T115727Z:e1468c14-5d14-43ba-962c-bae2e6b0ce75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2759,7 +2855,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:31 GMT" + "Mon, 13 Jul 2015 11:57:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2789,13 +2885,13 @@ "ussouth3" ], "x-ms-request-id": [ - "9065e9f193e4b72782b03732f4a24a73" + "8389dcaa794cc7e289c35561fcb71ada" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:45 GMT" + "Mon, 13 Jul 2015 11:57:36 GMT" ], "Server": [ "1.0.6198.243", @@ -2806,8 +2902,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9065e9f193e4b72782b03732f4a24a73", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzkwNjVlOWYxOTNlNGI3Mjc4MmIwMzczMmY0YTI0YTcz", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/8389dcaa794cc7e289c35561fcb71ada", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzgzODlkY2FhNzk0Y2M3ZTI4OWMzNTU2MWZjYjcxYWRh", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2818,7 +2914,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 9065e9f1-93e4-b727-82b0-3732f4a24a73\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 8389dcaa-794c-c7e2-89c3-5561fcb71ada\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2830,13 +2926,13 @@ "ussouth3" ], "x-ms-request-id": [ - "6ed8f84c8c67bdb284226215c16af78b" + "588b82c0af29cd9e9b06c830a19adbe9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:39:47 GMT" + "Mon, 13 Jul 2015 11:57:38 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithEventTypes.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithEventTypes.json index c13274df618e..c683944ad575 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithEventTypes.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithEventTypes.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "f7cdcdfd3860b041b1d538d7e19744c8" + "7734ec94ce56c73f83682b626a821b2b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:09:04 GMT" + "Mon, 13 Jul 2015 12:05:08 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets501" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f7cdcdfd3860b041b1d538d7e19744c8", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y3Y2RjZGZkMzg2MGIwNDFiMWQ1MzhkN2UxOTc0NGM4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n f7cdcdfd-3860-b041-b1d5-38d7e19744c8\r\n InProgress\r\n", + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b3516ac8caa7bbb3b38561f7255cee6b" + "8477b06a293cc9d896d0b429b97c1631" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:09:04 GMT" + "Mon, 13 Jul 2015 12:05:09 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f7cdcdfd3860b041b1d538d7e19744c8", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y3Y2RjZGZkMzg2MGIwNDFiMWQ1MzhkN2UxOTc0NGM4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n f7cdcdfd-3860-b041-b1d5-38d7e19744c8\r\n InProgress\r\n", + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "4b1180d476a4bf5d8fa8963ff910d738" + "a5b325e2d566c8feb95a241636f310f8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:09:35 GMT" + "Mon, 13 Jul 2015 12:05:39 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f7cdcdfd3860b041b1d538d7e19744c8", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y3Y2RjZGZkMzg2MGIwNDFiMWQ1MzhkN2UxOTc0NGM4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,458 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n f7cdcdfd-3860-b041-b1d5-38d7e19744c8\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "3bbaa1fa1cc5c2e79aff3fb0e00c223a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:06:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "44236bd47ed1c5e0bc8f07419df9ec66" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:06:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "55e00747c706c53eaa4367ea5df33d3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:07:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "78eecde2ecacc36fb72f04439bc0cfd5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:07:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "ae641e4a64f2c800bac085733b063afa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:08:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f81f8fb7499ac574a03b361098c13501" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:08:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9d939bf31ceaca9484fdc1e2ccdf5636" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:09:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "97f337277c40c786ba64fd74d590998c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:09:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4f5dadb55398c7adbbcb1899bf2feec0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:10:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "fdcf220fe703c375b51a4b294c57cf88" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:10:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "5b3965b9f808c6acb4d6149bc1da0d7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:11:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7734ec94ce56c73f83682b626a821b2b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc3MzRlYzk0Y2U1NmM3M2Y4MzY4MmI2MjZhODIxYjJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 7734ec94-ce56-c73f-8368-2b626a821b2b\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +605,13 @@ "ussouth3" ], "x-ms-request-id": [ - "79a48e544338b7bb8baa6b7da1fe67a3" + "d156899afa05c5ee9e87a90ec494220f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:06 GMT" + "Mon, 13 Jul 2015 12:11:44 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +649,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14561" + "14894" ], "x-ms-request-id": [ - "a38d068a-fdc0-4fdb-94bd-a7c143c46067" + "6888e438-4627-40d0-9f95-057268612642" ], "x-ms-correlation-request-id": [ - "a38d068a-fdc0-4fdb-94bd-a7c143c46067" + "6888e438-4627-40d0-9f95-057268612642" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101006Z:a38d068a-fdc0-4fdb-94bd-a7c143c46067" + "WESTEUROPE:20150713T121146Z:6888e438-4627-40d0-9f95-057268612642" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +667,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:06 GMT" + "Mon, 13 Jul 2015 12:11:45 GMT" ] }, "StatusCode": 404 @@ -252,16 +703,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "3909f2e0-9488-4d7e-8497-2ba63faa628b" + "5d06bb1e-c3ef-42c6-923e-5799a1d90786" ], "x-ms-correlation-request-id": [ - "3909f2e0-9488-4d7e-8497-2ba63faa628b" + "5d06bb1e-c3ef-42c6-923e-5799a1d90786" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101008Z:3909f2e0-9488-4d7e-8497-2ba63faa628b" + "WESTEUROPE:20150713T121148Z:5d06bb1e-c3ef-42c6-923e-5799a1d90786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +721,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:08 GMT" + "Mon, 13 Jul 2015 12:11:47 GMT" ] }, "StatusCode": 201 @@ -291,7 +742,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:10:09.5214169Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"5f685df4-9f8e-4f9b-ab43-f88ed7dc4d50\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:11:49.0957834Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"06a4c640-746e-4065-9dac-3713b9c02646\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +757,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "5f685df4-9f8e-4f9b-ab43-f88ed7dc4d50" + "06a4c640-746e-4065-9dac-3713b9c02646" ], "x-ms-correlation-request-id": [ - "5f685df4-9f8e-4f9b-ab43-f88ed7dc4d50" + "06a4c640-746e-4065-9dac-3713b9c02646" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101009Z:5f685df4-9f8e-4f9b-ab43-f88ed7dc4d50" + "WESTEUROPE:20150713T121149Z:06a4c640-746e-4065-9dac-3713b9c02646" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +775,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:09 GMT" + "Mon, 13 Jul 2015 12:11:48 GMT" ] }, "StatusCode": 200 @@ -345,7 +796,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:10:11.5308649Z\",\r\n \"duration\": \"PT1.2592686S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:11:51.1290574Z\",\r\n \"duration\": \"PT1.2159598S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +811,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-request-id": [ - "01f96d70-2be4-435f-945a-19bbbd1c6753" + "23bac73c-f363-4ab6-9130-8d778e2a4f3b" ], "x-ms-correlation-request-id": [ - "01f96d70-2be4-435f-945a-19bbbd1c6753" + "23bac73c-f363-4ab6-9130-8d778e2a4f3b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101012Z:01f96d70-2be4-435f-945a-19bbbd1c6753" + "WESTEUROPE:20150713T121151Z:23bac73c-f363-4ab6-9130-8d778e2a4f3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +829,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:11 GMT" + "Mon, 13 Jul 2015 12:11:51 GMT" ] }, "StatusCode": 201 @@ -408,16 +859,64 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14560" + "14893" + ], + "x-ms-request-id": [ + "950f7562-f93b-406c-aa45-7732fdec0a56" + ], + "x-ms-correlation-request-id": [ + "950f7562-f93b-406c-aa45-7732fdec0a56" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T121152Z:950f7562-f93b-406c-aa45-7732fdec0a56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:11:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzUwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" ], "x-ms-request-id": [ - "844e2ccc-007f-4ffd-b4ea-2606c4ef9f8f" + "61f8b077-742e-4c21-99f6-258a74532af9" ], "x-ms-correlation-request-id": [ - "844e2ccc-007f-4ffd-b4ea-2606c4ef9f8f" + "61f8b077-742e-4c21-99f6-258a74532af9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101012Z:844e2ccc-007f-4ffd-b4ea-2606c4ef9f8f" + "WESTEUROPE:20150713T121155Z:61f8b077-742e-4c21-99f6-258a74532af9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +925,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:12 GMT" + "Mon, 13 Jul 2015 12:11:54 GMT" ] }, "StatusCode": 200 @@ -456,16 +955,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14558" + "14889" ], "x-ms-request-id": [ - "6e3032ef-fab0-414c-95ef-68b51be9e440" + "2c90b698-270a-4f7b-a012-0cee3e140014" ], "x-ms-correlation-request-id": [ - "6e3032ef-fab0-414c-95ef-68b51be9e440" + "2c90b698-270a-4f7b-a012-0cee3e140014" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101015Z:6e3032ef-fab0-414c-95ef-68b51be9e440" + "WESTEUROPE:20150713T121158Z:2c90b698-270a-4f7b-a012-0cee3e140014" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +973,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:15 GMT" + "Mon, 13 Jul 2015 12:11:57 GMT" ] }, "StatusCode": 200 @@ -504,16 +1003,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14556" + "14887" ], "x-ms-request-id": [ - "8d0836e0-3184-467f-9e3e-31d28563f120" + "75758984-9129-45a6-b627-3543177ba45a" ], "x-ms-correlation-request-id": [ - "8d0836e0-3184-467f-9e3e-31d28563f120" + "75758984-9129-45a6-b627-3543177ba45a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101018Z:8d0836e0-3184-467f-9e3e-31d28563f120" + "WESTEUROPE:20150713T121201Z:75758984-9129-45a6-b627-3543177ba45a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +1021,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:18 GMT" + "Mon, 13 Jul 2015 12:12:00 GMT" ] }, "StatusCode": 200 @@ -552,16 +1051,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14554" + "14885" ], "x-ms-request-id": [ - "dc7b36a8-ba45-47f0-9da5-8bbb4dde7568" + "1b5e2395-9fe5-4329-9d1f-b7d68f16b7db" ], "x-ms-correlation-request-id": [ - "dc7b36a8-ba45-47f0-9da5-8bbb4dde7568" + "1b5e2395-9fe5-4329-9d1f-b7d68f16b7db" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101021Z:dc7b36a8-ba45-47f0-9da5-8bbb4dde7568" + "WESTEUROPE:20150713T121204Z:1b5e2395-9fe5-4329-9d1f-b7d68f16b7db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +1069,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:21 GMT" + "Mon, 13 Jul 2015 12:12:03 GMT" ] }, "StatusCode": 200 @@ -585,7 +1084,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:10:23.2686682Z\",\r\n \"duration\": \"PT10.7165758S\",\r\n \"trackingId\": \"2fefb2d9-0495-4d47-b0b2-4d43b42a9134\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:12:06.4397053Z\",\r\n \"duration\": \"PT13.0852547S\",\r\n \"trackingId\": \"911783df-2ad1-449f-9025-a0e5ad0767a1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -600,16 +1099,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14552" + "14883" ], "x-ms-request-id": [ - "963512ad-bb8a-4d30-887d-af2b4e300f12" + "39de61b0-8e98-454d-9133-7648d8524ee4" ], "x-ms-correlation-request-id": [ - "963512ad-bb8a-4d30-887d-af2b4e300f12" + "39de61b0-8e98-454d-9133-7648d8524ee4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101024Z:963512ad-bb8a-4d30-887d-af2b4e300f12" + "WESTEUROPE:20150713T121207Z:39de61b0-8e98-454d-9133-7648d8524ee4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +1117,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:24 GMT" + "Mon, 13 Jul 2015 12:12:06 GMT" ] }, "StatusCode": 200 @@ -633,7 +1132,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:10:23.2686682Z\",\r\n \"duration\": \"PT10.7165758S\",\r\n \"trackingId\": \"2fefb2d9-0495-4d47-b0b2-4d43b42a9134\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:12:06.4397053Z\",\r\n \"duration\": \"PT13.0852547S\",\r\n \"trackingId\": \"911783df-2ad1-449f-9025-a0e5ad0767a1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -648,16 +1147,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14548" + "14881" ], "x-ms-request-id": [ - "5501c753-0f26-4edc-8e03-0e7507f82d15" + "ba49aa0b-0ab3-4eb9-9424-cff65b3b9815" ], "x-ms-correlation-request-id": [ - "5501c753-0f26-4edc-8e03-0e7507f82d15" + "ba49aa0b-0ab3-4eb9-9424-cff65b3b9815" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101027Z:5501c753-0f26-4edc-8e03-0e7507f82d15" + "WESTEUROPE:20150713T121210Z:ba49aa0b-0ab3-4eb9-9424-cff65b3b9815" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +1165,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:27 GMT" + "Mon, 13 Jul 2015 12:12:09 GMT" ] }, "StatusCode": 200 @@ -681,7 +1180,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:10:23.2686682Z\",\r\n \"duration\": \"PT10.7165758S\",\r\n \"trackingId\": \"2fefb2d9-0495-4d47-b0b2-4d43b42a9134\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:12:06.4397053Z\",\r\n \"duration\": \"PT13.0852547S\",\r\n \"trackingId\": \"911783df-2ad1-449f-9025-a0e5ad0767a1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -696,16 +1195,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14546" + "14878" ], "x-ms-request-id": [ - "065caad7-a73d-4b90-8e88-bafd28b0d0e7" + "ba0902e5-bb6e-4fcd-8bf1-fff727f85764" ], "x-ms-correlation-request-id": [ - "065caad7-a73d-4b90-8e88-bafd28b0d0e7" + "ba0902e5-bb6e-4fcd-8bf1-fff727f85764" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101030Z:065caad7-a73d-4b90-8e88-bafd28b0d0e7" + "WESTEUROPE:20150713T121213Z:ba0902e5-bb6e-4fcd-8bf1-fff727f85764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +1213,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:30 GMT" + "Mon, 13 Jul 2015 12:12:12 GMT" ] }, "StatusCode": 200 @@ -729,7 +1228,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/5B8329E6C678C2A2\",\r\n \"operationId\": \"5B8329E6C678C2A2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:10:33.1653902Z\",\r\n \"duration\": \"PT9.8178319S\",\r\n \"trackingId\": \"2b06aa32-a8d4-4906-8cd9-fa1d14e54d77\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:10:23.2686682Z\",\r\n \"duration\": \"PT10.7165758S\",\r\n \"trackingId\": \"2fefb2d9-0495-4d47-b0b2-4d43b42a9134\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/5B8329E6C678C2A2\",\r\n \"operationId\": \"5B8329E6C678C2A2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:12:14.6592738Z\",\r\n \"duration\": \"PT8.1037782S\",\r\n \"trackingId\": \"cb053efb-bc04-49dd-b75f-23b4f4714bb3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:12:06.4397053Z\",\r\n \"duration\": \"PT13.0852547S\",\r\n \"trackingId\": \"911783df-2ad1-449f-9025-a0e5ad0767a1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1390" @@ -744,16 +1243,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14543" + "14876" ], "x-ms-request-id": [ - "9938eee3-7b53-4566-9ffa-23d50b503b96" + "67a1f0c3-da53-4855-8b4d-9c36457cd362" ], "x-ms-correlation-request-id": [ - "9938eee3-7b53-4566-9ffa-23d50b503b96" + "67a1f0c3-da53-4855-8b4d-9c36457cd362" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101034Z:9938eee3-7b53-4566-9ffa-23d50b503b96" + "WESTEUROPE:20150713T121216Z:67a1f0c3-da53-4855-8b4d-9c36457cd362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +1261,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:33 GMT" + "Mon, 13 Jul 2015 12:12:15 GMT" ] }, "StatusCode": 200 @@ -777,7 +1276,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/5B8329E6C678C2A2\",\r\n \"operationId\": \"5B8329E6C678C2A2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:10:33.1653902Z\",\r\n \"duration\": \"PT9.8178319S\",\r\n \"trackingId\": \"2b06aa32-a8d4-4906-8cd9-fa1d14e54d77\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:10:23.2686682Z\",\r\n \"duration\": \"PT10.7165758S\",\r\n \"trackingId\": \"2fefb2d9-0495-4d47-b0b2-4d43b42a9134\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/5B8329E6C678C2A2\",\r\n \"operationId\": \"5B8329E6C678C2A2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:12:14.6592738Z\",\r\n \"duration\": \"PT8.1037782S\",\r\n \"trackingId\": \"cb053efb-bc04-49dd-b75f-23b4f4714bb3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup/operations/B0E7851820B767E8\",\r\n \"operationId\": \"B0E7851820B767E8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:12:06.4397053Z\",\r\n \"duration\": \"PT13.0852547S\",\r\n \"trackingId\": \"911783df-2ad1-449f-9025-a0e5ad0767a1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1390" @@ -792,16 +1291,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14541" + "14874" ], "x-ms-request-id": [ - "db903f7f-d311-45dd-8c4c-3092e11a70b9" + "1f998171-8f4e-4d7c-8eb3-ef0a23a3e018" ], "x-ms-correlation-request-id": [ - "db903f7f-d311-45dd-8c4c-3092e11a70b9" + "1f998171-8f4e-4d7c-8eb3-ef0a23a3e018" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101037Z:db903f7f-d311-45dd-8c4c-3092e11a70b9" + "WESTEUROPE:20150713T121220Z:1f998171-8f4e-4d7c-8eb3-ef0a23a3e018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +1309,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:36 GMT" + "Mon, 13 Jul 2015 12:12:19 GMT" ] }, "StatusCode": 200 @@ -825,7 +1324,55 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:10:12.0781072Z\",\r\n \"duration\": \"PT1.8065109S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:11:51.1290574Z\",\r\n \"duration\": \"PT1.2159598S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-request-id": [ + "b78cc335-17b6-42e0-a2b8-b8f557030ad9" + ], + "x-ms-correlation-request-id": [ + "b78cc335-17b6-42e0-a2b8-b8f557030ad9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T121152Z:b78cc335-17b6-42e0-a2b8-b8f557030ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:11:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzUwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:11:52.7973461Z\",\r\n \"duration\": \"PT2.8842485S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -840,16 +1387,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14559" + "14890" ], "x-ms-request-id": [ - "cffa9c77-6654-4f7f-aebe-4180fdc472da" + "b75b20db-2466-48ab-9f5e-28349876c1c2" ], "x-ms-correlation-request-id": [ - "cffa9c77-6654-4f7f-aebe-4180fdc472da" + "b75b20db-2466-48ab-9f5e-28349876c1c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101013Z:cffa9c77-6654-4f7f-aebe-4180fdc472da" + "WESTEUROPE:20150713T121155Z:b75b20db-2466-48ab-9f5e-28349876c1c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +1405,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:12 GMT" + "Mon, 13 Jul 2015 12:11:55 GMT" ] }, "StatusCode": 200 @@ -873,7 +1420,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:10:12.0781072Z\",\r\n \"duration\": \"PT1.8065109S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:11:52.7973461Z\",\r\n \"duration\": \"PT2.8842485S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +1435,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14557" + "14888" ], "x-ms-request-id": [ - "3d9025e6-b472-4410-a933-ca4203c4dbb6" + "9b051de6-14b7-4538-82ef-30209eeed4a8" ], "x-ms-correlation-request-id": [ - "3d9025e6-b472-4410-a933-ca4203c4dbb6" + "9b051de6-14b7-4538-82ef-30209eeed4a8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101016Z:3d9025e6-b472-4410-a933-ca4203c4dbb6" + "WESTEUROPE:20150713T121158Z:9b051de6-14b7-4538-82ef-30209eeed4a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +1453,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:15 GMT" + "Mon, 13 Jul 2015 12:11:58 GMT" ] }, "StatusCode": 200 @@ -921,7 +1468,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:10:12.0781072Z\",\r\n \"duration\": \"PT1.8065109S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:11:52.7973461Z\",\r\n \"duration\": \"PT2.8842485S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +1483,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14555" + "14886" ], "x-ms-request-id": [ - "9186f605-171f-4dfc-8794-8edda49b3be6" + "f03989c4-d07f-4b14-bb93-51d219974953" ], "x-ms-correlation-request-id": [ - "9186f605-171f-4dfc-8794-8edda49b3be6" + "f03989c4-d07f-4b14-bb93-51d219974953" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101019Z:9186f605-171f-4dfc-8794-8edda49b3be6" + "WESTEUROPE:20150713T121201Z:f03989c4-d07f-4b14-bb93-51d219974953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +1501,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:18 GMT" + "Mon, 13 Jul 2015 12:12:01 GMT" ] }, "StatusCode": 200 @@ -969,7 +1516,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:10:12.0781072Z\",\r\n \"duration\": \"PT1.8065109S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:11:52.7973461Z\",\r\n \"duration\": \"PT2.8842485S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +1531,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14553" + "14884" ], "x-ms-request-id": [ - "5ffb4e06-64fb-4566-a7a0-d325ec56959e" + "f13a463f-2380-4dac-a6af-91af24f396d3" ], "x-ms-correlation-request-id": [ - "5ffb4e06-64fb-4566-a7a0-d325ec56959e" + "f13a463f-2380-4dac-a6af-91af24f396d3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101022Z:5ffb4e06-64fb-4566-a7a0-d325ec56959e" + "WESTEUROPE:20150713T121204Z:f13a463f-2380-4dac-a6af-91af24f396d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1549,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:21 GMT" + "Mon, 13 Jul 2015 12:12:04 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1564,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:10:12.0781072Z\",\r\n \"duration\": \"PT1.8065109S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:11:52.7973461Z\",\r\n \"duration\": \"PT2.8842485S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1579,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14551" + "14882" ], "x-ms-request-id": [ - "2509bada-ddeb-41cd-8ed1-a50ea28c0279" + "bd43edcd-41d9-40ea-a76c-72cab7e198ce" ], "x-ms-correlation-request-id": [ - "2509bada-ddeb-41cd-8ed1-a50ea28c0279" + "bd43edcd-41d9-40ea-a76c-72cab7e198ce" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101025Z:2509bada-ddeb-41cd-8ed1-a50ea28c0279" + "WESTEUROPE:20150713T121207Z:bd43edcd-41d9-40ea-a76c-72cab7e198ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1597,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:24 GMT" + "Mon, 13 Jul 2015 12:12:07 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1612,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:10:12.0781072Z\",\r\n \"duration\": \"PT1.8065109S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:11:52.7973461Z\",\r\n \"duration\": \"PT2.8842485S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1627,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14547" + "14880" ], "x-ms-request-id": [ - "758ffe02-c803-43ec-b5a5-cc7c73f4bfab" + "f5f71ae8-0ea1-40f2-9f20-9a6fbcfa5c82" ], "x-ms-correlation-request-id": [ - "758ffe02-c803-43ec-b5a5-cc7c73f4bfab" + "f5f71ae8-0ea1-40f2-9f20-9a6fbcfa5c82" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101028Z:758ffe02-c803-43ec-b5a5-cc7c73f4bfab" + "WESTEUROPE:20150713T121211Z:f5f71ae8-0ea1-40f2-9f20-9a6fbcfa5c82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1645,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:27 GMT" + "Mon, 13 Jul 2015 12:12:10 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1660,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:10:12.0781072Z\",\r\n \"duration\": \"PT1.8065109S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:11:52.7973461Z\",\r\n \"duration\": \"PT2.8842485S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1675,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14545" + "14877" ], "x-ms-request-id": [ - "57602db1-72e8-4289-8db0-83def37a64f3" + "3cc109f4-907c-4082-aee4-effacc861427" ], "x-ms-correlation-request-id": [ - "57602db1-72e8-4289-8db0-83def37a64f3" + "3cc109f4-907c-4082-aee4-effacc861427" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101031Z:57602db1-72e8-4289-8db0-83def37a64f3" + "WESTEUROPE:20150713T121214Z:3cc109f4-907c-4082-aee4-effacc861427" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1693,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:30 GMT" + "Mon, 13 Jul 2015 12:12:13 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1708,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:10:12.0781072Z\",\r\n \"duration\": \"PT1.8065109S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:11:52.7973461Z\",\r\n \"duration\": \"PT2.8842485S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1723,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14542" + "14875" ], "x-ms-request-id": [ - "94eac8c3-e821-42d8-ad35-f4031dec3eb2" + "1a841d4d-e310-4162-b1f9-7bdd71a067cf" ], "x-ms-correlation-request-id": [ - "94eac8c3-e821-42d8-ad35-f4031dec3eb2" + "1a841d4d-e310-4162-b1f9-7bdd71a067cf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101034Z:94eac8c3-e821-42d8-ad35-f4031dec3eb2" + "WESTEUROPE:20150713T121217Z:1a841d4d-e310-4162-b1f9-7bdd71a067cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1741,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:33 GMT" + "Mon, 13 Jul 2015 12:12:16 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1756,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:10:35.3838234Z\",\r\n \"duration\": \"PT25.1122271S\",\r\n \"correlationId\": \"01f96d70-2be4-435f-945a-19bbbd1c6753\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db501\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server501\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:12:16.853041Z\",\r\n \"duration\": \"PT26.9399434S\",\r\n \"correlationId\": \"23bac73c-f363-4ab6-9130-8d778e2a4f3b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server501/sql-audit-cmdlet-db501\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server501\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1821" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1771,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14540" + "14873" ], "x-ms-request-id": [ - "2204fb87-7317-46da-9707-c16fa4ff2214" + "20f7c41f-26f7-4b60-bd95-63f69cb66b91" ], "x-ms-correlation-request-id": [ - "2204fb87-7317-46da-9707-c16fa4ff2214" + "20f7c41f-26f7-4b60-bd95-63f69cb66b91" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101037Z:2204fb87-7317-46da-9707-c16fa4ff2214" + "WESTEUROPE:20150713T121220Z:20f7c41f-26f7-4b60-bd95-63f69cb66b91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1789,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:37 GMT" + "Mon, 13 Jul 2015 12:12:19 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1819,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14539" + "14872" ], "x-ms-request-id": [ - "e7ba9665-741a-4c2a-a684-1e690624b941" + "25d64a90-99f8-4b97-b402-7b55def9bbed" ], "x-ms-correlation-request-id": [ - "e7ba9665-741a-4c2a-a684-1e690624b941" + "25d64a90-99f8-4b97-b402-7b55def9bbed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101039Z:e7ba9665-741a-4c2a-a684-1e690624b941" + "WESTEUROPE:20150713T121222Z:25d64a90-99f8-4b97-b402-7b55def9bbed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1837,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:39 GMT" + "Mon, 13 Jul 2015 12:12:22 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1870,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:906a395b-5c0f-42bd-a00c-2b167e4de8ea" + "westeurope:4c18d44e-96cf-4f76-9bd6-128a7123a800" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14586" + "14851" ], "x-ms-correlation-request-id": [ - "ad005808-9d8c-44e7-9608-3f06102a6eaf" + "ce161388-585b-4eef-9393-decdcbd693a9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101040Z:ad005808-9d8c-44e7-9608-3f06102a6eaf" + "WESTEUROPE:20150713T121223Z:ce161388-585b-4eef-9393-decdcbd693a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1888,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:39 GMT" + "Mon, 13 Jul 2015 12:12:22 GMT" ] }, "StatusCode": 200 @@ -1356,19 +1903,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b8e58cd0-39fc-4e9b-bbcf-c4d26f969f7e" + "9ebee76a-6f2e-4a18-9534-7972c16867dd" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "898" + "801" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "11dcb9a2-e68a-42e0-be05-4b3c64b3db5b" + "67ff148f-eee9-4095-b4dc-a4505ea8885a" ], "X-Content-Type-Options": [ "nosniff" @@ -1377,13 +1924,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14427" + "14809" ], "x-ms-correlation-request-id": [ - "85e0decc-3c60-4b4f-abfc-2cd7d96c1d63" + "7f320e9e-b484-4333-8bfc-77451bb9a4cf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101042Z:85e0decc-3c60-4b4f-abfc-2cd7d96c1d63" + "WESTEUROPE:20150713T121225Z:7f320e9e-b484-4333-8bfc-77451bb9a4cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1939,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:41 GMT" + "Mon, 13 Jul 2015 12:12:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,7 +1957,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a860af26-c5fe-42a8-9e9d-f070b7c85b58" + "0e305696-f483-4239-803b-7303dee3c1b6" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1422,7 +1969,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "626830bc-52c1-4220-a4fb-eef774c2a2d4" + "6bf09cb0-ce48-41f9-a941-ad079907c486" ], "X-Content-Type-Options": [ "nosniff" @@ -1431,13 +1978,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14425" + "14807" ], "x-ms-correlation-request-id": [ - "ea56c7a1-ec3b-401e-b39a-e496157feb92" + "f578ec30-7838-45c9-8ffe-c5d4ba271de5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101049Z:ea56c7a1-ec3b-401e-b39a-e496157feb92" + "WESTEUROPE:20150713T121232Z:f578ec30-7838-45c9-8ffe-c5d4ba271de5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,7 +1993,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:48 GMT" + "Mon, 13 Jul 2015 12:12:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1464,7 +2011,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "26f95edd-6ecf-477b-8588-26a8cfd78efc" + "2ed29c27-a164-49ca-a19d-5effe4c95534" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1476,7 +2023,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a0ccfd68-c7e9-41cc-9023-9a14285a8fc4" + "81e2a612-bd06-43a4-8498-33783a51fdf9" ], "X-Content-Type-Options": [ "nosniff" @@ -1485,13 +2032,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14424" + "14806" ], "x-ms-correlation-request-id": [ - "edd04864-b385-4f21-89e5-0fefed057707" + "16cebf07-c7c5-404f-8b7e-343d85951e22" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101050Z:edd04864-b385-4f21-89e5-0fefed057707" + "WESTEUROPE:20150713T121234Z:16cebf07-c7c5-404f-8b7e-343d85951e22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +2047,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:49 GMT" + "Mon, 13 Jul 2015 12:12:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1518,7 +2065,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "503620db-4d34-4253-bc6b-1fee92de4ffe" + "7f89155e-d075-497e-a271-3acb261905bd" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1530,7 +2077,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d847d120-e363-41f0-b7df-0467e5db9d55" + "b9e9d927-8879-4961-b1d9-385ea36a3519" ], "X-Content-Type-Options": [ "nosniff" @@ -1539,13 +2086,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14422" + "14802" ], "x-ms-correlation-request-id": [ - "11be4fe1-fdcb-4db0-8be7-8b9e1acd3bf4" + "d014bb53-d339-47f0-94f9-9799dda2bacb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101055Z:11be4fe1-fdcb-4db0-8be7-8b9e1acd3bf4" + "WESTEUROPE:20150713T121249Z:d014bb53-d339-47f0-94f9-9799dda2bacb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +2101,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:54 GMT" + "Mon, 13 Jul 2015 12:12:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1572,7 +2119,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8380b75e-f2c5-4ee7-9d64-c41fe6817832" + "9c32add4-56e2-4c0b-90df-fc0f5dd4124b" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1584,7 +2131,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d5fab467-806a-4fe9-9225-fdf125414977" + "2812d383-49da-4ff3-80a5-4d846ed09071" ], "X-Content-Type-Options": [ "nosniff" @@ -1593,13 +2140,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14421" + "14801" ], "x-ms-correlation-request-id": [ - "fb1f21dd-183c-4069-ac80-acf0f62c6bd3" + "6e53ed48-aea3-47ae-ba2e-172def53e950" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101057Z:fb1f21dd-183c-4069-ac80-acf0f62c6bd3" + "WESTEUROPE:20150713T121250Z:6e53ed48-aea3-47ae-ba2e-172def53e950" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +2155,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:56 GMT" + "Mon, 13 Jul 2015 12:12:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1626,7 +2173,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d30fcbfb-d18d-455a-98b1-4e3f8ab628c6" + "bd0e2b39-50f2-4f4d-94b5-89ff5c0f5605" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1638,7 +2185,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6548e6e4-3de5-47d3-a7a6-c6315d98715e" + "e4ac7ed9-1fff-447e-8b94-27976b73ccb7" ], "X-Content-Type-Options": [ "nosniff" @@ -1647,13 +2194,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14419" + "14799" ], "x-ms-correlation-request-id": [ - "7aad1543-5400-4d8d-819b-e60a1fa16fe2" + "6e8fc4fb-96c4-4296-8981-5626aa2171d7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101102Z:7aad1543-5400-4d8d-819b-e60a1fa16fe2" + "WESTEUROPE:20150713T121256Z:6e8fc4fb-96c4-4296-8981-5626aa2171d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1662,7 +2209,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:11:01 GMT" + "Mon, 13 Jul 2015 12:12:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1680,10 +2227,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b8e58cd0-39fc-4e9b-bbcf-c4d26f969f7e" + "9ebee76a-6f2e-4a18-9534-7972c16867dd" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"name\": \"sql-audit-cmdlet-db501\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"4702361c-948f-4f76-8023-97313416602d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:10:30.897Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:40:30.897Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"name\": \"sql-audit-cmdlet-db501\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1e571406-bb08-4252-b71b-0d1c410ca8f3\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T12:12:11.457Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:42:11.457Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1692,7 +2239,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b112448f-19d6-4947-8343-109b0b537734" + "962a7c29-35a5-42f1-bb9a-e43781e87063" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,13 +2248,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14426" + "14808" ], "x-ms-correlation-request-id": [ - "b2438a0b-5da7-485b-8c8d-cabc8111c580" + "e08c3af5-2902-4918-b682-d167d27856e8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101043Z:b2438a0b-5da7-485b-8c8d-cabc8111c580" + "WESTEUROPE:20150713T121226Z:e08c3af5-2902-4918-b682-d167d27856e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,7 +2263,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:42 GMT" + "Mon, 13 Jul 2015 12:12:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1734,10 +2281,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "26f95edd-6ecf-477b-8588-26a8cfd78efc" + "2ed29c27-a164-49ca-a19d-5effe4c95534" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"name\": \"sql-audit-cmdlet-db501\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"4702361c-948f-4f76-8023-97313416602d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:10:30.897Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:40:30.897Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"name\": \"sql-audit-cmdlet-db501\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1e571406-bb08-4252-b71b-0d1c410ca8f3\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T12:12:11.457Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:42:11.457Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1746,7 +2293,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f139049e-2940-4925-b6a1-c326b9ef3bb8" + "06fba885-633c-428a-8070-18344fc452a6" ], "X-Content-Type-Options": [ "nosniff" @@ -1755,13 +2302,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14423" + "14805" ], "x-ms-correlation-request-id": [ - "9b706d85-bfa7-4c3d-87aa-5f73ebc108b7" + "680684c0-5b68-455e-850f-9272c8a869ef" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101051Z:9b706d85-bfa7-4c3d-87aa-5f73ebc108b7" + "WESTEUROPE:20150713T121235Z:680684c0-5b68-455e-850f-9272c8a869ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1770,7 +2317,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:50 GMT" + "Mon, 13 Jul 2015 12:12:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1788,10 +2335,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8380b75e-f2c5-4ee7-9d64-c41fe6817832" + "9c32add4-56e2-4c0b-90df-fc0f5dd4124b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"name\": \"sql-audit-cmdlet-db501\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"4702361c-948f-4f76-8023-97313416602d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:10:30.897Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T10:40:30.897Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501\",\r\n \"name\": \"sql-audit-cmdlet-db501\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1e571406-bb08-4252-b71b-0d1c410ca8f3\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T12:12:11.457Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:42:11.457Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1800,7 +2347,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "476d62dc-0d35-484c-af68-b830e9dd30f2" + "cc9d0f18-3c89-49e0-b245-25d143899117" ], "X-Content-Type-Options": [ "nosniff" @@ -1809,13 +2356,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14420" + "14800" ], "x-ms-correlation-request-id": [ - "3a1307e7-efd7-4c2a-85b0-cf94607c1274" + "9d137d37-3790-4feb-8575-8ab09be88fbe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101058Z:3a1307e7-efd7-4c2a-85b0-cf94607c1274" + "WESTEUROPE:20150713T121252Z:9d137d37-3790-4feb-8575-8ab09be88fbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1824,98 +2371,9 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:57 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets501\",\r\n \"name\": \"auditcmdlets501\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3799" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14538" - ], - "x-ms-request-id": [ - "41aa0bb9-c6b0-4c3d-97cc-18ad461d69e5" - ], - "x-ms-correlation-request-id": [ - "41aa0bb9-c6b0-4c3d-97cc-18ad461d69e5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101043Z:41aa0bb9-c6b0-4c3d-97cc-18ad461d69e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets501", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzNTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets501\r\n auditcmdlets501\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets501.blob.core.windows.net/\r\n https://auditcmdlets501.queue.core.windows.net/\r\n https://auditcmdlets501.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:09:04Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1281" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "0b2b071c9cc0b339b58281cc90fcbcf0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:10:43 GMT" + "Mon, 13 Jul 2015 12:12:51 GMT" ], "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", "Microsoft-HTTPAPI/2.0" ] }, @@ -1934,7 +2392,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"secondaryKey\": \"O6LswffN1UzEoyS6KkyN8KYebEZxlG84kJrKx9SapOu5bemjt80dIvkkX3fofx/AK1HF6+dkYjcuDsj+4KNBhw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"secondaryKey\": \"GH9RkVIn/oyv+1cJu8iJli+cmUTPj+mhSnSjiDJwVAhArVmdi3WcRG+U86jQekHDtfS9X9iR6c0UQ6rnPS0AjA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1952,16 +2410,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:aabafdf6-3f94-4576-8be6-7be9ace9e755" + "southcentralus:784fcb10-d3ad-441d-8a62-3940e782b275" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1182" ], "x-ms-correlation-request-id": [ - "4e49f7ec-9da8-4b08-823a-91c9a0d4c8cd" + "3f1a9dba-6763-42e8-a16a-8573af8a6f23" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101045Z:4e49f7ec-9da8-4b08-823a-91c9a0d4c8cd" + "WESTEUROPE:20150713T121227Z:3f1a9dba-6763-42e8-a16a-8573af8a6f23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1970,7 +2428,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:45 GMT" + "Mon, 13 Jul 2015 12:12:27 GMT" ] }, "StatusCode": 200 @@ -1988,7 +2446,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"secondaryKey\": \"O6LswffN1UzEoyS6KkyN8KYebEZxlG84kJrKx9SapOu5bemjt80dIvkkX3fofx/AK1HF6+dkYjcuDsj+4KNBhw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"secondaryKey\": \"GH9RkVIn/oyv+1cJu8iJli+cmUTPj+mhSnSjiDJwVAhArVmdi3WcRG+U86jQekHDtfS9X9iR6c0UQ6rnPS0AjA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2006,16 +2464,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:11421383-2c23-4120-a3cd-e05f5cc28829" + "southcentralus:7938c13e-5669-45c7-b6aa-786d0f4ac38e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1180" ], "x-ms-correlation-request-id": [ - "0d2e5a72-9ae3-4f1f-95bb-a96cc00cf261" + "0b20ecfd-f73b-4bab-b631-5f8f95f62d14" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101052Z:0d2e5a72-9ae3-4f1f-95bb-a96cc00cf261" + "WESTEUROPE:20150713T121236Z:0b20ecfd-f73b-4bab-b631-5f8f95f62d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2024,7 +2482,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:51 GMT" + "Mon, 13 Jul 2015 12:12:36 GMT" ] }, "StatusCode": 200 @@ -2042,7 +2500,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"secondaryKey\": \"O6LswffN1UzEoyS6KkyN8KYebEZxlG84kJrKx9SapOu5bemjt80dIvkkX3fofx/AK1HF6+dkYjcuDsj+4KNBhw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"secondaryKey\": \"GH9RkVIn/oyv+1cJu8iJli+cmUTPj+mhSnSjiDJwVAhArVmdi3WcRG+U86jQekHDtfS9X9iR6c0UQ6rnPS0AjA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2060,16 +2518,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:a7bbfcfd-7b9b-4112-b5ce-c0af24cd22d5" + "southcentralus:b3549fa7-3869-43ea-a173-ca510519866e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1178" ], "x-ms-correlation-request-id": [ - "cafc5756-d4ce-4510-9a67-47d7053b7b44" + "9a78a165-076d-4e8b-a60c-41f64fbe4ddd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101059Z:cafc5756-d4ce-4510-9a67-47d7053b7b44" + "WESTEUROPE:20150713T121252Z:9a78a165-076d-4e8b-a60c-41f64fbe4ddd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2078,7 +2536,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:59 GMT" + "Mon, 13 Jul 2015 12:12:52 GMT" ] }, "StatusCode": 200 @@ -2087,7 +2545,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzUwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNTAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNTAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"storageAccountKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"storageAccountKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2099,10 +2557,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b8e58cd0-39fc-4e9b-bbcf-c4d26f969f7e" + "9ebee76a-6f2e-4a18-9534-7972c16867dd" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -2111,7 +2569,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "05dcacae-379f-4da7-821b-2b1e22e5add7" + "3b53bd4a-977a-402d-b098-99343c3b0456" ], "X-Content-Type-Options": [ "nosniff" @@ -2123,13 +2581,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1181" ], "x-ms-correlation-request-id": [ - "145c0b58-04cb-49b1-ad93-e6418bd2e034" + "defd145c-03f0-4d05-9ea1-a7addeddf72d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101047Z:145c0b58-04cb-49b1-ad93-e6418bd2e034" + "WESTEUROPE:20150713T121231Z:defd145c-03f0-4d05-9ea1-a7addeddf72d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2138,7 +2596,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:47 GMT" + "Mon, 13 Jul 2015 12:12:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2150,7 +2608,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzUwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNTAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNTAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"storageAccountKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"storageAccountKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2162,10 +2620,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "26f95edd-6ecf-477b-8588-26a8cfd78efc" + "2ed29c27-a164-49ca-a19d-5effe4c95534" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "942" @@ -2174,7 +2632,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "26da4c63-c4e8-44a2-b9d5-9d7b2081be04" + "892cd67c-6c6c-40d4-a57d-cc067f03f857" ], "X-Content-Type-Options": [ "nosniff" @@ -2186,13 +2644,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1179" ], "x-ms-correlation-request-id": [ - "aefa07ac-7f29-4892-b546-2787a35401b3" + "24c12014-3fac-4b7c-b20c-295da51fb997" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101054Z:aefa07ac-7f29-4892-b546-2787a35401b3" + "WESTEUROPE:20150713T121248Z:24c12014-3fac-4b7c-b20c-295da51fb997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2201,7 +2659,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:10:53 GMT" + "Mon, 13 Jul 2015 12:12:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2213,7 +2671,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzUwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNTAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiNTAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"storageAccountKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"storageAccountKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2225,10 +2683,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8380b75e-f2c5-4ee7-9d64-c41fe6817832" + "9c32add4-56e2-4c0b-90df-fc0f5dd4124b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"vhTq0Zf8EPqXSCrnUHJP03fbIwufdCqG7SAayii8ieHlSG4/viKIx8BMc6arlmgwHoCfnwndR2l8vDFgSe7Rrg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg501/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server501/databases/sql-audit-cmdlet-db501/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets501\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver50Sqlauditcmdletdb501\",\r\n \"storageAccountKey\": \"N3KW/CstIoygI6NWCHWq0rwwgh+2hD+WMZnIwLtnGWO1pPxhR9HaMD7McZlSYojRKbgX4R/dBAxKf5CPAcFNEA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets501.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "876" @@ -2237,7 +2695,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a7b22a83-e66b-4d3a-8d57-a65c05b4fd03" + "04d4a8ca-f34a-4c8d-8594-f5ba860ea552" ], "X-Content-Type-Options": [ "nosniff" @@ -2249,13 +2707,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1177" ], "x-ms-correlation-request-id": [ - "9f1748f5-9819-45fd-b6b5-385b44917abd" + "9e7558c3-669e-4e95-91c6-92ee957f48f4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T101100Z:9f1748f5-9819-45fd-b6b5-385b44917abd" + "WESTEUROPE:20150713T121255Z:9e7558c3-669e-4e95-91c6-92ee957f48f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2264,7 +2722,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:11:00 GMT" + "Mon, 13 Jul 2015 12:12:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2294,13 +2752,13 @@ "ussouth3" ], "x-ms-request-id": [ - "7a922d8d15ddbc49bfe9b91676ea23c6" + "48d430a67849c4efbc30d09b34f3f36c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:11:10 GMT" + "Mon, 13 Jul 2015 12:12:59 GMT" ], "Server": [ "1.0.6198.243", @@ -2311,8 +2769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7a922d8d15ddbc49bfe9b91676ea23c6", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdhOTIyZDhkMTVkZGJjNDliZmU5YjkxNjc2ZWEyM2M2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/48d430a67849c4efbc30d09b34f3f36c", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQ4ZDQzMGE2Nzg0OWM0ZWZiYzMwZDA5YjM0ZjNmMzZj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2323,7 +2781,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 7a922d8d-15dd-bc49-bfe9-b91676ea23c6\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 48d430a6-7849-c4ef-bc30-d09b34f3f36c\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2335,13 +2793,13 @@ "ussouth3" ], "x-ms-request-id": [ - "921bf2beeeb7baa1b535f15df1ae9718" + "d55987d016bbc09dbafbc608afd27dd9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:11:11 GMT" + "Mon, 13 Jul 2015 12:13:01 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithRetention.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithRetention.json index 71059c28ca1e..22bc209775a1 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithRetention.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithRetention.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "24cc9a6ee559b938a0ea7a2d4084cdda" + "f4626bb87f8fc7598b0369cd67a19b07" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:41:05 GMT" + "Mon, 13 Jul 2015 10:45:10 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets203" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/24cc9a6ee559b938a0ea7a2d4084cdda", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzI0Y2M5YTZlZTU1OWI5MzhhMGVhN2EyZDQwODRjZGRh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f4626bb87f8fc7598b0369cd67a19b07", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y0NjI2YmI4N2Y4ZmM3NTk4YjAzNjljZDY3YTE5YjA3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 24cc9a6e-e559-b938-a0ea-7a2d4084cdda\r\n InProgress\r\n", + "ResponseBody": "\r\n f4626bb8-7f8f-c759-8b03-69cd67a19b07\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "85167e123b9cbf419b0441930c59190e" + "ce7a180d874dc932b9258cf5da3d89ca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:41:05 GMT" + "Mon, 13 Jul 2015 10:45:10 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/24cc9a6ee559b938a0ea7a2d4084cdda", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzI0Y2M5YTZlZTU1OWI5MzhhMGVhN2EyZDQwODRjZGRh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f4626bb87f8fc7598b0369cd67a19b07", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y0NjI2YmI4N2Y4ZmM3NTk4YjAzNjljZDY3YTE5YjA3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 24cc9a6e-e559-b938-a0ea-7a2d4084cdda\r\n InProgress\r\n", + "ResponseBody": "\r\n f4626bb8-7f8f-c759-8b03-69cd67a19b07\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "d0f07985eb81bfb396b570febfd68dc6" + "dfacc1450d10c858bf0ff9291e57b81a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:41:36 GMT" + "Mon, 13 Jul 2015 10:45:42 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/24cc9a6ee559b938a0ea7a2d4084cdda", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzI0Y2M5YTZlZTU1OWI5MzhhMGVhN2EyZDQwODRjZGRh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f4626bb87f8fc7598b0369cd67a19b07", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y0NjI2YmI4N2Y4ZmM3NTk4YjAzNjljZDY3YTE5YjA3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 24cc9a6e-e559-b938-a0ea-7a2d4084cdda\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n f4626bb8-7f8f-c759-8b03-69cd67a19b07\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "ba33c931f162b8cc860fa94972e06e4d" + "5eebf9ee2c1ac4b8b9285ed4239b8398" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:06 GMT" + "Mon, 13 Jul 2015 10:46:12 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14840" ], "x-ms-request-id": [ - "6bf7b1c9-c885-4484-9c4e-fe945050a46b" + "bc542fee-7c6c-43b0-a30f-1d1a47c0a25d" ], "x-ms-correlation-request-id": [ - "6bf7b1c9-c885-4484-9c4e-fe945050a46b" + "bc542fee-7c6c-43b0-a30f-1d1a47c0a25d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104206Z:6bf7b1c9-c885-4484-9c4e-fe945050a46b" + "WESTEUROPE:20150713T104613Z:bc542fee-7c6c-43b0-a30f-1d1a47c0a25d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:06 GMT" + "Mon, 13 Jul 2015 10:46:13 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1193" ], "x-ms-request-id": [ - "5e126739-9370-4977-b5c8-8c35ee50516a" + "95ec8f4f-a1b7-4eb2-b613-b5462006a5be" ], "x-ms-correlation-request-id": [ - "5e126739-9370-4977-b5c8-8c35ee50516a" + "95ec8f4f-a1b7-4eb2-b613-b5462006a5be" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104208Z:5e126739-9370-4977-b5c8-8c35ee50516a" + "WESTEUROPE:20150713T104615Z:95ec8f4f-a1b7-4eb2-b613-b5462006a5be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:07 GMT" + "Mon, 13 Jul 2015 10:46:14 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:42:09.1897268Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"932e4bc1-4de7-4b50-965c-87db2e1fdd82\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T10:46:15.9363031Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"5dc32061-c6fe-4ebd-b222-8f21980da538\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1192" ], "x-ms-request-id": [ - "932e4bc1-4de7-4b50-965c-87db2e1fdd82" + "5dc32061-c6fe-4ebd-b222-8f21980da538" ], "x-ms-correlation-request-id": [ - "932e4bc1-4de7-4b50-965c-87db2e1fdd82" + "5dc32061-c6fe-4ebd-b222-8f21980da538" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104209Z:932e4bc1-4de7-4b50-965c-87db2e1fdd82" + "WESTEUROPE:20150713T104615Z:5dc32061-c6fe-4ebd-b222-8f21980da538" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:08 GMT" + "Mon, 13 Jul 2015 10:46:15 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:42:11.2005155Z\",\r\n \"duration\": \"PT1.2623184S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T10:46:17.8387386Z\",\r\n \"duration\": \"PT1.1330673S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1191" ], "x-ms-request-id": [ - "08a21843-2fab-4fc0-b33b-c9a69324abf1" + "f5233325-698e-4a85-8ded-6481dca09755" ], "x-ms-correlation-request-id": [ - "08a21843-2fab-4fc0-b33b-c9a69324abf1" + "f5233325-698e-4a85-8ded-6481dca09755" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104211Z:08a21843-2fab-4fc0-b33b-c9a69324abf1" + "WESTEUROPE:20150713T104618Z:f5233325-698e-4a85-8ded-6481dca09755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:11 GMT" + "Mon, 13 Jul 2015 10:46:18 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14839" ], "x-ms-request-id": [ - "177e1fd9-30e5-42f7-a2b7-7fadd34c2e9f" + "4c652c9b-9898-4c4d-bc02-ba2d15d9ea47" ], "x-ms-correlation-request-id": [ - "177e1fd9-30e5-42f7-a2b7-7fadd34c2e9f" + "4c652c9b-9898-4c4d-bc02-ba2d15d9ea47" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104212Z:177e1fd9-30e5-42f7-a2b7-7fadd34c2e9f" + "WESTEUROPE:20150713T104618Z:4c652c9b-9898-4c4d-bc02-ba2d15d9ea47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:11 GMT" + "Mon, 13 Jul 2015 10:46:18 GMT" ] }, "StatusCode": 200 @@ -456,64 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" - ], - "x-ms-request-id": [ - "4a0df4fe-b344-461b-88e4-6583e4e05289" - ], - "x-ms-correlation-request-id": [ - "4a0df4fe-b344-461b-88e4-6583e4e05289" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104215Z:4a0df4fe-b344-461b-88e4-6583e4e05289" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:42:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMy9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "14837" ], "x-ms-request-id": [ - "9e778938-ec2b-47ff-8f42-c07969b9f906" + "ac7719a4-08ea-4aa5-b402-f4fe64dc6b7d" ], "x-ms-correlation-request-id": [ - "9e778938-ec2b-47ff-8f42-c07969b9f906" + "ac7719a4-08ea-4aa5-b402-f4fe64dc6b7d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104218Z:9e778938-ec2b-47ff-8f42-c07969b9f906" + "WESTEUROPE:20150713T104621Z:ac7719a4-08ea-4aa5-b402-f4fe64dc6b7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:17 GMT" + "Mon, 13 Jul 2015 10:46:21 GMT" ] }, "StatusCode": 200 @@ -552,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14835" ], "x-ms-request-id": [ - "0fa1a4e5-0261-4a7e-89f4-6a7900a1b8b8" + "90b81529-7c03-4a06-877a-74469fc94044" ], "x-ms-correlation-request-id": [ - "0fa1a4e5-0261-4a7e-89f4-6a7900a1b8b8" + "90b81529-7c03-4a06-877a-74469fc94044" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104221Z:0fa1a4e5-0261-4a7e-89f4-6a7900a1b8b8" + "WESTEUROPE:20150713T104624Z:90b81529-7c03-4a06-877a-74469fc94044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:20 GMT" + "Mon, 13 Jul 2015 10:46:24 GMT" ] }, "StatusCode": 200 @@ -600,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14833" ], "x-ms-request-id": [ - "7e00c385-a026-449a-9588-fc71be26804e" + "48e4f13f-5e74-4f13-a804-4a1c986ae8e4" ], "x-ms-correlation-request-id": [ - "7e00c385-a026-449a-9588-fc71be26804e" + "48e4f13f-5e74-4f13-a804-4a1c986ae8e4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104224Z:7e00c385-a026-449a-9588-fc71be26804e" + "WESTEUROPE:20150713T104627Z:48e4f13f-5e74-4f13-a804-4a1c986ae8e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:23 GMT" + "Mon, 13 Jul 2015 10:46:27 GMT" ] }, "StatusCode": 200 @@ -648,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14831" ], "x-ms-request-id": [ - "5eca19fd-f061-40a2-ad36-9a8bb884d927" + "75ac3c14-8016-4979-9417-25b29c87520f" ], "x-ms-correlation-request-id": [ - "5eca19fd-f061-40a2-ad36-9a8bb884d927" + "75ac3c14-8016-4979-9417-25b29c87520f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104227Z:5eca19fd-f061-40a2-ad36-9a8bb884d927" + "WESTEUROPE:20150713T104630Z:75ac3c14-8016-4979-9417-25b29c87520f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:26 GMT" + "Mon, 13 Jul 2015 10:46:30 GMT" ] }, "StatusCode": 200 @@ -681,7 +633,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:42:30.0384939Z\",\r\n \"duration\": \"PT12.5857194S\",\r\n \"trackingId\": \"e47b8287-d04c-47c6-af08-f432843aa82f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:46:31.8057122Z\",\r\n \"duration\": \"PT12.4319938S\",\r\n \"trackingId\": \"99a98a56-84b4-404f-9abb-72710ffbeff5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -696,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" + "14829" ], "x-ms-request-id": [ - "749797c3-bd0a-4570-9d18-993ceb1ca599" + "021cdc7b-42bd-4e0d-866c-0253a8b72c23" ], "x-ms-correlation-request-id": [ - "749797c3-bd0a-4570-9d18-993ceb1ca599" + "021cdc7b-42bd-4e0d-866c-0253a8b72c23" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104230Z:749797c3-bd0a-4570-9d18-993ceb1ca599" + "WESTEUROPE:20150713T104633Z:021cdc7b-42bd-4e0d-866c-0253a8b72c23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:29 GMT" + "Mon, 13 Jul 2015 10:46:33 GMT" ] }, "StatusCode": 200 @@ -729,7 +681,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:42:30.0384939Z\",\r\n \"duration\": \"PT12.5857194S\",\r\n \"trackingId\": \"e47b8287-d04c-47c6-af08-f432843aa82f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:46:31.8057122Z\",\r\n \"duration\": \"PT12.4319938S\",\r\n \"trackingId\": \"99a98a56-84b4-404f-9abb-72710ffbeff5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -744,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14827" ], "x-ms-request-id": [ - "4f6deac2-9248-47af-b6d5-9f41a1a06f69" + "aca3652c-fcf0-4dfd-93fd-ec82bc34e3dd" ], "x-ms-correlation-request-id": [ - "4f6deac2-9248-47af-b6d5-9f41a1a06f69" + "aca3652c-fcf0-4dfd-93fd-ec82bc34e3dd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104233Z:4f6deac2-9248-47af-b6d5-9f41a1a06f69" + "WESTEUROPE:20150713T104636Z:aca3652c-fcf0-4dfd-93fd-ec82bc34e3dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:32 GMT" + "Mon, 13 Jul 2015 10:46:36 GMT" ] }, "StatusCode": 200 @@ -777,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:42:30.0384939Z\",\r\n \"duration\": \"PT12.5857194S\",\r\n \"trackingId\": \"e47b8287-d04c-47c6-af08-f432843aa82f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:46:31.8057122Z\",\r\n \"duration\": \"PT12.4319938S\",\r\n \"trackingId\": \"99a98a56-84b4-404f-9abb-72710ffbeff5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -792,64 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" - ], - "x-ms-request-id": [ - "9cf982f1-7ccc-4165-a816-d0f3b861bd56" - ], - "x-ms-correlation-request-id": [ - "9cf982f1-7ccc-4165-a816-d0f3b861bd56" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104236Z:9cf982f1-7ccc-4165-a816-d0f3b861bd56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:42:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMy9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/D0C7500DC8AED353\",\r\n \"operationId\": \"D0C7500DC8AED353\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:42:39.030128Z\",\r\n \"duration\": \"PT8.8926105S\",\r\n \"trackingId\": \"786406a6-ff66-4f89-b6a5-6831f4777367\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:42:30.0384939Z\",\r\n \"duration\": \"PT12.5857194S\",\r\n \"trackingId\": \"e47b8287-d04c-47c6-af08-f432843aa82f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1389" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "14825" ], "x-ms-request-id": [ - "3d034e7e-c8be-4cec-9a45-d3179c028c69" + "a86d0729-5bd4-4429-8f51-036447dc364b" ], "x-ms-correlation-request-id": [ - "3d034e7e-c8be-4cec-9a45-d3179c028c69" + "a86d0729-5bd4-4429-8f51-036447dc364b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104239Z:3d034e7e-c8be-4cec-9a45-d3179c028c69" + "WESTEUROPE:20150713T104639Z:a86d0729-5bd4-4429-8f51-036447dc364b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:38 GMT" + "Mon, 13 Jul 2015 10:46:39 GMT" ] }, "StatusCode": 200 @@ -873,106 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/D0C7500DC8AED353\",\r\n \"operationId\": \"D0C7500DC8AED353\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:42:39.030128Z\",\r\n \"duration\": \"PT8.8926105S\",\r\n \"trackingId\": \"786406a6-ff66-4f89-b6a5-6831f4777367\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:42:30.0384939Z\",\r\n \"duration\": \"PT12.5857194S\",\r\n \"trackingId\": \"e47b8287-d04c-47c6-af08-f432843aa82f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1389" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" - ], - "x-ms-request-id": [ - "0c9d11ae-f7c1-48aa-8ecb-d02d2fba34a6" - ], - "x-ms-correlation-request-id": [ - "0c9d11ae-f7c1-48aa-8ecb-d02d2fba34a6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104242Z:0c9d11ae-f7c1-48aa-8ecb-d02d2fba34a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:42:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMy9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:42:11.2005155Z\",\r\n \"duration\": \"PT1.2623184S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1651" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" - ], - "x-ms-request-id": [ - "ceeb2359-ab21-4314-a294-3d2e3fc20800" - ], - "x-ms-correlation-request-id": [ - "ceeb2359-ab21-4314-a294-3d2e3fc20800" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104212Z:ceeb2359-ab21-4314-a294-3d2e3fc20800" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:42:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMy9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:42:11.2005155Z\",\r\n \"duration\": \"PT1.2623184S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/D0C7500DC8AED353\",\r\n \"operationId\": \"D0C7500DC8AED353\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:46:40.9193701Z\",\r\n \"duration\": \"PT8.5753448S\",\r\n \"trackingId\": \"0eded1b7-d719-4e64-add2-f6d9d839f231\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup/operations/9C684499EF1FB50F\",\r\n \"operationId\": \"9C684499EF1FB50F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:46:31.8057122Z\",\r\n \"duration\": \"PT12.4319938S\",\r\n \"trackingId\": \"99a98a56-84b4-404f-9abb-72710ffbeff5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14823" ], "x-ms-request-id": [ - "dd91fd09-71f0-40c2-8373-d31a77153c47" + "638504f8-b06c-4263-9ade-9264bade415f" ], "x-ms-correlation-request-id": [ - "dd91fd09-71f0-40c2-8373-d31a77153c47" + "638504f8-b06c-4263-9ade-9264bade415f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104215Z:dd91fd09-71f0-40c2-8373-d31a77153c47" + "WESTEUROPE:20150713T104643Z:638504f8-b06c-4263-9ade-9264bade415f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:15 GMT" + "Mon, 13 Jul 2015 10:46:42 GMT" ] }, "StatusCode": 200 @@ -1017,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:42:16.9887892Z\",\r\n \"duration\": \"PT7.0505921S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:46:18.7691843Z\",\r\n \"duration\": \"PT2.063513S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14838" ], "x-ms-request-id": [ - "4d2cafe2-ba8d-4d53-9394-b4729586e1dd" + "4733dee0-1c67-4a4c-b915-9490f15dd47f" ], "x-ms-correlation-request-id": [ - "4d2cafe2-ba8d-4d53-9394-b4729586e1dd" + "4733dee0-1c67-4a4c-b915-9490f15dd47f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104218Z:4d2cafe2-ba8d-4d53-9394-b4729586e1dd" + "WESTEUROPE:20150713T104619Z:4733dee0-1c67-4a4c-b915-9490f15dd47f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:18 GMT" + "Mon, 13 Jul 2015 10:46:19 GMT" ] }, "StatusCode": 200 @@ -1065,10 +873,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:42:16.9887892Z\",\r\n \"duration\": \"PT7.0505921S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:46:18.7691843Z\",\r\n \"duration\": \"PT2.063513S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1080,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14836" ], "x-ms-request-id": [ - "37628aef-2cba-4d99-b2a9-4601c2b05de5" + "dfbb33e6-58e6-4b5d-88a6-827ff2421444" ], "x-ms-correlation-request-id": [ - "37628aef-2cba-4d99-b2a9-4601c2b05de5" + "dfbb33e6-58e6-4b5d-88a6-827ff2421444" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104221Z:37628aef-2cba-4d99-b2a9-4601c2b05de5" + "WESTEUROPE:20150713T104622Z:dfbb33e6-58e6-4b5d-88a6-827ff2421444" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:21 GMT" + "Mon, 13 Jul 2015 10:46:22 GMT" ] }, "StatusCode": 200 @@ -1113,10 +921,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:42:16.9887892Z\",\r\n \"duration\": \"PT7.0505921S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:46:18.7691843Z\",\r\n \"duration\": \"PT2.063513S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1128,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14834" ], "x-ms-request-id": [ - "9ff5ec87-d3e9-4c27-9f1d-ab782d627bdf" + "5c092b2c-3c4e-482c-9372-fbd27d96063e" ], "x-ms-correlation-request-id": [ - "9ff5ec87-d3e9-4c27-9f1d-ab782d627bdf" + "5c092b2c-3c4e-482c-9372-fbd27d96063e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104224Z:9ff5ec87-d3e9-4c27-9f1d-ab782d627bdf" + "WESTEUROPE:20150713T104625Z:5c092b2c-3c4e-482c-9372-fbd27d96063e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:24 GMT" + "Mon, 13 Jul 2015 10:46:25 GMT" ] }, "StatusCode": 200 @@ -1161,10 +969,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:42:16.9887892Z\",\r\n \"duration\": \"PT7.0505921S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:46:18.7691843Z\",\r\n \"duration\": \"PT2.063513S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1176,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14832" ], "x-ms-request-id": [ - "69afbffd-280f-484c-830f-1e7c209cdb81" + "b74bc8aa-7e0f-4131-80ec-01da5c012ecc" ], "x-ms-correlation-request-id": [ - "69afbffd-280f-484c-830f-1e7c209cdb81" + "b74bc8aa-7e0f-4131-80ec-01da5c012ecc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104227Z:69afbffd-280f-484c-830f-1e7c209cdb81" + "WESTEUROPE:20150713T104628Z:b74bc8aa-7e0f-4131-80ec-01da5c012ecc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:27 GMT" + "Mon, 13 Jul 2015 10:46:27 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1017,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:42:16.9887892Z\",\r\n \"duration\": \"PT7.0505921S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:46:18.7691843Z\",\r\n \"duration\": \"PT2.063513S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14830" ], "x-ms-request-id": [ - "ac8aefcf-3198-4707-9e33-2fe15e8c89cb" + "dd8f75fe-731e-4481-b3ea-9e1177dc73e4" ], "x-ms-correlation-request-id": [ - "ac8aefcf-3198-4707-9e33-2fe15e8c89cb" + "dd8f75fe-731e-4481-b3ea-9e1177dc73e4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104230Z:ac8aefcf-3198-4707-9e33-2fe15e8c89cb" + "WESTEUROPE:20150713T104631Z:dd8f75fe-731e-4481-b3ea-9e1177dc73e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:30 GMT" + "Mon, 13 Jul 2015 10:46:30 GMT" ] }, "StatusCode": 200 @@ -1257,10 +1065,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:42:16.9887892Z\",\r\n \"duration\": \"PT7.0505921S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:46:18.7691843Z\",\r\n \"duration\": \"PT2.063513S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1272,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14828" ], "x-ms-request-id": [ - "e1f73162-c46b-47b9-81e5-ddf43683931f" + "c661e7c8-f497-4f5e-8528-2a7fc761130c" ], "x-ms-correlation-request-id": [ - "e1f73162-c46b-47b9-81e5-ddf43683931f" + "c661e7c8-f497-4f5e-8528-2a7fc761130c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104233Z:e1f73162-c46b-47b9-81e5-ddf43683931f" + "WESTEUROPE:20150713T104634Z:c661e7c8-f497-4f5e-8528-2a7fc761130c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:33 GMT" + "Mon, 13 Jul 2015 10:46:33 GMT" ] }, "StatusCode": 200 @@ -1305,10 +1113,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:42:16.9887892Z\",\r\n \"duration\": \"PT7.0505921S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:46:18.7691843Z\",\r\n \"duration\": \"PT2.063513S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1320,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14826" ], "x-ms-request-id": [ - "1f39fe49-abab-456e-888e-ba2b97d555a1" + "d1a378c5-09c1-4657-95f6-17884429e744" ], "x-ms-correlation-request-id": [ - "1f39fe49-abab-456e-888e-ba2b97d555a1" + "d1a378c5-09c1-4657-95f6-17884429e744" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104236Z:1f39fe49-abab-456e-888e-ba2b97d555a1" + "WESTEUROPE:20150713T104637Z:d1a378c5-09c1-4657-95f6-17884429e744" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:35 GMT" + "Mon, 13 Jul 2015 10:46:36 GMT" ] }, "StatusCode": 200 @@ -1353,10 +1161,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:42:16.9887892Z\",\r\n \"duration\": \"PT7.0505921S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:46:18.7691843Z\",\r\n \"duration\": \"PT2.063513S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1368,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "14824" ], "x-ms-request-id": [ - "765a877b-b8a1-4822-b8e3-5d49dedb053e" + "a15d8338-4b6c-4760-9eb3-f5e8d9eff4a9" ], "x-ms-correlation-request-id": [ - "765a877b-b8a1-4822-b8e3-5d49dedb053e" + "a15d8338-4b6c-4760-9eb3-f5e8d9eff4a9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104239Z:765a877b-b8a1-4822-b8e3-5d49dedb053e" + "WESTEUROPE:20150713T104640Z:a15d8338-4b6c-4760-9eb3-f5e8d9eff4a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:39 GMT" + "Mon, 13 Jul 2015 10:46:39 GMT" ] }, "StatusCode": 200 @@ -1401,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:42:41.3668479Z\",\r\n \"duration\": \"PT31.4286508S\",\r\n \"correlationId\": \"08a21843-2fab-4fc0-b33b-c9a69324abf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db203\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server203\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:46:42.1139943Z\",\r\n \"duration\": \"PT25.408323S\",\r\n \"correlationId\": \"f5233325-698e-4a85-8ded-6481dca09755\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server203/sql-audit-cmdlet-db203\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server203\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1821" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1416,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14822" ], "x-ms-request-id": [ - "643eff52-9069-4c26-b057-9c1a7d9e1a45" + "94c9a238-026a-4e61-bcf2-37e6a7af8c43" ], "x-ms-correlation-request-id": [ - "643eff52-9069-4c26-b057-9c1a7d9e1a45" + "94c9a238-026a-4e61-bcf2-37e6a7af8c43" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104243Z:643eff52-9069-4c26-b057-9c1a7d9e1a45" + "WESTEUROPE:20150713T104643Z:94c9a238-026a-4e61-bcf2-37e6a7af8c43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:43 GMT" + "Mon, 13 Jul 2015 10:46:42 GMT" ] }, "StatusCode": 200 @@ -1464,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" + "14821" ], "x-ms-request-id": [ - "3aeb5ed8-2717-43a8-befc-11ad0cb5e800" + "8776ea63-1019-4044-b25e-640021ff1a9d" ], "x-ms-correlation-request-id": [ - "3aeb5ed8-2717-43a8-befc-11ad0cb5e800" + "8776ea63-1019-4044-b25e-640021ff1a9d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104245Z:3aeb5ed8-2717-43a8-befc-11ad0cb5e800" + "WESTEUROPE:20150713T104645Z:8776ea63-1019-4044-b25e-640021ff1a9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:45 GMT" + "Mon, 13 Jul 2015 10:46:45 GMT" ] }, "StatusCode": 200 @@ -1515,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:97d15905-8657-473c-b930-6934fd62f0bf" + "northeurope:2973c0df-c07d-449c-a142-44be83533520" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" + "14998" ], "x-ms-correlation-request-id": [ - "62e1afe5-fef0-425e-b5b1-cd92aac93453" + "d9fbc702-82af-4859-b48c-6d08e49938b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104246Z:62e1afe5-fef0-425e-b5b1-cd92aac93453" + "NORTHEUROPE:20150713T104646Z:d9fbc702-82af-4859-b48c-6d08e49938b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1533,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:45 GMT" + "Mon, 13 Jul 2015 10:46:46 GMT" ] }, "StatusCode": 200 @@ -1548,7 +1356,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fe84f748-0848-4741-a3af-80e37c87af5b" + "a3a59546-13c6-43f0-8af9-f4be1a6c8338" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver20Sqlauditcmdletdb203\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1560,7 +1368,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "55c5497a-2165-4206-8ff9-3566c431b08b" + "594d3010-0133-4e37-a520-97adf8fc3c88" ], "X-Content-Type-Options": [ "nosniff" @@ -1569,13 +1377,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14998" ], "x-ms-correlation-request-id": [ - "57501319-95be-4329-bcf7-771f709c399a" + "5811c5b5-2173-49f0-bd10-3f82015e5ce9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104248Z:57501319-95be-4329-bcf7-771f709c399a" + "NORTHEUROPE:20150713T104649Z:5811c5b5-2173-49f0-bd10-3f82015e5ce9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,7 +1392,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:47 GMT" + "Mon, 13 Jul 2015 10:46:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1602,7 +1410,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9147e0ca-05ae-4015-a276-850437daae4f" + "379957ed-808f-4981-b483-d9ee37845842" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets203\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier203\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets203.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", @@ -1614,7 +1422,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "542ffbfd-28ba-4ac1-8629-44be06e26733" + "49de08a7-ae79-4924-b395-274a45f7da12" ], "X-Content-Type-Options": [ "nosniff" @@ -1623,13 +1431,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14996" ], "x-ms-correlation-request-id": [ - "57da81db-deac-4a57-b632-10554de72233" + "7645b1fc-809f-45d2-b6f1-165374ad4c0c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104255Z:57da81db-deac-4a57-b632-10554de72233" + "NORTHEUROPE:20150713T104656Z:7645b1fc-809f-45d2-b6f1-165374ad4c0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,7 +1446,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:54 GMT" + "Mon, 13 Jul 2015 10:46:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1656,10 +1464,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fe84f748-0848-4741-a3af-80e37c87af5b" + "a3a59546-13c6-43f0-8af9-f4be1a6c8338" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"name\": \"sql-audit-cmdlet-db203\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"cf4362bd-8ee2-4b5a-89e9-eaf2571725fd\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:42:37.047Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T11:12:37.047Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203\",\r\n \"name\": \"sql-audit-cmdlet-db203\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"c37bda49-6993-412b-a1c1-746b35769117\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T10:46:37.937Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T11:16:37.937Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1668,7 +1476,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8fc9069f-44bc-4545-9df8-6e39589f85e9" + "7e05bd29-4455-453d-9719-e05f5ef531c4" ], "X-Content-Type-Options": [ "nosniff" @@ -1677,13 +1485,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14997" ], "x-ms-correlation-request-id": [ - "3daf7257-5167-440e-b074-1f36b5b44caf" + "d094f24f-9093-4a98-bd72-12b3cd8d2e67" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104249Z:3daf7257-5167-440e-b074-1f36b5b44caf" + "NORTHEUROPE:20150713T104651Z:d094f24f-9093-4a98-bd72-12b3cd8d2e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1692,7 +1500,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:48 GMT" + "Mon, 13 Jul 2015 10:46:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1710,10 +1518,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets203\",\r\n \"name\": \"auditcmdlets203\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets203\",\r\n \"name\": \"auditcmdlets203\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1725,16 +1533,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14702" + "14820" ], "x-ms-request-id": [ - "590b3418-1b7a-441a-8fd5-7a23d1c54fdc" + "c73b0c6f-2cf6-4ce3-a61d-4f54a012fe57" ], "x-ms-correlation-request-id": [ - "590b3418-1b7a-441a-8fd5-7a23d1c54fdc" + "c73b0c6f-2cf6-4ce3-a61d-4f54a012fe57" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104249Z:590b3418-1b7a-441a-8fd5-7a23d1c54fdc" + "WESTEUROPE:20150713T104651Z:c73b0c6f-2cf6-4ce3-a61d-4f54a012fe57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,7 +1551,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:49 GMT" + "Mon, 13 Jul 2015 10:46:50 GMT" ] }, "StatusCode": 200 @@ -1761,7 +1569,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets203\r\n auditcmdlets203\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets203.blob.core.windows.net/\r\n https://auditcmdlets203.queue.core.windows.net/\r\n https://auditcmdlets203.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:41:05Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets203\r\n auditcmdlets203\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets203.blob.core.windows.net/\r\n https://auditcmdlets203.queue.core.windows.net/\r\n https://auditcmdlets203.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T10:45:10Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1773,13 +1581,13 @@ "ussouth3" ], "x-ms-request-id": [ - "53da1338cdc9bcb2beea310126fec586" + "dfe249280ad8c94394588cb2baedd9c4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:50 GMT" + "Mon, 13 Jul 2015 10:46:51 GMT" ], "Server": [ "1.0.6198.243", @@ -1802,7 +1610,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"fYPajn8ae5DKoG9DPOK+UynYqGw6ko3B12BL0FP4cBflEaLOxCzmHQ+w6gSJ5OkVfkkbMmoDuIG2tqNxLC1grg==\",\r\n \"secondaryKey\": \"HazPqx2xf2pGAmKZ2chxE4zv3irdZuxcq6YNKIyP40T+0i5ZlhaF6XAdPQMWw1GrdTQp2jN2L+aBQz+Oa4apKQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"hYWZTImGzjA1DA1fZtSkKy4oEQoc0NFcQUFQHTEyxGjOT4I0GIIvkgTX6NpHLnw0tlsYaRKYbgvAZHKnh1qwyA==\",\r\n \"secondaryKey\": \"2KqXYUPyL5v9luCEmM9+XjAUDFSBWZJMUYjZkHUnhj24RnfGsiEy/UoC6GtfB8nL0Rc+X01H5WJ6z5abDocYKg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1820,16 +1628,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:2fa51aeb-ad8d-42ce-87de-3f354ba89d01" + "southcentralus:a371ef79-c454-406b-acab-aebb30daa930" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "71e52966-1bb6-41d5-9f35-4d918c35026b" + "3b04735b-e75c-42dc-96f7-b1192dfee777" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104251Z:71e52966-1bb6-41d5-9f35-4d918c35026b" + "NORTHEUROPE:20150713T104653Z:3b04735b-e75c-42dc-96f7-b1192dfee777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1838,7 +1646,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:50 GMT" + "Mon, 13 Jul 2015 10:46:52 GMT" ] }, "StatusCode": 200 @@ -1847,7 +1655,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjAzL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMjAzL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets203\",\r\n \"storageAccountKey\": \"fYPajn8ae5DKoG9DPOK+UynYqGw6ko3B12BL0FP4cBflEaLOxCzmHQ+w6gSJ5OkVfkkbMmoDuIG2tqNxLC1grg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets203.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier203\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets203\",\r\n \"storageAccountKey\": \"hYWZTImGzjA1DA1fZtSkKy4oEQoc0NFcQUFQHTEyxGjOT4I0GIIvkgTX6NpHLnw0tlsYaRKYbgvAZHKnh1qwyA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets203.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier203\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1859,10 +1667,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fe84f748-0848-4741-a3af-80e37c87af5b" + "a3a59546-13c6-43f0-8af9-f4be1a6c8338" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets203\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier203\",\r\n \"storageAccountKey\": \"fYPajn8ae5DKoG9DPOK+UynYqGw6ko3B12BL0FP4cBflEaLOxCzmHQ+w6gSJ5OkVfkkbMmoDuIG2tqNxLC1grg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets203.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg203/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server203/databases/sql-audit-cmdlet-db203/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets203\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier203\",\r\n \"storageAccountKey\": \"hYWZTImGzjA1DA1fZtSkKy4oEQoc0NFcQUFQHTEyxGjOT4I0GIIvkgTX6NpHLnw0tlsYaRKYbgvAZHKnh1qwyA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets203.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1082" @@ -1871,7 +1679,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fa05eae5-253d-4baf-b80b-eb578a4679a6" + "7bf42868-8996-4f6a-83f4-2df2a5d8d50b" ], "X-Content-Type-Options": [ "nosniff" @@ -1883,13 +1691,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "c1931dec-8805-4190-a415-afe4163c2a71" + "bd0a0516-8ced-42c4-b076-75907dfe80e3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104253Z:c1931dec-8805-4190-a415-afe4163c2a71" + "NORTHEUROPE:20150713T104654Z:bd0a0516-8ced-42c4-b076-75907dfe80e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1898,7 +1706,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:52 GMT" + "Mon, 13 Jul 2015 10:46:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1928,13 +1736,13 @@ "ussouth3" ], "x-ms-request-id": [ - "956854eee765bb6bb0cf0cd2e2c25198" + "48774650306fc883a400a75516a69394" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:42:59 GMT" + "Mon, 13 Jul 2015 10:46:58 GMT" ], "Server": [ "1.0.6198.243", @@ -1945,8 +1753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/956854eee765bb6bb0cf0cd2e2c25198", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzk1Njg1NGVlZTc2NWJiNmJiMGNmMGNkMmUyYzI1MTk4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/48774650306fc883a400a75516a69394", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQ4Nzc0NjUwMzA2ZmM4ODNhNDAwYTc1NTE2YTY5Mzk0", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1957,7 +1765,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 956854ee-e765-bb6b-b0cf-0cd2e2c25198\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 48774650-306f-c883-a400-a75516a69394\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1969,13 +1777,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b38b8fd0b040bcf6971b0a04c51a5806" + "bc0f6b8b5fe8c2d2b0f9c1afb79c5dba" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:43:01 GMT" + "Mon, 13 Jul 2015 10:46:59 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithStorage.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithStorage.json index a62976b479ef..eec581416593 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithStorage.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithStorage.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "eb806299ccb6b2ebb2c4742297157db1" + "a0f8a4da9aadc494b3beac029a5c6761" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:41:59 GMT" + "Mon, 13 Jul 2015 09:16:56 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets101" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/eb806299ccb6b2ebb2c4742297157db1", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2ViODA2Mjk5Y2NiNmIyZWJiMmM0NzQyMjk3MTU3ZGIx", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/a0f8a4da9aadc494b3beac029a5c6761", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2EwZjhhNGRhOWFhZGM0OTRiM2JlYWMwMjlhNWM2NzYx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n eb806299-ccb6-b2eb-b2c4-742297157db1\r\n InProgress\r\n", + "ResponseBody": "\r\n a0f8a4da-9aad-c494-b3be-ac029a5c6761\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "70152fe1a03eb11886c8e0a776f6fc37" + "a775d0c31491c40a989748db4981ec45" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:41:59 GMT" + "Mon, 13 Jul 2015 09:16:57 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/eb806299ccb6b2ebb2c4742297157db1", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2ViODA2Mjk5Y2NiNmIyZWJiMmM0NzQyMjk3MTU3ZGIx", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/a0f8a4da9aadc494b3beac029a5c6761", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2EwZjhhNGRhOWFhZGM0OTRiM2JlYWMwMjlhNWM2NzYx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n eb806299-ccb6-b2eb-b2c4-742297157db1\r\n InProgress\r\n", + "ResponseBody": "\r\n a0f8a4da-9aad-c494-b3be-ac029a5c6761\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "989663328cdfb879a7f65e0759b640bc" + "c07de5687969c2a78e925a69d4fc0a46" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:42:30 GMT" + "Mon, 13 Jul 2015 09:17:28 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/eb806299ccb6b2ebb2c4742297157db1", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2ViODA2Mjk5Y2NiNmIyZWJiMmM0NzQyMjk3MTU3ZGIx", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/a0f8a4da9aadc494b3beac029a5c6761", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2EwZjhhNGRhOWFhZGM0OTRiM2JlYWMwMjlhNWM2NzYx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n eb806299-ccb6-b2eb-b2c4-742297157db1\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n a0f8a4da-9aad-c494-b3be-ac029a5c6761\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c1196a11a57db2879317c1a68e0e3b25" + "abc701b50d5dcbf693ca90c67dec0d8c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:00 GMT" + "Mon, 13 Jul 2015 09:17:58 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14862" ], "x-ms-request-id": [ - "c4aced68-f2ab-4282-8ce4-adbb36e85f92" + "1e07b341-dc23-4b9d-9416-2caaf59f94d8" ], "x-ms-correlation-request-id": [ - "c4aced68-f2ab-4282-8ce4-adbb36e85f92" + "1e07b341-dc23-4b9d-9416-2caaf59f94d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114300Z:c4aced68-f2ab-4282-8ce4-adbb36e85f92" + "WESTEUROPE:20150713T091800Z:1e07b341-dc23-4b9d-9416-2caaf59f94d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:00 GMT" + "Mon, 13 Jul 2015 09:18:00 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "dbd2ffd2-16d8-4361-bd9e-35fd0eaac9c5" + "f8d471f2-cd50-4be2-9671-93318b893b55" ], "x-ms-correlation-request-id": [ - "dbd2ffd2-16d8-4361-bd9e-35fd0eaac9c5" + "f8d471f2-cd50-4be2-9671-93318b893b55" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114302Z:dbd2ffd2-16d8-4361-bd9e-35fd0eaac9c5" + "WESTEUROPE:20150713T091802Z:f8d471f2-cd50-4be2-9671-93318b893b55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:02 GMT" + "Mon, 13 Jul 2015 09:18:02 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:43:03.6167045Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"a895444a-a79d-445a-8609-1b24eaa52e5d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:18:03.7664253Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"9d4de932-3e2b-4cff-b5ee-dfcb2e93987a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "a895444a-a79d-445a-8609-1b24eaa52e5d" + "9d4de932-3e2b-4cff-b5ee-dfcb2e93987a" ], "x-ms-correlation-request-id": [ - "a895444a-a79d-445a-8609-1b24eaa52e5d" + "9d4de932-3e2b-4cff-b5ee-dfcb2e93987a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114303Z:a895444a-a79d-445a-8609-1b24eaa52e5d" + "WESTEUROPE:20150713T091803Z:9d4de932-3e2b-4cff-b5ee-dfcb2e93987a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:03 GMT" + "Mon, 13 Jul 2015 09:18:03 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:43:05.8201053Z\",\r\n \"duration\": \"PT1.4637798S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:18:06.0695486Z\",\r\n \"duration\": \"PT1.5146349S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "fa16b1bf-22fa-490f-b6c3-c0cb29383089" + "73ff111c-f3ac-4a69-94f8-0564cfd080fa" ], "x-ms-correlation-request-id": [ - "fa16b1bf-22fa-490f-b6c3-c0cb29383089" + "73ff111c-f3ac-4a69-94f8-0564cfd080fa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114306Z:fa16b1bf-22fa-490f-b6c3-c0cb29383089" + "WESTEUROPE:20150713T091806Z:73ff111c-f3ac-4a69-94f8-0564cfd080fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:06 GMT" + "Mon, 13 Jul 2015 09:18:06 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14861" ], "x-ms-request-id": [ - "9577292e-f2d0-451f-8bf2-4014d67cb02b" + "8924ece2-adeb-4530-9c2f-cdc0363f137d" ], "x-ms-correlation-request-id": [ - "9577292e-f2d0-451f-8bf2-4014d67cb02b" + "8924ece2-adeb-4530-9c2f-cdc0363f137d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114306Z:9577292e-f2d0-451f-8bf2-4014d67cb02b" + "WESTEUROPE:20150713T091807Z:8924ece2-adeb-4530-9c2f-cdc0363f137d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:06 GMT" + "Mon, 13 Jul 2015 09:18:06 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14859" ], "x-ms-request-id": [ - "12196864-c14c-48ee-bd6d-8bc5ba129ef0" + "fc7afc47-e504-4f01-97cc-1f4f835c7dfa" ], "x-ms-correlation-request-id": [ - "12196864-c14c-48ee-bd6d-8bc5ba129ef0" + "fc7afc47-e504-4f01-97cc-1f4f835c7dfa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114309Z:12196864-c14c-48ee-bd6d-8bc5ba129ef0" + "WESTEUROPE:20150713T091810Z:fc7afc47-e504-4f01-97cc-1f4f835c7dfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:09 GMT" + "Mon, 13 Jul 2015 09:18:09 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14857" ], "x-ms-request-id": [ - "c95601b8-ea91-4e7d-afca-8d8b9b0c6661" + "cfba490b-3f82-4756-8f6d-806f05cc4175" ], "x-ms-correlation-request-id": [ - "c95601b8-ea91-4e7d-afca-8d8b9b0c6661" + "cfba490b-3f82-4756-8f6d-806f05cc4175" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114312Z:c95601b8-ea91-4e7d-afca-8d8b9b0c6661" + "WESTEUROPE:20150713T091813Z:cfba490b-3f82-4756-8f6d-806f05cc4175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:12 GMT" + "Mon, 13 Jul 2015 09:18:12 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14855" ], "x-ms-request-id": [ - "c663a849-557a-4fb1-b3cf-eadaf5eafbae" + "edac82fe-3b99-4391-9a78-ff403f64c360" ], "x-ms-correlation-request-id": [ - "c663a849-557a-4fb1-b3cf-eadaf5eafbae" + "edac82fe-3b99-4391-9a78-ff403f64c360" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114315Z:c663a849-557a-4fb1-b3cf-eadaf5eafbae" + "WESTEUROPE:20150713T091816Z:edac82fe-3b99-4391-9a78-ff403f64c360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:15 GMT" + "Mon, 13 Jul 2015 09:18:15 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14853" ], "x-ms-request-id": [ - "bef13e25-707f-426e-b1af-fdfb1c7554f9" + "861c8aae-ae85-4c28-b304-a37af710dfdb" ], "x-ms-correlation-request-id": [ - "bef13e25-707f-426e-b1af-fdfb1c7554f9" + "861c8aae-ae85-4c28-b304-a37af710dfdb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114318Z:bef13e25-707f-426e-b1af-fdfb1c7554f9" + "WESTEUROPE:20150713T091819Z:861c8aae-ae85-4c28-b304-a37af710dfdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:18 GMT" + "Mon, 13 Jul 2015 09:18:18 GMT" ] }, "StatusCode": 200 @@ -633,7 +633,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:43:20.3422827Z\",\r\n \"duration\": \"PT13.9139649S\",\r\n \"trackingId\": \"5992d74e-f567-46a3-8386-8a5e95eaaa6a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:18:20.0192991Z\",\r\n \"duration\": \"PT10.5076367S\",\r\n \"trackingId\": \"1b7af6c6-211d-4b4e-bacb-95393ab39235\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14851" ], "x-ms-request-id": [ - "e65ac868-6890-4110-8fbe-34353394a963" + "ca6f0321-a544-46f0-a429-e21a6bc6b818" ], "x-ms-correlation-request-id": [ - "e65ac868-6890-4110-8fbe-34353394a963" + "ca6f0321-a544-46f0-a429-e21a6bc6b818" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114321Z:e65ac868-6890-4110-8fbe-34353394a963" + "WESTEUROPE:20150713T091822Z:ca6f0321-a544-46f0-a429-e21a6bc6b818" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:21 GMT" + "Mon, 13 Jul 2015 09:18:21 GMT" ] }, "StatusCode": 200 @@ -681,7 +681,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:43:20.3422827Z\",\r\n \"duration\": \"PT13.9139649S\",\r\n \"trackingId\": \"5992d74e-f567-46a3-8386-8a5e95eaaa6a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:18:20.0192991Z\",\r\n \"duration\": \"PT10.5076367S\",\r\n \"trackingId\": \"1b7af6c6-211d-4b4e-bacb-95393ab39235\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14849" ], "x-ms-request-id": [ - "4086c131-c502-424f-a607-c35847337a4b" + "fe800c19-6c04-4f2a-85a0-049c7523acb3" ], "x-ms-correlation-request-id": [ - "4086c131-c502-424f-a607-c35847337a4b" + "fe800c19-6c04-4f2a-85a0-049c7523acb3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114324Z:4086c131-c502-424f-a607-c35847337a4b" + "WESTEUROPE:20150713T091825Z:fe800c19-6c04-4f2a-85a0-049c7523acb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:24 GMT" + "Mon, 13 Jul 2015 09:18:24 GMT" ] }, "StatusCode": 200 @@ -729,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:43:20.3422827Z\",\r\n \"duration\": \"PT13.9139649S\",\r\n \"trackingId\": \"5992d74e-f567-46a3-8386-8a5e95eaaa6a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:18:20.0192991Z\",\r\n \"duration\": \"PT10.5076367S\",\r\n \"trackingId\": \"1b7af6c6-211d-4b4e-bacb-95393ab39235\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14847" ], "x-ms-request-id": [ - "7711812f-8175-4d3e-945b-3f835884a57e" + "580dfed7-bfc7-4fbd-bae9-4c517d6014f7" ], "x-ms-correlation-request-id": [ - "7711812f-8175-4d3e-945b-3f835884a57e" + "580dfed7-bfc7-4fbd-bae9-4c517d6014f7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114327Z:7711812f-8175-4d3e-945b-3f835884a57e" + "WESTEUROPE:20150713T091828Z:580dfed7-bfc7-4fbd-bae9-4c517d6014f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:27 GMT" + "Mon, 13 Jul 2015 09:18:27 GMT" ] }, "StatusCode": 200 @@ -777,154 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:43:20.3422827Z\",\r\n \"duration\": \"PT13.9139649S\",\r\n \"trackingId\": \"5992d74e-f567-46a3-8386-8a5e95eaaa6a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/AE9DE859643E3D34\",\r\n \"operationId\": \"AE9DE859643E3D34\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:18:29.8879875Z\",\r\n \"duration\": \"PT9.3269496S\",\r\n \"trackingId\": \"97301058-66ee-476a-924f-7868778e60b0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:18:20.0192991Z\",\r\n \"duration\": \"PT10.5076367S\",\r\n \"trackingId\": \"1b7af6c6-211d-4b4e-bacb-95393ab39235\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-request-id": [ - "805dd63d-4878-4dee-a33f-ec533e74f05b" - ], - "x-ms-correlation-request-id": [ - "805dd63d-4878-4dee-a33f-ec533e74f05b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114331Z:805dd63d-4878-4dee-a33f-ec533e74f05b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:43:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:43:20.3422827Z\",\r\n \"duration\": \"PT13.9139649S\",\r\n \"trackingId\": \"5992d74e-f567-46a3-8386-8a5e95eaaa6a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-request-id": [ - "a8b1c033-6597-44d3-8a61-76251f3c68e2" - ], - "x-ms-correlation-request-id": [ - "a8b1c033-6597-44d3-8a61-76251f3c68e2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114334Z:a8b1c033-6597-44d3-8a61-76251f3c68e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:43:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/AE9DE859643E3D34\",\r\n \"operationId\": \"AE9DE859643E3D34\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:43:34.9042755Z\",\r\n \"duration\": \"PT14.4890035S\",\r\n \"trackingId\": \"7c07f230-7c8b-4da3-8ed8-825b2125ea16\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup/operations/A012755FF82A4EF4\",\r\n \"operationId\": \"A012755FF82A4EF4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:43:20.3422827Z\",\r\n \"duration\": \"PT13.9139649S\",\r\n \"trackingId\": \"5992d74e-f567-46a3-8386-8a5e95eaaa6a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-request-id": [ - "e7e910a3-36c3-40ec-b283-36d6bce6c585" - ], - "x-ms-correlation-request-id": [ - "e7e910a3-36c3-40ec-b283-36d6bce6c585" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114337Z:e7e910a3-36c3-40ec-b283-36d6bce6c585" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:43:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14845" ], "x-ms-request-id": [ - "686c8da2-4db3-416a-b073-43653313937a" + "3a0c1dad-13a4-4579-bdb2-d6f233cafefb" ], "x-ms-correlation-request-id": [ - "686c8da2-4db3-416a-b073-43653313937a" + "3a0c1dad-13a4-4579-bdb2-d6f233cafefb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114307Z:686c8da2-4db3-416a-b073-43653313937a" + "WESTEUROPE:20150713T091831Z:3a0c1dad-13a4-4579-bdb2-d6f233cafefb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:07 GMT" + "Mon, 13 Jul 2015 09:18:30 GMT" ] }, "StatusCode": 200 @@ -969,58 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:18:06.0695486Z\",\r\n \"duration\": \"PT1.5146349S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-request-id": [ - "ff194d04-c126-444c-8b0f-68f97aa90100" - ], - "x-ms-correlation-request-id": [ - "ff194d04-c126-444c-8b0f-68f97aa90100" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114310Z:ff194d04-c126-444c-8b0f-68f97aa90100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:43:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" + "1651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14860" ], "x-ms-request-id": [ - "f3b8157d-0ede-41c3-bb01-7e7d2584b734" + "f3a28503-fc3b-40a8-83a4-a208611a77bc" ], "x-ms-correlation-request-id": [ - "f3b8157d-0ede-41c3-bb01-7e7d2584b734" + "f3a28503-fc3b-40a8-83a4-a208611a77bc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114313Z:f3b8157d-0ede-41c3-bb01-7e7d2584b734" + "WESTEUROPE:20150713T091807Z:f3a28503-fc3b-40a8-83a4-a208611a77bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:13 GMT" + "Mon, 13 Jul 2015 09:18:07 GMT" ] }, "StatusCode": 200 @@ -1065,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:18:08.9287689Z\",\r\n \"duration\": \"PT4.3738552S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14858" ], "x-ms-request-id": [ - "f2e4dfef-8170-4ade-a750-cae8c0613634" + "e5861f07-4795-416b-b676-92279744726a" ], "x-ms-correlation-request-id": [ - "f2e4dfef-8170-4ade-a750-cae8c0613634" + "e5861f07-4795-416b-b676-92279744726a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114316Z:f2e4dfef-8170-4ade-a750-cae8c0613634" + "WESTEUROPE:20150713T091810Z:e5861f07-4795-416b-b676-92279744726a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:15 GMT" + "Mon, 13 Jul 2015 09:18:10 GMT" ] }, "StatusCode": 200 @@ -1113,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:18:08.9287689Z\",\r\n \"duration\": \"PT4.3738552S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14856" ], "x-ms-request-id": [ - "bb6d210e-bf49-4300-a2ec-f87ff7ceda23" + "f6bce336-8ff5-45fe-8ab0-29af1540ca11" ], "x-ms-correlation-request-id": [ - "bb6d210e-bf49-4300-a2ec-f87ff7ceda23" + "f6bce336-8ff5-45fe-8ab0-29af1540ca11" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114319Z:bb6d210e-bf49-4300-a2ec-f87ff7ceda23" + "WESTEUROPE:20150713T091813Z:f6bce336-8ff5-45fe-8ab0-29af1540ca11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:18 GMT" + "Mon, 13 Jul 2015 09:18:13 GMT" ] }, "StatusCode": 200 @@ -1161,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:18:08.9287689Z\",\r\n \"duration\": \"PT4.3738552S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14854" ], "x-ms-request-id": [ - "84409ecc-ab9e-4623-8b27-0f34bcef17b6" + "e1d22b50-c852-4e34-bea0-28793c069d2b" ], "x-ms-correlation-request-id": [ - "84409ecc-ab9e-4623-8b27-0f34bcef17b6" + "e1d22b50-c852-4e34-bea0-28793c069d2b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114322Z:84409ecc-ab9e-4623-8b27-0f34bcef17b6" + "WESTEUROPE:20150713T091816Z:e1d22b50-c852-4e34-bea0-28793c069d2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:21 GMT" + "Mon, 13 Jul 2015 09:18:16 GMT" ] }, "StatusCode": 200 @@ -1209,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:18:08.9287689Z\",\r\n \"duration\": \"PT4.3738552S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1224,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14852" ], "x-ms-request-id": [ - "66f979bf-d9c8-45fe-9f4b-5ad9eb27163f" + "d70fc63a-05f0-428e-8548-531b7e6db5ca" ], "x-ms-correlation-request-id": [ - "66f979bf-d9c8-45fe-9f4b-5ad9eb27163f" + "d70fc63a-05f0-428e-8548-531b7e6db5ca" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114325Z:66f979bf-d9c8-45fe-9f4b-5ad9eb27163f" + "WESTEUROPE:20150713T091819Z:d70fc63a-05f0-428e-8548-531b7e6db5ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:24 GMT" + "Mon, 13 Jul 2015 09:18:19 GMT" ] }, "StatusCode": 200 @@ -1257,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:18:08.9287689Z\",\r\n \"duration\": \"PT4.3738552S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1272,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14850" ], "x-ms-request-id": [ - "fa42dab0-761a-431f-8ee4-a2cc658d2a73" + "209ddf16-9f7e-4035-a85a-0437a4f8c74f" ], "x-ms-correlation-request-id": [ - "fa42dab0-761a-431f-8ee4-a2cc658d2a73" + "209ddf16-9f7e-4035-a85a-0437a4f8c74f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114328Z:fa42dab0-761a-431f-8ee4-a2cc658d2a73" + "WESTEUROPE:20150713T091822Z:209ddf16-9f7e-4035-a85a-0437a4f8c74f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:27 GMT" + "Mon, 13 Jul 2015 09:18:22 GMT" ] }, "StatusCode": 200 @@ -1305,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:18:08.9287689Z\",\r\n \"duration\": \"PT4.3738552S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1320,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14848" ], "x-ms-request-id": [ - "1abd7282-3004-4eee-a768-5f1963e4e658" + "4e7d9cbf-fbb7-4e17-a6d1-8cf847ed3b7d" ], "x-ms-correlation-request-id": [ - "1abd7282-3004-4eee-a768-5f1963e4e658" + "4e7d9cbf-fbb7-4e17-a6d1-8cf847ed3b7d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114331Z:1abd7282-3004-4eee-a768-5f1963e4e658" + "WESTEUROPE:20150713T091825Z:4e7d9cbf-fbb7-4e17-a6d1-8cf847ed3b7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:30 GMT" + "Mon, 13 Jul 2015 09:18:25 GMT" ] }, "StatusCode": 200 @@ -1353,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:43:06.3128137Z\",\r\n \"duration\": \"PT1.9564882S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:18:08.9287689Z\",\r\n \"duration\": \"PT4.3738552S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1368,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14846" ], "x-ms-request-id": [ - "f2c422e7-4a42-4119-a9a2-e821d475d666" + "60dfcce9-e946-443c-901b-0f7dd3783327" ], "x-ms-correlation-request-id": [ - "f2c422e7-4a42-4119-a9a2-e821d475d666" + "60dfcce9-e946-443c-901b-0f7dd3783327" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114334Z:f2c422e7-4a42-4119-a9a2-e821d475d666" + "WESTEUROPE:20150713T091828Z:60dfcce9-e946-443c-901b-0f7dd3783327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:33 GMT" + "Mon, 13 Jul 2015 09:18:28 GMT" ] }, "StatusCode": 200 @@ -1401,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:43:36.4167533Z\",\r\n \"duration\": \"PT32.0604278S\",\r\n \"correlationId\": \"fa16b1bf-22fa-490f-b6c3-c0cb29383089\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db101\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server101\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:18:31.4213938Z\",\r\n \"duration\": \"PT26.8664801S\",\r\n \"correlationId\": \"73ff111c-f3ac-4a69-94f8-0564cfd080fa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server101/sql-audit-cmdlet-db101\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server101\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1416,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14844" ], "x-ms-request-id": [ - "b8a7b7f4-1eb4-4916-91e4-2f15ae363df5" + "cf5734fc-dad6-4b10-a9f9-0cede2389536" ], "x-ms-correlation-request-id": [ - "b8a7b7f4-1eb4-4916-91e4-2f15ae363df5" + "cf5734fc-dad6-4b10-a9f9-0cede2389536" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114337Z:b8a7b7f4-1eb4-4916-91e4-2f15ae363df5" + "WESTEUROPE:20150713T091832Z:cf5734fc-dad6-4b10-a9f9-0cede2389536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:37 GMT" + "Mon, 13 Jul 2015 09:18:31 GMT" ] }, "StatusCode": 200 @@ -1464,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14843" ], "x-ms-request-id": [ - "721a0c9b-2033-4bbf-92b0-f1519bc10b27" + "389362da-b233-4be2-98c4-cf7052862bb8" ], "x-ms-correlation-request-id": [ - "721a0c9b-2033-4bbf-92b0-f1519bc10b27" + "389362da-b233-4be2-98c4-cf7052862bb8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114339Z:721a0c9b-2033-4bbf-92b0-f1519bc10b27" + "WESTEUROPE:20150713T091834Z:389362da-b233-4be2-98c4-cf7052862bb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:39 GMT" + "Mon, 13 Jul 2015 09:18:33 GMT" ] }, "StatusCode": 200 @@ -1515,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:d8b590e0-4580-4c72-b976-965634ca7418" + "westeurope:a7d317af-fd57-4be7-a7c8-31f2b78ebd82" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14849" ], "x-ms-correlation-request-id": [ - "81a51b56-bb07-4eb8-aac4-ef74764642c7" + "be118181-f75a-42f8-af7a-7074782b8d0f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114340Z:81a51b56-bb07-4eb8-aac4-ef74764642c7" + "WESTEUROPE:20150713T091835Z:be118181-f75a-42f8-af7a-7074782b8d0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1533,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:40 GMT" + "Mon, 13 Jul 2015 09:18:35 GMT" ] }, "StatusCode": 200 @@ -1548,7 +1356,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ea1ac93f-70f4-4cb1-8679-d098b7281bf7" + "da5e7adc-68e0-4f5a-9239-9cc46bec5f87" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets101\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb101\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets101.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1560,7 +1368,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "0c5e0e3a-7651-4971-b8bf-23def32083ed" + "5c708b9e-3439-4548-8fee-cb82bf09b392" ], "X-Content-Type-Options": [ "nosniff" @@ -1569,13 +1377,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14856" ], "x-ms-correlation-request-id": [ - "f965b6d8-1e0f-438d-beed-b7b4ba07ee6c" + "4d1b7fe4-d524-478e-91da-45a7b59b9918" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114342Z:f965b6d8-1e0f-438d-beed-b7b4ba07ee6c" + "WESTEUROPE:20150713T091838Z:4d1b7fe4-d524-478e-91da-45a7b59b9918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,7 +1392,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:42 GMT" + "Mon, 13 Jul 2015 09:18:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1602,7 +1410,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e643569d-99af-4f08-86c5-2e2ea34e021a" + "e9a155b0-fa55-414f-b1da-591a7f56518d" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets101\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb101\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets101.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1614,7 +1422,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2fe1150c-3d5a-415e-ae70-10d5e660fc82" + "77b0aa7e-1058-428f-a7e7-fad49c4c8cb1" ], "X-Content-Type-Options": [ "nosniff" @@ -1623,13 +1431,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14852" ], "x-ms-correlation-request-id": [ - "021ee028-b10f-46c1-be7a-c1f27f7f79c0" + "7a19272f-8bcb-402d-84f5-239aa30f05bb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114352Z:021ee028-b10f-46c1-be7a-c1f27f7f79c0" + "WESTEUROPE:20150713T091846Z:7a19272f-8bcb-402d-84f5-239aa30f05bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,7 +1446,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:52 GMT" + "Mon, 13 Jul 2015 09:18:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1656,10 +1464,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ea1ac93f-70f4-4cb1-8679-d098b7281bf7" + "da5e7adc-68e0-4f5a-9239-9cc46bec5f87" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"name\": \"sql-audit-cmdlet-db101\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d804414e-c4fa-4d62-a5de-b25bc3277b50\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T11:43:31.937Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T12:13:31.937Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101\",\r\n \"name\": \"sql-audit-cmdlet-db101\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"c520ac88-f7f6-41e7-8242-d1081b3438a2\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T09:18:26.193Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T09:48:26.193Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1668,7 +1476,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e85d05cd-8fe3-4d13-ab37-aee6cede368a" + "f226e5f3-fbee-4769-96c6-f7fe9679c63a" ], "X-Content-Type-Options": [ "nosniff" @@ -1677,13 +1485,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14853" ], "x-ms-correlation-request-id": [ - "7ad7afda-3f30-44fe-b114-4b4309dd8e26" + "d2f0757c-dc75-444b-b966-b20f4708895d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114348Z:7ad7afda-3f30-44fe-b114-4b4309dd8e26" + "WESTEUROPE:20150713T091839Z:d2f0757c-dc75-444b-b966-b20f4708895d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1692,7 +1500,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:47 GMT" + "Mon, 13 Jul 2015 09:18:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1713,7 +1521,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"M+ACFveSvDK9ipBABVrtKGOjqmiE8fMzJmhNqB5S9X6s48SvTII/cXfTwiAv0E7UyvKkrP/thiJSp+Tr8PYgwQ==\",\r\n \"secondaryKey\": \"75v++0/UvNtWZAS93n4FXdFXSNXee90UQW3kOUglF8iqo30ubI4nEWW2vGuilxcior5BiEgdbQgMYTl6wBrrJQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"Xi8gcFlfu2QShqaw0os10DWNVjC5HAMMZ8IKaxoqNAJZ4nUCkyUB29C+PC7Ad5d+TI9gt677zS/uahQ8jmaCgA==\",\r\n \"secondaryKey\": \"PeFmr2iVlacbqBKgfhTxImdg3QbenbvvVSgEY2Rzwa92P44KEM5DvA1yXKR1cQjD4XSsVAEEWOdY9Hz+jetoOg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1731,16 +1539,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:c7e0d733-2ff1-4896-8ef4-65250bccd97d" + "southcentralus:7247c478-eff3-406e-8eae-295fb1249dc6" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "f60a7370-9d11-41e7-b367-df09b873324b" + "169afca8-24f5-4547-8066-264b2527f10a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114349Z:f60a7370-9d11-41e7-b367-df09b873324b" + "WESTEUROPE:20150713T091840Z:169afca8-24f5-4547-8066-264b2527f10a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1749,7 +1557,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:49 GMT" + "Mon, 13 Jul 2015 09:18:40 GMT" ] }, "StatusCode": 200 @@ -1758,7 +1566,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets101\",\r\n \"storageAccountKey\": \"M+ACFveSvDK9ipBABVrtKGOjqmiE8fMzJmhNqB5S9X6s48SvTII/cXfTwiAv0E7UyvKkrP/thiJSp+Tr8PYgwQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets101.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb101\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets101\",\r\n \"storageAccountKey\": \"Xi8gcFlfu2QShqaw0os10DWNVjC5HAMMZ8IKaxoqNAJZ4nUCkyUB29C+PC7Ad5d+TI9gt677zS/uahQ8jmaCgA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets101.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb101\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1770,10 +1578,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ea1ac93f-70f4-4cb1-8679-d098b7281bf7" + "da5e7adc-68e0-4f5a-9239-9cc46bec5f87" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets101\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb101\",\r\n \"storageAccountKey\": \"M+ACFveSvDK9ipBABVrtKGOjqmiE8fMzJmhNqB5S9X6s48SvTII/cXfTwiAv0E7UyvKkrP/thiJSp+Tr8PYgwQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets101.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg101/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server101/databases/sql-audit-cmdlet-db101/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets101\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb101\",\r\n \"storageAccountKey\": \"Xi8gcFlfu2QShqaw0os10DWNVjC5HAMMZ8IKaxoqNAJZ4nUCkyUB29C+PC7Ad5d+TI9gt677zS/uahQ8jmaCgA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets101.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1095" @@ -1782,7 +1590,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d125047f-4aa3-43c3-af78-f332858e48c7" + "7a06574d-9164-4ade-8879-93b28d16b680" ], "X-Content-Type-Options": [ "nosniff" @@ -1794,13 +1602,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "8b48826f-7402-410c-9c78-3e8990fbf6fe" + "8cc3228b-5913-4f46-864b-fbd12099acd0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114351Z:8b48826f-7402-410c-9c78-3e8990fbf6fe" + "WESTEUROPE:20150713T091845Z:8cc3228b-5913-4f46-864b-fbd12099acd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1809,7 +1617,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:50 GMT" + "Mon, 13 Jul 2015 09:18:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1839,13 +1647,13 @@ "ussouth3" ], "x-ms-request-id": [ - "1f4311ed142ab47583996bd584bc4968" + "46b3c7b7affbc86a82e0fe8e360fe132" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:43:59 GMT" + "Mon, 13 Jul 2015 09:18:50 GMT" ], "Server": [ "1.0.6198.243", @@ -1856,8 +1664,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/1f4311ed142ab47583996bd584bc4968", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzFmNDMxMWVkMTQyYWI0NzU4Mzk5NmJkNTg0YmM0OTY4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/46b3c7b7affbc86a82e0fe8e360fe132", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQ2YjNjN2I3YWZmYmM4NmE4MmUwZmU4ZTM2MGZlMTMy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1868,7 +1676,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 1f4311ed-142a-b475-8399-6bd584bc4968\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 46b3c7b7-affb-c86a-82e0-fe8e360fe132\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1880,13 +1688,13 @@ "ussouth3" ], "x-ms-request-id": [ - "527c4edb6d0bb963af39b1d2194b7a32" + "68152fc7e4e6cb9ab65b645b17e025ee" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:44:00 GMT" + "Mon, 13 Jul 2015 09:18:52 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithStorageV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithStorageV2.json new file mode 100644 index 000000000000..102e78833cb5 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDatabaseUpdatePolicyWithStorageV2.json @@ -0,0 +1,1951 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-request-id": [ + "eaeacbfd-391b-4361-9de4-58f3dee77a19" + ], + "x-ms-correlation-request-id": [ + "eaeacbfd-391b-4361-9de4-58f3dee77a19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092311Z:eaeacbfd-391b-4361-9de4-58f3dee77a19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102\",\r\n \"name\": \"sql-audit-cmdlet-test-rg102\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "8534ebf7-09bc-460c-83d0-f56f2732701d" + ], + "x-ms-correlation-request-id": [ + "8534ebf7-09bc-460c-83d0-f56f2732701d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092312Z:8534ebf7-09bc-460c-83d0-f56f2732701d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/validate?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2360" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:23:13.3999269Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"553dd177-58cb-41e1-ae26-1ccdc88cb979\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1643" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "553dd177-58cb-41e1-ae26-1ccdc88cb979" + ], + "x-ms-correlation-request-id": [ + "553dd177-58cb-41e1-ae26-1ccdc88cb979" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092313Z:553dd177-58cb-41e1-ae26-1ccdc88cb979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2360" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:23:15.2918592Z\",\r\n \"duration\": \"PT1.1251748S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "1bf3d379-0408-4a7c-ba04-43af537075c1" + ], + "x-ms-correlation-request-id": [ + "1bf3d379-0408-4a7c-ba04-43af537075c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092315Z:1bf3d379-0408-4a7c-ba04-43af537075c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:15 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-request-id": [ + "7e75daae-3127-4242-9ef8-7dcfcd23065e" + ], + "x-ms-correlation-request-id": [ + "7e75daae-3127-4242-9ef8-7dcfcd23065e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092316Z:7e75daae-3127-4242-9ef8-7dcfcd23065e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14854" + ], + "x-ms-request-id": [ + "ace3f2e0-d93f-44f3-91b6-2b3f2d02765c" + ], + "x-ms-correlation-request-id": [ + "ace3f2e0-d93f-44f3-91b6-2b3f2d02765c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092319Z:ace3f2e0-d93f-44f3-91b6-2b3f2d02765c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-request-id": [ + "f5a182e9-039f-4b1d-8b59-9ce1f95536cc" + ], + "x-ms-correlation-request-id": [ + "f5a182e9-039f-4b1d-8b59-9ce1f95536cc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092322Z:f5a182e9-039f-4b1d-8b59-9ce1f95536cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14850" + ], + "x-ms-request-id": [ + "bfae7c51-ad8f-4a3e-8518-2dc48020dae7" + ], + "x-ms-correlation-request-id": [ + "bfae7c51-ad8f-4a3e-8518-2dc48020dae7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092325Z:bfae7c51-ad8f-4a3e-8518-2dc48020dae7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/97B10C8BFB4883E6\",\r\n \"operationId\": \"97B10C8BFB4883E6\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:23:27.4172722Z\",\r\n \"duration\": \"PT11.6895416S\",\r\n \"trackingId\": \"427bf0ad-6ecf-4515-9da0-2c8d84ecbcb0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "668" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-request-id": [ + "be7f7147-310a-4526-8d0c-d6951eedcf3b" + ], + "x-ms-correlation-request-id": [ + "be7f7147-310a-4526-8d0c-d6951eedcf3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092328Z:be7f7147-310a-4526-8d0c-d6951eedcf3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/97B10C8BFB4883E6\",\r\n \"operationId\": \"97B10C8BFB4883E6\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:23:27.4172722Z\",\r\n \"duration\": \"PT11.6895416S\",\r\n \"trackingId\": \"427bf0ad-6ecf-4515-9da0-2c8d84ecbcb0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "668" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-request-id": [ + "8359f5f5-6033-4e6e-be9a-87fbaa5075ec" + ], + "x-ms-correlation-request-id": [ + "8359f5f5-6033-4e6e-be9a-87fbaa5075ec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092331Z:8359f5f5-6033-4e6e-be9a-87fbaa5075ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/97B10C8BFB4883E6\",\r\n \"operationId\": \"97B10C8BFB4883E6\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:23:27.4172722Z\",\r\n \"duration\": \"PT11.6895416S\",\r\n \"trackingId\": \"427bf0ad-6ecf-4515-9da0-2c8d84ecbcb0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "668" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14843" + ], + "x-ms-request-id": [ + "b2d0e3f5-bce6-4829-975f-fcd60e02d0a8" + ], + "x-ms-correlation-request-id": [ + "b2d0e3f5-bce6-4829-975f-fcd60e02d0a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092334Z:b2d0e3f5-bce6-4829-975f-fcd60e02d0a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/4123DDA874F2948B\",\r\n \"operationId\": \"4123DDA874F2948B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:23:34.3798492Z\",\r\n \"duration\": \"PT6.8801538S\",\r\n \"trackingId\": \"a6171747-c5bb-41f1-9618-78af62274751\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/97B10C8BFB4883E6\",\r\n \"operationId\": \"97B10C8BFB4883E6\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:23:27.4172722Z\",\r\n \"duration\": \"PT11.6895416S\",\r\n \"trackingId\": \"427bf0ad-6ecf-4515-9da0-2c8d84ecbcb0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1390" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-request-id": [ + "aa00a14a-5915-401c-bb6c-222010181e79" + ], + "x-ms-correlation-request-id": [ + "aa00a14a-5915-401c-bb6c-222010181e79" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092337Z:aa00a14a-5915-401c-bb6c-222010181e79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:23:15.6618682Z\",\r\n \"duration\": \"PT1.4951838S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-request-id": [ + "e8c489f7-6394-4616-a9ef-10cdcb7c85e3" + ], + "x-ms-correlation-request-id": [ + "e8c489f7-6394-4616-a9ef-10cdcb7c85e3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092316Z:e8c489f7-6394-4616-a9ef-10cdcb7c85e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:23:15.6618682Z\",\r\n \"duration\": \"PT1.4951838S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14853" + ], + "x-ms-request-id": [ + "8d9d8f4f-de55-41f8-bf7b-bf6c292e5a36" + ], + "x-ms-correlation-request-id": [ + "8d9d8f4f-de55-41f8-bf7b-bf6c292e5a36" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092319Z:8d9d8f4f-de55-41f8-bf7b-bf6c292e5a36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:23:15.6618682Z\",\r\n \"duration\": \"PT1.4951838S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-request-id": [ + "e2bc3278-f485-41c0-9d35-19f4f0b554b3" + ], + "x-ms-correlation-request-id": [ + "e2bc3278-f485-41c0-9d35-19f4f0b554b3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092322Z:e2bc3278-f485-41c0-9d35-19f4f0b554b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:23:15.6618682Z\",\r\n \"duration\": \"PT1.4951838S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-request-id": [ + "24f94470-d5af-4fd3-8dc0-91dde0602b36" + ], + "x-ms-correlation-request-id": [ + "24f94470-d5af-4fd3-8dc0-91dde0602b36" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092325Z:24f94470-d5af-4fd3-8dc0-91dde0602b36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:23:15.6618682Z\",\r\n \"duration\": \"PT1.4951838S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], + "x-ms-request-id": [ + "645b88d8-bc5c-4c3b-86b8-0d5b54d0224e" + ], + "x-ms-correlation-request-id": [ + "645b88d8-bc5c-4c3b-86b8-0d5b54d0224e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092328Z:645b88d8-bc5c-4c3b-86b8-0d5b54d0224e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:23:15.6618682Z\",\r\n \"duration\": \"PT1.4951838S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14844" + ], + "x-ms-request-id": [ + "5d07a8ff-72e1-437a-b76d-3c45bd16ef06" + ], + "x-ms-correlation-request-id": [ + "5d07a8ff-72e1-437a-b76d-3c45bd16ef06" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092331Z:5d07a8ff-72e1-437a-b76d-3c45bd16ef06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:23:15.6618682Z\",\r\n \"duration\": \"PT1.4951838S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14842" + ], + "x-ms-request-id": [ + "24e07dd8-31f9-40a5-95fa-fdf3a009de9c" + ], + "x-ms-correlation-request-id": [ + "24e07dd8-31f9-40a5-95fa-fdf3a009de9c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092334Z:24e07dd8-31f9-40a5-95fa-fdf3a009de9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:23:35.0268577Z\",\r\n \"duration\": \"PT20.8601733S\",\r\n \"correlationId\": \"1bf3d379-0408-4a7c-ba04-43af537075c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server102\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1822" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], + "x-ms-request-id": [ + "095e65b7-414b-4fb3-9469-e1f358ecbd49" + ], + "x-ms-correlation-request-id": [ + "095e65b7-414b-4fb3-9469-e1f358ecbd49" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092338Z:095e65b7-414b-4fb3-9469-e1f358ecbd49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"name\": \"sql-audit-cmdlet-server102\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"name\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "610" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14838" + ], + "x-ms-request-id": [ + "029a4d86-8e7a-4afb-a96c-76305235cac1" + ], + "x-ms-correlation-request-id": [ + "029a4d86-8e7a-4afb-a96c-76305235cac1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092340Z:029a4d86-8e7a-4afb-a96c-76305235cac1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:a9d638cb-2d53-47f1-8df3-73ad7ab8d89c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "bbc1255c-b6ff-4fda-a14e-70377da84a9a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092341Z:bbc1255c-b6ff-4fda-a14e-70377da84a9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F1ZGl0Y21kbGV0czEwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "89" + ], + "x-ms-client-request-id": [ + "589bbdf0-182f-4568-b672-e7a5b5931833" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "4586c310-53ec-45cf-807d-c5c3103b16e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4586c310-53ec-45cf-807d-c5c3103b16e3?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "5493ef50-d90a-478b-81db-fef28bd0129c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092344Z:5493ef50-d90a-478b-81db-fef28bd0129c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4586c310-53ec-45cf-807d-c5c3103b16e3?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ1ODZjMzEwLTUzZWMtNDVjZi04MDdkLWM1YzMxMDNiMTZlMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75e9b9f7-fb83-4b25-b08a-15ae59e57c7f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "3e24e4c3-ad5f-4207-8424-0d8769c8298e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4586c310-53ec-45cf-807d-c5c3103b16e3?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14837" + ], + "x-ms-correlation-request-id": [ + "a10ead94-c212-4180-9f72-36abdac86521" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092345Z:a10ead94-c212-4180-9f72-36abdac86521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 13 Jul 2015 09:23:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4586c310-53ec-45cf-807d-c5c3103b16e3?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ1ODZjMzEwLTUzZWMtNDVjZi04MDdkLWM1YzMxMDNiMTZlMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ac758c4-b7b6-4655-98b4-67165f4d82fa" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "6f773fb3-94db-4992-93a5-5375cb389d2f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4586c310-53ec-45cf-807d-c5c3103b16e3?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "x-ms-correlation-request-id": [ + "760c7ad1-c1b6-49e3-a159-487296162edc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092410Z:760c7ad1-c1b6-49e3-a159-487296162edc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:10 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4586c310-53ec-45cf-807d-c5c3103b16e3?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ1ODZjMzEwLTUzZWMtNDVjZi04MDdkLWM1YzMxMDNiMTZlMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53489eb7-38d6-4d1a-af0d-e766719fe80d" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "66" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "de6276df-2f5c-4c5a-b651-1407f9d69f2c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14835" + ], + "x-ms-correlation-request-id": [ + "0bdc3a90-66d0-4799-bc4a-0288e5f4eeac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092435Z:0bdc3a90-66d0-4799-bc4a-0288e5f4eeac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F1ZGl0Y21kbGV0czEwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e75ea04-422d-4fd0-bf7b-401f7c69a0b5" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102\",\r\n \"name\": \"auditcmdlets102\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://auditcmdlets102.blob.core.windows.net/\",\r\n \"queue\": \"https://auditcmdlets102.queue.core.windows.net/\",\r\n \"table\": \"https://auditcmdlets102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-13T09:23:43.0077487Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "58f54f45-d914-42d6-bcbd-246e5c560fb6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "x-ms-correlation-request-id": [ + "0d93f24e-2723-4359-911b-b80180bd02b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092435Z:0d93f24e-2723-4359-911b-b80180bd02b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAyL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAyL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f1d8a327-c78a-44b0-a2ea-7640f3299646" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb102\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "898" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e290d3f5-5534-404e-8241-38c838fcad2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-correlation-request-id": [ + "b59b8acd-1b3b-4196-98a7-9833de310963" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092437Z:b59b8acd-1b3b-4196-98a7-9833de310963" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAyL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAyL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7b4e213d-3565-4fdf-909a-bf44d4089e20" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets102\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb102\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets102.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg102\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c9e46c6d-18a9-483f-bf89-2723c0ac1d51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-correlation-request-id": [ + "297c21d0-d7ac-45fd-9f4b-4aa0a5fdb6df" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092445Z:297c21d0-d7ac-45fd-9f4b-4aa0a5fdb6df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:45 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAyL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f1d8a327-c78a-44b0-a2ea-7640f3299646" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"name\": \"sql-audit-cmdlet-db102\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3c4cd01c-ed7d-4ac8-ba9b-a4f94b0d1b39\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T09:23:31.483Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T09:53:31.483Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "815" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c8afe217-ebcf-46d6-b4d2-44c5267a7909" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], + "x-ms-correlation-request-id": [ + "d6d11237-4d57-488a-937a-1874fc2775eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092439Z:d6d11237-4d57-488a-937a-1874fc2775eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:38 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-request-id": [ + "2aed005b-a88d-428f-a4e3-da758bcd8330" + ], + "x-ms-correlation-request-id": [ + "2aed005b-a88d-428f-a4e3-da758bcd8330" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092439Z:2aed005b-a88d-428f-a4e3-da758bcd8330" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/yrubintestv2\",\r\n \"name\": \"yrubintestv2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102\",\r\n \"name\": \"auditcmdlets102\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "744" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-request-id": [ + "f7d22d15-84a0-4e1d-be9f-e55ecbea0e52" + ], + "x-ms-correlation-request-id": [ + "f7d22d15-84a0-4e1d-be9f-e55ecbea0e52" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092439Z:f7d22d15-84a0-4e1d-be9f-e55ecbea0e52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets102", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n The storage account 'auditcmdlets102' was not found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "217" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4010eb13ddc7c19d9b0c3ac4995c786c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7f9378e-d6d1-4e5c-8e64-6031cbc14371" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/default-storage-westus/providers/Microsoft.Storage/storageAccounts/yrubintestv2\",\r\n \"name\": \"yrubintestv2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yrubintestv2.blob.core.windows.net/\",\r\n \"queue\": \"https://yrubintestv2.queue.core.windows.net/\",\r\n \"table\": \"https://yrubintestv2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-13T08:36:50.4585006Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://raniteststorage1122.blob.core.windows.net/\",\r\n \"queue\": \"https://raniteststorage1122.queue.core.windows.net/\",\r\n \"table\": \"https://raniteststorage1122.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-02T13:54:42.9889492Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102\",\r\n \"name\": \"auditcmdlets102\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://auditcmdlets102.blob.core.windows.net/\",\r\n \"queue\": \"https://auditcmdlets102.queue.core.windows.net/\",\r\n \"table\": \"https://auditcmdlets102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-13T09:23:43.0077487Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "545802f1-cda5-42e2-93aa-0f841ecd43f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "0dcb9d34-7fdb-43dd-a072-58b6697e6091" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092441Z:0dcb9d34-7fdb-43dd-a072-58b6697e6091" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets102/listKeys?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNsYXNzaWNTdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hdWRpdGNtZGxldHMxMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "none" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ClassicStorage/storageAccounts/auditcmdlets102' under resource group 'sql-audit-cmdlet-test-rg102' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "40eb110c-8db0-46d4-99db-d63f0a536da2" + ], + "x-ms-correlation-request-id": [ + "40eb110c-8db0-46d4-99db-d63f0a536da2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092441Z:40eb110c-8db0-46d4-99db-d63f0a536da2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:40 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F1ZGl0Y21kbGV0czEwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4c7f969-6e49-4736-8bd3-41c801b44ffd" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"tLEGQOP48Xp6piPhLoKJVUQojN4lPHr1TzbNHfo0FMrmOVih+Tm0GJhc9/VVpTJIB6yBP7PVo0HIiaTLf0X3uQ==\",\r\n \"key2\": \"Lwgsi7UDLy+jX9qmWSYCT7JVWLZvR8vmCAuH4WvgnSLweDdK5I3nVZdul00Rq6hdNKocKKlSG4uqn6bK7EI9lg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "70ad7cb5-baad-4e6e-8874-6bf8ff20e00b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "08ef9e2f-c930-4cf5-aaff-746f3cc11886" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092441Z:08ef9e2f-c930-4cf5-aaff-746f3cc11886" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAyL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAyL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets102\",\r\n \"storageAccountKey\": \"tLEGQOP48Xp6piPhLoKJVUQojN4lPHr1TzbNHfo0FMrmOVih+Tm0GJhc9/VVpTJIB6yBP7PVo0HIiaTLf0X3uQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets102.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg102\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb102\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "837" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f1d8a327-c78a-44b0-a2ea-7640f3299646" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets102\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb102\",\r\n \"storageAccountKey\": \"tLEGQOP48Xp6piPhLoKJVUQojN4lPHr1TzbNHfo0FMrmOVih+Tm0GJhc9/VVpTJIB6yBP7PVo0HIiaTLf0X3uQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets102.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg102\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "a3019c00-c855-411e-90da-0a3eafa8ca18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "19d3e4d2-ed8b-49fc-92c8-356447db4745" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T092444Z:19d3e4d2-ed8b-49fc-92c8-356447db4745" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets102", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMTAy", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n The storage account 'auditcmdlets102' was not found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "217" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "1e9b5249a38dc9a68ac2267a19caf693" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 09:24:46 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDisableDatabaseAuditing.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDisableDatabaseAuditing.json index a50f61793b32..a2e4a040657e 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDisableDatabaseAuditing.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDisableDatabaseAuditing.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "9532b8fe84cab504bad1b11c88d7d700" + "6c0eb0ccec76c66eb565dc9be2926803" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:45:04 GMT" + "Mon, 13 Jul 2015 12:01:56 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets901" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9532b8fe84cab504bad1b11c88d7d700", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzk1MzJiOGZlODRjYWI1MDRiYWQxYjExYzg4ZDdkNzAw", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6c0eb0ccec76c66eb565dc9be2926803", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZjMGViMGNjZWM3NmM2NmViNTY1ZGM5YmUyOTI2ODAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 9532b8fe-84ca-b504-bad1-b11c88d7d700\r\n InProgress\r\n", + "ResponseBody": "\r\n 6c0eb0cc-ec76-c66e-b565-dc9be2926803\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "423f9d3469d4b182b3ca2dc7b2e2a0c3" + "7c7b3af605fbcd97bb88e4c33d6271cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:45:04 GMT" + "Mon, 13 Jul 2015 12:01:56 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9532b8fe84cab504bad1b11c88d7d700", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzk1MzJiOGZlODRjYWI1MDRiYWQxYjExYzg4ZDdkNzAw", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6c0eb0ccec76c66eb565dc9be2926803", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZjMGViMGNjZWM3NmM2NmViNTY1ZGM5YmUyOTI2ODAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 9532b8fe-84ca-b504-bad1-b11c88d7d700\r\n InProgress\r\n", + "ResponseBody": "\r\n 6c0eb0cc-ec76-c66e-b565-dc9be2926803\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "28d27159f2dcb184aa1a4814469d8c65" + "008f4690dfffc85a899aa50d2d253af5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:45:35 GMT" + "Mon, 13 Jul 2015 12:02:27 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9532b8fe84cab504bad1b11c88d7d700", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzk1MzJiOGZlODRjYWI1MDRiYWQxYjExYzg4ZDdkNzAw", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6c0eb0ccec76c66eb565dc9be2926803", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZjMGViMGNjZWM3NmM2NmViNTY1ZGM5YmUyOTI2ODAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 9532b8fe-84ca-b504-bad1-b11c88d7d700\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 6c0eb0cc-ec76-c66e-b565-dc9be2926803\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "2f1c1976bf34bfb1b496d619feaec335" + "4408db6b9915cf3cbddc35bde83a9850" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:05 GMT" + "Mon, 13 Jul 2015 12:02:56 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14844" + "14831" ], "x-ms-request-id": [ - "920a9aa7-9794-447f-8766-5ff2a8154816" + "6e5ebbe5-d563-4270-a9ce-56207e7ec80a" ], "x-ms-correlation-request-id": [ - "920a9aa7-9794-447f-8766-5ff2a8154816" + "6e5ebbe5-d563-4270-a9ce-56207e7ec80a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104605Z:920a9aa7-9794-447f-8766-5ff2a8154816" + "WESTEUROPE:20150713T120259Z:6e5ebbe5-d563-4270-a9ce-56207e7ec80a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:04 GMT" + "Mon, 13 Jul 2015 12:02:58 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1185" ], "x-ms-request-id": [ - "ec49bed7-2b1a-48b4-8eda-8fba811adffb" + "026f35c1-9adf-4e70-af38-1eac988d96d3" ], "x-ms-correlation-request-id": [ - "ec49bed7-2b1a-48b4-8eda-8fba811adffb" + "026f35c1-9adf-4e70-af38-1eac988d96d3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104607Z:ec49bed7-2b1a-48b4-8eda-8fba811adffb" + "WESTEUROPE:20150713T120300Z:026f35c1-9adf-4e70-af38-1eac988d96d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:06 GMT" + "Mon, 13 Jul 2015 12:03:00 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:46:07.8738774Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"86902397-e15c-46f0-b6a2-89de06d0a2d3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:03:01.5815721Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"e0f3d0c3-df14-4ee4-b792-8f7bb0ba77a2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1184" ], "x-ms-request-id": [ - "86902397-e15c-46f0-b6a2-89de06d0a2d3" + "e0f3d0c3-df14-4ee4-b792-8f7bb0ba77a2" ], "x-ms-correlation-request-id": [ - "86902397-e15c-46f0-b6a2-89de06d0a2d3" + "e0f3d0c3-df14-4ee4-b792-8f7bb0ba77a2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104607Z:86902397-e15c-46f0-b6a2-89de06d0a2d3" + "WESTEUROPE:20150713T120301Z:e0f3d0c3-df14-4ee4-b792-8f7bb0ba77a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:07 GMT" + "Mon, 13 Jul 2015 12:03:00 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:46:09.7437789Z\",\r\n \"duration\": \"PT1.1240121S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:03:03.6714444Z\",\r\n \"duration\": \"PT1.2187541S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1183" ], "x-ms-request-id": [ - "48912c10-6bc9-4368-9a15-9c1f49d56180" + "34e872ae-3047-436d-84bb-133b4156f1c1" ], "x-ms-correlation-request-id": [ - "48912c10-6bc9-4368-9a15-9c1f49d56180" + "34e872ae-3047-436d-84bb-133b4156f1c1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104610Z:48912c10-6bc9-4368-9a15-9c1f49d56180" + "WESTEUROPE:20150713T120304Z:34e872ae-3047-436d-84bb-133b4156f1c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:09 GMT" + "Mon, 13 Jul 2015 12:03:03 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" + "14830" ], "x-ms-request-id": [ - "5f8aa171-d7a8-4264-b0b4-42f9232a7e36" + "a7c44b82-b576-4731-9495-9a39ec2cacb1" ], "x-ms-correlation-request-id": [ - "5f8aa171-d7a8-4264-b0b4-42f9232a7e36" + "a7c44b82-b576-4731-9495-9a39ec2cacb1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104610Z:5f8aa171-d7a8-4264-b0b4-42f9232a7e36" + "WESTEUROPE:20150713T120304Z:a7c44b82-b576-4731-9495-9a39ec2cacb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:09 GMT" + "Mon, 13 Jul 2015 12:03:03 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "14828" ], "x-ms-request-id": [ - "b59da955-16fa-443c-82db-8c50f6cf2f65" + "9a8e467d-f825-45ea-9a53-d4a491c7fe64" ], "x-ms-correlation-request-id": [ - "b59da955-16fa-443c-82db-8c50f6cf2f65" + "9a8e467d-f825-45ea-9a53-d4a491c7fe64" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104613Z:b59da955-16fa-443c-82db-8c50f6cf2f65" + "WESTEUROPE:20150713T120307Z:9a8e467d-f825-45ea-9a53-d4a491c7fe64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:12 GMT" + "Mon, 13 Jul 2015 12:03:07 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14826" ], "x-ms-request-id": [ - "c20e48fe-13b5-4935-936d-33240f577cf0" + "11a2bab1-b43b-4406-a82d-60ce15b393a3" ], "x-ms-correlation-request-id": [ - "c20e48fe-13b5-4935-936d-33240f577cf0" + "11a2bab1-b43b-4406-a82d-60ce15b393a3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104616Z:c20e48fe-13b5-4935-936d-33240f577cf0" + "WESTEUROPE:20150713T120311Z:11a2bab1-b43b-4406-a82d-60ce15b393a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:15 GMT" + "Mon, 13 Jul 2015 12:03:11 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14824" ], "x-ms-request-id": [ - "23656f64-ba91-4bc1-a6a0-55ca1cf9a91a" + "382e6181-40c0-448d-8054-838307f299ec" ], "x-ms-correlation-request-id": [ - "23656f64-ba91-4bc1-a6a0-55ca1cf9a91a" + "382e6181-40c0-448d-8054-838307f299ec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104619Z:23656f64-ba91-4bc1-a6a0-55ca1cf9a91a" + "WESTEUROPE:20150713T120314Z:382e6181-40c0-448d-8054-838307f299ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:19 GMT" + "Mon, 13 Jul 2015 12:03:14 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14822" ], "x-ms-request-id": [ - "db3b13ac-f412-4c81-9d01-da933756f792" + "fc106d2b-b6b9-46a3-a12e-c89ced7b20bd" ], "x-ms-correlation-request-id": [ - "db3b13ac-f412-4c81-9d01-da933756f792" + "fc106d2b-b6b9-46a3-a12e-c89ced7b20bd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104622Z:db3b13ac-f412-4c81-9d01-da933756f792" + "WESTEUROPE:20150713T120318Z:fc106d2b-b6b9-46a3-a12e-c89ced7b20bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:22 GMT" + "Mon, 13 Jul 2015 12:03:17 GMT" ] }, "StatusCode": 200 @@ -633,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/22921F90E69AEB5F\",\r\n \"operationId\": \"22921F90E69AEB5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:46:23.9332501Z\",\r\n \"duration\": \"PT10.670519S\",\r\n \"trackingId\": \"7263b064-ca42-44d0-825a-a1c0d1486550\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14820" ], "x-ms-request-id": [ - "1dd9c09e-44e3-4fa8-a003-d7a1f5b484f8" + "3af9454a-dee2-4c2d-b2f0-ecef05022922" ], "x-ms-correlation-request-id": [ - "1dd9c09e-44e3-4fa8-a003-d7a1f5b484f8" + "3af9454a-dee2-4c2d-b2f0-ecef05022922" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104625Z:1dd9c09e-44e3-4fa8-a003-d7a1f5b484f8" + "WESTEUROPE:20150713T120321Z:3af9454a-dee2-4c2d-b2f0-ecef05022922" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:25 GMT" + "Mon, 13 Jul 2015 12:03:21 GMT" ] }, "StatusCode": 200 @@ -681,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/22921F90E69AEB5F\",\r\n \"operationId\": \"22921F90E69AEB5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:46:23.9332501Z\",\r\n \"duration\": \"PT10.670519S\",\r\n \"trackingId\": \"7263b064-ca42-44d0-825a-a1c0d1486550\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/22921F90E69AEB5F\",\r\n \"operationId\": \"22921F90E69AEB5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:03:23.0959742Z\",\r\n \"duration\": \"PT16.0272862S\",\r\n \"trackingId\": \"0f25e37e-7262-4076-9d09-d3d6c5e4dac4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14818" ], "x-ms-request-id": [ - "a17a7f98-c13c-4e4e-8f1b-2c6abfad6234" + "c4a180be-bfe6-49ce-a484-b7ef4dbbe186" ], "x-ms-correlation-request-id": [ - "a17a7f98-c13c-4e4e-8f1b-2c6abfad6234" + "c4a180be-bfe6-49ce-a484-b7ef4dbbe186" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104628Z:a17a7f98-c13c-4e4e-8f1b-2c6abfad6234" + "WESTEUROPE:20150713T120324Z:c4a180be-bfe6-49ce-a484-b7ef4dbbe186" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:28 GMT" + "Mon, 13 Jul 2015 12:03:24 GMT" ] }, "StatusCode": 200 @@ -729,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/22921F90E69AEB5F\",\r\n \"operationId\": \"22921F90E69AEB5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:46:23.9332501Z\",\r\n \"duration\": \"PT10.670519S\",\r\n \"trackingId\": \"7263b064-ca42-44d0-825a-a1c0d1486550\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/22921F90E69AEB5F\",\r\n \"operationId\": \"22921F90E69AEB5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:03:23.0959742Z\",\r\n \"duration\": \"PT16.0272862S\",\r\n \"trackingId\": \"0f25e37e-7262-4076-9d09-d3d6c5e4dac4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14816" ], "x-ms-request-id": [ - "aea73bb2-729c-4ca4-85d8-19d0f3276798" + "359aea1c-5d3e-4417-a7e8-5a5276698fc2" ], "x-ms-correlation-request-id": [ - "aea73bb2-729c-4ca4-85d8-19d0f3276798" + "359aea1c-5d3e-4417-a7e8-5a5276698fc2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104631Z:aea73bb2-729c-4ca4-85d8-19d0f3276798" + "WESTEUROPE:20150713T120327Z:359aea1c-5d3e-4417-a7e8-5a5276698fc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:31 GMT" + "Mon, 13 Jul 2015 12:03:27 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/18494D92D3E5A133\",\r\n \"operationId\": \"18494D92D3E5A133\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:46:31.9753987Z\",\r\n \"duration\": \"PT7.4927993S\",\r\n \"trackingId\": \"5d2e6522-6f03-4c8b-8cab-85b0c4a7a8fc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/22921F90E69AEB5F\",\r\n \"operationId\": \"22921F90E69AEB5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:46:23.9332501Z\",\r\n \"duration\": \"PT10.670519S\",\r\n \"trackingId\": \"7263b064-ca42-44d0-825a-a1c0d1486550\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/22921F90E69AEB5F\",\r\n \"operationId\": \"22921F90E69AEB5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:03:23.0959742Z\",\r\n \"duration\": \"PT16.0272862S\",\r\n \"trackingId\": \"0f25e37e-7262-4076-9d09-d3d6c5e4dac4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14814" ], "x-ms-request-id": [ - "21fb7b3e-01c3-4017-b535-4320863c8d03" + "abd909a0-3c3a-42a4-a5e3-a01e070f8cac" ], "x-ms-correlation-request-id": [ - "21fb7b3e-01c3-4017-b535-4320863c8d03" + "abd909a0-3c3a-42a4-a5e3-a01e070f8cac" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104635Z:21fb7b3e-01c3-4017-b535-4320863c8d03" + "WESTEUROPE:20150713T120330Z:abd909a0-3c3a-42a4-a5e3-a01e070f8cac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,55 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:34 GMT" + "Mon, 13 Jul 2015 12:03:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzkwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/18494D92D3E5A133\",\r\n \"operationId\": \"18494D92D3E5A133\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:03:32.0968462Z\",\r\n \"duration\": \"PT8.9258355S\",\r\n \"trackingId\": \"6dd13001-682e-48ee-90d3-06125cbbd6c6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup/operations/22921F90E69AEB5F\",\r\n \"operationId\": \"22921F90E69AEB5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:03:23.0959742Z\",\r\n \"duration\": \"PT16.0272862S\",\r\n \"trackingId\": \"0f25e37e-7262-4076-9d09-d3d6c5e4dac4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1390" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-request-id": [ + "fe7099cd-9822-4c92-9851-dc854e84e6ab" + ], + "x-ms-correlation-request-id": [ + "fe7099cd-9822-4c92-9851-dc854e84e6ab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T120334Z:fe7099cd-9822-4c92-9851-dc854e84e6ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:03:34 GMT" ] }, "StatusCode": 200 @@ -825,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:46:09.7437789Z\",\r\n \"duration\": \"PT1.1240121S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:03:03.6714444Z\",\r\n \"duration\": \"PT1.2187541S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -840,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" + "14829" ], "x-ms-request-id": [ - "b7b515df-d83f-4357-958e-f1b3b87e5e87" + "2138a4b5-0925-4093-b282-cf4ba9a08c6f" ], "x-ms-correlation-request-id": [ - "b7b515df-d83f-4357-958e-f1b3b87e5e87" + "2138a4b5-0925-4093-b282-cf4ba9a08c6f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104611Z:b7b515df-d83f-4357-958e-f1b3b87e5e87" + "WESTEUROPE:20150713T120305Z:2138a4b5-0925-4093-b282-cf4ba9a08c6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:10 GMT" + "Mon, 13 Jul 2015 12:03:04 GMT" ] }, "StatusCode": 200 @@ -873,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:46:12.7393864Z\",\r\n \"duration\": \"PT4.1196196S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:03:05.1276385Z\",\r\n \"duration\": \"PT2.6749482S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14827" ], "x-ms-request-id": [ - "18fe10d9-23aa-47ed-ab24-e66284a1dca2" + "b388a813-248a-440e-93ed-b4a9cd155df5" ], "x-ms-correlation-request-id": [ - "18fe10d9-23aa-47ed-ab24-e66284a1dca2" + "b388a813-248a-440e-93ed-b4a9cd155df5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104614Z:18fe10d9-23aa-47ed-ab24-e66284a1dca2" + "WESTEUROPE:20150713T120308Z:b388a813-248a-440e-93ed-b4a9cd155df5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:13 GMT" + "Mon, 13 Jul 2015 12:03:07 GMT" ] }, "StatusCode": 200 @@ -921,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:46:12.7393864Z\",\r\n \"duration\": \"PT4.1196196S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:03:05.1276385Z\",\r\n \"duration\": \"PT2.6749482S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" + "14825" ], "x-ms-request-id": [ - "e0ef6e74-5f30-413e-bee0-d932d2ab6941" + "a711e902-2dd0-4b97-b04c-cbc7a3b902f2" ], "x-ms-correlation-request-id": [ - "e0ef6e74-5f30-413e-bee0-d932d2ab6941" + "a711e902-2dd0-4b97-b04c-cbc7a3b902f2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104617Z:e0ef6e74-5f30-413e-bee0-d932d2ab6941" + "WESTEUROPE:20150713T120312Z:a711e902-2dd0-4b97-b04c-cbc7a3b902f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:17 GMT" + "Mon, 13 Jul 2015 12:03:11 GMT" ] }, "StatusCode": 200 @@ -969,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:46:12.7393864Z\",\r\n \"duration\": \"PT4.1196196S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:03:05.1276385Z\",\r\n \"duration\": \"PT2.6749482S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14823" ], "x-ms-request-id": [ - "622d95a7-6f73-4919-a34c-e3febf1642a0" + "e3c41992-e243-4d23-80e7-7ed3c10e42fb" ], "x-ms-correlation-request-id": [ - "622d95a7-6f73-4919-a34c-e3febf1642a0" + "e3c41992-e243-4d23-80e7-7ed3c10e42fb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104620Z:622d95a7-6f73-4919-a34c-e3febf1642a0" + "WESTEUROPE:20150713T120315Z:e3c41992-e243-4d23-80e7-7ed3c10e42fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:20 GMT" + "Mon, 13 Jul 2015 12:03:14 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:46:12.7393864Z\",\r\n \"duration\": \"PT4.1196196S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:03:05.1276385Z\",\r\n \"duration\": \"PT2.6749482S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14821" ], "x-ms-request-id": [ - "bc02f396-bc64-48f3-b66e-fa8727bf0b91" + "f9a22138-450c-44d4-a37b-4d5925831a22" ], "x-ms-correlation-request-id": [ - "bc02f396-bc64-48f3-b66e-fa8727bf0b91" + "f9a22138-450c-44d4-a37b-4d5925831a22" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104623Z:bc02f396-bc64-48f3-b66e-fa8727bf0b91" + "WESTEUROPE:20150713T120318Z:f9a22138-450c-44d4-a37b-4d5925831a22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:23 GMT" + "Mon, 13 Jul 2015 12:03:17 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:46:12.7393864Z\",\r\n \"duration\": \"PT4.1196196S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:03:05.1276385Z\",\r\n \"duration\": \"PT2.6749482S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14819" ], "x-ms-request-id": [ - "b7635eac-83cb-4a14-b913-b7b7b91ccb8b" + "77c68f77-a8f5-4789-9b98-3fc5ce6fa4b3" ], "x-ms-correlation-request-id": [ - "b7635eac-83cb-4a14-b913-b7b7b91ccb8b" + "77c68f77-a8f5-4789-9b98-3fc5ce6fa4b3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104626Z:b7635eac-83cb-4a14-b913-b7b7b91ccb8b" + "WESTEUROPE:20150713T120321Z:77c68f77-a8f5-4789-9b98-3fc5ce6fa4b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:26 GMT" + "Mon, 13 Jul 2015 12:03:21 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:46:12.7393864Z\",\r\n \"duration\": \"PT4.1196196S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:03:05.1276385Z\",\r\n \"duration\": \"PT2.6749482S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14817" ], "x-ms-request-id": [ - "45d8e1a6-0017-4dd5-95fb-af078e36bd73" + "da344532-6675-4119-a209-7ee3cc87eedf" ], "x-ms-correlation-request-id": [ - "45d8e1a6-0017-4dd5-95fb-af078e36bd73" + "da344532-6675-4119-a209-7ee3cc87eedf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104629Z:45d8e1a6-0017-4dd5-95fb-af078e36bd73" + "WESTEUROPE:20150713T120324Z:da344532-6675-4119-a209-7ee3cc87eedf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:29 GMT" + "Mon, 13 Jul 2015 12:03:24 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1209,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:46:12.7393864Z\",\r\n \"duration\": \"PT4.1196196S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:03:05.1276385Z\",\r\n \"duration\": \"PT2.6749482S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14815" ], "x-ms-request-id": [ - "6c553d8e-090f-402b-b5fd-b8b67bf890ac" + "32ccea31-8277-4a37-b4d3-a461d41c72d8" ], "x-ms-correlation-request-id": [ - "6c553d8e-090f-402b-b5fd-b8b67bf890ac" + "32ccea31-8277-4a37-b4d3-a461d41c72d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104632Z:6c553d8e-090f-402b-b5fd-b8b67bf890ac" + "WESTEUROPE:20150713T120328Z:32ccea31-8277-4a37-b4d3-a461d41c72d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:32 GMT" + "Mon, 13 Jul 2015 12:03:27 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1257,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:46:33.5357021Z\",\r\n \"duration\": \"PT24.9159353S\",\r\n \"correlationId\": \"48912c10-6bc9-4368-9a15-9c1f49d56180\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:03:05.1276385Z\",\r\n \"duration\": \"PT2.6749482S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1272,64 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14813" + ], + "x-ms-request-id": [ + "19d20f01-f6a8-4745-9014-b2e2a8a9dc0c" + ], + "x-ms-correlation-request-id": [ + "19d20f01-f6a8-4745-9014-b2e2a8a9dc0c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T120331Z:19d20f01-f6a8-4745-9014-b2e2a8a9dc0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:03:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzkwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db901\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server901\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:03:33.2981163Z\",\r\n \"duration\": \"PT30.845426S\",\r\n \"correlationId\": \"34e872ae-3047-436d-84bb-133b4156f1c1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server901/sql-audit-cmdlet-db901\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server901\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1821" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" ], "x-ms-request-id": [ - "3b27eeff-172c-40e8-b089-f8e3a4c7d7fb" + "7bac5686-c983-4aeb-980c-3616e3b8628b" ], "x-ms-correlation-request-id": [ - "3b27eeff-172c-40e8-b089-f8e3a4c7d7fb" + "7bac5686-c983-4aeb-980c-3616e3b8628b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104635Z:3b27eeff-172c-40e8-b089-f8e3a4c7d7fb" + "WESTEUROPE:20150713T120334Z:7bac5686-c983-4aeb-980c-3616e3b8628b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1338,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:35 GMT" + "Mon, 13 Jul 2015 12:03:34 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14810" ], "x-ms-request-id": [ - "3d1a45bc-c734-4a22-9553-070346ecb380" + "7528dbe1-cb68-4f27-a08f-d9a32474ae1e" ], "x-ms-correlation-request-id": [ - "3d1a45bc-c734-4a22-9553-070346ecb380" + "7528dbe1-cb68-4f27-a08f-d9a32474ae1e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104637Z:3d1a45bc-c734-4a22-9553-070346ecb380" + "WESTEUROPE:20150713T120336Z:7528dbe1-cb68-4f27-a08f-d9a32474ae1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:37 GMT" + "Mon, 13 Jul 2015 12:03:36 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1419,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:c093afeb-57f0-4fe2-8ff2-2f88b063ca6a" + "westeurope:9a562a6e-72d7-4308-80f2-63e1ee837b2d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14838" ], "x-ms-correlation-request-id": [ - "bd4dfe36-8646-4a71-8712-e1885ee517ac" + "1e547286-1830-4c24-845e-4ecba7fbf0f5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104638Z:bd4dfe36-8646-4a71-8712-e1885ee517ac" + "WESTEUROPE:20150713T120337Z:1e547286-1830-4c24-845e-4ecba7fbf0f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1437,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:38 GMT" + "Mon, 13 Jul 2015 12:03:37 GMT" ] }, "StatusCode": 200 @@ -1356,7 +1452,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "91dd7f88-9406-45f9-8006-3d90e7966512" + "111f2521-64c3-4228-b4d3-68049efd88b7" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets901\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver90Sqlauditcmdletdb901\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1368,7 +1464,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6c851eeb-2246-4fde-b5b1-d9878b4ae0eb" + "a715471d-b1d8-417f-906b-e0833f8a13c5" ], "X-Content-Type-Options": [ "nosniff" @@ -1377,13 +1473,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14818" ], "x-ms-correlation-request-id": [ - "b77089d2-c59f-4571-b9f7-940186494ce2" + "e810f0b6-6ce4-443f-b93a-71f293c8f292" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104640Z:b77089d2-c59f-4571-b9f7-940186494ce2" + "WESTEUROPE:20150713T120339Z:e810f0b6-6ce4-443f-b93a-71f293c8f292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1488,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:40 GMT" + "Mon, 13 Jul 2015 12:03:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,7 +1506,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f0945f97-c9c8-4aa8-8fd8-579bb16bfe13" + "7ab220f1-6b48-4481-ac63-59f62cf99879" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets901\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver90Sqlauditcmdletdb901\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets901.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1422,7 +1518,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f53aff81-d92f-4621-b18b-894da752747a" + "1fd484c5-4a66-424b-9737-42596ffaf6bd" ], "X-Content-Type-Options": [ "nosniff" @@ -1431,13 +1527,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" + "14816" ], "x-ms-correlation-request-id": [ - "745c3888-f5fa-4c1a-a9eb-68d478a36c3f" + "98d7da1d-cc32-4ec0-925f-b51605e6700f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104646Z:745c3888-f5fa-4c1a-a9eb-68d478a36c3f" + "WESTEUROPE:20150713T120346Z:98d7da1d-cc32-4ec0-925f-b51605e6700f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,7 +1542,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:46 GMT" + "Mon, 13 Jul 2015 12:03:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1464,7 +1560,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "83fe835a-ab8c-4eed-934f-4aa0f66e2884" + "a7e4bc3b-e04f-4879-bad8-e0760b9d41e6" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets901\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver90Sqlauditcmdletdb901\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1476,7 +1572,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "7f785c0e-ee38-4f59-94f6-5b39faa61d31" + "b8c52a3a-e773-4d46-9d01-e535df0d6230" ], "X-Content-Type-Options": [ "nosniff" @@ -1485,13 +1581,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14814" ], "x-ms-correlation-request-id": [ - "49fce990-a3ad-417a-9b2d-4c7c599cbbdb" + "cc6defa8-8bdf-4fbb-9543-9af2f7c14155" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104651Z:49fce990-a3ad-417a-9b2d-4c7c599cbbdb" + "WESTEUROPE:20150713T120350Z:cc6defa8-8bdf-4fbb-9543-9af2f7c14155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1596,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:51 GMT" + "Mon, 13 Jul 2015 12:03:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1518,10 +1614,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "91dd7f88-9406-45f9-8006-3d90e7966512" + "111f2521-64c3-4228-b4d3-68049efd88b7" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"name\": \"sql-audit-cmdlet-db901\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"c46a5eb9-7378-4df7-a6ed-b89e311a342a\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:46:30.373Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T11:16:30.373Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"name\": \"sql-audit-cmdlet-db901\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9a529099-f37a-497a-a8cf-0c0626f5679f\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T12:03:29.077Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:33:29.077Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1530,7 +1626,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "21ac2327-d5eb-48d0-a122-f3022efc0168" + "891b0433-d699-4547-b243-3e4b9a08b74f" ], "X-Content-Type-Options": [ "nosniff" @@ -1539,13 +1635,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14817" ], "x-ms-correlation-request-id": [ - "bbcd139d-73ea-4e33-b3f7-9459cd913b77" + "adef47d5-5e31-4bb4-ae1e-86f96e00c8a4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104642Z:bbcd139d-73ea-4e33-b3f7-9459cd913b77" + "WESTEUROPE:20150713T120340Z:adef47d5-5e31-4bb4-ae1e-86f96e00c8a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +1650,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:41 GMT" + "Mon, 13 Jul 2015 12:03:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1572,10 +1668,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f0945f97-c9c8-4aa8-8fd8-579bb16bfe13" + "7ab220f1-6b48-4481-ac63-59f62cf99879" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"name\": \"sql-audit-cmdlet-db901\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"c46a5eb9-7378-4df7-a6ed-b89e311a342a\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T10:46:30.373Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T11:16:30.373Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901\",\r\n \"name\": \"sql-audit-cmdlet-db901\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9a529099-f37a-497a-a8cf-0c0626f5679f\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T12:03:29.077Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:33:29.077Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "815" @@ -1584,7 +1680,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e6e6d899-aa12-46d3-8a1a-24fa844e6007" + "21530a1d-3c17-4008-8907-d2b5f7a5c5f7" ], "X-Content-Type-Options": [ "nosniff" @@ -1593,13 +1689,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "14815" ], "x-ms-correlation-request-id": [ - "befecc30-ae21-4b44-8db4-f35d8edc9b9b" + "2c5567a5-7c85-4abe-8af8-dd2b31eb0ffe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104648Z:befecc30-ae21-4b44-8db4-f35d8edc9b9b" + "WESTEUROPE:20150713T120347Z:2c5567a5-7c85-4abe-8af8-dd2b31eb0ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1704,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:48 GMT" + "Mon, 13 Jul 2015 12:03:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1626,10 +1722,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets901\",\r\n \"name\": \"auditcmdlets901\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets901\",\r\n \"name\": \"auditcmdlets901\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1641,16 +1737,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14809" ], "x-ms-request-id": [ - "bc846569-4cd7-4758-b61b-d2f9f3eb3aa3" + "d18f599e-5f96-493d-a892-03bc7544e0fe" ], "x-ms-correlation-request-id": [ - "bc846569-4cd7-4758-b61b-d2f9f3eb3aa3" + "d18f599e-5f96-493d-a892-03bc7544e0fe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104642Z:bc846569-4cd7-4758-b61b-d2f9f3eb3aa3" + "WESTEUROPE:20150713T120340Z:d18f599e-5f96-493d-a892-03bc7544e0fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1659,7 +1755,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:41 GMT" + "Mon, 13 Jul 2015 12:03:40 GMT" ] }, "StatusCode": 200 @@ -1677,7 +1773,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets901\r\n auditcmdlets901\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets901.blob.core.windows.net/\r\n https://auditcmdlets901.queue.core.windows.net/\r\n https://auditcmdlets901.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:45:04Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets901\r\n auditcmdlets901\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets901.blob.core.windows.net/\r\n https://auditcmdlets901.queue.core.windows.net/\r\n https://auditcmdlets901.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:01:55Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1689,13 +1785,13 @@ "ussouth3" ], "x-ms-request-id": [ - "f458348cd154b4d9957fe57abdfb686a" + "d22b9600b474cc299b21967093ffe841" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:43 GMT" + "Mon, 13 Jul 2015 12:03:40 GMT" ], "Server": [ "1.0.6198.243", @@ -1718,7 +1814,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"4ef4WIa9hTEdyl0MNnvo8IapoNzjxa5Dvq1ZtnUIXARKzmWxQnIzHL8grA1Z8kWj9XeBlZKi3BwJB8sCStQtCw==\",\r\n \"secondaryKey\": \"8UbBlM6fbPV4Nbpq3BrDZr6363dO15A4vCOJJbVEdRS7/5Cwklknzrr/CxfiXLmewwImqUY96KpO4JawJbv45Q==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"6JNUysb8m30RgHoi+ZgFT071jVdQrigKflMlzfMQ6MiT+zmVNzusqCHjwhKW44xQkz69G7mVMCKYKNT6CJ5htw==\",\r\n \"secondaryKey\": \"E2RUEJtTT9w7HJui+FP2UT/1jyAmoF84MzM+2kKYcM2y9STCOB3L0/vecVoO4q2omkvCR29oopuxzddv0dzonA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1736,16 +1832,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:46f2707a-8ff8-4c06-b524-b0dece9d3814" + "southcentralus:c73ad565-c9ec-464d-aeb1-b61f5703773f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1192" ], "x-ms-correlation-request-id": [ - "c0c2b5f3-c811-4037-bd87-c2daec74c2c0" + "4b7b359c-02e5-4f9e-a3ba-3678d50253bb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104643Z:c0c2b5f3-c811-4037-bd87-c2daec74c2c0" + "WESTEUROPE:20150713T120343Z:4b7b359c-02e5-4f9e-a3ba-3678d50253bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1754,7 +1850,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:43 GMT" + "Mon, 13 Jul 2015 12:03:42 GMT" ] }, "StatusCode": 200 @@ -1763,7 +1859,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzkwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyOTAxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiOTAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets901\",\r\n \"storageAccountKey\": \"4ef4WIa9hTEdyl0MNnvo8IapoNzjxa5Dvq1ZtnUIXARKzmWxQnIzHL8grA1Z8kWj9XeBlZKi3BwJB8sCStQtCw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets901.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver90Sqlauditcmdletdb901\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets901\",\r\n \"storageAccountKey\": \"6JNUysb8m30RgHoi+ZgFT071jVdQrigKflMlzfMQ6MiT+zmVNzusqCHjwhKW44xQkz69G7mVMCKYKNT6CJ5htw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets901.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver90Sqlauditcmdletdb901\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1775,10 +1871,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "91dd7f88-9406-45f9-8006-3d90e7966512" + "111f2521-64c3-4228-b4d3-68049efd88b7" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets901\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver90Sqlauditcmdletdb901\",\r\n \"storageAccountKey\": \"4ef4WIa9hTEdyl0MNnvo8IapoNzjxa5Dvq1ZtnUIXARKzmWxQnIzHL8grA1Z8kWj9XeBlZKi3BwJB8sCStQtCw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets901.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets901\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver90Sqlauditcmdletdb901\",\r\n \"storageAccountKey\": \"6JNUysb8m30RgHoi+ZgFT071jVdQrigKflMlzfMQ6MiT+zmVNzusqCHjwhKW44xQkz69G7mVMCKYKNT6CJ5htw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets901.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "876" @@ -1787,7 +1883,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1700c9e8-0f8f-49e8-941a-455f9c275813" + "8031881b-6d60-4edf-95c5-9d959e15f591" ], "X-Content-Type-Options": [ "nosniff" @@ -1799,13 +1895,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "2ba7a1a8-e87b-4d1e-bc2d-1ad6ec370c49" + "9c51817d-b278-4517-9bce-19b4e2dd2828" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104645Z:2ba7a1a8-e87b-4d1e-bc2d-1ad6ec370c49" + "WESTEUROPE:20150713T120345Z:9c51817d-b278-4517-9bce-19b4e2dd2828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1814,7 +1910,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:45 GMT" + "Mon, 13 Jul 2015 12:03:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1838,7 +1934,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f0945f97-c9c8-4aa8-8fd8-579bb16bfe13" + "7ab220f1-6b48-4481-ac63-59f62cf99879" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg901/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server901/databases/sql-audit-cmdlet-db901/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets901\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver90Sqlauditcmdletdb901\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1850,7 +1946,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fb75cf1d-912d-41bd-84b1-e5b08b0ee08d" + "88425c6f-fe8a-4a5a-9288-a6e8c4b302a6" ], "X-Content-Type-Options": [ "nosniff" @@ -1862,13 +1958,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1190" ], "x-ms-correlation-request-id": [ - "06e9d95b-14c0-46f6-aa9f-0f488cdaf049" + "0b967919-12c7-4093-99d4-f22ddc7c8e75" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104649Z:06e9d95b-14c0-46f6-aa9f-0f488cdaf049" + "WESTEUROPE:20150713T120349Z:0b967919-12c7-4093-99d4-f22ddc7c8e75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1877,7 +1973,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:49 GMT" + "Mon, 13 Jul 2015 12:03:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1907,13 +2003,13 @@ "ussouth3" ], "x-ms-request-id": [ - "583c1ef6ee51b6b9882db8efe199360c" + "e714fe029be7c1aeb8ba5e75ef15021c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:56 GMT" + "Mon, 13 Jul 2015 12:03:53 GMT" ], "Server": [ "1.0.6198.243", @@ -1924,8 +2020,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/583c1ef6ee51b6b9882db8efe199360c", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzU4M2MxZWY2ZWU1MWI2Yjk4ODJkYjhlZmUxOTkzNjBj", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/e714fe029be7c1aeb8ba5e75ef15021c", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2U3MTRmZTAyOWJlN2MxYWViOGJhNWU3NWVmMTUwMjFj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1936,7 +2032,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 583c1ef6-ee51-b6b9-882d-b8efe199360c\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n e714fe02-9be7-c1ae-b8ba-5e75ef15021c\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1948,13 +2044,13 @@ "ussouth3" ], "x-ms-request-id": [ - "37d79ff0842bb26f85b0384a74023dfb" + "8396a0b1d621c06590c81a67e44c1421" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:46:57 GMT" + "Mon, 13 Jul 2015 12:03:55 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDisableServerAuditing.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDisableServerAuditing.json index fd3e6c6e8e5f..e2f0befe0b05 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDisableServerAuditing.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestDisableServerAuditing.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "99d49861edf2b0cd98d9997a62259687" + "f9812e2ce0e2c9aeaab24354316a161b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:48:33 GMT" + "Mon, 13 Jul 2015 12:14:18 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets111" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/99d49861edf2b0cd98d9997a62259687", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzk5ZDQ5ODYxZWRmMmIwY2Q5OGQ5OTk3YTYyMjU5Njg3", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f9812e2ce0e2c9aeaab24354316a161b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y5ODEyZTJjZTBlMmM5YWVhYWIyNDM1NDMxNmExNjFi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 99d49861-edf2-b0cd-98d9-997a62259687\r\n InProgress\r\n", + "ResponseBody": "\r\n f9812e2c-e0e2-c9ae-aab2-4354316a161b\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "79c7eeb9fc4abd2ba6cb9ff1ec2d5038" + "98872ab500e6c9ae80bf1fabe3fd3f39" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:48:33 GMT" + "Mon, 13 Jul 2015 12:14:18 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/99d49861edf2b0cd98d9997a62259687", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzk5ZDQ5ODYxZWRmMmIwY2Q5OGQ5OTk3YTYyMjU5Njg3", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f9812e2ce0e2c9aeaab24354316a161b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y5ODEyZTJjZTBlMmM5YWVhYWIyNDM1NDMxNmExNjFi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 99d49861-edf2-b0cd-98d9-997a62259687\r\n InProgress\r\n", + "ResponseBody": "\r\n f9812e2c-e0e2-c9ae-aab2-4354316a161b\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "04443991a496b867bcc395a6cc275292" + "c83b65407087cca791a367aef412c18c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:04 GMT" + "Mon, 13 Jul 2015 12:14:49 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/99d49861edf2b0cd98d9997a62259687", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzk5ZDQ5ODYxZWRmMmIwY2Q5OGQ5OTk3YTYyMjU5Njg3", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f9812e2ce0e2c9aeaab24354316a161b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Y5ODEyZTJjZTBlMmM5YWVhYWIyNDM1NDMxNmExNjFi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 99d49861-edf2-b0cd-98d9-997a62259687\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n f9812e2c-e0e2-c9ae-aab2-4354316a161b\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "882727752c12bf4496df7e8bd8b952e3" + "5ab73d1f1702c5fdb9e30784f86436b4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:34 GMT" + "Mon, 13 Jul 2015 12:15:20 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "14979" ], "x-ms-request-id": [ - "eb3dd16b-2b8c-4e72-a361-5d8f658bc52d" + "e3ce0033-7c72-4926-8845-7b93e4a21c27" ], "x-ms-correlation-request-id": [ - "eb3dd16b-2b8c-4e72-a361-5d8f658bc52d" + "e3ce0033-7c72-4926-8845-7b93e4a21c27" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104934Z:eb3dd16b-2b8c-4e72-a361-5d8f658bc52d" + "NORTHEUROPE:20150713T121521Z:e3ce0033-7c72-4926-8845-7b93e4a21c27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:34 GMT" + "Mon, 13 Jul 2015 12:15:20 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-request-id": [ - "bb5ac5ed-d193-4c60-bb16-f9aaa88d1b04" + "5cca1baf-03ff-404b-8b4d-12363eea881f" ], "x-ms-correlation-request-id": [ - "bb5ac5ed-d193-4c60-bb16-f9aaa88d1b04" + "5cca1baf-03ff-404b-8b4d-12363eea881f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104936Z:bb5ac5ed-d193-4c60-bb16-f9aaa88d1b04" + "NORTHEUROPE:20150713T121523Z:5cca1baf-03ff-404b-8b4d-12363eea881f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:36 GMT" + "Mon, 13 Jul 2015 12:15:23 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:49:37.5016282Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"a9b4d37f-9d75-491f-aa2f-4e2246918310\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:15:24.6242306Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"86c4a0c0-16fe-4fe4-a095-1f8b2951f80a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "a9b4d37f-9d75-491f-aa2f-4e2246918310" + "86c4a0c0-16fe-4fe4-a095-1f8b2951f80a" ], "x-ms-correlation-request-id": [ - "a9b4d37f-9d75-491f-aa2f-4e2246918310" + "86c4a0c0-16fe-4fe4-a095-1f8b2951f80a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104937Z:a9b4d37f-9d75-491f-aa2f-4e2246918310" + "NORTHEUROPE:20150713T121524Z:86c4a0c0-16fe-4fe4-a095-1f8b2951f80a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:36 GMT" + "Mon, 13 Jul 2015 12:15:24 GMT" ] }, "StatusCode": 200 @@ -345,10 +345,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:49:39.386448Z\",\r\n \"duration\": \"PT1.1222435S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:15:27.1371389Z\",\r\n \"duration\": \"PT1.5098778S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "388890f8-217a-4fd0-8960-7b1b02ba4cc4" + "70119ba9-21ea-4b4b-801b-b567241b3c9f" ], "x-ms-correlation-request-id": [ - "388890f8-217a-4fd0-8960-7b1b02ba4cc4" + "70119ba9-21ea-4b4b-801b-b567241b3c9f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104939Z:388890f8-217a-4fd0-8960-7b1b02ba4cc4" + "NORTHEUROPE:20150713T121527Z:70119ba9-21ea-4b4b-801b-b567241b3c9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:39 GMT" + "Mon, 13 Jul 2015 12:15:26 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "14978" ], "x-ms-request-id": [ - "e4fed2d8-74a8-4d2d-88fd-5b9697d7b5b7" + "dfcbfe9f-6f5d-4453-ad9e-bb155805c4ea" ], "x-ms-correlation-request-id": [ - "e4fed2d8-74a8-4d2d-88fd-5b9697d7b5b7" + "dfcbfe9f-6f5d-4453-ad9e-bb155805c4ea" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104940Z:e4fed2d8-74a8-4d2d-88fd-5b9697d7b5b7" + "NORTHEUROPE:20150713T121528Z:dfcbfe9f-6f5d-4453-ad9e-bb155805c4ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:39 GMT" + "Mon, 13 Jul 2015 12:15:27 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14976" ], "x-ms-request-id": [ - "02f1d46d-06fe-44a3-9b51-5b0500365105" + "9048b55c-4807-490b-8bdd-39428d07921c" ], "x-ms-correlation-request-id": [ - "02f1d46d-06fe-44a3-9b51-5b0500365105" + "9048b55c-4807-490b-8bdd-39428d07921c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104943Z:02f1d46d-06fe-44a3-9b51-5b0500365105" + "NORTHEUROPE:20150713T121531Z:9048b55c-4807-490b-8bdd-39428d07921c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:42 GMT" + "Mon, 13 Jul 2015 12:15:31 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14974" ], "x-ms-request-id": [ - "c9310a5d-0f63-4252-b525-c3cf1227fd5d" + "555a0bf8-3de6-4cef-846d-53c298d5e5b2" ], "x-ms-correlation-request-id": [ - "c9310a5d-0f63-4252-b525-c3cf1227fd5d" + "555a0bf8-3de6-4cef-846d-53c298d5e5b2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104946Z:c9310a5d-0f63-4252-b525-c3cf1227fd5d" + "NORTHEUROPE:20150713T121534Z:555a0bf8-3de6-4cef-846d-53c298d5e5b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:45 GMT" + "Mon, 13 Jul 2015 12:15:34 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "14972" ], "x-ms-request-id": [ - "8ec5cdff-efb1-4100-a312-b6d630bc3447" + "1b43bc1a-3eb7-4054-9c8f-a59c67d0fc67" ], "x-ms-correlation-request-id": [ - "8ec5cdff-efb1-4100-a312-b6d630bc3447" + "1b43bc1a-3eb7-4054-9c8f-a59c67d0fc67" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104949Z:8ec5cdff-efb1-4100-a312-b6d630bc3447" + "NORTHEUROPE:20150713T121537Z:1b43bc1a-3eb7-4054-9c8f-a59c67d0fc67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:48 GMT" + "Mon, 13 Jul 2015 12:15:36 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "14970" ], "x-ms-request-id": [ - "fe9f24d2-6c2c-4acd-b86e-31a3f101a72e" + "a3c04f02-0bdf-481d-a9fe-5677cccdcf71" ], "x-ms-correlation-request-id": [ - "fe9f24d2-6c2c-4acd-b86e-31a3f101a72e" + "a3c04f02-0bdf-481d-a9fe-5677cccdcf71" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104952Z:fe9f24d2-6c2c-4acd-b86e-31a3f101a72e" + "NORTHEUROPE:20150713T121540Z:a3c04f02-0bdf-481d-a9fe-5677cccdcf71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:51 GMT" + "Mon, 13 Jul 2015 12:15:40 GMT" ] }, "StatusCode": 200 @@ -633,7 +633,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:49:53.6035327Z\",\r\n \"duration\": \"PT12.0191269S\",\r\n \"trackingId\": \"bf5a7fee-5899-46ec-b66b-17c6bb107033\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:15:41.3872408Z\",\r\n \"duration\": \"PT13.0049814S\",\r\n \"trackingId\": \"0815fde6-fc5c-47a9-a9db-6d828f4dcb98\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14968" ], "x-ms-request-id": [ - "3211d9aa-d664-431f-be2c-d3540e317fac" + "811b7393-e00a-4455-bea9-3cf5c35823ea" ], "x-ms-correlation-request-id": [ - "3211d9aa-d664-431f-be2c-d3540e317fac" + "811b7393-e00a-4455-bea9-3cf5c35823ea" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104955Z:3211d9aa-d664-431f-be2c-d3540e317fac" + "NORTHEUROPE:20150713T121543Z:811b7393-e00a-4455-bea9-3cf5c35823ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:54 GMT" + "Mon, 13 Jul 2015 12:15:43 GMT" ] }, "StatusCode": 200 @@ -681,7 +681,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:49:53.6035327Z\",\r\n \"duration\": \"PT12.0191269S\",\r\n \"trackingId\": \"bf5a7fee-5899-46ec-b66b-17c6bb107033\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:15:41.3872408Z\",\r\n \"duration\": \"PT13.0049814S\",\r\n \"trackingId\": \"0815fde6-fc5c-47a9-a9db-6d828f4dcb98\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14966" ], "x-ms-request-id": [ - "ee02af33-cc89-4b88-bd49-ad2784954cfc" + "3765c0bb-0108-410f-9f76-a2dba8aebfb7" ], "x-ms-correlation-request-id": [ - "ee02af33-cc89-4b88-bd49-ad2784954cfc" + "3765c0bb-0108-410f-9f76-a2dba8aebfb7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104958Z:ee02af33-cc89-4b88-bd49-ad2784954cfc" + "NORTHEUROPE:20150713T121546Z:3765c0bb-0108-410f-9f76-a2dba8aebfb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:57 GMT" + "Mon, 13 Jul 2015 12:15:45 GMT" ] }, "StatusCode": 200 @@ -729,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:49:53.6035327Z\",\r\n \"duration\": \"PT12.0191269S\",\r\n \"trackingId\": \"bf5a7fee-5899-46ec-b66b-17c6bb107033\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:15:41.3872408Z\",\r\n \"duration\": \"PT13.0049814S\",\r\n \"trackingId\": \"0815fde6-fc5c-47a9-a9db-6d828f4dcb98\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14964" ], "x-ms-request-id": [ - "f52798dd-859d-48eb-9ca7-fe3382595541" + "bbc5ff45-dfd1-4afa-8f37-b48df5fdc684" ], "x-ms-correlation-request-id": [ - "f52798dd-859d-48eb-9ca7-fe3382595541" + "bbc5ff45-dfd1-4afa-8f37-b48df5fdc684" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105001Z:f52798dd-859d-48eb-9ca7-fe3382595541" + "NORTHEUROPE:20150713T121549Z:bbc5ff45-dfd1-4afa-8f37-b48df5fdc684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:00 GMT" + "Mon, 13 Jul 2015 12:15:48 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/7DE63A476CAF8C90\",\r\n \"operationId\": \"7DE63A476CAF8C90\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:50:02.5406406Z\",\r\n \"duration\": \"PT8.8684711S\",\r\n \"trackingId\": \"72c8bcf7-f59e-4933-9266-852a5eb694b9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:49:53.6035327Z\",\r\n \"duration\": \"PT12.0191269S\",\r\n \"trackingId\": \"bf5a7fee-5899-46ec-b66b-17c6bb107033\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:15:41.3872408Z\",\r\n \"duration\": \"PT13.0049814S\",\r\n \"trackingId\": \"0815fde6-fc5c-47a9-a9db-6d828f4dcb98\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14962" ], "x-ms-request-id": [ - "c23ce79e-26d4-4f31-9296-b6b64594f334" + "0afcc0b4-d0de-4201-aff6-d0dff57685c7" ], "x-ms-correlation-request-id": [ - "c23ce79e-26d4-4f31-9296-b6b64594f334" + "0afcc0b4-d0de-4201-aff6-d0dff57685c7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105004Z:c23ce79e-26d4-4f31-9296-b6b64594f334" + "NORTHEUROPE:20150713T121552Z:0afcc0b4-d0de-4201-aff6-d0dff57685c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:03 GMT" + "Mon, 13 Jul 2015 12:15:51 GMT" ] }, "StatusCode": 200 @@ -825,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/7DE63A476CAF8C90\",\r\n \"operationId\": \"7DE63A476CAF8C90\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:50:02.5406406Z\",\r\n \"duration\": \"PT8.8684711S\",\r\n \"trackingId\": \"72c8bcf7-f59e-4933-9266-852a5eb694b9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:49:53.6035327Z\",\r\n \"duration\": \"PT12.0191269S\",\r\n \"trackingId\": \"bf5a7fee-5899-46ec-b66b-17c6bb107033\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/7DE63A476CAF8C90\",\r\n \"operationId\": \"7DE63A476CAF8C90\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:15:52.1839365Z\",\r\n \"duration\": \"PT10.0291189S\",\r\n \"trackingId\": \"f2f1f660-6ec9-4b0f-be76-408bf73bf309\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup/operations/2BBF7A4A4AF5C0C8\",\r\n \"operationId\": \"2BBF7A4A4AF5C0C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:15:41.3872408Z\",\r\n \"duration\": \"PT13.0049814S\",\r\n \"trackingId\": \"0815fde6-fc5c-47a9-a9db-6d828f4dcb98\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14960" ], "x-ms-request-id": [ - "6e6272dd-2e3f-44bb-88fb-3d16006d9516" + "95ab55e9-145d-46bd-afb2-cd8beea18567" ], "x-ms-correlation-request-id": [ - "6e6272dd-2e3f-44bb-88fb-3d16006d9516" + "95ab55e9-145d-46bd-afb2-cd8beea18567" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105007Z:6e6272dd-2e3f-44bb-88fb-3d16006d9516" + "NORTHEUROPE:20150713T121555Z:95ab55e9-145d-46bd-afb2-cd8beea18567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:06 GMT" + "Mon, 13 Jul 2015 12:15:55 GMT" ] }, "StatusCode": 200 @@ -873,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:49:39.386448Z\",\r\n \"duration\": \"PT1.1222435S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" + "14977" ], "x-ms-request-id": [ - "3119c41a-11a2-4353-ba09-9788cd8e6476" + "0d41bbc2-512b-46dd-8b74-9cc9f001aa96" ], "x-ms-correlation-request-id": [ - "3119c41a-11a2-4353-ba09-9788cd8e6476" + "0d41bbc2-512b-46dd-8b74-9cc9f001aa96" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104940Z:3119c41a-11a2-4353-ba09-9788cd8e6476" + "NORTHEUROPE:20150713T121528Z:0d41bbc2-512b-46dd-8b74-9cc9f001aa96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:40 GMT" + "Mon, 13 Jul 2015 12:15:27 GMT" ] }, "StatusCode": 200 @@ -921,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:49:41.1236808Z\",\r\n \"duration\": \"PT2.8594763S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14975" ], "x-ms-request-id": [ - "23113219-8170-4075-97ef-2cff53bfee62" + "3ffdd9df-9458-46c0-b3a6-51be5a1ee685" ], "x-ms-correlation-request-id": [ - "23113219-8170-4075-97ef-2cff53bfee62" + "3ffdd9df-9458-46c0-b3a6-51be5a1ee685" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104943Z:23113219-8170-4075-97ef-2cff53bfee62" + "NORTHEUROPE:20150713T121531Z:3ffdd9df-9458-46c0-b3a6-51be5a1ee685" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:43 GMT" + "Mon, 13 Jul 2015 12:15:31 GMT" ] }, "StatusCode": 200 @@ -969,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:49:41.1236808Z\",\r\n \"duration\": \"PT2.8594763S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" + "14973" ], "x-ms-request-id": [ - "4c71e9de-e80d-4985-a83c-e465b1134010" + "efe94a46-4259-487f-a58f-b5b73bc82f11" ], "x-ms-correlation-request-id": [ - "4c71e9de-e80d-4985-a83c-e465b1134010" + "efe94a46-4259-487f-a58f-b5b73bc82f11" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104946Z:4c71e9de-e80d-4985-a83c-e465b1134010" + "NORTHEUROPE:20150713T121534Z:efe94a46-4259-487f-a58f-b5b73bc82f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:46 GMT" + "Mon, 13 Jul 2015 12:15:34 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:49:41.1236808Z\",\r\n \"duration\": \"PT2.8594763S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14971" ], "x-ms-request-id": [ - "47e8a97d-2a0a-4d46-878b-8968fbad2235" + "d95de241-032d-4334-9a39-9ad4795727dc" ], "x-ms-correlation-request-id": [ - "47e8a97d-2a0a-4d46-878b-8968fbad2235" + "d95de241-032d-4334-9a39-9ad4795727dc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104949Z:47e8a97d-2a0a-4d46-878b-8968fbad2235" + "NORTHEUROPE:20150713T121537Z:d95de241-032d-4334-9a39-9ad4795727dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:49 GMT" + "Mon, 13 Jul 2015 12:15:37 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:49:41.1236808Z\",\r\n \"duration\": \"PT2.8594763S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "14969" ], "x-ms-request-id": [ - "82303afa-bb73-46bf-bd7c-7f422cad2760" + "3f7fce53-e872-4f8b-ba6a-e9a4c85e1aa3" ], "x-ms-correlation-request-id": [ - "82303afa-bb73-46bf-bd7c-7f422cad2760" + "3f7fce53-e872-4f8b-ba6a-e9a4c85e1aa3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104952Z:82303afa-bb73-46bf-bd7c-7f422cad2760" + "NORTHEUROPE:20150713T121540Z:3f7fce53-e872-4f8b-ba6a-e9a4c85e1aa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:52 GMT" + "Mon, 13 Jul 2015 12:15:40 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:49:41.1236808Z\",\r\n \"duration\": \"PT2.8594763S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14967" ], "x-ms-request-id": [ - "5934bad7-e388-4b55-ac9d-7e31e64f117c" + "48e80f75-c10d-4b4f-b2f0-f7ed34e02898" ], "x-ms-correlation-request-id": [ - "5934bad7-e388-4b55-ac9d-7e31e64f117c" + "48e80f75-c10d-4b4f-b2f0-f7ed34e02898" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104955Z:5934bad7-e388-4b55-ac9d-7e31e64f117c" + "NORTHEUROPE:20150713T121543Z:48e80f75-c10d-4b4f-b2f0-f7ed34e02898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:55 GMT" + "Mon, 13 Jul 2015 12:15:43 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:49:41.1236808Z\",\r\n \"duration\": \"PT2.8594763S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14965" ], "x-ms-request-id": [ - "0040ebdd-e424-47b5-bdea-dfe2497f0208" + "a62bb7c3-84a9-485d-ace3-b1e3cf2f71a0" ], "x-ms-correlation-request-id": [ - "0040ebdd-e424-47b5-bdea-dfe2497f0208" + "a62bb7c3-84a9-485d-ace3-b1e3cf2f71a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T104958Z:0040ebdd-e424-47b5-bdea-dfe2497f0208" + "NORTHEUROPE:20150713T121546Z:a62bb7c3-84a9-485d-ace3-b1e3cf2f71a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:49:58 GMT" + "Mon, 13 Jul 2015 12:15:45 GMT" ] }, "StatusCode": 200 @@ -1209,7 +1209,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:49:41.1236808Z\",\r\n \"duration\": \"PT2.8594763S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1224,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14963" ], "x-ms-request-id": [ - "349ded27-fc05-4d2c-9566-01d440aec31d" + "675841e8-f4d5-4846-a4ae-344ec1f853ca" ], "x-ms-correlation-request-id": [ - "349ded27-fc05-4d2c-9566-01d440aec31d" + "675841e8-f4d5-4846-a4ae-344ec1f853ca" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105001Z:349ded27-fc05-4d2c-9566-01d440aec31d" + "NORTHEUROPE:20150713T121549Z:675841e8-f4d5-4846-a4ae-344ec1f853ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:01 GMT" + "Mon, 13 Jul 2015 12:15:49 GMT" ] }, "StatusCode": 200 @@ -1257,7 +1257,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:49:41.1236808Z\",\r\n \"duration\": \"PT2.8594763S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:15:27.9052798Z\",\r\n \"duration\": \"PT2.2780187S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1272,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14961" ], "x-ms-request-id": [ - "9d7d4693-3407-4f12-99fd-75a57f471d63" + "62d2df3f-334e-4409-83b3-7e618c8d7740" ], "x-ms-correlation-request-id": [ - "9d7d4693-3407-4f12-99fd-75a57f471d63" + "62d2df3f-334e-4409-83b3-7e618c8d7740" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105004Z:9d7d4693-3407-4f12-99fd-75a57f471d63" + "NORTHEUROPE:20150713T121552Z:62d2df3f-334e-4409-83b3-7e618c8d7740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:04 GMT" + "Mon, 13 Jul 2015 12:15:51 GMT" ] }, "StatusCode": 200 @@ -1305,10 +1305,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:50:05.3788043Z\",\r\n \"duration\": \"PT27.1145998S\",\r\n \"correlationId\": \"388890f8-217a-4fd0-8960-7b1b02ba4cc4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db111\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server111\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:15:53.6930121Z\",\r\n \"duration\": \"PT28.065751S\",\r\n \"correlationId\": \"70119ba9-21ea-4b4b-801b-b567241b3c9f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server111/sql-audit-cmdlet-db111\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server111\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server111/databases/sql-audit-cmdlet-db111\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1821" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1320,16 +1320,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14959" ], "x-ms-request-id": [ - "bbd93abf-0fee-4afb-a359-2e6b33c3aa24" + "48d42dee-3cc7-4d3e-9a4c-982041464211" ], "x-ms-correlation-request-id": [ - "bbd93abf-0fee-4afb-a359-2e6b33c3aa24" + "48d42dee-3cc7-4d3e-9a4c-982041464211" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105008Z:bbd93abf-0fee-4afb-a359-2e6b33c3aa24" + "NORTHEUROPE:20150713T121555Z:48d42dee-3cc7-4d3e-9a4c-982041464211" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1338,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:07 GMT" + "Mon, 13 Jul 2015 12:15:55 GMT" ] }, "StatusCode": 200 @@ -1368,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14958" ], "x-ms-request-id": [ - "d84d8aa6-dd8a-4cc2-b73e-5fab69383f13" + "7ad20404-27c0-4876-b3cd-c604b6077d92" ], "x-ms-correlation-request-id": [ - "d84d8aa6-dd8a-4cc2-b73e-5fab69383f13" + "7ad20404-27c0-4876-b3cd-c604b6077d92" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105010Z:d84d8aa6-dd8a-4cc2-b73e-5fab69383f13" + "NORTHEUROPE:20150713T121557Z:7ad20404-27c0-4876-b3cd-c604b6077d92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:09 GMT" + "Mon, 13 Jul 2015 12:15:57 GMT" ] }, "StatusCode": 200 @@ -1419,16 +1419,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:e0386066-7154-44ca-8edb-5b584122aed3" + "westeurope:376ec742-cefb-4538-bcd3-4e82a4ce5b7c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14830" ], "x-ms-correlation-request-id": [ - "899649de-eaca-4db6-b657-d92d866391e6" + "0d7ab447-407d-410f-bcf9-a4d698172b84" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105011Z:899649de-eaca-4db6-b657-d92d866391e6" + "WESTEUROPE:20150713T121559Z:0d7ab447-407d-410f-bcf9-a4d698172b84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1437,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:10 GMT" + "Mon, 13 Jul 2015 12:15:58 GMT" ] }, "StatusCode": 200 @@ -1452,19 +1452,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4e6e727b-f3d9-4840-a558-36b40cdbd804" + "ba9620f4-eebd-4d00-9726-9f3f92543d65" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "606" + "825" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "df3fde97-8c78-4db0-b2c3-d682c829300c" + "f238ba5b-dfdd-4142-9387-96bf8d58805d" ], "X-Content-Type-Options": [ "nosniff" @@ -1473,13 +1473,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14895" ], "x-ms-correlation-request-id": [ - "da6a7d3d-e584-4f09-9b35-e3b71f11cf1a" + "038fb807-4a6e-44c6-9b6f-80697cebc854" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105013Z:da6a7d3d-e584-4f09-9b35-e3b71f11cf1a" + "WESTEUROPE:20150713T121601Z:038fb807-4a6e-44c6-9b6f-80697cebc854" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1488,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:12 GMT" + "Mon, 13 Jul 2015 12:16:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1506,19 +1506,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f26710f6-9398-4a4f-89b5-a012657b69f9" + "46353f35-2868-4949-b489-76d35b1a79be" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets111.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets111.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "710" + "929" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6ae20c74-4617-44c6-8c01-52b4edc64f39" + "96388fb1-5781-4eed-9f9a-1e37a339922c" ], "X-Content-Type-Options": [ "nosniff" @@ -1527,13 +1527,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14894" ], "x-ms-correlation-request-id": [ - "1411260c-3d6c-4a58-8329-d3c3f22e0021" + "9d5e4b67-b92a-401b-99a5-e0bae74d9581" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105018Z:1411260c-3d6c-4a58-8329-d3c3f22e0021" + "WESTEUROPE:20150713T121607Z:9d5e4b67-b92a-401b-99a5-e0bae74d9581" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1542,7 +1542,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:18 GMT" + "Mon, 13 Jul 2015 12:16:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1560,19 +1560,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e9a30c50-867a-4a5b-a836-f6a6b8288973" + "34e9a347-986d-4e8a-8437-5caf97fd84d8" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "606" + "825" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ea907277-45a5-4ac2-89c6-288eba04ec98" + "0bc5ebad-bc8c-4da3-b5aa-ac52ac800abc" ], "X-Content-Type-Options": [ "nosniff" @@ -1581,13 +1581,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14893" ], "x-ms-correlation-request-id": [ - "c173b721-ed36-4544-87f6-1e5d18c27b73" + "7a19e730-d388-4a3b-a181-7dd8a3202eb0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105021Z:c173b721-ed36-4544-87f6-1e5d18c27b73" + "WESTEUROPE:20150713T121610Z:7a19e730-d388-4a3b-a181-7dd8a3202eb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1596,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:21 GMT" + "Mon, 13 Jul 2015 12:16:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1614,10 +1614,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets111\",\r\n \"name\": \"auditcmdlets111\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets111\",\r\n \"name\": \"auditcmdlets111\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1629,16 +1629,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "14957" ], "x-ms-request-id": [ - "f00c28ee-86b6-4664-ab55-998f6ee26e96" + "f76c3b43-a6da-49bd-80a3-2f64c6a8e410" ], "x-ms-correlation-request-id": [ - "f00c28ee-86b6-4664-ab55-998f6ee26e96" + "f76c3b43-a6da-49bd-80a3-2f64c6a8e410" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105013Z:f00c28ee-86b6-4664-ab55-998f6ee26e96" + "NORTHEUROPE:20150713T121601Z:f76c3b43-a6da-49bd-80a3-2f64c6a8e410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1647,7 +1647,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:12 GMT" + "Mon, 13 Jul 2015 12:16:01 GMT" ] }, "StatusCode": 200 @@ -1665,7 +1665,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets111\r\n auditcmdlets111\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets111.blob.core.windows.net/\r\n https://auditcmdlets111.queue.core.windows.net/\r\n https://auditcmdlets111.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:48:32Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets111\r\n auditcmdlets111\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets111.blob.core.windows.net/\r\n https://auditcmdlets111.queue.core.windows.net/\r\n https://auditcmdlets111.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:14:18Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1677,13 +1677,13 @@ "ussouth3" ], "x-ms-request-id": [ - "41bc69e6ac61bf38a051a81af4aa0fcf" + "3427428df3e3c0ff8771c5407813dff4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:14 GMT" + "Mon, 13 Jul 2015 12:16:01 GMT" ], "Server": [ "1.0.6198.243", @@ -1706,7 +1706,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"Fin3qU7ctgqRltsZL7Mkbcx02UTPSp6aAYWP0WxW0d+YyFMQVKybd1ds8xCitR2NXJsWT/Ebr866hj6a36Q6Ng==\",\r\n \"secondaryKey\": \"BM/rGcxz6wvo6G+dhOB+pVhWnrViXlTvVRg/ILaTuPifLw1vNdqeM0DXi/dXZuZ09Lw7af9Q+MU/IFV5y8s5DQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"43a/ABoUTeD10ckkQL9AAlWpaQQvJ1XCfPmWI+20HpkZlcQ8B/YDLZk/pVK2JBpDvP6xNziepgKKftNH1se5qA==\",\r\n \"secondaryKey\": \"J66NifKayyyEc/qUkfmRYMUx03amyIUJZbA3Q9AkHFam1wEuGkjwXm+q/F4r8lJHf+2FuAY/G+ogUh24TVHhIw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1724,16 +1724,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:43603a5e-e9b3-4843-b117-09b545600983" + "southcentralus:f545b719-8df1-4bae-a934-259f5272d919" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "5981ce72-3f44-4776-9608-340d19a1b123" + "e803fcae-3ba8-4050-8a54-8eaed4e8b0db" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105015Z:5981ce72-3f44-4776-9608-340d19a1b123" + "WESTEUROPE:20150713T121603Z:e803fcae-3ba8-4050-8a54-8eaed4e8b0db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1742,7 +1742,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:15 GMT" + "Mon, 13 Jul 2015 12:16:03 GMT" ] }, "StatusCode": 200 @@ -1751,31 +1751,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTExL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"storageAccountKey\": \"Fin3qU7ctgqRltsZL7Mkbcx02UTPSp6aAYWP0WxW0d+YyFMQVKybd1ds8xCitR2NXJsWT/Ebr866hj6a36Q6Ng==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets111.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"storageAccountKey\": \"43a/ABoUTeD10ckkQL9AAlWpaQQvJ1XCfPmWI+20HpkZlcQ8B/YDLZk/pVK2JBpDvP6xNziepgKKftNH1se5qA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets111.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "558" + "777" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4e6e727b-f3d9-4840-a558-36b40cdbd804" + "ba9620f4-eebd-4d00-9726-9f3f92543d65" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": \"Fin3qU7ctgqRltsZL7Mkbcx02UTPSp6aAYWP0WxW0d+YyFMQVKybd1ds8xCitR2NXJsWT/Ebr866hj6a36Q6Ng==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets111.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": \"43a/ABoUTeD10ckkQL9AAlWpaQQvJ1XCfPmWI+20HpkZlcQ8B/YDLZk/pVK2JBpDvP6xNziepgKKftNH1se5qA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets111.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "785" + "1004" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5165aa3c-604e-4018-98ff-834c70620231" + "0b20be34-2f71-40f8-a2b2-8b1747c8dccb" ], "X-Content-Type-Options": [ "nosniff" @@ -1787,13 +1787,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "1ff4cbed-292d-4eec-bb23-f827749ff5ea" + "80903318-ca09-474f-946b-129fd807e07b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105017Z:1ff4cbed-292d-4eec-bb23-f827749ff5ea" + "WESTEUROPE:20150713T121606Z:80903318-ca09-474f-946b-129fd807e07b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1802,7 +1802,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:17 GMT" + "Mon, 13 Jul 2015 12:16:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1814,31 +1814,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTExL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "218" + "437" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f26710f6-9398-4a4f-89b5-a012657b69f9" + "46353f35-2868-4949-b489-76d35b1a79be" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg111/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server111/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets111\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver111\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "601" + "820" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "286e432f-626b-444b-8805-954508aba606" + "824d53ec-eebb-4809-baec-a6be7f555a71" ], "X-Content-Type-Options": [ "nosniff" @@ -1850,13 +1850,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "b97149ea-2a13-4fe9-be56-01a43226927a" + "0c878a85-f8f3-424c-b91b-da0e9d1497d2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105020Z:b97149ea-2a13-4fe9-be56-01a43226927a" + "WESTEUROPE:20150713T121609Z:0c878a85-f8f3-424c-b91b-da0e9d1497d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1865,7 +1865,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:20 GMT" + "Mon, 13 Jul 2015 12:16:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1895,13 +1895,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c116ff351e3fb4428e2745a3d0ff001c" + "4b1f270f359fc92b8aeda2bbfe34d941" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:26 GMT" + "Mon, 13 Jul 2015 12:16:16 GMT" ], "Server": [ "1.0.6198.243", @@ -1912,8 +1912,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/c116ff351e3fb4428e2745a3d0ff001c", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2MxMTZmZjM1MWUzZmI0NDI4ZTI3NDVhM2QwZmYwMDFj", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/4b1f270f359fc92b8aeda2bbfe34d941", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzRiMWYyNzBmMzU5ZmM5MmI4YWVkYTJiYmZlMzRkOTQx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1924,7 +1924,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n c116ff35-1e3f-b442-8e27-45a3d0ff001c\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 4b1f270f-359f-c92b-8aed-a2bbfe34d941\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1936,13 +1936,13 @@ "ussouth3" ], "x-ms-request-id": [ - "7f09551a3595be85a751c55aba1392fc" + "0b26458c075bc7e9afa35ee523947a89" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:50:27 GMT" + "Mon, 13 Jul 2015 12:16:17 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailWithBadDatabaseIndentity.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailWithBadDatabaseIndentity.json index 0dc486c1b418..2d76ef3cd05f 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailWithBadDatabaseIndentity.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailWithBadDatabaseIndentity.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "38db5d9df0deb30cb0f7db141cc45c40" + "3d4a88e8a0c0c1839f899b0d3c07ec4c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:45:33 GMT" + "Mon, 13 Jul 2015 10:14:42 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets181" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/38db5d9df0deb30cb0f7db141cc45c40", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM4ZGI1ZDlkZjBkZWIzMGNiMGY3ZGIxNDFjYzQ1YzQw", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/3d4a88e8a0c0c1839f899b0d3c07ec4c", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzNkNGE4OGU4YTBjMGMxODM5Zjg5OWIwZDNjMDdlYzRj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 38db5d9d-f0de-b30c-b0f7-db141cc45c40\r\n InProgress\r\n", + "ResponseBody": "\r\n 3d4a88e8-a0c0-c183-9f89-9b0d3c07ec4c\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b8294c6bfe8fb9ca96b892201f09eddd" + "878cb0f1a704c29586d561c125676d32" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:45:33 GMT" + "Mon, 13 Jul 2015 10:14:42 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/38db5d9df0deb30cb0f7db141cc45c40", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM4ZGI1ZDlkZjBkZWIzMGNiMGY3ZGIxNDFjYzQ1YzQw", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/3d4a88e8a0c0c1839f899b0d3c07ec4c", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzNkNGE4OGU4YTBjMGMxODM5Zjg5OWIwZDNjMDdlYzRj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 38db5d9d-f0de-b30c-b0f7-db141cc45c40\r\n InProgress\r\n", + "ResponseBody": "\r\n 3d4a88e8-a0c0-c183-9f89-9b0d3c07ec4c\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "6a8e7e971591b822b352bfe2bdd8c935" + "3683027cd5a2c5cb862a5ef9334d8b29" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:04 GMT" + "Mon, 13 Jul 2015 10:15:11 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/38db5d9df0deb30cb0f7db141cc45c40", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM4ZGI1ZDlkZjBkZWIzMGNiMGY3ZGIxNDFjYzQ1YzQw", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/3d4a88e8a0c0c1839f899b0d3c07ec4c", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzNkNGE4OGU4YTBjMGMxODM5Zjg5OWIwZDNjMDdlYzRj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 38db5d9d-f0de-b30c-b0f7-db141cc45c40\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 3d4a88e8-a0c0-c183-9f89-9b0d3c07ec4c\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b9557dca07ffb3bbae513faa65ad1201" + "387a7a9086f6c399bdc3fb93cccba355" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:34 GMT" + "Mon, 13 Jul 2015 10:15:42 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14826" ], "x-ms-request-id": [ - "421c8500-f383-4e20-ac0b-03cd420551a4" + "03416e5d-12d7-48bf-88cc-36b106911dab" ], "x-ms-correlation-request-id": [ - "421c8500-f383-4e20-ac0b-03cd420551a4" + "03416e5d-12d7-48bf-88cc-36b106911dab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114636Z:421c8500-f383-4e20-ac0b-03cd420551a4" + "WESTEUROPE:20150713T101544Z:03416e5d-12d7-48bf-88cc-36b106911dab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:35 GMT" + "Mon, 13 Jul 2015 10:15:44 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1193" ], "x-ms-request-id": [ - "945d0495-aa67-465e-a8b5-acc53a96fdd1" + "4432cc8a-db4e-4c7d-88e1-8da92c832625" ], "x-ms-correlation-request-id": [ - "945d0495-aa67-465e-a8b5-acc53a96fdd1" + "4432cc8a-db4e-4c7d-88e1-8da92c832625" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114638Z:945d0495-aa67-465e-a8b5-acc53a96fdd1" + "WESTEUROPE:20150713T101545Z:4432cc8a-db4e-4c7d-88e1-8da92c832625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:37 GMT" + "Mon, 13 Jul 2015 10:15:45 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:46:38.8860379Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"011718ee-5edc-40fe-89aa-24da9cc491b7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T10:15:45.9155123Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"a361c27f-375b-4ecf-8439-4153ff547efe\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1192" ], "x-ms-request-id": [ - "011718ee-5edc-40fe-89aa-24da9cc491b7" + "a361c27f-375b-4ecf-8439-4153ff547efe" ], "x-ms-correlation-request-id": [ - "011718ee-5edc-40fe-89aa-24da9cc491b7" + "a361c27f-375b-4ecf-8439-4153ff547efe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114638Z:011718ee-5edc-40fe-89aa-24da9cc491b7" + "WESTEUROPE:20150713T101545Z:a361c27f-375b-4ecf-8439-4153ff547efe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:38 GMT" + "Mon, 13 Jul 2015 10:15:45 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:46:40.9963642Z\",\r\n \"duration\": \"PT1.2826537S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T10:15:47.8624051Z\",\r\n \"duration\": \"PT1.1663043S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1191" ], "x-ms-request-id": [ - "fdedd30b-320e-4be6-b756-b0259c4338f1" + "767be429-0716-4c5b-b66c-8539198a0113" ], "x-ms-correlation-request-id": [ - "fdedd30b-320e-4be6-b756-b0259c4338f1" + "767be429-0716-4c5b-b66c-8539198a0113" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114641Z:fdedd30b-320e-4be6-b756-b0259c4338f1" + "WESTEUROPE:20150713T101548Z:767be429-0716-4c5b-b66c-8539198a0113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:40 GMT" + "Mon, 13 Jul 2015 10:15:48 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14825" ], "x-ms-request-id": [ - "7aa6c6e8-7c5e-4688-9e96-754092a1632f" + "101bae5d-cf4a-4784-aade-74e28c00443e" ], "x-ms-correlation-request-id": [ - "7aa6c6e8-7c5e-4688-9e96-754092a1632f" + "101bae5d-cf4a-4784-aade-74e28c00443e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114642Z:7aa6c6e8-7c5e-4688-9e96-754092a1632f" + "WESTEUROPE:20150713T101548Z:101bae5d-cf4a-4784-aade-74e28c00443e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:41 GMT" + "Mon, 13 Jul 2015 10:15:48 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14823" ], "x-ms-request-id": [ - "72d5e4db-9f25-40c2-8861-c0c9521bbdce" + "7efb6693-33bc-4992-9e9f-dc9fc9a5f89b" ], "x-ms-correlation-request-id": [ - "72d5e4db-9f25-40c2-8861-c0c9521bbdce" + "7efb6693-33bc-4992-9e9f-dc9fc9a5f89b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114645Z:72d5e4db-9f25-40c2-8861-c0c9521bbdce" + "WESTEUROPE:20150713T101551Z:7efb6693-33bc-4992-9e9f-dc9fc9a5f89b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:44 GMT" + "Mon, 13 Jul 2015 10:15:51 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14821" ], "x-ms-request-id": [ - "184e8ccb-1dad-4966-bffd-d159131c846a" + "a2f784e5-131b-405d-8d55-831933aa2703" ], "x-ms-correlation-request-id": [ - "184e8ccb-1dad-4966-bffd-d159131c846a" + "a2f784e5-131b-405d-8d55-831933aa2703" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114648Z:184e8ccb-1dad-4966-bffd-d159131c846a" + "WESTEUROPE:20150713T101554Z:a2f784e5-131b-405d-8d55-831933aa2703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:47 GMT" + "Mon, 13 Jul 2015 10:15:54 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14819" ], "x-ms-request-id": [ - "3dcbd347-3777-444f-a8e4-196e608b22c0" + "d66c65be-201f-4dcb-9e55-d05eefaa8079" ], "x-ms-correlation-request-id": [ - "3dcbd347-3777-444f-a8e4-196e608b22c0" + "d66c65be-201f-4dcb-9e55-d05eefaa8079" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114651Z:3dcbd347-3777-444f-a8e4-196e608b22c0" + "WESTEUROPE:20150713T101557Z:d66c65be-201f-4dcb-9e55-d05eefaa8079" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:50 GMT" + "Mon, 13 Jul 2015 10:15:57 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14817" ], "x-ms-request-id": [ - "7ffc9757-7207-497d-adfb-3f78358f3814" + "77ece81d-b782-4661-9529-9cc3bbe38589" ], "x-ms-correlation-request-id": [ - "7ffc9757-7207-497d-adfb-3f78358f3814" + "77ece81d-b782-4661-9529-9cc3bbe38589" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114654Z:7ffc9757-7207-497d-adfb-3f78358f3814" + "WESTEUROPE:20150713T101600Z:77ece81d-b782-4661-9529-9cc3bbe38589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:53 GMT" + "Mon, 13 Jul 2015 10:16:00 GMT" ] }, "StatusCode": 200 @@ -633,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:46:57.1532167Z\",\r\n \"duration\": \"PT12.085021S\",\r\n \"trackingId\": \"aca1b8dc-fbae-4b37-8acc-38b83f82f546\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:16:01.8792928Z\",\r\n \"duration\": \"PT12.7924488S\",\r\n \"trackingId\": \"fef5afed-05dd-432c-9e13-8fcebdf6a52d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14815" ], "x-ms-request-id": [ - "853c584a-3a85-404f-a96f-1338e5a21d95" + "4b744c36-dbfa-4dee-93d5-2fe91983fcd1" ], "x-ms-correlation-request-id": [ - "853c584a-3a85-404f-a96f-1338e5a21d95" + "4b744c36-dbfa-4dee-93d5-2fe91983fcd1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114657Z:853c584a-3a85-404f-a96f-1338e5a21d95" + "WESTEUROPE:20150713T101603Z:4b744c36-dbfa-4dee-93d5-2fe91983fcd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:56 GMT" + "Mon, 13 Jul 2015 10:16:03 GMT" ] }, "StatusCode": 200 @@ -681,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:46:57.1532167Z\",\r\n \"duration\": \"PT12.085021S\",\r\n \"trackingId\": \"aca1b8dc-fbae-4b37-8acc-38b83f82f546\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:16:01.8792928Z\",\r\n \"duration\": \"PT12.7924488S\",\r\n \"trackingId\": \"fef5afed-05dd-432c-9e13-8fcebdf6a52d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14813" ], "x-ms-request-id": [ - "4ea83ba3-fb11-4435-91c0-bf5b96680927" + "bad109e6-f38c-4be7-9ae4-e1002c9d0634" ], "x-ms-correlation-request-id": [ - "4ea83ba3-fb11-4435-91c0-bf5b96680927" + "bad109e6-f38c-4be7-9ae4-e1002c9d0634" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114700Z:4ea83ba3-fb11-4435-91c0-bf5b96680927" + "WESTEUROPE:20150713T101606Z:bad109e6-f38c-4be7-9ae4-e1002c9d0634" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:00 GMT" + "Mon, 13 Jul 2015 10:16:06 GMT" ] }, "StatusCode": 200 @@ -729,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:46:57.1532167Z\",\r\n \"duration\": \"PT12.085021S\",\r\n \"trackingId\": \"aca1b8dc-fbae-4b37-8acc-38b83f82f546\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:16:01.8792928Z\",\r\n \"duration\": \"PT12.7924488S\",\r\n \"trackingId\": \"fef5afed-05dd-432c-9e13-8fcebdf6a52d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14811" ], "x-ms-request-id": [ - "4776044d-4838-430e-801f-674b710e1983" + "e4218b47-f7c7-4e5d-abc3-b1d20a109f63" ], "x-ms-correlation-request-id": [ - "4776044d-4838-430e-801f-674b710e1983" + "e4218b47-f7c7-4e5d-abc3-b1d20a109f63" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114703Z:4776044d-4838-430e-801f-674b710e1983" + "WESTEUROPE:20150713T101609Z:e4218b47-f7c7-4e5d-abc3-b1d20a109f63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:03 GMT" + "Mon, 13 Jul 2015 10:16:09 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/93D955A3559F694A\",\r\n \"operationId\": \"93D955A3559F694A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:47:06.5984231Z\",\r\n \"duration\": \"PT8.5800241S\",\r\n \"trackingId\": \"c3abd309-1324-4234-be93-c5b0149ded42\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:46:57.1532167Z\",\r\n \"duration\": \"PT12.085021S\",\r\n \"trackingId\": \"aca1b8dc-fbae-4b37-8acc-38b83f82f546\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:16:01.8792928Z\",\r\n \"duration\": \"PT12.7924488S\",\r\n \"trackingId\": \"fef5afed-05dd-432c-9e13-8fcebdf6a52d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14809" ], "x-ms-request-id": [ - "21840024-8fbc-4f00-a6f3-0b14bee1ef2e" + "18abfce0-1e46-4e68-bda4-20a6b016f9e1" ], "x-ms-correlation-request-id": [ - "21840024-8fbc-4f00-a6f3-0b14bee1ef2e" + "18abfce0-1e46-4e68-bda4-20a6b016f9e1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114706Z:21840024-8fbc-4f00-a6f3-0b14bee1ef2e" + "WESTEUROPE:20150713T101612Z:18abfce0-1e46-4e68-bda4-20a6b016f9e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:06 GMT" + "Mon, 13 Jul 2015 10:16:12 GMT" ] }, "StatusCode": 200 @@ -825,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/93D955A3559F694A\",\r\n \"operationId\": \"93D955A3559F694A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:47:06.5984231Z\",\r\n \"duration\": \"PT8.5800241S\",\r\n \"trackingId\": \"c3abd309-1324-4234-be93-c5b0149ded42\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:46:57.1532167Z\",\r\n \"duration\": \"PT12.085021S\",\r\n \"trackingId\": \"aca1b8dc-fbae-4b37-8acc-38b83f82f546\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/93D955A3559F694A\",\r\n \"operationId\": \"93D955A3559F694A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:16:14.2775922Z\",\r\n \"duration\": \"PT11.7863594S\",\r\n \"trackingId\": \"b3f0f956-c86c-4d41-9439-461afeeea77d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup/operations/6E151FAF5F136184\",\r\n \"operationId\": \"6E151FAF5F136184\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:16:01.8792928Z\",\r\n \"duration\": \"PT12.7924488S\",\r\n \"trackingId\": \"fef5afed-05dd-432c-9e13-8fcebdf6a52d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14807" ], "x-ms-request-id": [ - "77328324-1e15-4758-b058-3fc0e12fbad4" + "fe8f9585-41e2-49bf-a2b1-f870197a0c2b" ], "x-ms-correlation-request-id": [ - "77328324-1e15-4758-b058-3fc0e12fbad4" + "fe8f9585-41e2-49bf-a2b1-f870197a0c2b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114709Z:77328324-1e15-4758-b058-3fc0e12fbad4" + "WESTEUROPE:20150713T101616Z:fe8f9585-41e2-49bf-a2b1-f870197a0c2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:09 GMT" + "Mon, 13 Jul 2015 10:16:15 GMT" ] }, "StatusCode": 200 @@ -873,10 +873,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:46:40.9963642Z\",\r\n \"duration\": \"PT1.2826537S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14824" ], "x-ms-request-id": [ - "301af133-644e-4541-88e0-85fc8f2dd6cf" + "014d794b-516e-453e-93da-f77c648647aa" ], "x-ms-correlation-request-id": [ - "301af133-644e-4541-88e0-85fc8f2dd6cf" + "014d794b-516e-453e-93da-f77c648647aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114642Z:301af133-644e-4541-88e0-85fc8f2dd6cf" + "WESTEUROPE:20150713T101549Z:014d794b-516e-453e-93da-f77c648647aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:42 GMT" + "Mon, 13 Jul 2015 10:15:49 GMT" ] }, "StatusCode": 200 @@ -921,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:46:44.3021148Z\",\r\n \"duration\": \"PT4.5884043S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14822" ], "x-ms-request-id": [ - "90c32b0f-81ab-4539-a545-077462718a59" + "9fa3fe94-4bb6-46fc-aa39-cf38a9f742e0" ], "x-ms-correlation-request-id": [ - "90c32b0f-81ab-4539-a545-077462718a59" + "9fa3fe94-4bb6-46fc-aa39-cf38a9f742e0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114645Z:90c32b0f-81ab-4539-a545-077462718a59" + "WESTEUROPE:20150713T101552Z:9fa3fe94-4bb6-46fc-aa39-cf38a9f742e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:45 GMT" + "Mon, 13 Jul 2015 10:15:52 GMT" ] }, "StatusCode": 200 @@ -969,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:46:44.3021148Z\",\r\n \"duration\": \"PT4.5884043S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14820" ], "x-ms-request-id": [ - "97fecf05-c464-4660-a936-dd44065cd126" + "f2622d3d-f0e8-4d9a-bcc3-b67b6d4cb29b" ], "x-ms-correlation-request-id": [ - "97fecf05-c464-4660-a936-dd44065cd126" + "f2622d3d-f0e8-4d9a-bcc3-b67b6d4cb29b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114648Z:97fecf05-c464-4660-a936-dd44065cd126" + "WESTEUROPE:20150713T101555Z:f2622d3d-f0e8-4d9a-bcc3-b67b6d4cb29b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:48 GMT" + "Mon, 13 Jul 2015 10:15:55 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:46:44.3021148Z\",\r\n \"duration\": \"PT4.5884043S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14818" ], "x-ms-request-id": [ - "6e015b88-8591-40a1-8f57-3cc11da55671" + "c316a7cc-89bf-4bd9-9c3a-0a70e96b635f" ], "x-ms-correlation-request-id": [ - "6e015b88-8591-40a1-8f57-3cc11da55671" + "c316a7cc-89bf-4bd9-9c3a-0a70e96b635f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114651Z:6e015b88-8591-40a1-8f57-3cc11da55671" + "WESTEUROPE:20150713T101558Z:c316a7cc-89bf-4bd9-9c3a-0a70e96b635f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:51 GMT" + "Mon, 13 Jul 2015 10:15:57 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:46:44.3021148Z\",\r\n \"duration\": \"PT4.5884043S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14816" ], "x-ms-request-id": [ - "e45dcaaa-c5d0-4832-9d0f-47c4bc832319" + "aaf8df11-6f80-4092-afa2-f8d711ae8a4a" ], "x-ms-correlation-request-id": [ - "e45dcaaa-c5d0-4832-9d0f-47c4bc832319" + "aaf8df11-6f80-4092-afa2-f8d711ae8a4a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114654Z:e45dcaaa-c5d0-4832-9d0f-47c4bc832319" + "WESTEUROPE:20150713T101601Z:aaf8df11-6f80-4092-afa2-f8d711ae8a4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:54 GMT" + "Mon, 13 Jul 2015 10:16:00 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:46:44.3021148Z\",\r\n \"duration\": \"PT4.5884043S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14814" ], "x-ms-request-id": [ - "d1f73183-bff5-4c5c-b5b9-7fd76fcf2d86" + "4224857b-9843-405e-b888-dcbbdcf72c8f" ], "x-ms-correlation-request-id": [ - "d1f73183-bff5-4c5c-b5b9-7fd76fcf2d86" + "4224857b-9843-405e-b888-dcbbdcf72c8f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114657Z:d1f73183-bff5-4c5c-b5b9-7fd76fcf2d86" + "WESTEUROPE:20150713T101604Z:4224857b-9843-405e-b888-dcbbdcf72c8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:46:56 GMT" + "Mon, 13 Jul 2015 10:16:03 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:46:44.3021148Z\",\r\n \"duration\": \"PT4.5884043S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14812" ], "x-ms-request-id": [ - "9c9d74e2-f1ea-4068-9cde-8f17eafa1933" + "76043322-7439-4e68-81e7-fb84476b9fa7" ], "x-ms-correlation-request-id": [ - "9c9d74e2-f1ea-4068-9cde-8f17eafa1933" + "76043322-7439-4e68-81e7-fb84476b9fa7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114700Z:9c9d74e2-f1ea-4068-9cde-8f17eafa1933" + "WESTEUROPE:20150713T101607Z:76043322-7439-4e68-81e7-fb84476b9fa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:00 GMT" + "Mon, 13 Jul 2015 10:16:06 GMT" ] }, "StatusCode": 200 @@ -1209,7 +1209,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:46:44.3021148Z\",\r\n \"duration\": \"PT4.5884043S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1224,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14810" ], "x-ms-request-id": [ - "45db5d5c-28aa-44a6-85c2-8333d1eeeba0" + "1f6981ed-ee76-421b-b04b-8d81804c3057" ], "x-ms-correlation-request-id": [ - "45db5d5c-28aa-44a6-85c2-8333d1eeeba0" + "1f6981ed-ee76-421b-b04b-8d81804c3057" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114703Z:45db5d5c-28aa-44a6-85c2-8333d1eeeba0" + "WESTEUROPE:20150713T101610Z:1f6981ed-ee76-421b-b04b-8d81804c3057" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:03 GMT" + "Mon, 13 Jul 2015 10:16:09 GMT" ] }, "StatusCode": 200 @@ -1257,7 +1257,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:46:44.3021148Z\",\r\n \"duration\": \"PT4.5884043S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:15:48.6042427Z\",\r\n \"duration\": \"PT1.9081419S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1272,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14808" ], "x-ms-request-id": [ - "e5192256-2e5a-448a-bbc5-52c1d96feb8f" + "8126ccec-6955-46d0-b61d-7abaa38fe57d" ], "x-ms-correlation-request-id": [ - "e5192256-2e5a-448a-bbc5-52c1d96feb8f" + "8126ccec-6955-46d0-b61d-7abaa38fe57d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114707Z:e5192256-2e5a-448a-bbc5-52c1d96feb8f" + "WESTEUROPE:20150713T101613Z:8126ccec-6955-46d0-b61d-7abaa38fe57d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:06 GMT" + "Mon, 13 Jul 2015 10:16:12 GMT" ] }, "StatusCode": 200 @@ -1305,10 +1305,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:47:08.7287786Z\",\r\n \"duration\": \"PT29.0150681S\",\r\n \"correlationId\": \"fdedd30b-320e-4be6-b756-b0259c4338f1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db181\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server181\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:16:15.5990126Z\",\r\n \"duration\": \"PT28.9029118S\",\r\n \"correlationId\": \"767be429-0716-4c5b-b66c-8539198a0113\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg181/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server181/sql-audit-cmdlet-db181\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server181\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server181/databases/sql-audit-cmdlet-db181\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1320,16 +1320,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14806" ], "x-ms-request-id": [ - "9db19472-638f-49eb-acc2-f03ed401893b" + "91354001-95e6-4f2f-b3a6-11a73f9f11d0" ], "x-ms-correlation-request-id": [ - "9db19472-638f-49eb-acc2-f03ed401893b" + "91354001-95e6-4f2f-b3a6-11a73f9f11d0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114710Z:9db19472-638f-49eb-acc2-f03ed401893b" + "WESTEUROPE:20150713T101616Z:91354001-95e6-4f2f-b3a6-11a73f9f11d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1338,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:10 GMT" + "Mon, 13 Jul 2015 10:16:15 GMT" ] }, "StatusCode": 200 @@ -1368,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14805" ], "x-ms-request-id": [ - "22dafae2-73e6-475d-92fa-88df066b0649" + "9882c21a-bfeb-4da2-999c-cb9942f6345b" ], "x-ms-correlation-request-id": [ - "22dafae2-73e6-475d-92fa-88df066b0649" + "9882c21a-bfeb-4da2-999c-cb9942f6345b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114712Z:22dafae2-73e6-475d-92fa-88df066b0649" + "WESTEUROPE:20150713T101618Z:9882c21a-bfeb-4da2-999c-cb9942f6345b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:12 GMT" + "Mon, 13 Jul 2015 10:16:17 GMT" ] }, "StatusCode": 200 @@ -1419,16 +1419,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:33a3eed4-6334-4486-ae27-7315c1e1544d" + "westeurope:d7fc0cae-2855-4ecc-bea5-0b69e19f2e20" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14894" ], "x-ms-correlation-request-id": [ - "b277771a-8d54-43f2-a682-22b437f30821" + "f4b41aa3-bc34-409f-9d1a-f951e8913b0e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114716Z:b277771a-8d54-43f2-a682-22b437f30821" + "WESTEUROPE:20150713T101619Z:f4b41aa3-bc34-409f-9d1a-f951e8913b0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1437,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:15 GMT" + "Mon, 13 Jul 2015 10:16:19 GMT" ] }, "StatusCode": 200 @@ -1452,7 +1452,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "2d0bb4d8-0b4b-41bb-9515-bbe701985657" + "9c211e9e-390d-4263-ab27-11379cc724b4" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'NONEXISTING-RG' could not be found.\"\r\n }\r\n}", @@ -1473,13 +1473,13 @@ "gateway" ], "x-ms-request-id": [ - "09f11ce7-b540-48aa-8a59-23d8a6af65d7" + "bcfa70c9-4f92-4e9a-8ea1-b9d39ebce810" ], "x-ms-correlation-request-id": [ - "09f11ce7-b540-48aa-8a59-23d8a6af65d7" + "bcfa70c9-4f92-4e9a-8ea1-b9d39ebce810" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114716Z:09f11ce7-b540-48aa-8a59-23d8a6af65d7" + "WESTEUROPE:20150713T101620Z:bcfa70c9-4f92-4e9a-8ea1-b9d39ebce810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1488,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:16 GMT" + "Mon, 13 Jul 2015 10:16:19 GMT" ] }, "StatusCode": 404 @@ -1503,7 +1503,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ae90a1b8-14b7-4821-b8f4-5f52af2c5260" + "d4984da0-98ba-4334-a18f-4dbcd7c36584" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'NONEXISTING-RG' could not be found.\"\r\n }\r\n}", @@ -1524,13 +1524,13 @@ "gateway" ], "x-ms-request-id": [ - "61fecd6e-9d09-46cb-bc5c-c0e0027ba528" + "c3752486-3f3d-48f6-8973-0ebc693cb8bb" ], "x-ms-correlation-request-id": [ - "61fecd6e-9d09-46cb-bc5c-c0e0027ba528" + "c3752486-3f3d-48f6-8973-0ebc693cb8bb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114717Z:61fecd6e-9d09-46cb-bc5c-c0e0027ba528" + "WESTEUROPE:20150713T101620Z:c3752486-3f3d-48f6-8973-0ebc693cb8bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1539,7 +1539,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:17 GMT" + "Mon, 13 Jul 2015 10:16:19 GMT" ] }, "StatusCode": 404 @@ -1554,7 +1554,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5dbecc10-89bd-4827-928a-499cedfaf3be" + "cd98493d-b36d-4fa3-b98d-96279e87c68f" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ParentResourceNotFound\",\r\n \"message\": \"Can not perform requested operation on nested resource. Parent resource 'NONEXISTING-SERVER/sql-audit-cmdlet-db181' not found.\"\r\n }\r\n}", @@ -1575,13 +1575,13 @@ "gateway" ], "x-ms-request-id": [ - "c891e981-c197-42d6-8b14-15a7b0a9c154" + "98cc371a-6546-4f87-87cd-ee72289c33b4" ], "x-ms-correlation-request-id": [ - "c891e981-c197-42d6-8b14-15a7b0a9c154" + "98cc371a-6546-4f87-87cd-ee72289c33b4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114717Z:c891e981-c197-42d6-8b14-15a7b0a9c154" + "WESTEUROPE:20150713T101620Z:98cc371a-6546-4f87-87cd-ee72289c33b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1590,7 +1590,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:16 GMT" + "Mon, 13 Jul 2015 10:16:19 GMT" ] }, "StatusCode": 404 @@ -1605,7 +1605,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5578317b-b788-4fec-bc75-0a1848467abe" + "45820d31-264e-4004-8814-2951dd79c690" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ParentResourceNotFound\",\r\n \"message\": \"Can not perform requested operation on nested resource. Parent resource 'NONEXISTING-SERVER/sql-audit-cmdlet-db181' not found.\"\r\n }\r\n}", @@ -1626,13 +1626,13 @@ "gateway" ], "x-ms-request-id": [ - "ae21d311-60f6-4af1-9cc7-fc6c05073666" + "79277d15-5d57-450c-a24a-34d9d12bc163" ], "x-ms-correlation-request-id": [ - "ae21d311-60f6-4af1-9cc7-fc6c05073666" + "79277d15-5d57-450c-a24a-34d9d12bc163" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114717Z:ae21d311-60f6-4af1-9cc7-fc6c05073666" + "WESTEUROPE:20150713T101620Z:79277d15-5d57-450c-a24a-34d9d12bc163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,7 +1641,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:17 GMT" + "Mon, 13 Jul 2015 10:16:19 GMT" ] }, "StatusCode": 404 @@ -1668,13 +1668,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c2f0f64b1171bc8a96ff68180f11d847" + "9149d57c850acd6b9f6f2e1c0730c3e1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:22 GMT" + "Mon, 13 Jul 2015 10:16:24 GMT" ], "Server": [ "1.0.6198.243", @@ -1685,8 +1685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/c2f0f64b1171bc8a96ff68180f11d847", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2MyZjBmNjRiMTE3MWJjOGE5NmZmNjgxODBmMTFkODQ3", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9149d57c850acd6b9f6f2e1c0730c3e1", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzkxNDlkNTdjODUwYWNkNmI5ZjZmMmUxYzA3MzBjM2Ux", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1697,7 +1697,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n c2f0f64b-1171-bc8a-96ff-68180f11d847\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 9149d57c-850a-cd6b-9f6f-2e1c0730c3e1\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1709,13 +1709,13 @@ "ussouth3" ], "x-ms-request-id": [ - "8bc84af0735eb3e48b31cba978e6128a" + "42c4cd2c092eceb3b0279ddc12abd20e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:47:24 GMT" + "Mon, 13 Jul 2015 10:16:25 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailWithBadServerIndentity.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailWithBadServerIndentity.json index aa72ba1860f3..cab536df4613 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailWithBadServerIndentity.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailWithBadServerIndentity.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "35dcbf320e2bba9398b153e4449eab6a" + "78403a7cff74ccfc974cf4332488cbf1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:48:25 GMT" + "Mon, 13 Jul 2015 10:39:16 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets191" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/35dcbf320e2bba9398b153e4449eab6a", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM1ZGNiZjMyMGUyYmJhOTM5OGIxNTNlNDQ0OWVhYjZh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/78403a7cff74ccfc974cf4332488cbf1", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc4NDAzYTdjZmY3NGNjZmM5NzRjZjQzMzI0ODhjYmYx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 35dcbf32-0e2b-ba93-98b1-53e4449eab6a\r\n InProgress\r\n", + "ResponseBody": "\r\n 78403a7c-ff74-ccfc-974c-f4332488cbf1\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "58e9ce04deacb0bfb247f52165f4157e" + "f9043ee3f998cd27bdd7eb8e2f3ad2a6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:48:26 GMT" + "Mon, 13 Jul 2015 10:39:16 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/35dcbf320e2bba9398b153e4449eab6a", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM1ZGNiZjMyMGUyYmJhOTM5OGIxNTNlNDQ0OWVhYjZh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/78403a7cff74ccfc974cf4332488cbf1", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc4NDAzYTdjZmY3NGNjZmM5NzRjZjQzMzI0ODhjYmYx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 35dcbf32-0e2b-ba93-98b1-53e4449eab6a\r\n InProgress\r\n", + "ResponseBody": "\r\n 78403a7c-ff74-ccfc-974c-f4332488cbf1\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "8e99a21dbc8cb42c828e4d1364bafa03" + "f284cd12250bc170a638f4d9a2627427" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:48:56 GMT" + "Mon, 13 Jul 2015 10:39:47 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/35dcbf320e2bba9398b153e4449eab6a", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM1ZGNiZjMyMGUyYmJhOTM5OGIxNTNlNDQ0OWVhYjZh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/78403a7cff74ccfc974cf4332488cbf1", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzc4NDAzYTdjZmY3NGNjZmM5NzRjZjQzMzI0ODhjYmYx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 35dcbf32-0e2b-ba93-98b1-53e4449eab6a\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 78403a7c-ff74-ccfc-974c-f4332488cbf1\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "1a074ea001f4ba32a1b283e76c0cb171" + "78f1103e9168c57e80aea8100d45fb53" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:26 GMT" + "Mon, 13 Jul 2015 10:40:17 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14807" ], "x-ms-request-id": [ - "ef6d62c6-1dd9-4262-9e67-a3d0297953de" + "7c3e1484-ea33-433d-bd6d-1b73e12652e5" ], "x-ms-correlation-request-id": [ - "ef6d62c6-1dd9-4262-9e67-a3d0297953de" + "7c3e1484-ea33-433d-bd6d-1b73e12652e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114927Z:ef6d62c6-1dd9-4262-9e67-a3d0297953de" + "WESTEUROPE:20150713T104019Z:7c3e1484-ea33-433d-bd6d-1b73e12652e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:26 GMT" + "Mon, 13 Jul 2015 10:40:19 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1191" ], "x-ms-request-id": [ - "6dba4dcc-45e5-46bd-8814-d0e48857aa2f" + "b0da77e4-66ce-4a62-8bfe-911e714667f3" ], "x-ms-correlation-request-id": [ - "6dba4dcc-45e5-46bd-8814-d0e48857aa2f" + "b0da77e4-66ce-4a62-8bfe-911e714667f3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114929Z:6dba4dcc-45e5-46bd-8814-d0e48857aa2f" + "WESTEUROPE:20150713T104021Z:b0da77e4-66ce-4a62-8bfe-911e714667f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:28 GMT" + "Mon, 13 Jul 2015 10:40:21 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:49:29.9958085Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"b36a5813-9e45-46ec-8cec-9bab0a78ed73\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T10:40:22.0820505Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"a62defa3-5557-4268-a439-8ced05f0c1bc\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1190" ], "x-ms-request-id": [ - "b36a5813-9e45-46ec-8cec-9bab0a78ed73" + "a62defa3-5557-4268-a439-8ced05f0c1bc" ], "x-ms-correlation-request-id": [ - "b36a5813-9e45-46ec-8cec-9bab0a78ed73" + "a62defa3-5557-4268-a439-8ced05f0c1bc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114930Z:b36a5813-9e45-46ec-8cec-9bab0a78ed73" + "WESTEUROPE:20150713T104022Z:a62defa3-5557-4268-a439-8ced05f0c1bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:29 GMT" + "Mon, 13 Jul 2015 10:40:22 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:49:31.9458804Z\",\r\n \"duration\": \"PT1.1806354S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T10:40:24.0770656Z\",\r\n \"duration\": \"PT1.2468115S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1189" ], "x-ms-request-id": [ - "580f4fa4-86b5-4181-bb6a-f2d402bc3ceb" + "7a35ed2d-dba8-409b-bc00-a2cc44afcf36" ], "x-ms-correlation-request-id": [ - "580f4fa4-86b5-4181-bb6a-f2d402bc3ceb" + "7a35ed2d-dba8-409b-bc00-a2cc44afcf36" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114932Z:580f4fa4-86b5-4181-bb6a-f2d402bc3ceb" + "WESTEUROPE:20150713T104024Z:7a35ed2d-dba8-409b-bc00-a2cc44afcf36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:32 GMT" + "Mon, 13 Jul 2015 10:40:24 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14806" ], "x-ms-request-id": [ - "b8a9aee9-ca93-4194-a199-6b140515acb9" + "727c2d8b-199d-4a3a-b8fa-e3b95baafc3e" ], "x-ms-correlation-request-id": [ - "b8a9aee9-ca93-4194-a199-6b140515acb9" + "727c2d8b-199d-4a3a-b8fa-e3b95baafc3e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114933Z:b8a9aee9-ca93-4194-a199-6b140515acb9" + "WESTEUROPE:20150713T104025Z:727c2d8b-199d-4a3a-b8fa-e3b95baafc3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:32 GMT" + "Mon, 13 Jul 2015 10:40:25 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14804" ], "x-ms-request-id": [ - "ac746f54-243f-41f4-bcdb-460e6126326f" + "86066827-157d-4218-9a95-c97415261b01" ], "x-ms-correlation-request-id": [ - "ac746f54-243f-41f4-bcdb-460e6126326f" + "86066827-157d-4218-9a95-c97415261b01" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114936Z:ac746f54-243f-41f4-bcdb-460e6126326f" + "WESTEUROPE:20150713T104028Z:86066827-157d-4218-9a95-c97415261b01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:35 GMT" + "Mon, 13 Jul 2015 10:40:28 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14801" ], "x-ms-request-id": [ - "c3187fbc-bc2c-4501-af62-85c93f843746" + "03dbae96-749c-438a-9e38-f3165475ef78" ], "x-ms-correlation-request-id": [ - "c3187fbc-bc2c-4501-af62-85c93f843746" + "03dbae96-749c-438a-9e38-f3165475ef78" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114939Z:c3187fbc-bc2c-4501-af62-85c93f843746" + "WESTEUROPE:20150713T104031Z:03dbae96-749c-438a-9e38-f3165475ef78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:38 GMT" + "Mon, 13 Jul 2015 10:40:31 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14799" ], "x-ms-request-id": [ - "159b617c-f984-4526-827d-a149e272991f" + "29ffc328-d537-4c85-85ee-12a9710313cb" ], "x-ms-correlation-request-id": [ - "159b617c-f984-4526-827d-a149e272991f" + "29ffc328-d537-4c85-85ee-12a9710313cb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114942Z:159b617c-f984-4526-827d-a149e272991f" + "WESTEUROPE:20150713T104034Z:29ffc328-d537-4c85-85ee-12a9710313cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:41 GMT" + "Mon, 13 Jul 2015 10:40:34 GMT" ] }, "StatusCode": 200 @@ -585,7 +585,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/CF637863FD2FEB77\",\r\n \"operationId\": \"CF637863FD2FEB77\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:49:43.2958822Z\",\r\n \"duration\": \"PT9.6849281S\",\r\n \"trackingId\": \"04a1dfc8-aed9-4a23-84c6-54fde042be43\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/CF637863FD2FEB77\",\r\n \"operationId\": \"CF637863FD2FEB77\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:40:35.4827777Z\",\r\n \"duration\": \"PT10.590596S\",\r\n \"trackingId\": \"842ff64a-c512-475e-834e-72ef4ef7f2c8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "667" @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14797" ], "x-ms-request-id": [ - "2ef9b049-882e-473f-87eb-a96ec59780ad" + "a02b6bda-0932-4466-82cd-85959d78a737" ], "x-ms-correlation-request-id": [ - "2ef9b049-882e-473f-87eb-a96ec59780ad" + "a02b6bda-0932-4466-82cd-85959d78a737" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114945Z:2ef9b049-882e-473f-87eb-a96ec59780ad" + "WESTEUROPE:20150713T104037Z:a02b6bda-0932-4466-82cd-85959d78a737" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:44 GMT" + "Mon, 13 Jul 2015 10:40:36 GMT" ] }, "StatusCode": 200 @@ -633,7 +633,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/CF637863FD2FEB77\",\r\n \"operationId\": \"CF637863FD2FEB77\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:49:43.2958822Z\",\r\n \"duration\": \"PT9.6849281S\",\r\n \"trackingId\": \"04a1dfc8-aed9-4a23-84c6-54fde042be43\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/CF637863FD2FEB77\",\r\n \"operationId\": \"CF637863FD2FEB77\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:40:35.4827777Z\",\r\n \"duration\": \"PT10.590596S\",\r\n \"trackingId\": \"842ff64a-c512-475e-834e-72ef4ef7f2c8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "667" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "14795" ], "x-ms-request-id": [ - "e3daf173-4468-42a3-92da-71c98ab0b6fd" + "d317b5b2-a1d4-4025-83eb-bef2b247ea58" ], "x-ms-correlation-request-id": [ - "e3daf173-4468-42a3-92da-71c98ab0b6fd" + "d317b5b2-a1d4-4025-83eb-bef2b247ea58" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114948Z:e3daf173-4468-42a3-92da-71c98ab0b6fd" + "WESTEUROPE:20150713T104040Z:d317b5b2-a1d4-4025-83eb-bef2b247ea58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:47 GMT" + "Mon, 13 Jul 2015 10:40:39 GMT" ] }, "StatusCode": 200 @@ -681,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/A031536E3EB0C966\",\r\n \"operationId\": \"A031536E3EB0C966\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:49:49.2964008Z\",\r\n \"duration\": \"PT5.9200042S\",\r\n \"trackingId\": \"64b69fee-5a58-47e8-9a49-a07aa3bc8e45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/CF637863FD2FEB77\",\r\n \"operationId\": \"CF637863FD2FEB77\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:49:43.2958822Z\",\r\n \"duration\": \"PT9.6849281S\",\r\n \"trackingId\": \"04a1dfc8-aed9-4a23-84c6-54fde042be43\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/CF637863FD2FEB77\",\r\n \"operationId\": \"CF637863FD2FEB77\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:40:35.4827777Z\",\r\n \"duration\": \"PT10.590596S\",\r\n \"trackingId\": \"842ff64a-c512-475e-834e-72ef4ef7f2c8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14793" ], "x-ms-request-id": [ - "62361001-9eb9-4f57-bbb6-8e5484d56ce2" + "a385f263-3b8e-4456-8203-2ba33942ba1b" ], "x-ms-correlation-request-id": [ - "62361001-9eb9-4f57-bbb6-8e5484d56ce2" + "a385f263-3b8e-4456-8203-2ba33942ba1b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114951Z:62361001-9eb9-4f57-bbb6-8e5484d56ce2" + "WESTEUROPE:20150713T104043Z:a385f263-3b8e-4456-8203-2ba33942ba1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:50 GMT" + "Mon, 13 Jul 2015 10:40:42 GMT" ] }, "StatusCode": 200 @@ -729,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/A031536E3EB0C966\",\r\n \"operationId\": \"A031536E3EB0C966\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:49:49.2964008Z\",\r\n \"duration\": \"PT5.9200042S\",\r\n \"trackingId\": \"64b69fee-5a58-47e8-9a49-a07aa3bc8e45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/CF637863FD2FEB77\",\r\n \"operationId\": \"CF637863FD2FEB77\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:49:43.2958822Z\",\r\n \"duration\": \"PT9.6849281S\",\r\n \"trackingId\": \"04a1dfc8-aed9-4a23-84c6-54fde042be43\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/A031536E3EB0C966\",\r\n \"operationId\": \"A031536E3EB0C966\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:40:44.1772625Z\",\r\n \"duration\": \"PT8.1658291S\",\r\n \"trackingId\": \"83a099e3-5fb6-4408-8885-41db3380ae2a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup/operations/CF637863FD2FEB77\",\r\n \"operationId\": \"CF637863FD2FEB77\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:40:35.4827777Z\",\r\n \"duration\": \"PT10.590596S\",\r\n \"trackingId\": \"842ff64a-c512-475e-834e-72ef4ef7f2c8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14791" ], "x-ms-request-id": [ - "c95c53a2-e3ce-49b2-a14c-24338b4ed5e4" + "2490c8fb-3ef3-4921-bb14-a197bb9cc81a" ], "x-ms-correlation-request-id": [ - "c95c53a2-e3ce-49b2-a14c-24338b4ed5e4" + "2490c8fb-3ef3-4921-bb14-a197bb9cc81a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114954Z:c95c53a2-e3ce-49b2-a14c-24338b4ed5e4" + "WESTEUROPE:20150713T104046Z:2490c8fb-3ef3-4921-bb14-a197bb9cc81a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:53 GMT" + "Mon, 13 Jul 2015 10:40:45 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:49:31.9458804Z\",\r\n \"duration\": \"PT1.1806354S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:40:24.8243725Z\",\r\n \"duration\": \"PT1.9941184S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14805" ], "x-ms-request-id": [ - "1509e748-c6ab-44a3-880c-c3aee08f3d88" + "4c4dd08d-7489-40c9-934f-22450c1a7af0" ], "x-ms-correlation-request-id": [ - "1509e748-c6ab-44a3-880c-c3aee08f3d88" + "4c4dd08d-7489-40c9-934f-22450c1a7af0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114933Z:1509e748-c6ab-44a3-880c-c3aee08f3d88" + "WESTEUROPE:20150713T104025Z:4c4dd08d-7489-40c9-934f-22450c1a7af0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:33 GMT" + "Mon, 13 Jul 2015 10:40:25 GMT" ] }, "StatusCode": 200 @@ -825,7 +825,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:49:33.5422427Z\",\r\n \"duration\": \"PT2.7769977S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:40:24.8243725Z\",\r\n \"duration\": \"PT1.9941184S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -840,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14802" ], "x-ms-request-id": [ - "0690d1e5-30d9-4f82-9d94-73d1534f8075" + "4af60cb6-514e-4989-aa22-f5100d49f1e6" ], "x-ms-correlation-request-id": [ - "0690d1e5-30d9-4f82-9d94-73d1534f8075" + "4af60cb6-514e-4989-aa22-f5100d49f1e6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114936Z:0690d1e5-30d9-4f82-9d94-73d1534f8075" + "WESTEUROPE:20150713T104028Z:4af60cb6-514e-4989-aa22-f5100d49f1e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:36 GMT" + "Mon, 13 Jul 2015 10:40:28 GMT" ] }, "StatusCode": 200 @@ -873,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:49:33.5422427Z\",\r\n \"duration\": \"PT2.7769977S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:40:24.8243725Z\",\r\n \"duration\": \"PT1.9941184S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14800" ], "x-ms-request-id": [ - "52577404-efa7-4b97-9523-9f97c6169a7d" + "977e2216-944f-4215-a4b6-308aaf63f689" ], "x-ms-correlation-request-id": [ - "52577404-efa7-4b97-9523-9f97c6169a7d" + "977e2216-944f-4215-a4b6-308aaf63f689" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114939Z:52577404-efa7-4b97-9523-9f97c6169a7d" + "WESTEUROPE:20150713T104031Z:977e2216-944f-4215-a4b6-308aaf63f689" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:39 GMT" + "Mon, 13 Jul 2015 10:40:31 GMT" ] }, "StatusCode": 200 @@ -921,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:49:33.5422427Z\",\r\n \"duration\": \"PT2.7769977S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:40:24.8243725Z\",\r\n \"duration\": \"PT1.9941184S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14798" ], "x-ms-request-id": [ - "7b35565a-cda8-4032-8c30-dc21fde98478" + "74492897-e064-4aa2-9937-5a2374ffb5c4" ], "x-ms-correlation-request-id": [ - "7b35565a-cda8-4032-8c30-dc21fde98478" + "74492897-e064-4aa2-9937-5a2374ffb5c4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114942Z:7b35565a-cda8-4032-8c30-dc21fde98478" + "WESTEUROPE:20150713T104034Z:74492897-e064-4aa2-9937-5a2374ffb5c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:41 GMT" + "Mon, 13 Jul 2015 10:40:34 GMT" ] }, "StatusCode": 200 @@ -969,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:49:33.5422427Z\",\r\n \"duration\": \"PT2.7769977S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:40:24.8243725Z\",\r\n \"duration\": \"PT1.9941184S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14796" ], "x-ms-request-id": [ - "5a3cc560-0ad2-4446-bc93-e335f78bddbb" + "1fe60149-b708-48bd-b039-39e3e93336cf" ], "x-ms-correlation-request-id": [ - "5a3cc560-0ad2-4446-bc93-e335f78bddbb" + "1fe60149-b708-48bd-b039-39e3e93336cf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114945Z:5a3cc560-0ad2-4446-bc93-e335f78bddbb" + "WESTEUROPE:20150713T104037Z:1fe60149-b708-48bd-b039-39e3e93336cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:44 GMT" + "Mon, 13 Jul 2015 10:40:37 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:49:33.5422427Z\",\r\n \"duration\": \"PT2.7769977S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:40:24.8243725Z\",\r\n \"duration\": \"PT1.9941184S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "14794" ], "x-ms-request-id": [ - "fda1b4d9-7020-40a7-90f6-ac14f1825575" + "f3319256-5d8a-4952-8ec1-c793ec205a17" ], "x-ms-correlation-request-id": [ - "fda1b4d9-7020-40a7-90f6-ac14f1825575" + "f3319256-5d8a-4952-8ec1-c793ec205a17" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114948Z:fda1b4d9-7020-40a7-90f6-ac14f1825575" + "WESTEUROPE:20150713T104040Z:f3319256-5d8a-4952-8ec1-c793ec205a17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:47 GMT" + "Mon, 13 Jul 2015 10:40:40 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:49:33.5422427Z\",\r\n \"duration\": \"PT2.7769977S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:40:24.8243725Z\",\r\n \"duration\": \"PT1.9941184S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14792" ], "x-ms-request-id": [ - "8d5a293c-f9dd-4c77-bbb8-af672299b82d" + "b89586ff-32ca-4db2-971b-bd10d0d9d850" ], "x-ms-correlation-request-id": [ - "8d5a293c-f9dd-4c77-bbb8-af672299b82d" + "b89586ff-32ca-4db2-971b-bd10d0d9d850" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114951Z:8d5a293c-f9dd-4c77-bbb8-af672299b82d" + "WESTEUROPE:20150713T104043Z:b89586ff-32ca-4db2-971b-bd10d0d9d850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:50 GMT" + "Mon, 13 Jul 2015 10:40:43 GMT" ] }, "StatusCode": 200 @@ -1113,10 +1113,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:49:51.9309768Z\",\r\n \"duration\": \"PT21.1657318S\",\r\n \"correlationId\": \"580f4fa4-86b5-4181-bb6a-f2d402bc3ceb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db191\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server191\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:40:45.8378704Z\",\r\n \"duration\": \"PT23.0076163S\",\r\n \"correlationId\": \"7a35ed2d-dba8-409b-bc00-a2cc44afcf36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg191/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server191/sql-audit-cmdlet-db191\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server191\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server191/databases/sql-audit-cmdlet-db191\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1128,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14790" ], "x-ms-request-id": [ - "3783517c-6242-49c1-9224-dc8d7b759f13" + "7ad21863-bd85-48f2-8a4f-6abc553b34ec" ], "x-ms-correlation-request-id": [ - "3783517c-6242-49c1-9224-dc8d7b759f13" + "7ad21863-bd85-48f2-8a4f-6abc553b34ec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114954Z:3783517c-6242-49c1-9224-dc8d7b759f13" + "WESTEUROPE:20150713T104046Z:7ad21863-bd85-48f2-8a4f-6abc553b34ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:54 GMT" + "Mon, 13 Jul 2015 10:40:46 GMT" ] }, "StatusCode": 200 @@ -1176,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14789" ], "x-ms-request-id": [ - "8c2ac030-44ee-4d01-a364-f56d2ea5e2cb" + "a00f9e70-63b0-438f-935f-a3a30bb2a142" ], "x-ms-correlation-request-id": [ - "8c2ac030-44ee-4d01-a364-f56d2ea5e2cb" + "a00f9e70-63b0-438f-935f-a3a30bb2a142" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114957Z:8c2ac030-44ee-4d01-a364-f56d2ea5e2cb" + "WESTEUROPE:20150713T104048Z:a00f9e70-63b0-438f-935f-a3a30bb2a142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:56 GMT" + "Mon, 13 Jul 2015 10:40:48 GMT" ] }, "StatusCode": 200 @@ -1227,16 +1227,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:fbe004dd-3450-426b-abb0-7a3c2c19313e" + "westeurope:d61eea79-a136-47cb-b774-21755a4a75cd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14845" ], "x-ms-correlation-request-id": [ - "15eee819-055a-425d-9624-2bfb3582ad6e" + "24375e26-f0c6-442a-86cf-2d1a32d418b3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114957Z:15eee819-055a-425d-9624-2bfb3582ad6e" + "WESTEUROPE:20150713T104049Z:24375e26-f0c6-442a-86cf-2d1a32d418b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,7 +1245,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:57 GMT" + "Mon, 13 Jul 2015 10:40:48 GMT" ] }, "StatusCode": 200 @@ -1260,7 +1260,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a95b542e-2b93-4f61-a70e-ea4058ff1921" + "97a3bf1c-5d1d-4c9f-b146-e39c0c748bc9" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'NONEXISTING-RG' could not be found.\"\r\n }\r\n}", @@ -1281,13 +1281,13 @@ "gateway" ], "x-ms-request-id": [ - "101b0f72-ad46-4239-8770-4d697e32f96f" + "88ef3e92-8f71-4f0d-b5da-90dc206ea1c1" ], "x-ms-correlation-request-id": [ - "101b0f72-ad46-4239-8770-4d697e32f96f" + "88ef3e92-8f71-4f0d-b5da-90dc206ea1c1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114958Z:101b0f72-ad46-4239-8770-4d697e32f96f" + "WESTEUROPE:20150713T104049Z:88ef3e92-8f71-4f0d-b5da-90dc206ea1c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1296,7 +1296,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:57 GMT" + "Mon, 13 Jul 2015 10:40:49 GMT" ] }, "StatusCode": 404 @@ -1311,7 +1311,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "2f9d062d-15d3-4a9a-a2cb-83b6b6e14ca8" + "d4d344ac-aa08-44aa-a208-4606b9040abb" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'NONEXISTING-RG' could not be found.\"\r\n }\r\n}", @@ -1332,13 +1332,13 @@ "gateway" ], "x-ms-request-id": [ - "cc1f1b6f-09ab-4213-989f-3498491b6177" + "ddd364ca-516e-4601-985f-be0762f26422" ], "x-ms-correlation-request-id": [ - "cc1f1b6f-09ab-4213-989f-3498491b6177" + "ddd364ca-516e-4601-985f-be0762f26422" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114959Z:cc1f1b6f-09ab-4213-989f-3498491b6177" + "WESTEUROPE:20150713T104049Z:ddd364ca-516e-4601-985f-be0762f26422" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,7 +1347,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:58 GMT" + "Mon, 13 Jul 2015 10:40:49 GMT" ] }, "StatusCode": 404 @@ -1362,7 +1362,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7a565a94-6c0d-425c-9f94-c1079ccb724a" + "35eaab25-4c19-4b7b-9558-8b8c0f45bcd5" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ParentResourceNotFound\",\r\n \"message\": \"Can not perform requested operation on nested resource. Parent resource 'NONEXISTING-SERVER' not found.\"\r\n }\r\n}", @@ -1383,13 +1383,13 @@ "gateway" ], "x-ms-request-id": [ - "121436fc-0597-4cce-9c04-038cead0843b" + "53351280-685a-4d70-8434-8e08f2eda2e1" ], "x-ms-correlation-request-id": [ - "121436fc-0597-4cce-9c04-038cead0843b" + "53351280-685a-4d70-8434-8e08f2eda2e1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114958Z:121436fc-0597-4cce-9c04-038cead0843b" + "WESTEUROPE:20150713T104049Z:53351280-685a-4d70-8434-8e08f2eda2e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1398,7 +1398,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:58 GMT" + "Mon, 13 Jul 2015 10:40:49 GMT" ] }, "StatusCode": 404 @@ -1413,7 +1413,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "11d4053a-2224-4d12-bf36-4bed6a63c068" + "e474571f-fb94-4f28-8b51-3a44ecebf21a" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ParentResourceNotFound\",\r\n \"message\": \"Can not perform requested operation on nested resource. Parent resource 'NONEXISTING-SERVER' not found.\"\r\n }\r\n}", @@ -1434,13 +1434,13 @@ "gateway" ], "x-ms-request-id": [ - "2c930255-f32e-45d8-8887-6332b5819460" + "4b7da509-7d45-46f4-a936-960ed39f0c0a" ], "x-ms-correlation-request-id": [ - "2c930255-f32e-45d8-8887-6332b5819460" + "4b7da509-7d45-46f4-a936-960ed39f0c0a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114959Z:2c930255-f32e-45d8-8887-6332b5819460" + "WESTEUROPE:20150713T104050Z:4b7da509-7d45-46f4-a936-960ed39f0c0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1449,7 +1449,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:49:58 GMT" + "Mon, 13 Jul 2015 10:40:49 GMT" ] }, "StatusCode": 404 @@ -1476,13 +1476,13 @@ "ussouth3" ], "x-ms-request-id": [ - "81fdfb79a327b4488841d387edd9d1bb" + "12c1df4e7fdac7798e97c015e8cf5aff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:50:07 GMT" + "Mon, 13 Jul 2015 10:40:53 GMT" ], "Server": [ "1.0.6198.243", @@ -1493,8 +1493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/81fdfb79a327b4488841d387edd9d1bb", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzgxZmRmYjc5YTMyN2I0NDg4ODQxZDM4N2VkZDlkMWJi", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/12c1df4e7fdac7798e97c015e8cf5aff", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEyYzFkZjRlN2ZkYWM3Nzk4ZTk3YzAxNWU4Y2Y1YWZm", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1505,7 +1505,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 81fdfb79-a327-b448-8841-d387edd9d1bb\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 12c1df4e-7fda-c779-8e97-c015e8cf5aff\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1517,13 +1517,13 @@ "ussouth3" ], "x-ms-request-id": [ - "e2ed6c92d893bc699476c6226dd4ca05" + "35c5df2d1349c49e9110a3eaf2488719" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:50:08 GMT" + "Mon, 13 Jul 2015 10:40:55 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedDatabaseUpdatePolicyWithNoStorage.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedDatabaseUpdatePolicyWithNoStorage.json index 63b8d1967737..92e99fbf2979 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedDatabaseUpdatePolicyWithNoStorage.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedDatabaseUpdatePolicyWithNoStorage.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "f3c42dfdcc3dbdd9a20925567024fbcf" + "d823a9ab2af6c4908257fa4f1bb9b1be" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:56:42 GMT" + "Mon, 13 Jul 2015 10:23:01 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets151" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f3c42dfdcc3dbdd9a20925567024fbcf", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2YzYzQyZGZkY2MzZGJkZDlhMjA5MjU1NjcwMjRmYmNm", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d823a9ab2af6c4908257fa4f1bb9b1be", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Q4MjNhOWFiMmFmNmM0OTA4MjU3ZmE0ZjFiYjliMWJl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n f3c42dfd-cc3d-bdd9-a209-25567024fbcf\r\n InProgress\r\n", + "ResponseBody": "\r\n d823a9ab-2af6-c490-8257-fa4f1bb9b1be\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "550857ce479cb9e7b590f726a7ec3659" + "112276f3db67ca72bf3396878cfd06b1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:56:42 GMT" + "Mon, 13 Jul 2015 10:23:01 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f3c42dfdcc3dbdd9a20925567024fbcf", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2YzYzQyZGZkY2MzZGJkZDlhMjA5MjU1NjcwMjRmYmNm", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d823a9ab2af6c4908257fa4f1bb9b1be", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Q4MjNhOWFiMmFmNmM0OTA4MjU3ZmE0ZjFiYjliMWJl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n f3c42dfd-cc3d-bdd9-a209-25567024fbcf\r\n InProgress\r\n", + "ResponseBody": "\r\n d823a9ab-2af6-c490-8257-fa4f1bb9b1be\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "47eb41377a1eb684847522594202510f" + "b42df5ad2b0ac21ab0260faf07f90f50" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:12 GMT" + "Mon, 13 Jul 2015 10:23:32 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/f3c42dfdcc3dbdd9a20925567024fbcf", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2YzYzQyZGZkY2MzZGJkZDlhMjA5MjU1NjcwMjRmYmNm", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d823a9ab2af6c4908257fa4f1bb9b1be", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2Q4MjNhOWFiMmFmNmM0OTA4MjU3ZmE0ZjFiYjliMWJl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n f3c42dfd-cc3d-bdd9-a209-25567024fbcf\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n d823a9ab-2af6-c490-8257-fa4f1bb9b1be\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "605f0a946131b4878c45a9369407c29b" + "259570fabf6cc5cc86bcb8af193f7d3d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:43 GMT" + "Mon, 13 Jul 2015 10:24:02 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14827" ], "x-ms-request-id": [ - "6cb81f93-3411-48b1-9a1f-314ba9e81065" + "79549217-dd49-4930-a785-0d74731c5f20" ], "x-ms-correlation-request-id": [ - "6cb81f93-3411-48b1-9a1f-314ba9e81065" + "79549217-dd49-4930-a785-0d74731c5f20" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115743Z:6cb81f93-3411-48b1-9a1f-314ba9e81065" + "WESTEUROPE:20150713T102403Z:79549217-dd49-4930-a785-0d74731c5f20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:43 GMT" + "Mon, 13 Jul 2015 10:24:03 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-request-id": [ - "5bf88ccf-596e-4945-95ed-c3e00dd65bfb" + "c05f67cb-c17c-48c4-92fc-d9b0733cf011" ], "x-ms-correlation-request-id": [ - "5bf88ccf-596e-4945-95ed-c3e00dd65bfb" + "c05f67cb-c17c-48c4-92fc-d9b0733cf011" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115745Z:5bf88ccf-596e-4945-95ed-c3e00dd65bfb" + "WESTEUROPE:20150713T102404Z:c05f67cb-c17c-48c4-92fc-d9b0733cf011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:45 GMT" + "Mon, 13 Jul 2015 10:24:04 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:57:46.5074963Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"af31fe37-0d69-4679-84fb-5371973390db\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T10:24:05.5018955Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"755c001a-ff12-41b5-afbd-24424d705bbb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-request-id": [ - "af31fe37-0d69-4679-84fb-5371973390db" + "755c001a-ff12-41b5-afbd-24424d705bbb" ], "x-ms-correlation-request-id": [ - "af31fe37-0d69-4679-84fb-5371973390db" + "755c001a-ff12-41b5-afbd-24424d705bbb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115746Z:af31fe37-0d69-4679-84fb-5371973390db" + "WESTEUROPE:20150713T102405Z:755c001a-ff12-41b5-afbd-24424d705bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:46 GMT" + "Mon, 13 Jul 2015 10:24:05 GMT" ] }, "StatusCode": 200 @@ -345,10 +345,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:57:48.3464997Z\",\r\n \"duration\": \"PT1.1128758S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T10:24:07.2454491Z\",\r\n \"duration\": \"PT0.994231S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-request-id": [ - "517d994c-d18d-404e-bf64-6efd0056fb13" + "9bf7a99f-770e-45a8-9000-8daac192d3cb" ], "x-ms-correlation-request-id": [ - "517d994c-d18d-404e-bf64-6efd0056fb13" + "9bf7a99f-770e-45a8-9000-8daac192d3cb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115748Z:517d994c-d18d-404e-bf64-6efd0056fb13" + "WESTEUROPE:20150713T102407Z:9bf7a99f-770e-45a8-9000-8daac192d3cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:48 GMT" + "Mon, 13 Jul 2015 10:24:07 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14826" ], "x-ms-request-id": [ - "f37b474f-5873-4e6d-9487-065d77f2523c" + "364a28c4-60cb-4c15-a8e2-dfb1d45427cc" ], "x-ms-correlation-request-id": [ - "f37b474f-5873-4e6d-9487-065d77f2523c" + "364a28c4-60cb-4c15-a8e2-dfb1d45427cc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115749Z:f37b474f-5873-4e6d-9487-065d77f2523c" + "WESTEUROPE:20150713T102408Z:364a28c4-60cb-4c15-a8e2-dfb1d45427cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:48 GMT" + "Mon, 13 Jul 2015 10:24:07 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14824" ], "x-ms-request-id": [ - "95842a47-3cbf-4e11-89d6-1875cc6e0c8a" + "574fb498-d3ae-4408-9e62-9ea32c7f963a" ], "x-ms-correlation-request-id": [ - "95842a47-3cbf-4e11-89d6-1875cc6e0c8a" + "574fb498-d3ae-4408-9e62-9ea32c7f963a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115752Z:95842a47-3cbf-4e11-89d6-1875cc6e0c8a" + "WESTEUROPE:20150713T102411Z:574fb498-d3ae-4408-9e62-9ea32c7f963a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:51 GMT" + "Mon, 13 Jul 2015 10:24:10 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14822" ], "x-ms-request-id": [ - "3de97776-215d-489b-bc8f-d7259872188f" + "bf12c2d2-6639-4c48-a3b3-bb46e125223a" ], "x-ms-correlation-request-id": [ - "3de97776-215d-489b-bc8f-d7259872188f" + "bf12c2d2-6639-4c48-a3b3-bb46e125223a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115755Z:3de97776-215d-489b-bc8f-d7259872188f" + "WESTEUROPE:20150713T102414Z:bf12c2d2-6639-4c48-a3b3-bb46e125223a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:54 GMT" + "Mon, 13 Jul 2015 10:24:13 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14820" ], "x-ms-request-id": [ - "0239cb4c-3934-4efd-b0f6-6dbd42051bf3" + "bb02ab0a-145f-43ca-8593-a6dea6aa2417" ], "x-ms-correlation-request-id": [ - "0239cb4c-3934-4efd-b0f6-6dbd42051bf3" + "bb02ab0a-145f-43ca-8593-a6dea6aa2417" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115758Z:0239cb4c-3934-4efd-b0f6-6dbd42051bf3" + "WESTEUROPE:20150713T102417Z:bb02ab0a-145f-43ca-8593-a6dea6aa2417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:57 GMT" + "Mon, 13 Jul 2015 10:24:16 GMT" ] }, "StatusCode": 200 @@ -585,10 +585,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:58:00.3151588Z\",\r\n \"duration\": \"PT9.532723S\",\r\n \"trackingId\": \"afe19026-5283-49c8-8cf4-ab751a6bceaf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:24:19.3506725Z\",\r\n \"duration\": \"PT10.5594894S\",\r\n \"trackingId\": \"f64c9987-b918-4acf-800b-6569fc509962\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "666" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14818" ], "x-ms-request-id": [ - "17fc1f05-2c8c-47b5-b427-8bf5d97ecc41" + "1beb944d-bf62-4bc1-b11a-e75ee760b6b9" ], "x-ms-correlation-request-id": [ - "17fc1f05-2c8c-47b5-b427-8bf5d97ecc41" + "1beb944d-bf62-4bc1-b11a-e75ee760b6b9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115801Z:17fc1f05-2c8c-47b5-b427-8bf5d97ecc41" + "WESTEUROPE:20150713T102420Z:1beb944d-bf62-4bc1-b11a-e75ee760b6b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:00 GMT" + "Mon, 13 Jul 2015 10:24:19 GMT" ] }, "StatusCode": 200 @@ -633,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:58:00.3151588Z\",\r\n \"duration\": \"PT9.532723S\",\r\n \"trackingId\": \"afe19026-5283-49c8-8cf4-ab751a6bceaf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:24:19.3506725Z\",\r\n \"duration\": \"PT10.5594894S\",\r\n \"trackingId\": \"f64c9987-b918-4acf-800b-6569fc509962\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "666" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14816" ], "x-ms-request-id": [ - "c3eec67a-a1a6-4507-bdfb-031559dc2b27" + "0c8060a1-cf99-4268-910a-72e3b84b2067" ], "x-ms-correlation-request-id": [ - "c3eec67a-a1a6-4507-bdfb-031559dc2b27" + "0c8060a1-cf99-4268-910a-72e3b84b2067" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115804Z:c3eec67a-a1a6-4507-bdfb-031559dc2b27" + "WESTEUROPE:20150713T102423Z:0c8060a1-cf99-4268-910a-72e3b84b2067" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:03 GMT" + "Mon, 13 Jul 2015 10:24:22 GMT" ] }, "StatusCode": 200 @@ -681,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:58:00.3151588Z\",\r\n \"duration\": \"PT9.532723S\",\r\n \"trackingId\": \"afe19026-5283-49c8-8cf4-ab751a6bceaf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:24:19.3506725Z\",\r\n \"duration\": \"PT10.5594894S\",\r\n \"trackingId\": \"f64c9987-b918-4acf-800b-6569fc509962\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "666" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14814" ], "x-ms-request-id": [ - "ec4e2570-bfad-4f6d-9031-81c1dcfbd60f" + "dcf567f7-3c2c-4c3e-bf7e-96018a268fb6" ], "x-ms-correlation-request-id": [ - "ec4e2570-bfad-4f6d-9031-81c1dcfbd60f" + "dcf567f7-3c2c-4c3e-bf7e-96018a268fb6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115807Z:ec4e2570-bfad-4f6d-9031-81c1dcfbd60f" + "WESTEUROPE:20150713T102426Z:dcf567f7-3c2c-4c3e-bf7e-96018a268fb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:06 GMT" + "Mon, 13 Jul 2015 10:24:25 GMT" ] }, "StatusCode": 200 @@ -729,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/A6B2323CBC15A55A\",\r\n \"operationId\": \"A6B2323CBC15A55A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:58:09.516228Z\",\r\n \"duration\": \"PT8.6330466S\",\r\n \"trackingId\": \"f7ac4993-520a-489e-a1eb-d683a50fc2b1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:58:00.3151588Z\",\r\n \"duration\": \"PT9.532723S\",\r\n \"trackingId\": \"afe19026-5283-49c8-8cf4-ab751a6bceaf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/A6B2323CBC15A55A\",\r\n \"operationId\": \"A6B2323CBC15A55A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:24:28.0083855Z\",\r\n \"duration\": \"PT8.1198328S\",\r\n \"trackingId\": \"fbadb8f7-31f7-4b99-9b1b-bab8fa429eee\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:24:19.3506725Z\",\r\n \"duration\": \"PT10.5594894S\",\r\n \"trackingId\": \"f64c9987-b918-4acf-800b-6569fc509962\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1387" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14812" ], "x-ms-request-id": [ - "ccd67238-92dd-44e4-9981-739a1eda50f7" + "48c5b140-542d-4f56-98ee-28d61ae3d301" ], "x-ms-correlation-request-id": [ - "ccd67238-92dd-44e4-9981-739a1eda50f7" + "48c5b140-542d-4f56-98ee-28d61ae3d301" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115810Z:ccd67238-92dd-44e4-9981-739a1eda50f7" + "WESTEUROPE:20150713T102429Z:48c5b140-542d-4f56-98ee-28d61ae3d301" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:09 GMT" + "Mon, 13 Jul 2015 10:24:28 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/A6B2323CBC15A55A\",\r\n \"operationId\": \"A6B2323CBC15A55A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:58:09.516228Z\",\r\n \"duration\": \"PT8.6330466S\",\r\n \"trackingId\": \"f7ac4993-520a-489e-a1eb-d683a50fc2b1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:58:00.3151588Z\",\r\n \"duration\": \"PT9.532723S\",\r\n \"trackingId\": \"afe19026-5283-49c8-8cf4-ab751a6bceaf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/A6B2323CBC15A55A\",\r\n \"operationId\": \"A6B2323CBC15A55A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:24:28.0083855Z\",\r\n \"duration\": \"PT8.1198328S\",\r\n \"trackingId\": \"fbadb8f7-31f7-4b99-9b1b-bab8fa429eee\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup/operations/998F3AB3E2AF54D2\",\r\n \"operationId\": \"998F3AB3E2AF54D2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:24:19.3506725Z\",\r\n \"duration\": \"PT10.5594894S\",\r\n \"trackingId\": \"f64c9987-b918-4acf-800b-6569fc509962\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1387" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14810" ], "x-ms-request-id": [ - "6daef850-4dab-4dfa-8343-3c8084171104" + "20f35037-5aaa-4a75-a637-92edc001be0d" ], "x-ms-correlation-request-id": [ - "6daef850-4dab-4dfa-8343-3c8084171104" + "20f35037-5aaa-4a75-a637-92edc001be0d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115813Z:6daef850-4dab-4dfa-8343-3c8084171104" + "WESTEUROPE:20150713T102432Z:20f35037-5aaa-4a75-a637-92edc001be0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:12 GMT" + "Mon, 13 Jul 2015 10:24:31 GMT" ] }, "StatusCode": 200 @@ -825,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:57:48.3464997Z\",\r\n \"duration\": \"PT1.1128758S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:24:08.3260223Z\",\r\n \"duration\": \"PT2.0748042S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14825" ], "x-ms-request-id": [ - "8a2ddf30-dbcb-4c03-b65b-09c482428063" + "1cae9afc-90c9-4102-ad6b-ac3b7360c079" ], "x-ms-correlation-request-id": [ - "8a2ddf30-dbcb-4c03-b65b-09c482428063" + "1cae9afc-90c9-4102-ad6b-ac3b7360c079" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115749Z:8a2ddf30-dbcb-4c03-b65b-09c482428063" + "WESTEUROPE:20150713T102408Z:1cae9afc-90c9-4102-ad6b-ac3b7360c079" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:49 GMT" + "Mon, 13 Jul 2015 10:24:08 GMT" ] }, "StatusCode": 200 @@ -873,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:57:50.7130528Z\",\r\n \"duration\": \"PT3.4794289S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:24:08.3260223Z\",\r\n \"duration\": \"PT2.0748042S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14823" ], "x-ms-request-id": [ - "fb7231a2-ae3e-4183-bee9-da2a3de83e2c" + "8d02f6c4-db94-48dd-a9b1-c53e83aa7904" ], "x-ms-correlation-request-id": [ - "fb7231a2-ae3e-4183-bee9-da2a3de83e2c" + "8d02f6c4-db94-48dd-a9b1-c53e83aa7904" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115752Z:fb7231a2-ae3e-4183-bee9-da2a3de83e2c" + "WESTEUROPE:20150713T102411Z:8d02f6c4-db94-48dd-a9b1-c53e83aa7904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:52 GMT" + "Mon, 13 Jul 2015 10:24:11 GMT" ] }, "StatusCode": 200 @@ -921,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:57:50.7130528Z\",\r\n \"duration\": \"PT3.4794289S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:24:08.3260223Z\",\r\n \"duration\": \"PT2.0748042S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14821" ], "x-ms-request-id": [ - "cb9c711b-6f38-4ab9-a923-96a27f7a2727" + "b9fd2faf-6c0e-4e02-b9e5-032002bdefca" ], "x-ms-correlation-request-id": [ - "cb9c711b-6f38-4ab9-a923-96a27f7a2727" + "b9fd2faf-6c0e-4e02-b9e5-032002bdefca" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115755Z:cb9c711b-6f38-4ab9-a923-96a27f7a2727" + "WESTEUROPE:20150713T102414Z:b9fd2faf-6c0e-4e02-b9e5-032002bdefca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:55 GMT" + "Mon, 13 Jul 2015 10:24:14 GMT" ] }, "StatusCode": 200 @@ -969,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:57:50.7130528Z\",\r\n \"duration\": \"PT3.4794289S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:24:08.3260223Z\",\r\n \"duration\": \"PT2.0748042S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14819" ], "x-ms-request-id": [ - "849e295a-975a-45d5-83e4-21e3192ecc2c" + "be0c21fe-d2a1-47e0-a3c9-e14e070cd2bc" ], "x-ms-correlation-request-id": [ - "849e295a-975a-45d5-83e4-21e3192ecc2c" + "be0c21fe-d2a1-47e0-a3c9-e14e070cd2bc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115758Z:849e295a-975a-45d5-83e4-21e3192ecc2c" + "WESTEUROPE:20150713T102417Z:be0c21fe-d2a1-47e0-a3c9-e14e070cd2bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:57:58 GMT" + "Mon, 13 Jul 2015 10:24:17 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:57:50.7130528Z\",\r\n \"duration\": \"PT3.4794289S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:24:08.3260223Z\",\r\n \"duration\": \"PT2.0748042S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14817" ], "x-ms-request-id": [ - "bf13f361-358d-48af-a380-289bdb97b703" + "8d764ba5-048f-4405-88fa-2dba8f7d10df" ], "x-ms-correlation-request-id": [ - "bf13f361-358d-48af-a380-289bdb97b703" + "8d764ba5-048f-4405-88fa-2dba8f7d10df" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115801Z:bf13f361-358d-48af-a380-289bdb97b703" + "WESTEUROPE:20150713T102420Z:8d764ba5-048f-4405-88fa-2dba8f7d10df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:01 GMT" + "Mon, 13 Jul 2015 10:24:20 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:57:50.7130528Z\",\r\n \"duration\": \"PT3.4794289S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:24:08.3260223Z\",\r\n \"duration\": \"PT2.0748042S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14815" ], "x-ms-request-id": [ - "bf310219-5a2c-4ad8-9365-9a4d51e5bf15" + "06e86c58-9c2b-4edc-b323-eed70313bb27" ], "x-ms-correlation-request-id": [ - "bf310219-5a2c-4ad8-9365-9a4d51e5bf15" + "06e86c58-9c2b-4edc-b323-eed70313bb27" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115804Z:bf310219-5a2c-4ad8-9365-9a4d51e5bf15" + "WESTEUROPE:20150713T102423Z:06e86c58-9c2b-4edc-b323-eed70313bb27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:04 GMT" + "Mon, 13 Jul 2015 10:24:23 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:57:50.7130528Z\",\r\n \"duration\": \"PT3.4794289S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:24:08.3260223Z\",\r\n \"duration\": \"PT2.0748042S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14813" ], "x-ms-request-id": [ - "69aeca8c-9638-43b7-99d8-bf9c256a2c10" + "14d14710-c8e2-46cb-b20a-e787042b97aa" ], "x-ms-correlation-request-id": [ - "69aeca8c-9638-43b7-99d8-bf9c256a2c10" + "14d14710-c8e2-46cb-b20a-e787042b97aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115807Z:69aeca8c-9638-43b7-99d8-bf9c256a2c10" + "WESTEUROPE:20150713T102426Z:14d14710-c8e2-46cb-b20a-e787042b97aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:07 GMT" + "Mon, 13 Jul 2015 10:24:25 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:57:50.7130528Z\",\r\n \"duration\": \"PT3.4794289S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T10:24:08.3260223Z\",\r\n \"duration\": \"PT2.0748042S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14811" ], "x-ms-request-id": [ - "d01af951-72e7-4c05-b582-a85c6158ed68" + "01698776-602e-496d-8ceb-98c24483d252" ], "x-ms-correlation-request-id": [ - "d01af951-72e7-4c05-b582-a85c6158ed68" + "01698776-602e-496d-8ceb-98c24483d252" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115810Z:d01af951-72e7-4c05-b582-a85c6158ed68" + "WESTEUROPE:20150713T102429Z:01698776-602e-496d-8ceb-98c24483d252" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:10 GMT" + "Mon, 13 Jul 2015 10:24:29 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:58:11.6229758Z\",\r\n \"duration\": \"PT24.3893519S\",\r\n \"correlationId\": \"517d994c-d18d-404e-bf64-6efd0056fb13\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db151\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server151\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T10:24:29.9115311Z\",\r\n \"duration\": \"PT23.660313S\",\r\n \"correlationId\": \"9bf7a99f-770e-45a8-9000-8daac192d3cb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg151/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server151/sql-audit-cmdlet-db151\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server151\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server151/databases/sql-audit-cmdlet-db151\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1821" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14809" ], "x-ms-request-id": [ - "151c31a7-3082-4346-820b-d6f83cf2dd5b" + "7eb2f6eb-2b58-4844-8cd6-fec4a0bfe42d" ], "x-ms-correlation-request-id": [ - "151c31a7-3082-4346-820b-d6f83cf2dd5b" + "7eb2f6eb-2b58-4844-8cd6-fec4a0bfe42d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115814Z:151c31a7-3082-4346-820b-d6f83cf2dd5b" + "WESTEUROPE:20150713T102432Z:7eb2f6eb-2b58-4844-8cd6-fec4a0bfe42d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:13 GMT" + "Mon, 13 Jul 2015 10:24:32 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14808" ], "x-ms-request-id": [ - "d0c67e63-bde5-489d-9cf0-184635ac4a76" + "9700c834-2166-467e-979a-d09e5bcbe05c" ], "x-ms-correlation-request-id": [ - "d0c67e63-bde5-489d-9cf0-184635ac4a76" + "9700c834-2166-467e-979a-d09e5bcbe05c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115816Z:d0c67e63-bde5-489d-9cf0-184635ac4a76" + "WESTEUROPE:20150713T102435Z:9700c834-2166-467e-979a-d09e5bcbe05c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:15 GMT" + "Mon, 13 Jul 2015 10:24:34 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:44fb382f-4afd-4f0e-aab4-7ddad9494f68" + "westeurope:dd1eee59-e8a8-4be1-8fb9-13bc205ef88a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14885" ], "x-ms-correlation-request-id": [ - "f0a3f051-1969-4369-a621-d553e74ee15a" + "7ce13de6-275e-4e4c-8e22-2df9afa7041c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115817Z:f0a3f051-1969-4369-a621-d553e74ee15a" + "WESTEUROPE:20150713T102436Z:7ce13de6-275e-4e4c-8e22-2df9afa7041c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:17 GMT" + "Mon, 13 Jul 2015 10:24:35 GMT" ] }, "StatusCode": 200 @@ -1368,13 +1368,13 @@ "ussouth3" ], "x-ms-request-id": [ - "128084dd1cf2b5b9823fcb44f82935e6" + "8d670b56cc77c89b87e6173a177e85ff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:33 GMT" + "Mon, 13 Jul 2015 10:24:39 GMT" ], "Server": [ "1.0.6198.243", @@ -1385,8 +1385,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/128084dd1cf2b5b9823fcb44f82935e6", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEyODA4NGRkMWNmMmI1Yjk4MjNmY2I0NGY4MjkzNWU2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/8d670b56cc77c89b87e6173a177e85ff", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzhkNjcwYjU2Y2M3N2M4OWI4N2U2MTczYTE3N2U4NWZm", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1397,7 +1397,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 128084dd-1cf2-b5b9-823f-cb44f82935e6\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 8d670b56-cc77-c89b-87e6-173a177e85ff\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1409,13 +1409,13 @@ "ussouth3" ], "x-ms-request-id": [ - "792df9a12196bb018216dbfe037dc334" + "7ca4b9e8c3fac58d84733ae7f48b9f64" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:58:40 GMT" + "Mon, 13 Jul 2015 10:24:40 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedServerUpdatePolicyWithNoStorage.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedServerUpdatePolicyWithNoStorage.json index df75273d5dd7..7ab30533443d 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedServerUpdatePolicyWithNoStorage.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedServerUpdatePolicyWithNoStorage.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c8ca510d2e6fb97dad6f8e1aeef51795" + "84b207f37ca3c49f9ffcd8b47211b501" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:51:06 GMT" + "Mon, 13 Jul 2015 09:28:37 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets161" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/c8ca510d2e6fb97dad6f8e1aeef51795", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2M4Y2E1MTBkMmU2ZmI5N2RhZDZmOGUxYWVlZjUxNzk1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/84b207f37ca3c49f9ffcd8b47211b501", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg0YjIwN2YzN2NhM2M0OWY5ZmZjZDhiNDcyMTFiNTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n c8ca510d-2e6f-b97d-ad6f-8e1aeef51795\r\n InProgress\r\n", + "ResponseBody": "\r\n 84b207f3-7ca3-c49f-9ffc-d8b47211b501\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "193e107596d6b259be0d2392a7efd0aa" + "799dd2d18238c45e9ccd295a22f938b8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:51:06 GMT" + "Mon, 13 Jul 2015 09:28:38 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/c8ca510d2e6fb97dad6f8e1aeef51795", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2M4Y2E1MTBkMmU2ZmI5N2RhZDZmOGUxYWVlZjUxNzk1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/84b207f37ca3c49f9ffcd8b47211b501", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg0YjIwN2YzN2NhM2M0OWY5ZmZjZDhiNDcyMTFiNTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n c8ca510d-2e6f-b97d-ad6f-8e1aeef51795\r\n InProgress\r\n", + "ResponseBody": "\r\n 84b207f3-7ca3-c49f-9ffc-d8b47211b501\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c05ecc675bd9b87d927e2b1b61a38521" + "34b9774fe044c4c18b1001b31f5f10bc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:51:37 GMT" + "Mon, 13 Jul 2015 09:29:08 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/c8ca510d2e6fb97dad6f8e1aeef51795", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2M4Y2E1MTBkMmU2ZmI5N2RhZDZmOGUxYWVlZjUxNzk1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/84b207f37ca3c49f9ffcd8b47211b501", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg0YjIwN2YzN2NhM2M0OWY5ZmZjZDhiNDcyMTFiNTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n c8ca510d-2e6f-b97d-ad6f-8e1aeef51795\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 84b207f3-7ca3-c49f-9ffc-d8b47211b501\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "d670711df5f3b6548d945dc929d866cc" + "cd4b488a7e17c9839a511d83a25c7fef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:08 GMT" + "Mon, 13 Jul 2015 09:29:38 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14825" ], "x-ms-request-id": [ - "7ba54488-0517-441c-965e-782ea9fb7e5d" + "a7cf19c5-f272-4502-a4fb-39083564ae57" ], "x-ms-correlation-request-id": [ - "7ba54488-0517-441c-965e-782ea9fb7e5d" + "a7cf19c5-f272-4502-a4fb-39083564ae57" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115209Z:7ba54488-0517-441c-965e-782ea9fb7e5d" + "WESTEUROPE:20150713T092940Z:a7cf19c5-f272-4502-a4fb-39083564ae57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:08 GMT" + "Mon, 13 Jul 2015 09:29:39 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1196" ], "x-ms-request-id": [ - "1090af65-1cc8-4169-8d9b-722369bac92d" + "9f10d92d-92c2-4704-9313-0ed6682490ec" ], "x-ms-correlation-request-id": [ - "1090af65-1cc8-4169-8d9b-722369bac92d" + "9f10d92d-92c2-4704-9313-0ed6682490ec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115211Z:1090af65-1cc8-4169-8d9b-722369bac92d" + "WESTEUROPE:20150713T092942Z:9f10d92d-92c2-4704-9313-0ed6682490ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:10 GMT" + "Mon, 13 Jul 2015 09:29:41 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:52:12.1000278Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"0706c3b4-7168-42ce-a243-ef9fe25344b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:29:42.8791168Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"5acfa6ed-94ce-4454-9aa9-d77d59342312\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1195" ], "x-ms-request-id": [ - "0706c3b4-7168-42ce-a243-ef9fe25344b5" + "5acfa6ed-94ce-4454-9aa9-d77d59342312" ], "x-ms-correlation-request-id": [ - "0706c3b4-7168-42ce-a243-ef9fe25344b5" + "5acfa6ed-94ce-4454-9aa9-d77d59342312" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115212Z:0706c3b4-7168-42ce-a243-ef9fe25344b5" + "WESTEUROPE:20150713T092942Z:5acfa6ed-94ce-4454-9aa9-d77d59342312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:11 GMT" + "Mon, 13 Jul 2015 09:29:42 GMT" ] }, "StatusCode": 200 @@ -345,10 +345,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:52:14.3476787Z\",\r\n \"duration\": \"PT1.5351456S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:29:44.730784Z\",\r\n \"duration\": \"PT1.112862S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1194" ], "x-ms-request-id": [ - "d038454c-7106-4a7a-b996-eb8b9077deb4" + "15374048-2bae-4611-a490-3f6991c4e265" ], "x-ms-correlation-request-id": [ - "d038454c-7106-4a7a-b996-eb8b9077deb4" + "15374048-2bae-4611-a490-3f6991c4e265" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115214Z:d038454c-7106-4a7a-b996-eb8b9077deb4" + "WESTEUROPE:20150713T092945Z:15374048-2bae-4611-a490-3f6991c4e265" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:13 GMT" + "Mon, 13 Jul 2015 09:29:44 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14824" ], "x-ms-request-id": [ - "5954ae35-34f3-442d-b7e5-482be1371eb6" + "33ea8e3d-76fa-4525-8a01-02c1b18306f3" ], "x-ms-correlation-request-id": [ - "5954ae35-34f3-442d-b7e5-482be1371eb6" + "33ea8e3d-76fa-4525-8a01-02c1b18306f3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115215Z:5954ae35-34f3-442d-b7e5-482be1371eb6" + "WESTEUROPE:20150713T092945Z:33ea8e3d-76fa-4525-8a01-02c1b18306f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:14 GMT" + "Mon, 13 Jul 2015 09:29:44 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14821" ], "x-ms-request-id": [ - "33822960-feaa-4e4f-bf63-66f6602fd2fe" + "e009dc77-d7f0-4442-976d-edb851b91870" ], "x-ms-correlation-request-id": [ - "33822960-feaa-4e4f-bf63-66f6602fd2fe" + "e009dc77-d7f0-4442-976d-edb851b91870" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115218Z:33822960-feaa-4e4f-bf63-66f6602fd2fe" + "WESTEUROPE:20150713T092949Z:e009dc77-d7f0-4442-976d-edb851b91870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:18 GMT" + "Mon, 13 Jul 2015 09:29:48 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14818" ], "x-ms-request-id": [ - "90450fe7-46e7-4660-8d68-a5f3d8619613" + "f982eae5-f3e4-46c7-a805-ca55ce2f3a68" ], "x-ms-correlation-request-id": [ - "90450fe7-46e7-4660-8d68-a5f3d8619613" + "f982eae5-f3e4-46c7-a805-ca55ce2f3a68" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115221Z:90450fe7-46e7-4660-8d68-a5f3d8619613" + "WESTEUROPE:20150713T092951Z:f982eae5-f3e4-46c7-a805-ca55ce2f3a68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:21 GMT" + "Mon, 13 Jul 2015 09:29:51 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14816" ], "x-ms-request-id": [ - "f4d2ae7a-7661-45de-8355-b74aba823709" + "69cc0d40-76aa-4163-8576-db61f8ca6907" ], "x-ms-correlation-request-id": [ - "f4d2ae7a-7661-45de-8355-b74aba823709" + "69cc0d40-76aa-4163-8576-db61f8ca6907" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115224Z:f4d2ae7a-7661-45de-8355-b74aba823709" + "WESTEUROPE:20150713T092954Z:69cc0d40-76aa-4163-8576-db61f8ca6907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:24 GMT" + "Mon, 13 Jul 2015 09:29:53 GMT" ] }, "StatusCode": 200 @@ -585,7 +585,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:52:26.7964626Z\",\r\n \"duration\": \"PT11.4974652S\",\r\n \"trackingId\": \"87d62757-6c6f-4909-b126-7898e1c59bf5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:29:57.2225666Z\",\r\n \"duration\": \"PT10.9355701S\",\r\n \"trackingId\": \"84c6f937-57f7-4e51-8e82-38ad0eecdeee\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14814" ], "x-ms-request-id": [ - "b19ce97c-42a1-4e1c-b4ec-c200b2955113" + "38979b3b-0a4c-44bf-bd17-ad7a29e61ca9" ], "x-ms-correlation-request-id": [ - "b19ce97c-42a1-4e1c-b4ec-c200b2955113" + "38979b3b-0a4c-44bf-bd17-ad7a29e61ca9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115227Z:b19ce97c-42a1-4e1c-b4ec-c200b2955113" + "WESTEUROPE:20150713T092957Z:38979b3b-0a4c-44bf-bd17-ad7a29e61ca9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:27 GMT" + "Mon, 13 Jul 2015 09:29:57 GMT" ] }, "StatusCode": 200 @@ -633,7 +633,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:52:26.7964626Z\",\r\n \"duration\": \"PT11.4974652S\",\r\n \"trackingId\": \"87d62757-6c6f-4909-b126-7898e1c59bf5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:29:57.2225666Z\",\r\n \"duration\": \"PT10.9355701S\",\r\n \"trackingId\": \"84c6f937-57f7-4e51-8e82-38ad0eecdeee\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14870" ], "x-ms-request-id": [ - "451b3248-a9e7-4a8d-bf2f-a68bcb530f52" + "1b404174-b29a-45fd-99ca-6a55b5b936ac" ], "x-ms-correlation-request-id": [ - "451b3248-a9e7-4a8d-bf2f-a68bcb530f52" + "1b404174-b29a-45fd-99ca-6a55b5b936ac" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115230Z:451b3248-a9e7-4a8d-bf2f-a68bcb530f52" + "WESTEUROPE:20150713T093000Z:1b404174-b29a-45fd-99ca-6a55b5b936ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:30 GMT" + "Mon, 13 Jul 2015 09:30:00 GMT" ] }, "StatusCode": 200 @@ -681,7 +681,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:52:26.7964626Z\",\r\n \"duration\": \"PT11.4974652S\",\r\n \"trackingId\": \"87d62757-6c6f-4909-b126-7898e1c59bf5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:29:57.2225666Z\",\r\n \"duration\": \"PT10.9355701S\",\r\n \"trackingId\": \"84c6f937-57f7-4e51-8e82-38ad0eecdeee\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14868" ], "x-ms-request-id": [ - "15d5ed4a-87e2-4735-82dc-3b88170799b8" + "b1052dfc-7504-4eb9-954d-07a9185bd568" ], "x-ms-correlation-request-id": [ - "15d5ed4a-87e2-4735-82dc-3b88170799b8" + "b1052dfc-7504-4eb9-954d-07a9185bd568" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115233Z:15d5ed4a-87e2-4735-82dc-3b88170799b8" + "WESTEUROPE:20150713T093003Z:b1052dfc-7504-4eb9-954d-07a9185bd568" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:33 GMT" + "Mon, 13 Jul 2015 09:30:03 GMT" ] }, "StatusCode": 200 @@ -729,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/BC6E2DC8B28C2A84\",\r\n \"operationId\": \"BC6E2DC8B28C2A84\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:52:35.2261823Z\",\r\n \"duration\": \"PT8.3601693S\",\r\n \"trackingId\": \"03fc91d2-6742-44e5-a9ec-9b6bcd25b2dd\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:52:26.7964626Z\",\r\n \"duration\": \"PT11.4974652S\",\r\n \"trackingId\": \"87d62757-6c6f-4909-b126-7898e1c59bf5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:29:57.2225666Z\",\r\n \"duration\": \"PT10.9355701S\",\r\n \"trackingId\": \"84c6f937-57f7-4e51-8e82-38ad0eecdeee\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14866" ], "x-ms-request-id": [ - "44a49c98-5c45-481a-8073-38a7c8cbc981" + "9350be5a-8ac2-42a4-a979-a68f3ea1e720" ], "x-ms-correlation-request-id": [ - "44a49c98-5c45-481a-8073-38a7c8cbc981" + "9350be5a-8ac2-42a4-a979-a68f3ea1e720" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115236Z:44a49c98-5c45-481a-8073-38a7c8cbc981" + "WESTEUROPE:20150713T093006Z:9350be5a-8ac2-42a4-a979-a68f3ea1e720" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:36 GMT" + "Mon, 13 Jul 2015 09:30:06 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/BC6E2DC8B28C2A84\",\r\n \"operationId\": \"BC6E2DC8B28C2A84\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:52:35.2261823Z\",\r\n \"duration\": \"PT8.3601693S\",\r\n \"trackingId\": \"03fc91d2-6742-44e5-a9ec-9b6bcd25b2dd\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:52:26.7964626Z\",\r\n \"duration\": \"PT11.4974652S\",\r\n \"trackingId\": \"87d62757-6c6f-4909-b126-7898e1c59bf5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/BC6E2DC8B28C2A84\",\r\n \"operationId\": \"BC6E2DC8B28C2A84\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:30:07.5189935Z\",\r\n \"duration\": \"PT10.2019132S\",\r\n \"trackingId\": \"52966da4-4e79-4961-b3cc-9272463f1ac8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup/operations/6E5DF2E334CF047A\",\r\n \"operationId\": \"6E5DF2E334CF047A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:29:57.2225666Z\",\r\n \"duration\": \"PT10.9355701S\",\r\n \"trackingId\": \"84c6f937-57f7-4e51-8e82-38ad0eecdeee\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14864" ], "x-ms-request-id": [ - "2d1e7592-8d7d-4a43-b71f-ded4b3cbd9eb" + "73e7346d-22f0-4826-ac81-861874630adb" ], "x-ms-correlation-request-id": [ - "2d1e7592-8d7d-4a43-b71f-ded4b3cbd9eb" + "73e7346d-22f0-4826-ac81-861874630adb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115239Z:2d1e7592-8d7d-4a43-b71f-ded4b3cbd9eb" + "WESTEUROPE:20150713T093010Z:73e7346d-22f0-4826-ac81-861874630adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:39 GMT" + "Mon, 13 Jul 2015 09:30:09 GMT" ] }, "StatusCode": 200 @@ -825,7 +825,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:52:15.1599183Z\",\r\n \"duration\": \"PT2.3473852S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:29:45.8193702Z\",\r\n \"duration\": \"PT2.2014482S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -840,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14822" ], "x-ms-request-id": [ - "f3ff652b-844a-48d4-9a34-ad08db3fe9ae" + "4df1c7f2-24a9-4e6d-8559-7a91f19494e3" ], "x-ms-correlation-request-id": [ - "f3ff652b-844a-48d4-9a34-ad08db3fe9ae" + "4df1c7f2-24a9-4e6d-8559-7a91f19494e3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115215Z:f3ff652b-844a-48d4-9a34-ad08db3fe9ae" + "WESTEUROPE:20150713T092946Z:4df1c7f2-24a9-4e6d-8559-7a91f19494e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:14 GMT" + "Mon, 13 Jul 2015 09:29:45 GMT" ] }, "StatusCode": 200 @@ -873,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:52:15.1599183Z\",\r\n \"duration\": \"PT2.3473852S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:29:45.8193702Z\",\r\n \"duration\": \"PT2.2014482S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14819" ], "x-ms-request-id": [ - "98702b64-33dd-44e8-be07-4fe229015db5" + "3d9b99ba-9dec-4dbe-ad72-c450a304a3a8" ], "x-ms-correlation-request-id": [ - "98702b64-33dd-44e8-be07-4fe229015db5" + "3d9b99ba-9dec-4dbe-ad72-c450a304a3a8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115218Z:98702b64-33dd-44e8-be07-4fe229015db5" + "WESTEUROPE:20150713T092949Z:3d9b99ba-9dec-4dbe-ad72-c450a304a3a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:18 GMT" + "Mon, 13 Jul 2015 09:29:48 GMT" ] }, "StatusCode": 200 @@ -921,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:52:15.1599183Z\",\r\n \"duration\": \"PT2.3473852S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:29:45.8193702Z\",\r\n \"duration\": \"PT2.2014482S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14817" ], "x-ms-request-id": [ - "adae15d6-cc51-4bfc-aa89-b87dac548a99" + "f55bb461-498f-4385-be13-493ea74bd298" ], "x-ms-correlation-request-id": [ - "adae15d6-cc51-4bfc-aa89-b87dac548a99" + "f55bb461-498f-4385-be13-493ea74bd298" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115221Z:adae15d6-cc51-4bfc-aa89-b87dac548a99" + "WESTEUROPE:20150713T092952Z:f55bb461-498f-4385-be13-493ea74bd298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:21 GMT" + "Mon, 13 Jul 2015 09:29:51 GMT" ] }, "StatusCode": 200 @@ -969,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:52:15.1599183Z\",\r\n \"duration\": \"PT2.3473852S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:29:45.8193702Z\",\r\n \"duration\": \"PT2.2014482S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14815" ], "x-ms-request-id": [ - "d22bf1fd-82fd-4b9b-b5fe-0b16a3af89b6" + "3d097da9-08d8-4aab-92fc-163921b60a00" ], "x-ms-correlation-request-id": [ - "d22bf1fd-82fd-4b9b-b5fe-0b16a3af89b6" + "3d097da9-08d8-4aab-92fc-163921b60a00" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115224Z:d22bf1fd-82fd-4b9b-b5fe-0b16a3af89b6" + "WESTEUROPE:20150713T092955Z:3d097da9-08d8-4aab-92fc-163921b60a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:24 GMT" + "Mon, 13 Jul 2015 09:29:54 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:52:15.1599183Z\",\r\n \"duration\": \"PT2.3473852S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:29:45.8193702Z\",\r\n \"duration\": \"PT2.2014482S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14813" ], "x-ms-request-id": [ - "e156bf40-ac5d-45b1-9508-cf3694e15e5c" + "9559d771-0dbe-4a6b-b45d-a8e03cf91095" ], "x-ms-correlation-request-id": [ - "e156bf40-ac5d-45b1-9508-cf3694e15e5c" + "9559d771-0dbe-4a6b-b45d-a8e03cf91095" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115227Z:e156bf40-ac5d-45b1-9508-cf3694e15e5c" + "WESTEUROPE:20150713T092958Z:9559d771-0dbe-4a6b-b45d-a8e03cf91095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:27 GMT" + "Mon, 13 Jul 2015 09:29:58 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:52:15.1599183Z\",\r\n \"duration\": \"PT2.3473852S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:29:45.8193702Z\",\r\n \"duration\": \"PT2.2014482S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14869" ], "x-ms-request-id": [ - "c3a3a38e-60b7-4b7e-b2f1-b2b333fa461a" + "d827e725-47aa-46f8-9e5d-8a5214285dd6" ], "x-ms-correlation-request-id": [ - "c3a3a38e-60b7-4b7e-b2f1-b2b333fa461a" + "d827e725-47aa-46f8-9e5d-8a5214285dd6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115230Z:c3a3a38e-60b7-4b7e-b2f1-b2b333fa461a" + "WESTEUROPE:20150713T093001Z:d827e725-47aa-46f8-9e5d-8a5214285dd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:30 GMT" + "Mon, 13 Jul 2015 09:30:01 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:52:15.1599183Z\",\r\n \"duration\": \"PT2.3473852S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:29:45.8193702Z\",\r\n \"duration\": \"PT2.2014482S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14867" ], "x-ms-request-id": [ - "20bb17aa-1851-4a2b-92a5-39098e686e9c" + "b1d6350e-ae83-431e-a310-f66b8ba680c2" ], "x-ms-correlation-request-id": [ - "20bb17aa-1851-4a2b-92a5-39098e686e9c" + "b1d6350e-ae83-431e-a310-f66b8ba680c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115233Z:20bb17aa-1851-4a2b-92a5-39098e686e9c" + "WESTEUROPE:20150713T093004Z:b1d6350e-ae83-431e-a310-f66b8ba680c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:33 GMT" + "Mon, 13 Jul 2015 09:30:04 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:52:15.1599183Z\",\r\n \"duration\": \"PT2.3473852S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:29:45.8193702Z\",\r\n \"duration\": \"PT2.2014482S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14865" ], "x-ms-request-id": [ - "800394cb-5b60-4614-80a8-6c94869d40ff" + "41fea93e-c98e-4f7d-b4b6-3161a976e213" ], "x-ms-correlation-request-id": [ - "800394cb-5b60-4614-80a8-6c94869d40ff" + "41fea93e-c98e-4f7d-b4b6-3161a976e213" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115237Z:800394cb-5b60-4614-80a8-6c94869d40ff" + "WESTEUROPE:20150713T093007Z:41fea93e-c98e-4f7d-b4b6-3161a976e213" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:36 GMT" + "Mon, 13 Jul 2015 09:30:07 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:52:37.6235461Z\",\r\n \"duration\": \"PT24.811013S\",\r\n \"correlationId\": \"d038454c-7106-4a7a-b996-eb8b9077deb4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db161\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server161\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:30:09.3966061Z\",\r\n \"duration\": \"PT25.7786841S\",\r\n \"correlationId\": \"15374048-2bae-4611-a490-3f6991c4e265\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg161/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server161/sql-audit-cmdlet-db161\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server161\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server161/databases/sql-audit-cmdlet-db161\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1652" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14863" ], "x-ms-request-id": [ - "f1dda684-0413-40ec-bd10-7d1fb7910bb7" + "96f55f16-02f2-482f-a0a5-298a4348681c" ], "x-ms-correlation-request-id": [ - "f1dda684-0413-40ec-bd10-7d1fb7910bb7" + "96f55f16-02f2-482f-a0a5-298a4348681c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115240Z:f1dda684-0413-40ec-bd10-7d1fb7910bb7" + "WESTEUROPE:20150713T093010Z:96f55f16-02f2-482f-a0a5-298a4348681c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:39 GMT" + "Mon, 13 Jul 2015 09:30:10 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14862" ], "x-ms-request-id": [ - "b0522fe0-6c4c-49e3-bb3a-b9eb49d8e991" + "55b7835f-6a51-4029-9103-6215a004adb4" ], "x-ms-correlation-request-id": [ - "b0522fe0-6c4c-49e3-bb3a-b9eb49d8e991" + "55b7835f-6a51-4029-9103-6215a004adb4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115242Z:b0522fe0-6c4c-49e3-bb3a-b9eb49d8e991" + "WESTEUROPE:20150713T093012Z:55b7835f-6a51-4029-9103-6215a004adb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:41 GMT" + "Mon, 13 Jul 2015 09:30:12 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:5c34a45c-9e07-4e5c-ac17-b6b194833f11" + "westeurope:b44712ac-2ce7-460e-b141-860fb7823693" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14861" ], "x-ms-correlation-request-id": [ - "99758ff7-b9e1-40b0-b3ba-22de261ac4e3" + "a96daafe-ab47-4daa-80c9-03eaa0e3b771" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115242Z:99758ff7-b9e1-40b0-b3ba-22de261ac4e3" + "WESTEUROPE:20150713T093013Z:a96daafe-ab47-4daa-80c9-03eaa0e3b771" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:42 GMT" + "Mon, 13 Jul 2015 09:30:13 GMT" ] }, "StatusCode": 200 @@ -1368,13 +1368,13 @@ "ussouth3" ], "x-ms-request-id": [ - "67ac73806a8cbeb1a9a4d83804010fef" + "ad5feafa1541c654b19f31d893b83510" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:51 GMT" + "Mon, 13 Jul 2015 09:30:16 GMT" ], "Server": [ "1.0.6198.243", @@ -1385,8 +1385,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/67ac73806a8cbeb1a9a4d83804010fef", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzY3YWM3MzgwNmE4Y2JlYjFhOWE0ZDgzODA0MDEwZmVm", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/ad5feafa1541c654b19f31d893b83510", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2FkNWZlYWZhMTU0MWM2NTRiMTlmMzFkODkzYjgzNTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1397,7 +1397,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 67ac7380-6a8c-beb1-a9a4-d83804010fef\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n ad5feafa-1541-c654-b19f-31d893b83510\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1409,13 +1409,13 @@ "ussouth3" ], "x-ms-request-id": [ - "0b30436a7c81bc47a1a28d762c41561b" + "8faae55c72fccb469747b060bc854036" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:52:52 GMT" + "Mon, 13 Jul 2015 09:30:17 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedUseServerDefault.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedUseServerDefault.json index 2411852d1da0..b67000863cc3 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedUseServerDefault.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestFailedUseServerDefault.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "d13bbc97e987bfc291c755932cbfe289" + "811c92c714e6c4248eb4fb8ef5bb5d71" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:53:50 GMT" + "Mon, 13 Jul 2015 09:48:12 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets171" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d13bbc97e987bfc291c755932cbfe289", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2QxM2JiYzk3ZTk4N2JmYzI5MWM3NTU5MzJjYmZlMjg5", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/811c92c714e6c4248eb4fb8ef5bb5d71", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzgxMWM5MmM3MTRlNmM0MjQ4ZWI0ZmI4ZWY1YmI1ZDcx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n d13bbc97-e987-bfc2-91c7-55932cbfe289\r\n InProgress\r\n", + "ResponseBody": "\r\n 811c92c7-14e6-c424-8eb4-fb8ef5bb5d71\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "55a93baefe6fb888a1ceef69d21caf68" + "e24d608714b5c341afd60fd44bfde95e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:53:51 GMT" + "Mon, 13 Jul 2015 09:48:13 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d13bbc97e987bfc291c755932cbfe289", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2QxM2JiYzk3ZTk4N2JmYzI5MWM3NTU5MzJjYmZlMjg5", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/811c92c714e6c4248eb4fb8ef5bb5d71", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzgxMWM5MmM3MTRlNmM0MjQ4ZWI0ZmI4ZWY1YmI1ZDcx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n d13bbc97-e987-bfc2-91c7-55932cbfe289\r\n InProgress\r\n", + "ResponseBody": "\r\n 811c92c7-14e6-c424-8eb4-fb8ef5bb5d71\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "ef682b7ab715b4308462b61592f79092" + "b8dbd1342d92c5fd8e34a5aaa61d3513" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:54:20 GMT" + "Mon, 13 Jul 2015 09:48:43 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d13bbc97e987bfc291c755932cbfe289", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2QxM2JiYzk3ZTk4N2JmYzI5MWM3NTU5MzJjYmZlMjg5", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/811c92c714e6c4248eb4fb8ef5bb5d71", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzgxMWM5MmM3MTRlNmM0MjQ4ZWI0ZmI4ZWY1YmI1ZDcx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n d13bbc97-e987-bfc2-91c7-55932cbfe289\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 811c92c7-14e6-c424-8eb4-fb8ef5bb5d71\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b2d38aaedd82b2dd97b9e3241f338c67" + "78a95f28b2cfc3f5a0a06579e4ffeb7e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:54:51 GMT" + "Mon, 13 Jul 2015 09:49:13 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14846" ], "x-ms-request-id": [ - "6b0b6d0c-f533-4c0a-844c-495838482fb7" + "3553c45e-acac-4dda-8749-48dfd42c8b37" ], "x-ms-correlation-request-id": [ - "6b0b6d0c-f533-4c0a-844c-495838482fb7" + "3553c45e-acac-4dda-8749-48dfd42c8b37" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115452Z:6b0b6d0c-f533-4c0a-844c-495838482fb7" + "WESTEUROPE:20150713T094915Z:3553c45e-acac-4dda-8749-48dfd42c8b37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:54:52 GMT" + "Mon, 13 Jul 2015 09:49:14 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-request-id": [ - "8b0bf1cd-91db-4498-97f5-dea37ebfa3f3" + "d0f4fd36-fdb5-4ce4-973d-1e64c1944043" ], "x-ms-correlation-request-id": [ - "8b0bf1cd-91db-4498-97f5-dea37ebfa3f3" + "d0f4fd36-fdb5-4ce4-973d-1e64c1944043" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115454Z:8b0bf1cd-91db-4498-97f5-dea37ebfa3f3" + "WESTEUROPE:20150713T094917Z:d0f4fd36-fdb5-4ce4-973d-1e64c1944043" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:54:54 GMT" + "Mon, 13 Jul 2015 09:49:17 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:54:55.4676605Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"2b8a3133-0f3e-415e-bde5-d2327d7809f9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:49:18.1154786Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"839e6f14-6232-4bc7-aa34-5b58d2022a5f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-request-id": [ - "2b8a3133-0f3e-415e-bde5-d2327d7809f9" + "839e6f14-6232-4bc7-aa34-5b58d2022a5f" ], "x-ms-correlation-request-id": [ - "2b8a3133-0f3e-415e-bde5-d2327d7809f9" + "839e6f14-6232-4bc7-aa34-5b58d2022a5f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115455Z:2b8a3133-0f3e-415e-bde5-d2327d7809f9" + "WESTEUROPE:20150713T094918Z:839e6f14-6232-4bc7-aa34-5b58d2022a5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:54:55 GMT" + "Mon, 13 Jul 2015 09:49:18 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:54:57.2791799Z\",\r\n \"duration\": \"PT1.0941735S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:49:20.1340489Z\",\r\n \"duration\": \"PT1.1810605S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1193" ], "x-ms-request-id": [ - "19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c" + "0f838c15-0e63-4f76-9748-5cdd98473704" ], "x-ms-correlation-request-id": [ - "19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c" + "0f838c15-0e63-4f76-9748-5cdd98473704" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115458Z:19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c" + "WESTEUROPE:20150713T094920Z:0f838c15-0e63-4f76-9748-5cdd98473704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:54:57 GMT" + "Mon, 13 Jul 2015 09:49:20 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14845" ], "x-ms-request-id": [ - "995dd013-b899-4ee9-ad06-a80daf0ea18f" + "ec495bef-d409-4b95-a6a3-8d91c58276fe" ], "x-ms-correlation-request-id": [ - "995dd013-b899-4ee9-ad06-a80daf0ea18f" + "ec495bef-d409-4b95-a6a3-8d91c58276fe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115458Z:995dd013-b899-4ee9-ad06-a80daf0ea18f" + "WESTEUROPE:20150713T094921Z:ec495bef-d409-4b95-a6a3-8d91c58276fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:54:58 GMT" + "Mon, 13 Jul 2015 09:49:21 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14843" ], "x-ms-request-id": [ - "bf49e475-3439-4711-a398-0825d4ca5805" + "9a1e84d5-8580-4412-a067-07125db6920b" ], "x-ms-correlation-request-id": [ - "bf49e475-3439-4711-a398-0825d4ca5805" + "9a1e84d5-8580-4412-a067-07125db6920b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115501Z:bf49e475-3439-4711-a398-0825d4ca5805" + "WESTEUROPE:20150713T094924Z:9a1e84d5-8580-4412-a067-07125db6920b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:01 GMT" + "Mon, 13 Jul 2015 09:49:24 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14841" ], "x-ms-request-id": [ - "b787edd5-769e-4985-ba7d-9d5053176025" + "fb0d9124-a2ad-4d89-a6c6-48b768b8f4b1" ], "x-ms-correlation-request-id": [ - "b787edd5-769e-4985-ba7d-9d5053176025" + "fb0d9124-a2ad-4d89-a6c6-48b768b8f4b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115504Z:b787edd5-769e-4985-ba7d-9d5053176025" + "WESTEUROPE:20150713T094927Z:fb0d9124-a2ad-4d89-a6c6-48b768b8f4b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:04 GMT" + "Mon, 13 Jul 2015 09:49:27 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14839" ], "x-ms-request-id": [ - "ae888d3d-8ffa-4af2-b3db-672739f5c2bd" + "381a3116-d6e3-4570-b805-c0eb7490e552" ], "x-ms-correlation-request-id": [ - "ae888d3d-8ffa-4af2-b3db-672739f5c2bd" + "381a3116-d6e3-4570-b805-c0eb7490e552" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115507Z:ae888d3d-8ffa-4af2-b3db-672739f5c2bd" + "WESTEUROPE:20150713T094930Z:381a3116-d6e3-4570-b805-c0eb7490e552" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:07 GMT" + "Mon, 13 Jul 2015 09:49:30 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14837" ], "x-ms-request-id": [ - "905c852c-b85b-4064-b50f-b6994c724558" + "a06610b7-fa75-46a7-808e-c0727839e6a7" ], "x-ms-correlation-request-id": [ - "905c852c-b85b-4064-b50f-b6994c724558" + "a06610b7-fa75-46a7-808e-c0727839e6a7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115511Z:905c852c-b85b-4064-b50f-b6994c724558" + "WESTEUROPE:20150713T094933Z:a06610b7-fa75-46a7-808e-c0727839e6a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:10 GMT" + "Mon, 13 Jul 2015 09:49:32 GMT" ] }, "StatusCode": 200 @@ -633,154 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-request-id": [ - "74a011db-86ae-4ec2-98ba-74b1d17058f4" - ], - "x-ms-correlation-request-id": [ - "74a011db-86ae-4ec2-98ba-74b1d17058f4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115514Z:74a011db-86ae-4ec2-98ba-74b1d17058f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:55:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE3MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-request-id": [ - "486cfc7a-a965-43dc-8f40-7f41a0ea9cb6" - ], - "x-ms-correlation-request-id": [ - "486cfc7a-a965-43dc-8f40-7f41a0ea9cb6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115517Z:486cfc7a-a965-43dc-8f40-7f41a0ea9cb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:55:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE3MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-request-id": [ - "3c273833-f14a-4ccb-8010-fed41efff8b0" - ], - "x-ms-correlation-request-id": [ - "3c273833-f14a-4ccb-8010-fed41efff8b0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115520Z:3c273833-f14a-4ccb-8010-fed41efff8b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:55:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE3MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/AEA9A39C669EA442\",\r\n \"operationId\": \"AEA9A39C669EA442\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:55:22.0442793Z\",\r\n \"duration\": \"PT23.2479028S\",\r\n \"trackingId\": \"80c04ee2-3b8b-43c4-821f-244e2e4c9454\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/AEA9A39C669EA442\",\r\n \"operationId\": \"AEA9A39C669EA442\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:49:35.946549Z\",\r\n \"duration\": \"PT11.7976034S\",\r\n \"trackingId\": \"07b2fb67-34df-4aa8-b824-3e0cd413ae15\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14834" ], "x-ms-request-id": [ - "e45e0c2a-d6c3-4515-aa09-3a0dd0e4542d" + "590e5e16-fcc0-42a1-87ae-e1db5abf626b" ], "x-ms-correlation-request-id": [ - "e45e0c2a-d6c3-4515-aa09-3a0dd0e4542d" + "590e5e16-fcc0-42a1-87ae-e1db5abf626b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115523Z:e45e0c2a-d6c3-4515-aa09-3a0dd0e4542d" + "WESTEUROPE:20150713T094936Z:590e5e16-fcc0-42a1-87ae-e1db5abf626b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:22 GMT" + "Mon, 13 Jul 2015 09:49:35 GMT" ] }, "StatusCode": 200 @@ -825,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/AEA9A39C669EA442\",\r\n \"operationId\": \"AEA9A39C669EA442\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:55:22.0442793Z\",\r\n \"duration\": \"PT23.2479028S\",\r\n \"trackingId\": \"80c04ee2-3b8b-43c4-821f-244e2e4c9454\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/AEA9A39C669EA442\",\r\n \"operationId\": \"AEA9A39C669EA442\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:49:35.946549Z\",\r\n \"duration\": \"PT11.7976034S\",\r\n \"trackingId\": \"07b2fb67-34df-4aa8-b824-3e0cd413ae15\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14832" ], "x-ms-request-id": [ - "912effb5-0d47-4f97-9dd0-59485a135b9c" + "ef48e14b-7126-4e1e-9b02-7dec545c4ac2" ], "x-ms-correlation-request-id": [ - "912effb5-0d47-4f97-9dd0-59485a135b9c" + "ef48e14b-7126-4e1e-9b02-7dec545c4ac2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115526Z:912effb5-0d47-4f97-9dd0-59485a135b9c" + "WESTEUROPE:20150713T094939Z:ef48e14b-7126-4e1e-9b02-7dec545c4ac2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:25 GMT" + "Mon, 13 Jul 2015 09:49:38 GMT" ] }, "StatusCode": 200 @@ -873,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/AEA9A39C669EA442\",\r\n \"operationId\": \"AEA9A39C669EA442\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:55:22.0442793Z\",\r\n \"duration\": \"PT23.2479028S\",\r\n \"trackingId\": \"80c04ee2-3b8b-43c4-821f-244e2e4c9454\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/AEA9A39C669EA442\",\r\n \"operationId\": \"AEA9A39C669EA442\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:49:35.946549Z\",\r\n \"duration\": \"PT11.7976034S\",\r\n \"trackingId\": \"07b2fb67-34df-4aa8-b824-3e0cd413ae15\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14830" ], "x-ms-request-id": [ - "e9bed8e7-4786-495a-b43a-81b12f367ee9" + "c9bb193b-d6f7-445b-a195-a2bb5f66447c" ], "x-ms-correlation-request-id": [ - "e9bed8e7-4786-495a-b43a-81b12f367ee9" + "c9bb193b-d6f7-445b-a195-a2bb5f66447c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115529Z:e9bed8e7-4786-495a-b43a-81b12f367ee9" + "WESTEUROPE:20150713T094942Z:c9bb193b-d6f7-445b-a195-a2bb5f66447c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:28 GMT" + "Mon, 13 Jul 2015 09:49:41 GMT" ] }, "StatusCode": 200 @@ -921,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/DD63DBEE1EB10342\",\r\n \"operationId\": \"DD63DBEE1EB10342\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:55:29.5792797Z\",\r\n \"duration\": \"PT7.4556741S\",\r\n \"trackingId\": \"9a0dac1d-5092-4b99-9e00-5903042638c4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/AEA9A39C669EA442\",\r\n \"operationId\": \"AEA9A39C669EA442\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:55:22.0442793Z\",\r\n \"duration\": \"PT23.2479028S\",\r\n \"trackingId\": \"80c04ee2-3b8b-43c4-821f-244e2e4c9454\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/DD63DBEE1EB10342\",\r\n \"operationId\": \"DD63DBEE1EB10342\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:49:43.4371874Z\",\r\n \"duration\": \"PT6.9560107S\",\r\n \"trackingId\": \"7ee0545d-cba0-4dc2-a201-9a619e92b134\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup/operations/AEA9A39C669EA442\",\r\n \"operationId\": \"AEA9A39C669EA442\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:49:35.946549Z\",\r\n \"duration\": \"PT11.7976034S\",\r\n \"trackingId\": \"07b2fb67-34df-4aa8-b824-3e0cd413ae15\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "1389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14828" ], "x-ms-request-id": [ - "f1c9e9f6-9d1d-4a2f-953c-7e1e2bfba387" + "78176bf9-1293-42b0-9464-686588bdab90" ], "x-ms-correlation-request-id": [ - "f1c9e9f6-9d1d-4a2f-953c-7e1e2bfba387" + "78176bf9-1293-42b0-9464-686588bdab90" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115532Z:f1c9e9f6-9d1d-4a2f-953c-7e1e2bfba387" + "WESTEUROPE:20150713T094945Z:78176bf9-1293-42b0-9464-686588bdab90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:31 GMT" + "Mon, 13 Jul 2015 09:49:45 GMT" ] }, "StatusCode": 200 @@ -969,154 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T09:49:20.1340489Z\",\r\n \"duration\": \"PT1.1810605S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-request-id": [ - "8dc62592-e5a5-43b4-a35f-0cffb40383dd" - ], - "x-ms-correlation-request-id": [ - "8dc62592-e5a5-43b4-a35f-0cffb40383dd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115459Z:8dc62592-e5a5-43b4-a35f-0cffb40383dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:54:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE3MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-request-id": [ - "2e23ff56-93bf-40e6-9622-64fb4a6c8130" - ], - "x-ms-correlation-request-id": [ - "2e23ff56-93bf-40e6-9622-64fb4a6c8130" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115502Z:2e23ff56-93bf-40e6-9622-64fb4a6c8130" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:55:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE3MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-request-id": [ - "2aacffcd-1fad-473b-8577-a4aa5bb2cb04" - ], - "x-ms-correlation-request-id": [ - "2aacffcd-1fad-473b-8577-a4aa5bb2cb04" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115505Z:2aacffcd-1fad-473b-8577-a4aa5bb2cb04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:55:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE3MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" + "1651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1128,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14844" ], "x-ms-request-id": [ - "c1b6de5f-1911-4299-a8d2-fcab3201aee9" + "d5611260-430a-4a04-bca7-bc9b803a703f" ], "x-ms-correlation-request-id": [ - "c1b6de5f-1911-4299-a8d2-fcab3201aee9" + "d5611260-430a-4a04-bca7-bc9b803a703f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115508Z:c1b6de5f-1911-4299-a8d2-fcab3201aee9" + "WESTEUROPE:20150713T094921Z:d5611260-430a-4a04-bca7-bc9b803a703f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:08 GMT" + "Mon, 13 Jul 2015 09:49:21 GMT" ] }, "StatusCode": 200 @@ -1161,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:49:23.3608209Z\",\r\n \"duration\": \"PT4.4078325S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14842" ], "x-ms-request-id": [ - "9c8111bc-718d-4d39-b5a6-d7dc97d7ef28" + "f0987e64-dfc7-454e-b4f4-eb0a3ae2a108" ], "x-ms-correlation-request-id": [ - "9c8111bc-718d-4d39-b5a6-d7dc97d7ef28" + "f0987e64-dfc7-454e-b4f4-eb0a3ae2a108" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115511Z:9c8111bc-718d-4d39-b5a6-d7dc97d7ef28" + "WESTEUROPE:20150713T094924Z:f0987e64-dfc7-454e-b4f4-eb0a3ae2a108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:11 GMT" + "Mon, 13 Jul 2015 09:49:24 GMT" ] }, "StatusCode": 200 @@ -1209,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:49:23.3608209Z\",\r\n \"duration\": \"PT4.4078325S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1224,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14840" ], "x-ms-request-id": [ - "8d3d21a9-b81a-49a9-a8cf-37e916ed93e4" + "8d6b66db-461e-4b41-8e26-671eefb0e2b8" ], "x-ms-correlation-request-id": [ - "8d3d21a9-b81a-49a9-a8cf-37e916ed93e4" + "8d6b66db-461e-4b41-8e26-671eefb0e2b8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115514Z:8d3d21a9-b81a-49a9-a8cf-37e916ed93e4" + "WESTEUROPE:20150713T094927Z:8d6b66db-461e-4b41-8e26-671eefb0e2b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:14 GMT" + "Mon, 13 Jul 2015 09:49:27 GMT" ] }, "StatusCode": 200 @@ -1257,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:49:23.3608209Z\",\r\n \"duration\": \"PT4.4078325S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1272,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14838" ], "x-ms-request-id": [ - "9bed023b-181f-4a68-a44e-7905d63d759b" + "920e8705-8bf4-4b2a-ae71-3e7d5a4dca62" ], "x-ms-correlation-request-id": [ - "9bed023b-181f-4a68-a44e-7905d63d759b" + "920e8705-8bf4-4b2a-ae71-3e7d5a4dca62" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115517Z:9bed023b-181f-4a68-a44e-7905d63d759b" + "WESTEUROPE:20150713T094930Z:920e8705-8bf4-4b2a-ae71-3e7d5a4dca62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:17 GMT" + "Mon, 13 Jul 2015 09:49:30 GMT" ] }, "StatusCode": 200 @@ -1305,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:49:23.3608209Z\",\r\n \"duration\": \"PT4.4078325S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1320,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14836" ], "x-ms-request-id": [ - "5370e493-d842-457d-857e-a2315ea69dcb" + "c5dba533-a92f-48df-b4bd-e901ca17f480" ], "x-ms-correlation-request-id": [ - "5370e493-d842-457d-857e-a2315ea69dcb" + "c5dba533-a92f-48df-b4bd-e901ca17f480" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115520Z:5370e493-d842-457d-857e-a2315ea69dcb" + "WESTEUROPE:20150713T094933Z:c5dba533-a92f-48df-b4bd-e901ca17f480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:20 GMT" + "Mon, 13 Jul 2015 09:49:33 GMT" ] }, "StatusCode": 200 @@ -1353,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:49:23.3608209Z\",\r\n \"duration\": \"PT4.4078325S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1368,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14833" ], "x-ms-request-id": [ - "dd2836b9-c39b-4ac5-b07e-af41f461165b" + "e3debc51-9c43-42d3-89ca-b2f6ea6b3e53" ], "x-ms-correlation-request-id": [ - "dd2836b9-c39b-4ac5-b07e-af41f461165b" + "e3debc51-9c43-42d3-89ca-b2f6ea6b3e53" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115523Z:dd2836b9-c39b-4ac5-b07e-af41f461165b" + "WESTEUROPE:20150713T094936Z:e3debc51-9c43-42d3-89ca-b2f6ea6b3e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:23 GMT" + "Mon, 13 Jul 2015 09:49:36 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:49:23.3608209Z\",\r\n \"duration\": \"PT4.4078325S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1416,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14831" ], "x-ms-request-id": [ - "2c386994-07ee-4a1e-a87a-1d2a63b7b99b" + "6cb57907-d13a-47bd-a98f-3a8940d1a4ba" ], "x-ms-correlation-request-id": [ - "2c386994-07ee-4a1e-a87a-1d2a63b7b99b" + "6cb57907-d13a-47bd-a98f-3a8940d1a4ba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115526Z:2c386994-07ee-4a1e-a87a-1d2a63b7b99b" + "WESTEUROPE:20150713T094939Z:6cb57907-d13a-47bd-a98f-3a8940d1a4ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:26 GMT" + "Mon, 13 Jul 2015 09:49:39 GMT" ] }, "StatusCode": 200 @@ -1449,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:54:58.3233723Z\",\r\n \"duration\": \"PT2.1383659S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T09:49:23.3608209Z\",\r\n \"duration\": \"PT4.4078325S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1464,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14829" ], "x-ms-request-id": [ - "765e89ae-0de6-4730-9a87-e79cd8315e3c" + "91d1da3f-4cad-4693-bcaa-843a500b18e3" ], "x-ms-correlation-request-id": [ - "765e89ae-0de6-4730-9a87-e79cd8315e3c" + "91d1da3f-4cad-4693-bcaa-843a500b18e3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115529Z:765e89ae-0de6-4730-9a87-e79cd8315e3c" + "WESTEUROPE:20150713T094942Z:91d1da3f-4cad-4693-bcaa-843a500b18e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:29 GMT" + "Mon, 13 Jul 2015 09:49:42 GMT" ] }, "StatusCode": 200 @@ -1497,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:55:31.5485772Z\",\r\n \"duration\": \"PT35.3635708S\",\r\n \"correlationId\": \"19831cbe-ac6f-4eaf-9ae9-1e31e2bcf36c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db171\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server171\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T09:49:44.9739679Z\",\r\n \"duration\": \"PT26.0209795S\",\r\n \"correlationId\": \"0f838c15-0e63-4f76-9748-5cdd98473704\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg171/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server171/sql-audit-cmdlet-db171\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server171\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server171/databases/sql-audit-cmdlet-db171\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1512,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14827" ], "x-ms-request-id": [ - "5339b220-282a-44ba-9575-8d1cd3a1fbe8" + "c7159a83-9878-4fc5-8e14-cba5735dced0" ], "x-ms-correlation-request-id": [ - "5339b220-282a-44ba-9575-8d1cd3a1fbe8" + "c7159a83-9878-4fc5-8e14-cba5735dced0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115532Z:5339b220-282a-44ba-9575-8d1cd3a1fbe8" + "WESTEUROPE:20150713T094946Z:c7159a83-9878-4fc5-8e14-cba5735dced0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:32 GMT" + "Mon, 13 Jul 2015 09:49:45 GMT" ] }, "StatusCode": 200 @@ -1560,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14826" ], "x-ms-request-id": [ - "db95d624-c1fb-4911-965a-df7f5dda93e7" + "8c42b397-d101-418c-9ca3-17ac4f8555bb" ], "x-ms-correlation-request-id": [ - "db95d624-c1fb-4911-965a-df7f5dda93e7" + "8c42b397-d101-418c-9ca3-17ac4f8555bb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115534Z:db95d624-c1fb-4911-965a-df7f5dda93e7" + "WESTEUROPE:20150713T094948Z:8c42b397-d101-418c-9ca3-17ac4f8555bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:34 GMT" + "Mon, 13 Jul 2015 09:49:47 GMT" ] }, "StatusCode": 200 @@ -1611,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:66b33530-438c-42a9-98ea-62ae806dae0f" + "westeurope:9e52068d-5b8c-4fc4-a8f3-7ba72fda2d84" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14809" ], "x-ms-correlation-request-id": [ - "fda68915-f2f9-44f9-b1d0-e82bca214f73" + "ab678516-1104-4c67-a1bc-7c39270f7754" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T115535Z:fda68915-f2f9-44f9-b1d0-e82bca214f73" + "WESTEUROPE:20150713T094949Z:ab678516-1104-4c67-a1bc-7c39270f7754" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1629,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:35 GMT" + "Mon, 13 Jul 2015 09:49:48 GMT" ] }, "StatusCode": 200 @@ -1656,13 +1368,13 @@ "ussouth3" ], "x-ms-request-id": [ - "386985d96be3b900965bd046b8fa0841" + "e3444da9abc9cd69bac6c1bd8f525924" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:39 GMT" + "Mon, 13 Jul 2015 09:49:52 GMT" ], "Server": [ "1.0.6198.243", @@ -1673,8 +1385,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/386985d96be3b900965bd046b8fa0841", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM4Njk4NWQ5NmJlM2I5MDA5NjViZDA0NmI4ZmEwODQx", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/e3444da9abc9cd69bac6c1bd8f525924", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2UzNDQ0ZGE5YWJjOWNkNjliYWM2YzFiZDhmNTI1OTI0", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1685,7 +1397,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 386985d9-6be3-b900-965b-d046b8fa0841\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n e3444da9-abc9-cd69-bac6-c1bd8f525924\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1697,13 +1409,13 @@ "ussouth3" ], "x-ms-request-id": [ - "fd38dc364dcfb14caef0090928c12acd" + "e1c1a9861289c0278b9c5c0ffe6b431d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:55:42 GMT" + "Mon, 13 Jul 2015 09:49:54 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerDisableEnableKeepProperties.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerDisableEnableKeepProperties.json index 9a8a10caba7e..faa02b5780a9 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerDisableEnableKeepProperties.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerDisableEnableKeepProperties.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "bdd333bbb28ab49bab2b2232f7b72fe6" + "2bdfa9af107fc578a0489ccf2ea10d1b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:51:57 GMT" + "Mon, 13 Jul 2015 12:30:41 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets131" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/bdd333bbb28ab49bab2b2232f7b72fe6", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2JkZDMzM2JiYjI4YWI0OWJhYjJiMjIzMmY3YjcyZmU2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n bdd333bb-b28a-b49b-ab2b-2232f7b72fe6\r\n InProgress\r\n", + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "0ad214f1ca0db14987254f055e50ed0d" + "56654ef188a8c8fcafd53ed9453048ed" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:51:58 GMT" + "Mon, 13 Jul 2015 12:30:43 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/bdd333bbb28ab49bab2b2232f7b72fe6", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2JkZDMzM2JiYjI4YWI0OWJhYjJiMjIzMmY3YjcyZmU2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n bdd333bb-b28a-b49b-ab2b-2232f7b72fe6\r\n InProgress\r\n", + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "9f33290e05ffb0df9a1c09c491444743" + "20e67a5e4717c415bf39492b70dc8cf1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:52:28 GMT" + "Mon, 13 Jul 2015 12:31:13 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/bdd333bbb28ab49bab2b2232f7b72fe6", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2JkZDMzM2JiYjI4YWI0OWJhYjJiMjIzMmY3YjcyZmU2", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,48 +142,548 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n bdd333bb-b28a-b49b-ab2b-2232f7b72fe6\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f7de45d58971cd7089e4ad612a5a926b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:31:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "fe367bf3a02bcf2bbbdfcc2eb905e0b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:32:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "967e1f1b4733c26da1d94a32e2580165" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:32:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "76f4c3fe94a8c59a894523da70204d8d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:33:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "e35831c1fb86c6ddbf7d7d87aa1eb358" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:33:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4d087f89a402c4d69eee450a52e6a740" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:34:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "aab40c096b07c933858a82f3c4cec0be" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:34:46 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2bdfa9af107fc578a0489ccf2ea10d1b", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJiZGZhOWFmMTA3ZmM1NzhhMDQ4OWNjZjJlYTEwZDFi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 2bdfa9af-107f-c578-a048-9ccf2ea10d1b\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" ], "Content-Type": [ - "application/xml; charset=utf-8" + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "a5e4f03bdc78cb3a836bb4932a3ab017" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:35:16 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-request-id": [ + "134cf529-8e22-4086-9c77-602593df92c7" + ], + "x-ms-correlation-request-id": [ + "134cf529-8e22-4086-9c77-602593df92c7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123517Z:134cf529-8e22-4086-9c77-602593df92c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:35:17 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131\",\r\n \"name\": \"sql-audit-cmdlet-test-rg131\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "61dd6e30-e59b-49d5-b696-324b556a190b" + ], + "x-ms-correlation-request-id": [ + "61dd6e30-e59b-49d5-b696-324b556a190b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123520Z:61dd6e30-e59b-49d5-b696-324b556a190b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:35:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/validate?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2360" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:35:21.0883993Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"43ed3839-607d-4e57-99e9-26dbd4a64abf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1643" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "43ed3839-607d-4e57-99e9-26dbd4a64abf" + ], + "x-ms-correlation-request-id": [ + "43ed3839-607d-4e57-99e9-26dbd4a64abf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123521Z:43ed3839-607d-4e57-99e9-26dbd4a64abf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:35:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2360" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:35:23.0624159Z\",\r\n \"duration\": \"PT1.1756883S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1651" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], - "x-ms-servedbyregion": [ - "ussouth3" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" ], "x-ms-request-id": [ - "bc3cd4375bf0b0169a6f3d14559db15f" + "059bd953-4d72-491f-aa10-dd5d52370b58" + ], + "x-ms-correlation-request-id": [ + "059bd953-4d72-491f-aa10-dd5d52370b58" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123523Z:059bd953-4d72-491f-aa10-dd5d52370b58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:52:58 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:35:23 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "HEAD", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "119" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -194,20 +694,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14873" ], "x-ms-request-id": [ - "db76cb0b-adc4-4ebe-b6be-647178b76d4d" + "71f4fe39-1f61-47c1-964c-6b85b7dfb050" ], "x-ms-correlation-request-id": [ - "db76cb0b-adc4-4ebe-b6be-647178b76d4d" + "71f4fe39-1f61-47c1-964c-6b85b7dfb050" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105259Z:db76cb0b-adc4-4ebe-b6be-647178b76d4d" + "WESTEUROPE:20150713T123524Z:71f4fe39-1f61-47c1-964c-6b85b7dfb050" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,31 +713,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:52:58 GMT" + "Mon, 13 Jul 2015 12:35:23 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131\",\r\n \"name\": \"sql-audit-cmdlet-test-rg131\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "207" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,17 +742,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" ], "x-ms-request-id": [ - "8222a479-606d-4d1d-998f-0a3da6607211" + "347ed07c-0def-44af-aada-e620dc47d14e" ], "x-ms-correlation-request-id": [ - "8222a479-606d-4d1d-998f-0a3da6607211" + "347ed07c-0def-44af-aada-e620dc47d14e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105301Z:8222a479-606d-4d1d-998f-0a3da6607211" + "WESTEUROPE:20150713T123527Z:347ed07c-0def-44af-aada-e620dc47d14e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,31 +761,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:00 GMT" + "Mon, 13 Jul 2015 12:35:26 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/validate?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2360" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:53:02.4207526Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"b5cd98e1-dfbf-4988-80b9-3bae8d5f1570\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1643" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -305,17 +790,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" ], "x-ms-request-id": [ - "b5cd98e1-dfbf-4988-80b9-3bae8d5f1570" + "3f0324f3-01c1-4bdd-a491-586cbfffc48b" ], "x-ms-correlation-request-id": [ - "b5cd98e1-dfbf-4988-80b9-3bae8d5f1570" + "3f0324f3-01c1-4bdd-a491-586cbfffc48b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105302Z:b5cd98e1-dfbf-4988-80b9-3bae8d5f1570" + "WESTEUROPE:20150713T123530Z:3f0324f3-01c1-4bdd-a491-586cbfffc48b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,31 +809,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:01 GMT" + "Mon, 13 Jul 2015 12:35:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2360" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:53:04.8227216Z\",\r\n \"duration\": \"PT1.5922579S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -359,17 +838,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" ], "x-ms-request-id": [ - "374ce498-4332-4533-a674-10ae5ee1b13f" + "27455130-f547-4c6d-937e-91d52ba8a1bc" ], "x-ms-correlation-request-id": [ - "374ce498-4332-4533-a674-10ae5ee1b13f" + "27455130-f547-4c6d-937e-91d52ba8a1bc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105305Z:374ce498-4332-4533-a674-10ae5ee1b13f" + "WESTEUROPE:20150713T123533Z:27455130-f547-4c6d-937e-91d52ba8a1bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,10 +857,10 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:04 GMT" + "Mon, 13 Jul 2015 12:35:32 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", @@ -408,16 +887,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14864" ], "x-ms-request-id": [ - "df5977f4-3f36-4971-a2d5-2a97436f37a7" + "37034b95-800f-41a8-b5fe-3b596c564f13" ], "x-ms-correlation-request-id": [ - "df5977f4-3f36-4971-a2d5-2a97436f37a7" + "37034b95-800f-41a8-b5fe-3b596c564f13" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105305Z:df5977f4-3f36-4971-a2d5-2a97436f37a7" + "WESTEUROPE:20150713T123536Z:37034b95-800f-41a8-b5fe-3b596c564f13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +905,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:05 GMT" + "Mon, 13 Jul 2015 12:35:35 GMT" ] }, "StatusCode": 200 @@ -456,16 +935,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14862" ], "x-ms-request-id": [ - "db38878a-e72c-4874-ab1c-4ddb99a6637f" + "c378ebed-bb31-4301-b717-21488a6a152e" ], "x-ms-correlation-request-id": [ - "db38878a-e72c-4874-ab1c-4ddb99a6637f" + "c378ebed-bb31-4301-b717-21488a6a152e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105308Z:db38878a-e72c-4874-ab1c-4ddb99a6637f" + "WESTEUROPE:20150713T123539Z:c378ebed-bb31-4301-b717-21488a6a152e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +953,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:08 GMT" + "Mon, 13 Jul 2015 12:35:38 GMT" ] }, "StatusCode": 200 @@ -504,16 +983,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14860" ], "x-ms-request-id": [ - "2968afbb-bfce-4ef3-9ae9-858ec1a277cb" + "8343c2d3-ca19-4399-9d70-e09a7f0cf7a9" ], "x-ms-correlation-request-id": [ - "2968afbb-bfce-4ef3-9ae9-858ec1a277cb" + "8343c2d3-ca19-4399-9d70-e09a7f0cf7a9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105311Z:2968afbb-bfce-4ef3-9ae9-858ec1a277cb" + "WESTEUROPE:20150713T123542Z:8343c2d3-ca19-4399-9d70-e09a7f0cf7a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +1001,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:10 GMT" + "Mon, 13 Jul 2015 12:35:41 GMT" ] }, "StatusCode": 200 @@ -552,16 +1031,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14857" ], "x-ms-request-id": [ - "eb5681a9-6b3b-4b24-afb6-3cf126f238bb" + "88ceb10e-cc18-473c-b853-0edf85ad79dc" ], "x-ms-correlation-request-id": [ - "eb5681a9-6b3b-4b24-afb6-3cf126f238bb" + "88ceb10e-cc18-473c-b853-0edf85ad79dc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105314Z:eb5681a9-6b3b-4b24-afb6-3cf126f238bb" + "WESTEUROPE:20150713T123545Z:88ceb10e-cc18-473c-b853-0edf85ad79dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +1049,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:13 GMT" + "Mon, 13 Jul 2015 12:35:44 GMT" ] }, "StatusCode": 200 @@ -585,10 +1064,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:35:46.1349346Z\",\r\n \"duration\": \"PT20.6322921S\",\r\n \"trackingId\": \"b8ff289a-36ae-4ccf-b916-672b427d11f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,16 +1079,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14854" ], "x-ms-request-id": [ - "02b7c3f9-0ded-46c1-b684-60fdb0bb47e3" + "d54bf449-e43f-4a61-b94c-a83114fbadd5" ], "x-ms-correlation-request-id": [ - "02b7c3f9-0ded-46c1-b684-60fdb0bb47e3" + "d54bf449-e43f-4a61-b94c-a83114fbadd5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105317Z:02b7c3f9-0ded-46c1-b684-60fdb0bb47e3" + "WESTEUROPE:20150713T123548Z:d54bf449-e43f-4a61-b94c-a83114fbadd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +1097,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:17 GMT" + "Mon, 13 Jul 2015 12:35:47 GMT" ] }, "StatusCode": 200 @@ -633,10 +1112,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:35:46.1349346Z\",\r\n \"duration\": \"PT20.6322921S\",\r\n \"trackingId\": \"b8ff289a-36ae-4ccf-b916-672b427d11f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +1127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14852" ], "x-ms-request-id": [ - "c9d18e5c-ef96-4489-9981-672fe9b5ec6f" + "b1504af8-99e4-44b5-afc2-109f8a623dd7" ], "x-ms-correlation-request-id": [ - "c9d18e5c-ef96-4489-9981-672fe9b5ec6f" + "b1504af8-99e4-44b5-afc2-109f8a623dd7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105320Z:c9d18e5c-ef96-4489-9981-672fe9b5ec6f" + "WESTEUROPE:20150713T123551Z:b1504af8-99e4-44b5-afc2-109f8a623dd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +1145,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:20 GMT" + "Mon, 13 Jul 2015 12:35:50 GMT" ] }, "StatusCode": 200 @@ -681,7 +1160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:53:21.6935424Z\",\r\n \"duration\": \"PT14.3935111S\",\r\n \"trackingId\": \"234a2810-9740-40e9-90ea-2a69f4c24113\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:35:46.1349346Z\",\r\n \"duration\": \"PT20.6322921S\",\r\n \"trackingId\": \"b8ff289a-36ae-4ccf-b916-672b427d11f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -696,16 +1175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14850" ], "x-ms-request-id": [ - "fc85cc2e-5a59-4ef5-991f-65b348bdc516" + "c5dace10-c807-436c-8c3d-a26d49c2f1aa" ], "x-ms-correlation-request-id": [ - "fc85cc2e-5a59-4ef5-991f-65b348bdc516" + "c5dace10-c807-436c-8c3d-a26d49c2f1aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105323Z:fc85cc2e-5a59-4ef5-991f-65b348bdc516" + "WESTEUROPE:20150713T123554Z:c5dace10-c807-436c-8c3d-a26d49c2f1aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +1193,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:23 GMT" + "Mon, 13 Jul 2015 12:35:53 GMT" ] }, "StatusCode": 200 @@ -729,10 +1208,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:53:21.6935424Z\",\r\n \"duration\": \"PT14.3935111S\",\r\n \"trackingId\": \"234a2810-9740-40e9-90ea-2a69f4c24113\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/F5605F68CD6057BD\",\r\n \"operationId\": \"F5605F68CD6057BD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:35:57.1223996Z\",\r\n \"duration\": \"PT10.4624491S\",\r\n \"trackingId\": \"f956e820-7284-41f9-aade-537b3263a8f4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:35:46.1349346Z\",\r\n \"duration\": \"PT20.6322921S\",\r\n \"trackingId\": \"b8ff289a-36ae-4ccf-b916-672b427d11f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +1223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14848" ], "x-ms-request-id": [ - "5be7ddcb-9c9d-4879-8ee0-f155bf7e4877" + "717f2561-3cd9-47d7-8624-81bb6d5bb808" ], "x-ms-correlation-request-id": [ - "5be7ddcb-9c9d-4879-8ee0-f155bf7e4877" + "717f2561-3cd9-47d7-8624-81bb6d5bb808" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105327Z:5be7ddcb-9c9d-4879-8ee0-f155bf7e4877" + "WESTEUROPE:20150713T123557Z:717f2561-3cd9-47d7-8624-81bb6d5bb808" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +1241,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:26 GMT" + "Mon, 13 Jul 2015 12:35:56 GMT" ] }, "StatusCode": 200 @@ -777,10 +1256,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:53:21.6935424Z\",\r\n \"duration\": \"PT14.3935111S\",\r\n \"trackingId\": \"234a2810-9740-40e9-90ea-2a69f4c24113\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/F5605F68CD6057BD\",\r\n \"operationId\": \"F5605F68CD6057BD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:35:57.1223996Z\",\r\n \"duration\": \"PT10.4624491S\",\r\n \"trackingId\": \"f956e820-7284-41f9-aade-537b3263a8f4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:35:46.1349346Z\",\r\n \"duration\": \"PT20.6322921S\",\r\n \"trackingId\": \"b8ff289a-36ae-4ccf-b916-672b427d11f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +1271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "14846" ], "x-ms-request-id": [ - "d72b731b-f618-404c-8755-9a4ae54be92d" + "fdf50edf-a37d-4d57-b3bb-84d3a734d23b" ], "x-ms-correlation-request-id": [ - "d72b731b-f618-404c-8755-9a4ae54be92d" + "fdf50edf-a37d-4d57-b3bb-84d3a734d23b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105329Z:d72b731b-f618-404c-8755-9a4ae54be92d" + "WESTEUROPE:20150713T123600Z:fdf50edf-a37d-4d57-b3bb-84d3a734d23b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,14 +1289,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:29 GMT" + "Mon, 13 Jul 2015 12:36:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -825,10 +1304,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/F5605F68CD6057BD\",\r\n \"operationId\": \"F5605F68CD6057BD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:53:29.9840528Z\",\r\n \"duration\": \"PT8.1780446S\",\r\n \"trackingId\": \"48c93447-f092-434e-bcde-582e247d800c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup/operations/94ECE4F7F3439B2A\",\r\n \"operationId\": \"94ECE4F7F3439B2A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:53:21.6935424Z\",\r\n \"duration\": \"PT14.3935111S\",\r\n \"trackingId\": \"234a2810-9740-40e9-90ea-2a69f4c24113\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:35:23.0624159Z\",\r\n \"duration\": \"PT1.1756883S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "1651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,16 +1319,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14872" ], "x-ms-request-id": [ - "7c4110b3-fa0c-40f1-9535-b43beee29931" + "bf5ddc32-480a-422e-a931-fdbd805beae3" ], "x-ms-correlation-request-id": [ - "7c4110b3-fa0c-40f1-9535-b43beee29931" + "bf5ddc32-480a-422e-a931-fdbd805beae3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105333Z:7c4110b3-fa0c-40f1-9535-b43beee29931" + "WESTEUROPE:20150713T123524Z:bf5ddc32-480a-422e-a931-fdbd805beae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +1337,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:32 GMT" + "Mon, 13 Jul 2015 12:35:24 GMT" ] }, "StatusCode": 200 @@ -873,10 +1352,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:53:04.8227216Z\",\r\n \"duration\": \"PT1.5922579S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,16 +1367,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14869" ], "x-ms-request-id": [ - "d9de098a-5eed-4a61-b7f5-8384e0657289" + "75070925-cd9e-4bba-a169-1ad7e0960a12" ], "x-ms-correlation-request-id": [ - "d9de098a-5eed-4a61-b7f5-8384e0657289" + "75070925-cd9e-4bba-a169-1ad7e0960a12" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105306Z:d9de098a-5eed-4a61-b7f5-8384e0657289" + "WESTEUROPE:20150713T123527Z:75070925-cd9e-4bba-a169-1ad7e0960a12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +1385,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:05 GMT" + "Mon, 13 Jul 2015 12:35:27 GMT" ] }, "StatusCode": 200 @@ -921,10 +1400,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:53:06.7999407Z\",\r\n \"duration\": \"PT3.569477S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,16 +1415,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14867" ], "x-ms-request-id": [ - "c0bb13c1-27c8-4ae1-aa8e-150de1304156" + "aab685c7-1860-4720-bfa8-7a48fe74b057" ], "x-ms-correlation-request-id": [ - "c0bb13c1-27c8-4ae1-aa8e-150de1304156" + "aab685c7-1860-4720-bfa8-7a48fe74b057" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105309Z:c0bb13c1-27c8-4ae1-aa8e-150de1304156" + "WESTEUROPE:20150713T123530Z:aab685c7-1860-4720-bfa8-7a48fe74b057" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +1433,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:08 GMT" + "Mon, 13 Jul 2015 12:35:30 GMT" ] }, "StatusCode": 200 @@ -969,10 +1448,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:53:06.7999407Z\",\r\n \"duration\": \"PT3.569477S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,16 +1463,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14865" ], "x-ms-request-id": [ - "bb862c96-111c-4bcf-913f-e07fcd8fd2c0" + "bb8a7491-35b0-47f2-999e-b5d1b37b4fad" ], "x-ms-correlation-request-id": [ - "bb862c96-111c-4bcf-913f-e07fcd8fd2c0" + "bb8a7491-35b0-47f2-999e-b5d1b37b4fad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105312Z:bb862c96-111c-4bcf-913f-e07fcd8fd2c0" + "WESTEUROPE:20150713T123533Z:bb8a7491-35b0-47f2-999e-b5d1b37b4fad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1481,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:11 GMT" + "Mon, 13 Jul 2015 12:35:33 GMT" ] }, "StatusCode": 200 @@ -1017,10 +1496,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:53:06.7999407Z\",\r\n \"duration\": \"PT3.569477S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,16 +1511,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14863" ], "x-ms-request-id": [ - "9f288136-f8da-4617-a724-029eb2548513" + "dc703f7b-447c-446b-90ed-2970b61be18e" ], "x-ms-correlation-request-id": [ - "9f288136-f8da-4617-a724-029eb2548513" + "dc703f7b-447c-446b-90ed-2970b61be18e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105315Z:9f288136-f8da-4617-a724-029eb2548513" + "WESTEUROPE:20150713T123536Z:dc703f7b-447c-446b-90ed-2970b61be18e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1529,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:14 GMT" + "Mon, 13 Jul 2015 12:35:36 GMT" ] }, "StatusCode": 200 @@ -1065,10 +1544,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:53:06.7999407Z\",\r\n \"duration\": \"PT3.569477S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1080,16 +1559,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14861" ], "x-ms-request-id": [ - "5a028a1b-9cdc-429c-b1c7-87a044fb04bf" + "485dd89d-8438-4ee9-ba89-f9fab55e5ac0" ], "x-ms-correlation-request-id": [ - "5a028a1b-9cdc-429c-b1c7-87a044fb04bf" + "485dd89d-8438-4ee9-ba89-f9fab55e5ac0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105318Z:5a028a1b-9cdc-429c-b1c7-87a044fb04bf" + "WESTEUROPE:20150713T123539Z:485dd89d-8438-4ee9-ba89-f9fab55e5ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1577,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:18 GMT" + "Mon, 13 Jul 2015 12:35:39 GMT" ] }, "StatusCode": 200 @@ -1113,10 +1592,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:53:06.7999407Z\",\r\n \"duration\": \"PT3.569477S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1128,16 +1607,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14858" ], "x-ms-request-id": [ - "ca56a8ca-e6e8-4fbd-a4a4-ba178d3e5421" + "1727ef2c-a0c9-427f-ac05-18b8e46a27a6" ], "x-ms-correlation-request-id": [ - "ca56a8ca-e6e8-4fbd-a4a4-ba178d3e5421" + "1727ef2c-a0c9-427f-ac05-18b8e46a27a6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105321Z:ca56a8ca-e6e8-4fbd-a4a4-ba178d3e5421" + "WESTEUROPE:20150713T123542Z:1727ef2c-a0c9-427f-ac05-18b8e46a27a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1625,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:21 GMT" + "Mon, 13 Jul 2015 12:35:42 GMT" ] }, "StatusCode": 200 @@ -1161,10 +1640,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:53:06.7999407Z\",\r\n \"duration\": \"PT3.569477S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1176,16 +1655,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14855" ], "x-ms-request-id": [ - "26d9c81e-9ea7-433b-b297-dc751b48867f" + "e67962cb-d8e9-4c80-b3c0-053a9f605cfa" ], "x-ms-correlation-request-id": [ - "26d9c81e-9ea7-433b-b297-dc751b48867f" + "e67962cb-d8e9-4c80-b3c0-053a9f605cfa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105324Z:26d9c81e-9ea7-433b-b297-dc751b48867f" + "WESTEUROPE:20150713T123545Z:e67962cb-d8e9-4c80-b3c0-053a9f605cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1673,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:24 GMT" + "Mon, 13 Jul 2015 12:35:45 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1688,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:53:06.7999407Z\",\r\n \"duration\": \"PT3.569477S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1703,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "14853" ], "x-ms-request-id": [ - "71e56aa9-e4b2-4021-aa43-26459df2d2fe" + "98993ed3-19af-45f1-9b69-34098ebf2fe1" ], "x-ms-correlation-request-id": [ - "71e56aa9-e4b2-4021-aa43-26459df2d2fe" + "98993ed3-19af-45f1-9b69-34098ebf2fe1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105327Z:71e56aa9-e4b2-4021-aa43-26459df2d2fe" + "WESTEUROPE:20150713T123548Z:98993ed3-19af-45f1-9b69-34098ebf2fe1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1721,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:27 GMT" + "Mon, 13 Jul 2015 12:35:48 GMT" ] }, "StatusCode": 200 @@ -1257,10 +1736,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:53:06.7999407Z\",\r\n \"duration\": \"PT3.569477S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1272,16 +1751,112 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14851" + ], + "x-ms-request-id": [ + "60e97ca4-9fc9-4523-809f-76a6299355d1" + ], + "x-ms-correlation-request-id": [ + "60e97ca4-9fc9-4523-809f-76a6299355d1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123551Z:60e97ca4-9fc9-4523-809f-76a6299355d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:35:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-request-id": [ + "5c940b0d-391c-469a-9cec-d78dd340b236" + ], + "x-ms-correlation-request-id": [ + "5c940b0d-391c-469a-9cec-d78dd340b236" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123554Z:5c940b0d-391c-469a-9cec-d78dd340b236" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:35:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:35:24.7915825Z\",\r\n \"duration\": \"PT2.9048549S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" ], "x-ms-request-id": [ - "130f266f-8e53-40fa-b48e-d3cc3047590f" + "1e098114-6e87-4772-90ba-d47681be8932" ], "x-ms-correlation-request-id": [ - "130f266f-8e53-40fa-b48e-d3cc3047590f" + "1e098114-6e87-4772-90ba-d47681be8932" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105330Z:130f266f-8e53-40fa-b48e-d3cc3047590f" + "WESTEUROPE:20150713T123557Z:1e098114-6e87-4772-90ba-d47681be8932" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1865,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:30 GMT" + "Mon, 13 Jul 2015 12:35:57 GMT" ] }, "StatusCode": 200 @@ -1305,10 +1880,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:53:31.7470451Z\",\r\n \"duration\": \"PT28.5165814S\",\r\n \"correlationId\": \"374ce498-4332-4533-a674-10ae5ee1b13f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db131\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server131\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:35:59.5095529Z\",\r\n \"duration\": \"PT37.6228253S\",\r\n \"correlationId\": \"059bd953-4d72-491f-aa10-dd5d52370b58\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server131/sql-audit-cmdlet-db131\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server131\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server131/databases/sql-audit-cmdlet-db131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1320,16 +1895,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14845" ], "x-ms-request-id": [ - "38b66412-5c47-44a7-a786-8899331c6e4d" + "4d35e47e-3f2c-438b-be4d-4ae48511b134" ], "x-ms-correlation-request-id": [ - "38b66412-5c47-44a7-a786-8899331c6e4d" + "4d35e47e-3f2c-438b-be4d-4ae48511b134" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105333Z:38b66412-5c47-44a7-a786-8899331c6e4d" + "WESTEUROPE:20150713T123601Z:4d35e47e-3f2c-438b-be4d-4ae48511b134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1913,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:33 GMT" + "Mon, 13 Jul 2015 12:36:00 GMT" ] }, "StatusCode": 200 @@ -1368,16 +1943,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14844" ], "x-ms-request-id": [ - "2c6ae0d5-bca1-4fc1-b509-0776335e15ec" + "a213a679-7ba9-4c30-8b80-02f55f7b0452" ], "x-ms-correlation-request-id": [ - "2c6ae0d5-bca1-4fc1-b509-0776335e15ec" + "a213a679-7ba9-4c30-8b80-02f55f7b0452" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105335Z:2c6ae0d5-bca1-4fc1-b509-0776335e15ec" + "WESTEUROPE:20150713T123603Z:a213a679-7ba9-4c30-8b80-02f55f7b0452" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1961,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:35 GMT" + "Mon, 13 Jul 2015 12:36:02 GMT" ] }, "StatusCode": 200 @@ -1419,16 +1994,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:f67dae09-10a9-474d-a09b-2fb8668a2e37" + "westeurope:7e1309bf-7038-439e-8be4-1597b2e46bc8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "14829" ], "x-ms-correlation-request-id": [ - "f9804a9a-3a4c-4e3d-8b44-dc48a9faa354" + "9e56ab2e-7a89-415f-b815-6d34cc69c96b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105336Z:f9804a9a-3a4c-4e3d-8b44-dc48a9faa354" + "WESTEUROPE:20150713T123604Z:9e56ab2e-7a89-415f-b815-6d34cc69c96b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +2012,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:36 GMT" + "Mon, 13 Jul 2015 12:36:03 GMT" ] }, "StatusCode": 200 @@ -1452,7 +2027,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e11697c4-a7de-44da-878d-9c2ccb1f148a" + "09aa865e-ea71-4a7f-8354-018ba4df9353" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1464,7 +2039,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "10fd86d3-cff2-46b5-8b18-779e977e889a" + "96502cb7-354c-4f22-9fd4-bc9a6f5d748a" ], "X-Content-Type-Options": [ "nosniff" @@ -1473,13 +2048,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "14876" ], "x-ms-correlation-request-id": [ - "5a07075d-ce67-4919-93af-a13477c55dea" + "d8ef09e0-007e-47bd-ba52-973d4c592894" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105339Z:5a07075d-ce67-4919-93af-a13477c55dea" + "WESTEUROPE:20150713T123605Z:d8ef09e0-007e-47bd-ba52-973d4c592894" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +2063,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:39 GMT" + "Mon, 13 Jul 2015 12:36:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1506,7 +2081,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "72fb7192-4ed5-44c4-b86b-9e57c47bb2e0" + "04641e82-b209-44dd-a2fc-9504d1dd777e" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1518,7 +2093,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "57eb2736-0c83-4f44-98c1-be77ef460750" + "775e996c-ec75-4461-8f97-66e58f9f701d" ], "X-Content-Type-Options": [ "nosniff" @@ -1527,13 +2102,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" + "14874" ], "x-ms-correlation-request-id": [ - "02d6dce2-af52-4d51-8c92-21b5dfc6cdcf" + "1bce786b-077a-468d-8ae5-16e3fb56e6fe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105346Z:02d6dce2-af52-4d51-8c92-21b5dfc6cdcf" + "WESTEUROPE:20150713T123610Z:1bce786b-077a-468d-8ae5-16e3fb56e6fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1542,7 +2117,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:46 GMT" + "Mon, 13 Jul 2015 12:36:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1560,7 +2135,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6a4a3e75-358b-420e-bc17-39484e8f2f42" + "2c752ce6-4cef-4e09-b9dc-4214d0a23a7d" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1572,7 +2147,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4d37d471-a3dd-46a1-9a39-0552483a0943" + "cabbaba5-3cfe-4a63-9951-8d83b02b78ed" ], "X-Content-Type-Options": [ "nosniff" @@ -1581,13 +2156,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14873" ], "x-ms-correlation-request-id": [ - "c7574eb6-5e1b-44cd-aef5-5d73d0d214c3" + "4228dd4b-4a0e-44be-94c2-1fc38d5af615" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105349Z:c7574eb6-5e1b-44cd-aef5-5d73d0d214c3" + "WESTEUROPE:20150713T123614Z:4228dd4b-4a0e-44be-94c2-1fc38d5af615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +2171,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:49 GMT" + "Mon, 13 Jul 2015 12:36:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1614,7 +2189,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "68306bb0-b52b-4c96-9618-c786e7ebfa6f" + "d30207d8-59ca-4a5e-bfbf-08724c8a4c65" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1626,7 +2201,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "24a4d367-f3f8-40f6-9268-2ae4eaed844b" + "2019044b-db05-4b6c-b5b9-313ed8430be3" ], "X-Content-Type-Options": [ "nosniff" @@ -1635,13 +2210,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14872" ], "x-ms-correlation-request-id": [ - "47e12d09-b9ed-40a1-bb89-6de7626a5c10" + "d7e4ce8d-1478-4b14-ad1f-e8f3855bb47b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105354Z:47e12d09-b9ed-40a1-bb89-6de7626a5c10" + "WESTEUROPE:20150713T123618Z:d7e4ce8d-1478-4b14-ad1f-e8f3855bb47b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1650,7 +2225,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:53 GMT" + "Mon, 13 Jul 2015 12:36:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1668,10 +2243,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets131\",\r\n \"name\": \"auditcmdlets131\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets131\",\r\n \"name\": \"auditcmdlets131\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1683,16 +2258,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14842" ], "x-ms-request-id": [ - "9303523a-f8fc-46ec-9e4e-3bd6df2f2a35" + "38e7c2bc-d75b-4820-9f96-6356f00826aa" ], "x-ms-correlation-request-id": [ - "9303523a-f8fc-46ec-9e4e-3bd6df2f2a35" + "38e7c2bc-d75b-4820-9f96-6356f00826aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105339Z:9303523a-f8fc-46ec-9e4e-3bd6df2f2a35" + "WESTEUROPE:20150713T123606Z:38e7c2bc-d75b-4820-9f96-6356f00826aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1701,7 +2276,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:39 GMT" + "Mon, 13 Jul 2015 12:36:05 GMT" ] }, "StatusCode": 200 @@ -1716,10 +2291,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets131\",\r\n \"name\": \"auditcmdlets131\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets131\",\r\n \"name\": \"auditcmdlets131\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1731,16 +2306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14841" ], "x-ms-request-id": [ - "b0d534d9-a9b4-44a3-a7db-8d8a33c03b50" + "b75cedb3-1ca0-492b-be93-e04351343e63" ], "x-ms-correlation-request-id": [ - "b0d534d9-a9b4-44a3-a7db-8d8a33c03b50" + "b75cedb3-1ca0-492b-be93-e04351343e63" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105349Z:b0d534d9-a9b4-44a3-a7db-8d8a33c03b50" + "WESTEUROPE:20150713T123614Z:b75cedb3-1ca0-492b-be93-e04351343e63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1749,7 +2324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:49 GMT" + "Mon, 13 Jul 2015 12:36:13 GMT" ] }, "StatusCode": 200 @@ -1767,7 +2342,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets131\r\n auditcmdlets131\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets131.blob.core.windows.net/\r\n https://auditcmdlets131.queue.core.windows.net/\r\n https://auditcmdlets131.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:51:57Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets131\r\n auditcmdlets131\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets131.blob.core.windows.net/\r\n https://auditcmdlets131.queue.core.windows.net/\r\n https://auditcmdlets131.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:30:37Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1779,13 +2354,13 @@ "ussouth3" ], "x-ms-request-id": [ - "877ad5231490b8c78a9a3acd2cc7b3ea" + "f2c1fb09e0adcc2ead8989b31ec2b37a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:39 GMT" + "Mon, 13 Jul 2015 12:36:04 GMT" ], "Server": [ "1.0.6198.243", @@ -1808,7 +2383,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets131\r\n auditcmdlets131\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets131.blob.core.windows.net/\r\n https://auditcmdlets131.queue.core.windows.net/\r\n https://auditcmdlets131.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T10:51:57Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets131\r\n auditcmdlets131\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets131.blob.core.windows.net/\r\n https://auditcmdlets131.queue.core.windows.net/\r\n https://auditcmdlets131.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:30:37Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1820,13 +2395,13 @@ "ussouth3" ], "x-ms-request-id": [ - "95ea89ea331bbb17a7290137f16f47c3" + "73ceaa46c864c8e6b2442364587059b5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:50 GMT" + "Mon, 13 Jul 2015 12:36:13 GMT" ], "Server": [ "1.0.6198.243", @@ -1849,7 +2424,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"I9HM83IhPaaFnzcpxUcspY1uAnP/osrUdD32MHvh/NlA3s4HfJSveSjkfTEXJbHtPmxzOsJI5nTytNls/8YLhQ==\",\r\n \"secondaryKey\": \"hi6FXsbAzDu+cwy5M3Cq/ZCZmO4OxLbsnw+Tx2w2oIBj/B5mR1KXq0AjHpe0E3VOBzs69cKE3SNaWbcoagBUSQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ewWJVq9ZgSQR+7FDCJEXU//r0ru+io6wDlhB4ujafnwfOAQEx/vMYVb4i3YHZNHzkZB4izgUp/AvmWYDMLYxBw==\",\r\n \"secondaryKey\": \"iMRH1VWOSfQxwbuYMT+kVnC9y/ib5B1V2Iu8Sq38dNsnrlQC9gX6SQKJrN54CW3B8rIiHeJ9EFxtLfzNPtprcA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1867,16 +2442,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:942d319d-bda5-4304-8392-c65c580c43c5" + "southcentralus:83843626-20a4-4ab5-9a47-995ca5eeb0b2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-correlation-request-id": [ - "41a21503-8363-48c8-a97a-4067540102bd" + "000e8ec2-af4c-43ed-bec3-361c51c9c0c1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105341Z:41a21503-8363-48c8-a97a-4067540102bd" + "WESTEUROPE:20150713T123607Z:000e8ec2-af4c-43ed-bec3-361c51c9c0c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1885,7 +2460,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:41 GMT" + "Mon, 13 Jul 2015 12:36:07 GMT" ] }, "StatusCode": 200 @@ -1903,7 +2478,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"I9HM83IhPaaFnzcpxUcspY1uAnP/osrUdD32MHvh/NlA3s4HfJSveSjkfTEXJbHtPmxzOsJI5nTytNls/8YLhQ==\",\r\n \"secondaryKey\": \"hi6FXsbAzDu+cwy5M3Cq/ZCZmO4OxLbsnw+Tx2w2oIBj/B5mR1KXq0AjHpe0E3VOBzs69cKE3SNaWbcoagBUSQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ewWJVq9ZgSQR+7FDCJEXU//r0ru+io6wDlhB4ujafnwfOAQEx/vMYVb4i3YHZNHzkZB4izgUp/AvmWYDMLYxBw==\",\r\n \"secondaryKey\": \"iMRH1VWOSfQxwbuYMT+kVnC9y/ib5B1V2Iu8Sq38dNsnrlQC9gX6SQKJrN54CW3B8rIiHeJ9EFxtLfzNPtprcA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1921,16 +2496,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:691bdd10-8003-49a7-8abd-31e3a14d52b8" + "southcentralus:d73a1cdc-7366-4b7c-851f-a8b64f645e44" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1188" ], "x-ms-correlation-request-id": [ - "efd4b256-3459-4f85-a520-1320b7c2aa1c" + "51992d80-9d1a-4040-8d8c-84f5af01635a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105350Z:efd4b256-3459-4f85-a520-1320b7c2aa1c" + "WESTEUROPE:20150713T123615Z:51992d80-9d1a-4040-8d8c-84f5af01635a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1939,7 +2514,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:50 GMT" + "Mon, 13 Jul 2015 12:36:15 GMT" ] }, "StatusCode": 200 @@ -1948,7 +2523,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTMxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"storageAccountKey\": \"I9HM83IhPaaFnzcpxUcspY1uAnP/osrUdD32MHvh/NlA3s4HfJSveSjkfTEXJbHtPmxzOsJI5nTytNls/8YLhQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"storageAccountKey\": \"ewWJVq9ZgSQR+7FDCJEXU//r0ru+io6wDlhB4ujafnwfOAQEx/vMYVb4i3YHZNHzkZB4izgUp/AvmWYDMLYxBw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1960,10 +2535,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e11697c4-a7de-44da-878d-9c2ccb1f148a" + "09aa865e-ea71-4a7f-8354-018ba4df9353" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": \"I9HM83IhPaaFnzcpxUcspY1uAnP/osrUdD32MHvh/NlA3s4HfJSveSjkfTEXJbHtPmxzOsJI5nTytNls/8YLhQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": \"ewWJVq9ZgSQR+7FDCJEXU//r0ru+io6wDlhB4ujafnwfOAQEx/vMYVb4i3YHZNHzkZB4izgUp/AvmWYDMLYxBw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "814" @@ -1972,7 +2547,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "bcc18d95-5612-4123-8e2b-f0929efac5b3" + "69fa6451-ef66-4569-8d6d-64a7247b396f" ], "X-Content-Type-Options": [ "nosniff" @@ -1984,13 +2559,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-correlation-request-id": [ - "323b565a-9213-4a04-82a9-5cb478dafd0f" + "2fb72b63-4b6f-46f0-9756-ac96de062c43" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105345Z:323b565a-9213-4a04-82a9-5cb478dafd0f" + "WESTEUROPE:20150713T123609Z:2fb72b63-4b6f-46f0-9756-ac96de062c43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1999,7 +2574,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:45 GMT" + "Mon, 13 Jul 2015 12:36:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2023,7 +2598,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "72fb7192-4ed5-44c4-b86b-9e57c47bb2e0" + "04641e82-b209-44dd-a2fc-9504d1dd777e" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2035,7 +2610,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "01fb2d7e-0f1c-4e3a-be5e-14e079b82a57" + "b00ee202-63f8-404e-abb4-4eceea4c3939" ], "X-Content-Type-Options": [ "nosniff" @@ -2047,13 +2622,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1189" ], "x-ms-correlation-request-id": [ - "1b275eb7-cdd5-4998-9b39-f45e731488a3" + "b600de9e-1e30-4bfd-83b9-9fe5bb7f63b4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105348Z:1b275eb7-cdd5-4998-9b39-f45e731488a3" + "WESTEUROPE:20150713T123612Z:b600de9e-1e30-4bfd-83b9-9fe5bb7f63b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2062,7 +2637,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:47 GMT" + "Mon, 13 Jul 2015 12:36:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2074,7 +2649,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEzMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTMxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"storageAccountKey\": \"I9HM83IhPaaFnzcpxUcspY1uAnP/osrUdD32MHvh/NlA3s4HfJSveSjkfTEXJbHtPmxzOsJI5nTytNls/8YLhQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"storageAccountKey\": \"ewWJVq9ZgSQR+7FDCJEXU//r0ru+io6wDlhB4ujafnwfOAQEx/vMYVb4i3YHZNHzkZB4izgUp/AvmWYDMLYxBw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2086,10 +2661,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6a4a3e75-358b-420e-bc17-39484e8f2f42" + "2c752ce6-4cef-4e09-b9dc-4214d0a23a7d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": \"I9HM83IhPaaFnzcpxUcspY1uAnP/osrUdD32MHvh/NlA3s4HfJSveSjkfTEXJbHtPmxzOsJI5nTytNls/8YLhQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg131/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server131/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"TransactionManagement_Success\",\r\n \"storageAccountName\": \"auditcmdlets131\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver131\",\r\n \"storageAccountKey\": \"ewWJVq9ZgSQR+7FDCJEXU//r0ru+io6wDlhB4ujafnwfOAQEx/vMYVb4i3YHZNHzkZB4izgUp/AvmWYDMLYxBw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets131.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "814" @@ -2098,7 +2673,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "63df1dd1-636f-4c58-831d-a921364671e5" + "92438ea5-b5bf-42aa-9ad8-fff162138178" ], "X-Content-Type-Options": [ "nosniff" @@ -2110,13 +2685,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1187" ], "x-ms-correlation-request-id": [ - "a5941f10-8c5f-4afb-b55a-d8c6fdd68ffe" + "b738ae5c-9417-4cc4-a1de-3746a54c6132" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T105352Z:a5941f10-8c5f-4afb-b55a-d8c6fdd68ffe" + "WESTEUROPE:20150713T123617Z:b738ae5c-9417-4cc4-a1de-3746a54c6132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2125,7 +2700,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:53:52 GMT" + "Mon, 13 Jul 2015 12:36:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2155,13 +2730,13 @@ "ussouth3" ], "x-ms-request-id": [ - "34bb7c0381dfbd13a039251585777f8b" + "8b1857e2198fcdc49388e4b824247374" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:54:00 GMT" + "Mon, 13 Jul 2015 12:36:22 GMT" ], "Server": [ "1.0.6198.243", @@ -2172,8 +2747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/34bb7c0381dfbd13a039251585777f8b", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM0YmI3YzAzODFkZmJkMTNhMDM5MjUxNTg1Nzc3Zjhi", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/8b1857e2198fcdc49388e4b824247374", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzhiMTg1N2UyMTk4ZmNkYzQ5Mzg4ZTRiODI0MjQ3Mzc0", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2184,7 +2759,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 34bb7c03-81df-bd13-a039-251585777f8b\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 8b1857e2-198f-cdc4-9388-e4b824247374\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2196,13 +2771,13 @@ "ussouth3" ], "x-ms-request-id": [ - "a9b12f7724ddbeb39843abab389471eb" + "ec41472ed547c9fd89a2b101307f4981" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:54:01 GMT" + "Mon, 13 Jul 2015 12:36:23 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerRetentionKeepProperties.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerRetentionKeepProperties.json index 4ced5aa60160..86fae19339a1 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerRetentionKeepProperties.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerRetentionKeepProperties.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "134781c083f9b7159cdf2cd01ae2ca48" + "60fd848f975dc76e98962241801eac62" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:58:05 GMT" + "Mon, 13 Jul 2015 12:37:39 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets204" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/60fd848f975dc76e98962241801eac62", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzYwZmQ4NDhmOTc1ZGM3NmU5ODk2MjI0MTgwMWVhYzYy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "\r\n 60fd848f-975d-c76e-9896-2241801eac62\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "4cef4b3d8e83be9e88d0a12ad582ff04" + "e9a99bb6bee2cd3482811900f2c7c54b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:58:05 GMT" + "Mon, 13 Jul 2015 12:37:39 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/60fd848f975dc76e98962241801eac62", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzYwZmQ4NDhmOTc1ZGM3NmU5ODk2MjI0MTgwMWVhYzYy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "\r\n 60fd848f-975d-c76e-9896-2241801eac62\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "462a0e5363edb06db8ca291f42e8e54f" + "0147feb47bc3c8aa908bb486e1abe2cf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:58:36 GMT" + "Mon, 13 Jul 2015 12:38:10 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/60fd848f975dc76e98962241801eac62", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzYwZmQ4NDhmOTc1ZGM3NmU5ODk2MjI0MTgwMWVhYzYy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,10 +142,10 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "\r\n 60fd848f-975d-c76e-9896-2241801eac62\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ - "197" + "232" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c463cdae9f30bb9d9b0bfc3f5cdcaaac" + "ca32192eb027c58e965856dc693dcdce" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:59:06 GMT" + "Mon, 13 Jul 2015 12:38:41 GMT" ], "Server": [ "1.0.6198.243", @@ -171,716 +171,520 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "197" + "119" ], "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" + "application/json; charset=utf-8" ], - "x-ms-request-id": [ - "775f21fa31dab7db9f90405f3ee49421" + "Expires": [ + "-1" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 01 Jul 2015 10:59:37 GMT" + "x-ms-failure-cause": [ + "gateway" ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14797" ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" + "x-ms-request-id": [ + "21fe1a0a-fe10-46c2-bc1e-a0005ee75577" ], - "Content-Type": [ - "application/xml; charset=utf-8" + "x-ms-correlation-request-id": [ + "21fe1a0a-fe10-46c2-bc1e-a0005ee75577" ], - "x-ms-servedbyregion": [ - "ussouth3" + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123842Z:21fe1a0a-fe10-46c2-bc1e-a0005ee75577" ], - "x-ms-request-id": [ - "79435254cca4b117814d2e55f21514e8" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:00:07 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:41 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "a8586f6140c5b5d983e5c11e7f5ec24f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:00:37 GMT" + "application/json; charset=utf-8" ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "Content-Length": [ + "29" ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204\",\r\n \"name\": \"sql-audit-cmdlet-test-rg204\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "207" ], "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" + "application/json; charset=utf-8" ], - "x-ms-request-id": [ - "b1c4d4a7ce85b762a92c601c566e4ecc" + "Expires": [ + "-1" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 01 Jul 2015 11:01:08 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" + "x-ms-request-id": [ + "67b42767-1aaf-4c6c-af42-63ac0f703b56" ], - "Content-Type": [ - "application/xml; charset=utf-8" + "x-ms-correlation-request-id": [ + "67b42767-1aaf-4c6c-af42-63ac0f703b56" ], - "x-ms-servedbyregion": [ - "ussouth3" + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123844Z:67b42767-1aaf-4c6c-af42-63ac0f703b56" ], - "x-ms-request-id": [ - "5f3e1e8cd09abb8da8ccfeae5613bf7b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:01:38 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/validate?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2360" ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:38:44.853359Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"f53d2956-0df5-4757-a312-3de95bf08a5e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "1642" ], "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" + "application/json; charset=utf-8" ], - "x-ms-request-id": [ - "bed928a17377bc8882a9ea1512ba4d75" + "Expires": [ + "-1" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 01 Jul 2015 11:02:08 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" + "x-ms-request-id": [ + "f53d2956-0df5-4757-a312-3de95bf08a5e" ], - "Content-Type": [ - "application/xml; charset=utf-8" + "x-ms-correlation-request-id": [ + "f53d2956-0df5-4757-a312-3de95bf08a5e" ], - "x-ms-servedbyregion": [ - "ussouth3" + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123844Z:f53d2956-0df5-4757-a312-3de95bf08a5e" ], - "x-ms-request-id": [ - "6df860148ceab1f497c71e7cedf2f5b3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:02:39 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2360" ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:38:46.5934765Z\",\r\n \"duration\": \"PT0.9819248S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "1651" ], "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" + "application/json; charset=utf-8" ], - "x-ms-request-id": [ - "5dc17c11156db7259d78f714ab2f7336" + "Expires": [ + "-1" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 01 Jul 2015 11:03:09 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" + "x-ms-request-id": [ + "a8fa69a8-d3e6-4ae4-a130-8619b9a25eac" ], - "Content-Type": [ - "application/xml; charset=utf-8" + "x-ms-correlation-request-id": [ + "a8fa69a8-d3e6-4ae4-a130-8619b9a25eac" ], - "x-ms-servedbyregion": [ - "ussouth3" + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123847Z:a8fa69a8-d3e6-4ae4-a130-8619b9a25eac" ], - "x-ms-request-id": [ - "515ea475808fb03c949b39b3bc058db2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:03:40 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "12" ], "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" + "application/json; charset=utf-8" ], - "x-ms-request-id": [ - "1750a7c00b20bf99bd1e87190b9ab564" + "Expires": [ + "-1" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 01 Jul 2015 11:04:10 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14796" ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" + "x-ms-request-id": [ + "5115f3c1-4244-4566-a38c-f9fd85d39c22" ], - "Content-Type": [ - "application/xml; charset=utf-8" + "x-ms-correlation-request-id": [ + "5115f3c1-4244-4566-a38c-f9fd85d39c22" ], - "x-ms-servedbyregion": [ - "ussouth3" + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123847Z:5115f3c1-4244-4566-a38c-f9fd85d39c22" ], - "x-ms-request-id": [ - "6c37f8207a3ab7c1ab7c4dd8e34be12e" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:04:40 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "12" ], "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" + "application/json; charset=utf-8" ], - "x-ms-request-id": [ - "d096685c2805ba2085fa18c51a686321" + "Expires": [ + "-1" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 01 Jul 2015 11:05:10 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14794" ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" + "x-ms-request-id": [ + "8c75114f-b32d-4ea6-b20e-cf4f04c1f049" ], - "Content-Type": [ - "application/xml; charset=utf-8" + "x-ms-correlation-request-id": [ + "8c75114f-b32d-4ea6-b20e-cf4f04c1f049" ], - "x-ms-servedbyregion": [ - "ussouth3" + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123850Z:8c75114f-b32d-4ea6-b20e-cf4f04c1f049" ], - "x-ms-request-id": [ - "cdaf91e7061bba1bb8cc1ef24dd1a88e" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:05:41 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "12" ], "Content-Type": [ - "application/xml; charset=utf-8" + "application/json; charset=utf-8" ], - "x-ms-servedbyregion": [ - "ussouth3" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14792" ], "x-ms-request-id": [ - "848fec4f8b02b40d9c22bbd538e75b40" + "5325f9a3-8542-4ca2-927e-5949858bd606" + ], + "x-ms-correlation-request-id": [ + "5325f9a3-8542-4ca2-927e-5949858bd606" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123853Z:5325f9a3-8542-4ca2-927e-5949858bd606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:06:11 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "12" ], "Content-Type": [ - "application/xml; charset=utf-8" + "application/json; charset=utf-8" ], - "x-ms-servedbyregion": [ - "ussouth3" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" ], "x-ms-request-id": [ - "d1b5b0897b6eb6dbad271ba1b3ebf91d" + "0adcb85f-f953-465c-baac-105f7cf3c77d" + ], + "x-ms-correlation-request-id": [ + "0adcb85f-f953-465c-baac-105f7cf3c77d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123856Z:0adcb85f-f953-465c-baac-105f7cf3c77d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:06:41 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n InProgress\r\n", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "668" ], "Content-Type": [ - "application/xml; charset=utf-8" + "application/json; charset=utf-8" ], - "x-ms-servedbyregion": [ - "ussouth3" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" ], "x-ms-request-id": [ - "141d439cb396bb698626fa490e1e9dd1" + "e38138ef-5d33-42cb-975c-850bd5431415" + ], + "x-ms-correlation-request-id": [ + "e38138ef-5d33-42cb-975c-850bd5431415" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123859Z:e38138ef-5d33-42cb-975c-850bd5431415" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:12 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:38:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/134781c083f9b7159cdf2cd01ae2ca48", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzEzNDc4MWMwODNmOWI3MTU5Y2RmMmNkMDFhZTJjYTQ4", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "\r\n 134781c0-83f9-b715-9cdf-2cd01ae2ca48\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "232" + "668" ], "Content-Type": [ - "application/xml; charset=utf-8" + "application/json; charset=utf-8" ], - "x-ms-servedbyregion": [ - "ussouth3" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14786" ], "x-ms-request-id": [ - "0f0ee5382177b9bf97b4734041bbfedf" + "b95d110a-317f-4885-b642-9c80cad58a6c" + ], + "x-ms-correlation-request-id": [ + "b95d110a-317f-4885-b642-9c80cad58a6c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T123902Z:b95d110a-317f-4885-b642-9c80cad58a6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:43 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" + "Mon, 13 Jul 2015 12:39:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "HEAD", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "119" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -891,20 +695,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" + "14782" ], "x-ms-request-id": [ - "5f358622-2c43-4d05-8b27-62db7b1936a0" + "f2886ec0-15af-4e41-8b17-c3e547d10641" ], "x-ms-correlation-request-id": [ - "5f358622-2c43-4d05-8b27-62db7b1936a0" + "f2886ec0-15af-4e41-8b17-c3e547d10641" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110743Z:5f358622-2c43-4d05-8b27-62db7b1936a0" + "WESTEUROPE:20150713T123905Z:f2886ec0-15af-4e41-8b17-c3e547d10641" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,31 +714,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:42 GMT" + "Mon, 13 Jul 2015 12:39:05 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204\",\r\n \"name\": \"sql-audit-cmdlet-test-rg204\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "207" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -948,17 +743,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" ], "x-ms-request-id": [ - "4fa164a3-b8dc-4e4d-b30a-42741cd469af" + "43e76464-e479-4759-9a25-61261ce81328" ], "x-ms-correlation-request-id": [ - "4fa164a3-b8dc-4e4d-b30a-42741cd469af" + "43e76464-e479-4759-9a25-61261ce81328" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110745Z:4fa164a3-b8dc-4e4d-b30a-42741cd469af" + "WESTEUROPE:20150713T123908Z:43e76464-e479-4759-9a25-61261ce81328" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -967,31 +762,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:44 GMT" + "Mon, 13 Jul 2015 12:39:08 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/validate?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2360" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:07:46.4649747Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"c342ab19-4a25-443d-9bb4-5a65f03efb2e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1643" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,17 +791,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" ], "x-ms-request-id": [ - "c342ab19-4a25-443d-9bb4-5a65f03efb2e" + "842e5b21-66a2-4e77-a6e6-876d8d802e92" ], "x-ms-correlation-request-id": [ - "c342ab19-4a25-443d-9bb4-5a65f03efb2e" + "842e5b21-66a2-4e77-a6e6-876d8d802e92" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110746Z:c342ab19-4a25-443d-9bb4-5a65f03efb2e" + "WESTEUROPE:20150713T123911Z:842e5b21-66a2-4e77-a6e6-876d8d802e92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1021,31 +810,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:45 GMT" + "Mon, 13 Jul 2015 12:39:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2360" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:07:48.6623811Z\",\r\n \"duration\": \"PT1.4365669S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1056,17 +839,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" ], "x-ms-request-id": [ - "4da541ef-4a5e-45ba-a937-902ef15bd400" + "e982cd2b-01d0-486d-b92e-a899f0811653" ], "x-ms-correlation-request-id": [ - "4da541ef-4a5e-45ba-a937-902ef15bd400" + "e982cd2b-01d0-486d-b92e-a899f0811653" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110749Z:4da541ef-4a5e-45ba-a937-902ef15bd400" + "WESTEUROPE:20150713T123914Z:e982cd2b-01d0-486d-b92e-a899f0811653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1075,10 +858,10 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:48 GMT" + "Mon, 13 Jul 2015 12:39:14 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", @@ -1090,10 +873,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1105,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" + "14774" ], "x-ms-request-id": [ - "0b39fd33-e405-47f3-87fc-4c39221df6ce" + "3a2ca5b5-6955-4e52-9b2c-b5fef134e86b" ], "x-ms-correlation-request-id": [ - "0b39fd33-e405-47f3-87fc-4c39221df6ce" + "3a2ca5b5-6955-4e52-9b2c-b5fef134e86b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110749Z:0b39fd33-e405-47f3-87fc-4c39221df6ce" + "WESTEUROPE:20150713T123917Z:3a2ca5b5-6955-4e52-9b2c-b5fef134e86b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1123,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:49 GMT" + "Mon, 13 Jul 2015 12:39:17 GMT" ] }, "StatusCode": 200 @@ -1138,10 +921,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14772" ], "x-ms-request-id": [ - "d413000d-da05-4440-929c-a17a358dea6d" + "9144eba2-149b-4ca2-b002-0d21dd9e7774" ], "x-ms-correlation-request-id": [ - "d413000d-da05-4440-929c-a17a358dea6d" + "9144eba2-149b-4ca2-b002-0d21dd9e7774" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110752Z:d413000d-da05-4440-929c-a17a358dea6d" + "WESTEUROPE:20150713T123920Z:9144eba2-149b-4ca2-b002-0d21dd9e7774" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1171,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:51 GMT" + "Mon, 13 Jul 2015 12:39:20 GMT" ] }, "StatusCode": 200 @@ -1186,10 +969,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/6D88A4D435C6FC7D\",\r\n \"operationId\": \"6D88A4D435C6FC7D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:39:20.8312438Z\",\r\n \"duration\": \"PT21.2924458S\",\r\n \"trackingId\": \"c1a41fc8-43d8-4909-bde4-514c40fc61f6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1201,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" + "14770" ], "x-ms-request-id": [ - "97e2241b-d1e3-43e8-bc0a-fcb21e405c2b" + "5c3a3496-799c-4ff0-9425-869fc4e90f2a" ], "x-ms-correlation-request-id": [ - "97e2241b-d1e3-43e8-bc0a-fcb21e405c2b" + "5c3a3496-799c-4ff0-9425-869fc4e90f2a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110755Z:97e2241b-d1e3-43e8-bc0a-fcb21e405c2b" + "WESTEUROPE:20150713T123923Z:5c3a3496-799c-4ff0-9425-869fc4e90f2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:54 GMT" + "Mon, 13 Jul 2015 12:39:23 GMT" ] }, "StatusCode": 200 @@ -1234,10 +1017,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/6D88A4D435C6FC7D\",\r\n \"operationId\": \"6D88A4D435C6FC7D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:39:20.8312438Z\",\r\n \"duration\": \"PT21.2924458S\",\r\n \"trackingId\": \"c1a41fc8-43d8-4909-bde4-514c40fc61f6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:38:58.9584948Z\",\r\n \"duration\": \"PT10.0716637S\",\r\n \"trackingId\": \"21a5229f-2087-45ad-97d2-b66ec752672c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1249,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14768" ], "x-ms-request-id": [ - "be9c67d6-caae-470b-bc61-40051e64c5e6" + "47e6cc9c-7500-4738-996f-9042124af090" ], "x-ms-correlation-request-id": [ - "be9c67d6-caae-470b-bc61-40051e64c5e6" + "47e6cc9c-7500-4738-996f-9042124af090" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110758Z:be9c67d6-caae-470b-bc61-40051e64c5e6" + "WESTEUROPE:20150713T123926Z:47e6cc9c-7500-4738-996f-9042124af090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1267,14 +1050,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:57 GMT" + "Mon, 13 Jul 2015 12:39:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1282,10 +1065,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:38:46.5934765Z\",\r\n \"duration\": \"PT0.9819248S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "1651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1297,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14795" ], "x-ms-request-id": [ - "96d05dc6-d800-44a8-a67b-e546dad8dd51" + "e7429355-74e3-47b0-bece-a736624d08b6" ], "x-ms-correlation-request-id": [ - "96d05dc6-d800-44a8-a67b-e546dad8dd51" + "e7429355-74e3-47b0-bece-a736624d08b6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110801Z:96d05dc6-d800-44a8-a67b-e546dad8dd51" + "WESTEUROPE:20150713T123848Z:e7429355-74e3-47b0-bece-a736624d08b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1315,14 +1098,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:00 GMT" + "Mon, 13 Jul 2015 12:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1330,10 +1113,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:08:02.7436053Z\",\r\n \"duration\": \"PT12.8074669S\",\r\n \"trackingId\": \"3700fecd-49a2-447c-9ac6-e93e174d2016\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1345,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14793" ], "x-ms-request-id": [ - "44156a7b-b606-4f92-aa3f-39e1f328ec3b" + "fc3ec3b4-66c4-464a-8a98-964c382aaa0a" ], "x-ms-correlation-request-id": [ - "44156a7b-b606-4f92-aa3f-39e1f328ec3b" + "fc3ec3b4-66c4-464a-8a98-964c382aaa0a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110804Z:44156a7b-b606-4f92-aa3f-39e1f328ec3b" + "WESTEUROPE:20150713T123851Z:fc3ec3b4-66c4-464a-8a98-964c382aaa0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1363,14 +1146,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:03 GMT" + "Mon, 13 Jul 2015 12:38:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1378,10 +1161,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:08:02.7436053Z\",\r\n \"duration\": \"PT12.8074669S\",\r\n \"trackingId\": \"3700fecd-49a2-447c-9ac6-e93e174d2016\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1393,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14791" ], "x-ms-request-id": [ - "d41a89f8-b14f-41c4-a88e-19020b671bca" + "a754dfc5-a969-4fcf-a290-8bcbf27eabff" ], "x-ms-correlation-request-id": [ - "d41a89f8-b14f-41c4-a88e-19020b671bca" + "a754dfc5-a969-4fcf-a290-8bcbf27eabff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110808Z:d41a89f8-b14f-41c4-a88e-19020b671bca" + "WESTEUROPE:20150713T123854Z:a754dfc5-a969-4fcf-a290-8bcbf27eabff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1411,14 +1194,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:07 GMT" + "Mon, 13 Jul 2015 12:38:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1426,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:08:02.7436053Z\",\r\n \"duration\": \"PT12.8074669S\",\r\n \"trackingId\": \"3700fecd-49a2-447c-9ac6-e93e174d2016\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1441,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14789" ], "x-ms-request-id": [ - "549c6acb-47e7-4378-a0e3-5ad176194fa3" + "afebf57f-a3ca-4ff5-941e-8b39416ce87d" ], "x-ms-correlation-request-id": [ - "549c6acb-47e7-4378-a0e3-5ad176194fa3" + "afebf57f-a3ca-4ff5-941e-8b39416ce87d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110811Z:549c6acb-47e7-4378-a0e3-5ad176194fa3" + "WESTEUROPE:20150713T123857Z:afebf57f-a3ca-4ff5-941e-8b39416ce87d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1459,14 +1242,14 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:10 GMT" + "Mon, 13 Jul 2015 12:38:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1474,10 +1257,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/6D88A4D435C6FC7D\",\r\n \"operationId\": \"6D88A4D435C6FC7D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:08:11.8734219Z\",\r\n \"duration\": \"PT8.5206959S\",\r\n \"trackingId\": \"2e68c256-99dc-4956-b7a8-7e1ce3821d05\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup/operations/8800074D96F6B4D5\",\r\n \"operationId\": \"8800074D96F6B4D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:08:02.7436053Z\",\r\n \"duration\": \"PT12.8074669S\",\r\n \"trackingId\": \"3700fecd-49a2-447c-9ac6-e93e174d2016\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1390" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1489,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14787" ], "x-ms-request-id": [ - "6b025cd5-f297-4ef3-9dfb-b49947fef1af" + "efa0ff23-21ca-4bfe-8560-13cdaf5efad1" ], "x-ms-correlation-request-id": [ - "6b025cd5-f297-4ef3-9dfb-b49947fef1af" + "efa0ff23-21ca-4bfe-8560-13cdaf5efad1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110814Z:6b025cd5-f297-4ef3-9dfb-b49947fef1af" + "WESTEUROPE:20150713T123900Z:efa0ff23-21ca-4bfe-8560-13cdaf5efad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1507,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:14 GMT" + "Mon, 13 Jul 2015 12:39:00 GMT" ] }, "StatusCode": 200 @@ -1522,10 +1305,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:07:49.8694172Z\",\r\n \"duration\": \"PT2.643603S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1537,16 +1320,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "14785" ], "x-ms-request-id": [ - "2822e582-741d-42ea-ad8c-05e937f33ab9" + "0bdffe3e-3aec-45f9-a017-560cf2bedef8" ], "x-ms-correlation-request-id": [ - "2822e582-741d-42ea-ad8c-05e937f33ab9" + "0bdffe3e-3aec-45f9-a017-560cf2bedef8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110750Z:2822e582-741d-42ea-ad8c-05e937f33ab9" + "WESTEUROPE:20150713T123903Z:0bdffe3e-3aec-45f9-a017-560cf2bedef8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1555,7 +1338,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:49 GMT" + "Mon, 13 Jul 2015 12:39:02 GMT" ] }, "StatusCode": 200 @@ -1570,10 +1353,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:07:49.8694172Z\",\r\n \"duration\": \"PT2.643603S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1585,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14781" ], "x-ms-request-id": [ - "470ed373-b5be-4b03-a2d8-35689e405d39" + "a10351f1-a676-4cab-b159-7cc4aa3867ca" ], "x-ms-correlation-request-id": [ - "470ed373-b5be-4b03-a2d8-35689e405d39" + "a10351f1-a676-4cab-b159-7cc4aa3867ca" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110753Z:470ed373-b5be-4b03-a2d8-35689e405d39" + "WESTEUROPE:20150713T123906Z:a10351f1-a676-4cab-b159-7cc4aa3867ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1603,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:52 GMT" + "Mon, 13 Jul 2015 12:39:05 GMT" ] }, "StatusCode": 200 @@ -1618,10 +1401,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:07:49.8694172Z\",\r\n \"duration\": \"PT2.643603S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1633,16 +1416,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14779" ], "x-ms-request-id": [ - "107188c9-799d-4e02-9bc0-d3bda6515f43" + "75228247-b707-4d5e-a91d-e2eac74a648a" ], "x-ms-correlation-request-id": [ - "107188c9-799d-4e02-9bc0-d3bda6515f43" + "75228247-b707-4d5e-a91d-e2eac74a648a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110756Z:107188c9-799d-4e02-9bc0-d3bda6515f43" + "WESTEUROPE:20150713T123909Z:75228247-b707-4d5e-a91d-e2eac74a648a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1651,7 +1434,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:55 GMT" + "Mon, 13 Jul 2015 12:39:08 GMT" ] }, "StatusCode": 200 @@ -1666,10 +1449,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:07:49.8694172Z\",\r\n \"duration\": \"PT2.643603S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1681,16 +1464,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14777" ], "x-ms-request-id": [ - "a98d734b-564e-4732-9992-2202d79c3818" + "a40f0646-f200-4270-b06b-d5f4c03039f4" ], "x-ms-correlation-request-id": [ - "a98d734b-564e-4732-9992-2202d79c3818" + "a40f0646-f200-4270-b06b-d5f4c03039f4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110759Z:a98d734b-564e-4732-9992-2202d79c3818" + "WESTEUROPE:20150713T123912Z:a40f0646-f200-4270-b06b-d5f4c03039f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1699,7 +1482,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:07:58 GMT" + "Mon, 13 Jul 2015 12:39:11 GMT" ] }, "StatusCode": 200 @@ -1714,10 +1497,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:07:49.8694172Z\",\r\n \"duration\": \"PT2.643603S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1729,16 +1512,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14775" ], "x-ms-request-id": [ - "3ab4a6df-7f00-40d1-acc2-e485567668ee" + "552b1429-b99c-42f2-85bb-d396efe63834" ], "x-ms-correlation-request-id": [ - "3ab4a6df-7f00-40d1-acc2-e485567668ee" + "552b1429-b99c-42f2-85bb-d396efe63834" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110802Z:3ab4a6df-7f00-40d1-acc2-e485567668ee" + "WESTEUROPE:20150713T123915Z:552b1429-b99c-42f2-85bb-d396efe63834" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1747,7 +1530,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:01 GMT" + "Mon, 13 Jul 2015 12:39:14 GMT" ] }, "StatusCode": 200 @@ -1762,10 +1545,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:07:49.8694172Z\",\r\n \"duration\": \"PT2.643603S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1777,16 +1560,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14773" ], "x-ms-request-id": [ - "252c9dd3-727c-45cd-9238-6ba080aaa51f" + "80ff8a7f-2851-4ca3-a29e-a9b73e4d9ac0" ], "x-ms-correlation-request-id": [ - "252c9dd3-727c-45cd-9238-6ba080aaa51f" + "80ff8a7f-2851-4ca3-a29e-a9b73e4d9ac0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110805Z:252c9dd3-727c-45cd-9238-6ba080aaa51f" + "WESTEUROPE:20150713T123918Z:80ff8a7f-2851-4ca3-a29e-a9b73e4d9ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1795,7 +1578,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:04 GMT" + "Mon, 13 Jul 2015 12:39:17 GMT" ] }, "StatusCode": 200 @@ -1810,10 +1593,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:07:49.8694172Z\",\r\n \"duration\": \"PT2.643603S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1825,16 +1608,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14771" ], "x-ms-request-id": [ - "740a19d4-946f-40b5-ad12-0aebdda6c9f1" + "4cdbaa59-e6c1-4280-af87-0d83f188c25d" ], "x-ms-correlation-request-id": [ - "740a19d4-946f-40b5-ad12-0aebdda6c9f1" + "4cdbaa59-e6c1-4280-af87-0d83f188c25d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110808Z:740a19d4-946f-40b5-ad12-0aebdda6c9f1" + "WESTEUROPE:20150713T123921Z:4cdbaa59-e6c1-4280-af87-0d83f188c25d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1843,7 +1626,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:08 GMT" + "Mon, 13 Jul 2015 12:39:20 GMT" ] }, "StatusCode": 200 @@ -1858,10 +1641,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:07:49.8694172Z\",\r\n \"duration\": \"PT2.643603S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:38:48.3849922Z\",\r\n \"duration\": \"PT2.7734405S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1873,16 +1656,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14769" ], "x-ms-request-id": [ - "d8c0958c-81be-4ee3-86f6-57731d622d1a" + "57f3a249-6f1a-4037-9090-ba052a578971" ], "x-ms-correlation-request-id": [ - "d8c0958c-81be-4ee3-86f6-57731d622d1a" + "57f3a249-6f1a-4037-9090-ba052a578971" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110811Z:d8c0958c-81be-4ee3-86f6-57731d622d1a" + "WESTEUROPE:20150713T123924Z:57f3a249-6f1a-4037-9090-ba052a578971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1891,7 +1674,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:11 GMT" + "Mon, 13 Jul 2015 12:39:23 GMT" ] }, "StatusCode": 200 @@ -1906,10 +1689,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:08:14.1449545Z\",\r\n \"duration\": \"PT26.9191403S\",\r\n \"correlationId\": \"4da541ef-4a5e-45ba-a937-902ef15bd400\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db204\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server204\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:39:24.4351407Z\",\r\n \"duration\": \"PT38.823589S\",\r\n \"correlationId\": \"a8fa69a8-d3e6-4ae4-a130-8619b9a25eac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server204/sql-audit-cmdlet-db204\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server204\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server204/databases/sql-audit-cmdlet-db204\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1821" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1921,16 +1704,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14767" ], "x-ms-request-id": [ - "ee65deda-58fb-4ff1-9ec0-588461204eca" + "3a86249f-720a-498d-bb55-702e12859295" ], "x-ms-correlation-request-id": [ - "ee65deda-58fb-4ff1-9ec0-588461204eca" + "3a86249f-720a-498d-bb55-702e12859295" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110814Z:ee65deda-58fb-4ff1-9ec0-588461204eca" + "WESTEUROPE:20150713T123927Z:3a86249f-720a-498d-bb55-702e12859295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1939,7 +1722,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:14 GMT" + "Mon, 13 Jul 2015 12:39:26 GMT" ] }, "StatusCode": 200 @@ -1969,16 +1752,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14766" ], "x-ms-request-id": [ - "d218cfeb-4b08-443f-8f36-f3a49ada2c49" + "eb6018ac-7391-4543-bcf4-879a33ba42f2" ], "x-ms-correlation-request-id": [ - "d218cfeb-4b08-443f-8f36-f3a49ada2c49" + "eb6018ac-7391-4543-bcf4-879a33ba42f2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110816Z:d218cfeb-4b08-443f-8f36-f3a49ada2c49" + "WESTEUROPE:20150713T123929Z:eb6018ac-7391-4543-bcf4-879a33ba42f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1987,7 +1770,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:16 GMT" + "Mon, 13 Jul 2015 12:39:28 GMT" ] }, "StatusCode": 200 @@ -2020,16 +1803,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:5d44037e-88db-430c-9916-8042be4eb5d0" + "westeurope:c810ac03-4e6f-4be4-8fdb-43735c795b32" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14808" ], "x-ms-correlation-request-id": [ - "80c6ff05-b2cf-4985-8c1e-649a34b19630" + "c77efccb-9ac2-47ee-84c0-731dadf5887e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110816Z:80c6ff05-b2cf-4985-8c1e-649a34b19630" + "WESTEUROPE:20150713T123929Z:c77efccb-9ac2-47ee-84c0-731dadf5887e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2038,7 +1821,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:16 GMT" + "Mon, 13 Jul 2015 12:39:29 GMT" ] }, "StatusCode": 200 @@ -2053,7 +1836,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c4db2ec3-7c1b-4bb3-9d0b-90b901112f46" + "e4aaf842-9735-4079-b154-6a2aeba4cd2c" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", @@ -2065,7 +1848,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6f649401-57a4-410d-9864-a937270c9863" + "a5747d8a-2794-498d-aeb5-e65fc11ce75b" ], "X-Content-Type-Options": [ "nosniff" @@ -2074,13 +1857,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14879" ], "x-ms-correlation-request-id": [ - "67866f34-b052-4443-b3ab-e17bded1128e" + "ffbcce73-715b-4106-a695-3f4b11114127" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110819Z:67866f34-b052-4443-b3ab-e17bded1128e" + "WESTEUROPE:20150713T123931Z:ffbcce73-715b-4106-a695-3f4b11114127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2089,7 +1872,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:18 GMT" + "Mon, 13 Jul 2015 12:39:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2107,19 +1890,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "dbbb6787-4177-4b58-92f0-e8e959c68c62" + "6f50f4fb-d595-4ac8-b774-20a5194aaf2a" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1008" + "934" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "7627c8d5-015b-4541-9221-93c3dc68f35f" + "0cd1088a-aaa4-42d6-a6e8-f21a9fc770ac" ], "X-Content-Type-Options": [ "nosniff" @@ -2128,13 +1911,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14878" ], "x-ms-correlation-request-id": [ - "4261da6f-b123-4079-bca3-5389b12b6208" + "d730d9ba-b495-4e0f-b7f5-b791de86ac13" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110824Z:4261da6f-b123-4079-bca3-5389b12b6208" + "WESTEUROPE:20150713T123935Z:d730d9ba-b495-4e0f-b7f5-b791de86ac13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2143,7 +1926,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:23 GMT" + "Mon, 13 Jul 2015 12:39:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2161,19 +1944,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7a7d4a52-90dc-40cb-8637-44e13fdb1512" + "fa6a0be3-425b-4ce3-8eb7-b1487fec1d2b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1008" + "934" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f4ddc9aa-5699-417f-bb00-16acc687bff2" + "932a6dbc-1c20-4466-8c3f-6f0fd24d1d8d" ], "X-Content-Type-Options": [ "nosniff" @@ -2182,13 +1965,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14877" ], "x-ms-correlation-request-id": [ - "d43ccda8-399f-4500-8244-2aaee4f78b95" + "0e5dc4b6-69fc-40cb-ba5f-2fcecd948bec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110827Z:d43ccda8-399f-4500-8244-2aaee4f78b95" + "WESTEUROPE:20150713T123939Z:0e5dc4b6-69fc-40cb-ba5f-2fcecd948bec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2197,7 +1980,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:26 GMT" + "Mon, 13 Jul 2015 12:39:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2215,19 +1998,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8de3bdd7-4df7-41af-b45f-d227f9d6d5f8" + "2dbe8883-99af-43a9-93a0-8c47f73a0914" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1008" + "934" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a66c01c3-2381-4c39-9eac-6738f5f4dea8" + "ef9714c6-02a1-455c-ac7b-7fb3f3c29fb1" ], "X-Content-Type-Options": [ "nosniff" @@ -2236,13 +2019,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14876" ], "x-ms-correlation-request-id": [ - "6c475997-45a3-47e2-bdb9-9bea16217037" + "22e8a619-dc73-40da-ac20-a3c2beddaf86" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110829Z:6c475997-45a3-47e2-bdb9-9bea16217037" + "WESTEUROPE:20150713T123940Z:22e8a619-dc73-40da-ac20-a3c2beddaf86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2251,7 +2034,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:28 GMT" + "Mon, 13 Jul 2015 12:39:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2269,19 +2052,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "73a2079e-32b0-4902-8bb2-d2ae9b3e73be" + "5b1c3f2e-a6ee-4d83-8c3a-e368dda06f3d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1204\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1009" + "935" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8ec60e4c-32eb-4018-802e-b4c6ba6c37f7" + "209b2e52-18bf-480b-9aac-ac16e4444827" ], "X-Content-Type-Options": [ "nosniff" @@ -2290,13 +2073,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14875" ], "x-ms-correlation-request-id": [ - "148df4d4-723e-40e1-b8bc-d9c21673db2a" + "d3828291-9261-42e7-b6ed-b054794254ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110833Z:148df4d4-723e-40e1-b8bc-d9c21673db2a" + "WESTEUROPE:20150713T123943Z:d3828291-9261-42e7-b6ed-b054794254ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2305,7 +2088,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:32 GMT" + "Mon, 13 Jul 2015 12:39:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2326,7 +2109,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"secondaryKey\": \"JLpj3opuPcB2wkUZeTE0fdsrCTFdZ3AE6Q02PgECkLITdtHr4P3epIamJYVsNWDudusZ99qx1na9khgeLYA1vg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"secondaryKey\": \"Ucw0yZ0tzUoluHR80Q9xLlNyuWXb/IKBmUvUbbp8tup6rdYkTV4c0NREfI55Hdaq2eLbsoUBfwGem0Y/IaHXdg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2344,16 +2127,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:42adabe4-9c97-409c-b57c-db94f480a89f" + "southcentralus:af189de2-0190-42e2-b692-e2df3ecb7ddb" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1188" ], "x-ms-correlation-request-id": [ - "a0a0e88a-14f4-46fb-bba8-dd0419e3c49c" + "a8af7b1b-0160-4974-a860-4236a78fdee5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110820Z:a0a0e88a-14f4-46fb-bba8-dd0419e3c49c" + "WESTEUROPE:20150713T123932Z:a8af7b1b-0160-4974-a860-4236a78fdee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2362,7 +2145,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:19 GMT" + "Mon, 13 Jul 2015 12:39:31 GMT" ] }, "StatusCode": 200 @@ -2380,7 +2163,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"secondaryKey\": \"JLpj3opuPcB2wkUZeTE0fdsrCTFdZ3AE6Q02PgECkLITdtHr4P3epIamJYVsNWDudusZ99qx1na9khgeLYA1vg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"secondaryKey\": \"Ucw0yZ0tzUoluHR80Q9xLlNyuWXb/IKBmUvUbbp8tup6rdYkTV4c0NREfI55Hdaq2eLbsoUBfwGem0Y/IaHXdg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2398,16 +2181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:0380c25d-1a4b-43a0-a01a-567b70a5def9" + "southcentralus:3752d894-e3be-41ec-be2a-8af3171d63c0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1186" ], "x-ms-correlation-request-id": [ - "eade2358-a5a3-4673-8c49-57586d42060e" + "8f7e5af5-99a4-49ea-a896-53ff9c0bf175" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110824Z:eade2358-a5a3-4673-8c49-57586d42060e" + "WESTEUROPE:20150713T123936Z:8f7e5af5-99a4-49ea-a896-53ff9c0bf175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2416,7 +2199,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:23 GMT" + "Mon, 13 Jul 2015 12:39:35 GMT" ] }, "StatusCode": 200 @@ -2434,7 +2217,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"secondaryKey\": \"JLpj3opuPcB2wkUZeTE0fdsrCTFdZ3AE6Q02PgECkLITdtHr4P3epIamJYVsNWDudusZ99qx1na9khgeLYA1vg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"secondaryKey\": \"Ucw0yZ0tzUoluHR80Q9xLlNyuWXb/IKBmUvUbbp8tup6rdYkTV4c0NREfI55Hdaq2eLbsoUBfwGem0Y/IaHXdg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2452,16 +2235,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:be3da04f-147e-43da-b905-224115e78b03" + "southcentralus:81a69517-97d6-4423-ae57-9387b2828080" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1184" ], "x-ms-correlation-request-id": [ - "b98293ab-6b0f-4290-b87d-5a33e8af1b46" + "3c2741da-bcb9-4e5a-b76c-afce036df97b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110830Z:b98293ab-6b0f-4290-b87d-5a33e8af1b46" + "WESTEUROPE:20150713T123940Z:3c2741da-bcb9-4e5a-b76c-afce036df97b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2470,7 +2253,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:29 GMT" + "Mon, 13 Jul 2015 12:39:40 GMT" ] }, "StatusCode": 200 @@ -2479,31 +2262,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjA0L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"storageAccountKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"storageAccountKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "856" + "782" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c4db2ec3-7c1b-4bb3-9d0b-90b901112f46" + "e4aaf842-9735-4079-b154-6a2aeba4cd2c" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1083" + "1009" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5dc45734-5e40-40ad-9d2d-cdd25873aa47" + "957a637f-377e-4572-8b41-8fa889e159db" ], "X-Content-Type-Options": [ "nosniff" @@ -2515,13 +2298,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1187" ], "x-ms-correlation-request-id": [ - "cfb36b1e-431a-4936-becb-27d3a2142037" + "c6a4a706-9e1d-4271-b3ba-74a32c4dd179" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110822Z:cfb36b1e-431a-4936-becb-27d3a2142037" + "WESTEUROPE:20150713T123933Z:c6a4a706-9e1d-4271-b3ba-74a32c4dd179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2530,7 +2313,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:21 GMT" + "Mon, 13 Jul 2015 12:39:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2542,31 +2325,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjA0L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"storageAccountKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"storageAccountKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "856" + "782" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "dbbb6787-4177-4b58-92f0-e8e959c68c62" + "6f50f4fb-d595-4ac8-b774-20a5194aaf2a" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier204\",\r\n \"storageAccountKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1083" + "1009" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "17af5416-a944-4239-8a04-f4b7cf33d1b7" + "a61e4bd1-bab7-4487-acf4-c7ddc2ac68f1" ], "X-Content-Type-Options": [ "nosniff" @@ -2578,13 +2361,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1185" ], "x-ms-correlation-request-id": [ - "d85a12dd-6fe2-4e7e-b180-eb780348d532" + "0e59127f-fc17-40f9-baac-3aef4cf7d502" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110826Z:d85a12dd-6fe2-4e7e-b180-eb780348d532" + "WESTEUROPE:20150713T123937Z:0e59127f-fc17-40f9-baac-3aef4cf7d502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2593,7 +2376,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:25 GMT" + "Mon, 13 Jul 2015 12:39:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2605,31 +2388,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjA0L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"storageAccountKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1204\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"storageAccountKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1204\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "857" + "783" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8de3bdd7-4df7-41af-b45f-d227f9d6d5f8" + "2dbe8883-99af-43a9-93a0-8c47f73a0914" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"DataAccess,DataChanges,RevokePermissions,SchemaChanges,SecurityExceptions,PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1204\",\r\n \"storageAccountKey\": \"5/WyBZtC33VFMTGAGpAwORshpdgttZMhlTDp1nV51t/Jf0Ot6ZevfqSNfosKPFNKL0LrlrgcSmtqMpIGFAWF/g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg204/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server204/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets204\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier1204\",\r\n \"storageAccountKey\": \"nNylAbeDphkhRcJWSnMhp7H2K4b8pzPn52R6ms2D1oCDrgBdQxrFER3uZidbRWJW3kQFkEoLuqEqP3UtmSMQMg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets204.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1084" + "1010" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2962b3fe-e4d3-4edc-9026-5688d7646106" + "035a7e59-632e-4100-9c4b-ed26ed1689b9" ], "X-Content-Type-Options": [ "nosniff" @@ -2641,13 +2424,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1183" ], "x-ms-correlation-request-id": [ - "052d714b-bd5f-4a62-b0ad-21f76d6167c7" + "b1c6845f-60ed-4324-a500-7f7158d276d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T110831Z:052d714b-bd5f-4a62-b0ad-21f76d6167c7" + "WESTEUROPE:20150713T123942Z:b1c6845f-60ed-4324-a500-7f7158d276d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2656,7 +2439,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:31 GMT" + "Mon, 13 Jul 2015 12:39:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2686,13 +2469,13 @@ "ussouth3" ], "x-ms-request-id": [ - "6a91b0910e86b68bacec75ebfed223d5" + "1cb6d39919dccc7db888640ddd60685f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:37 GMT" + "Mon, 13 Jul 2015 12:39:46 GMT" ], "Server": [ "1.0.6198.243", @@ -2703,8 +2486,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6a91b0910e86b68bacec75ebfed223d5", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZhOTFiMDkxMGU4NmI2OGJhY2VjNzVlYmZlZDIyM2Q1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/1cb6d39919dccc7db888640ddd60685f", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzFjYjZkMzk5MTlkY2NjN2RiODg4NjQwZGRkNjA2ODVm", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2715,7 +2498,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 6a91b091-0e86-b68b-acec-75ebfed223d5\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 1cb6d399-19dc-cc7d-b888-640ddd60685f\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2727,13 +2510,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c98f567107b7bd708464d3148db0561f" + "1ab766f68463c5e2ab477a996a45370f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:08:38 GMT" + "Mon, 13 Jul 2015 12:39:48 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerStorageKeyRotation.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerStorageKeyRotation.json index 2c7ac21679e0..694dbd9882ed 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerStorageKeyRotation.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerStorageKeyRotation.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "428182fac7c3b3198edffcf643f878c2" + "7ea3cbb52014c400908de0040524f0d6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:09:52 GMT" + "Mon, 13 Jul 2015 12:43:44 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets680" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/428182fac7c3b3198edffcf643f878c2", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQyODE4MmZhYzdjM2IzMTk4ZWRmZmNmNjQzZjg3OGMy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7ea3cbb52014c400908de0040524f0d6", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdlYTNjYmI1MjAxNGM0MDA5MDhkZTAwNDA1MjRmMGQ2", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 428182fa-c7c3-b319-8edf-fcf643f878c2\r\n InProgress\r\n", + "ResponseBody": "\r\n 7ea3cbb5-2014-c400-908d-e0040524f0d6\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "07b97fd4f49bbbf8b09a893f8d71ea5b" + "5ef04d33d95ac4b6b5fae2ee3accfef4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:09:52 GMT" + "Mon, 13 Jul 2015 12:43:44 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/428182fac7c3b3198edffcf643f878c2", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQyODE4MmZhYzdjM2IzMTk4ZWRmZmNmNjQzZjg3OGMy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7ea3cbb52014c400908de0040524f0d6", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdlYTNjYmI1MjAxNGM0MDA5MDhkZTAwNDA1MjRmMGQ2", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 428182fa-c7c3-b319-8edf-fcf643f878c2\r\n InProgress\r\n", + "ResponseBody": "\r\n 7ea3cbb5-2014-c400-908d-e0040524f0d6\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "5f46d74fe1babd8ebc3be8d39deb23c7" + "4df29f02f44acd2aae4f200fd9db9ed4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:10:22 GMT" + "Mon, 13 Jul 2015 12:44:15 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/428182fac7c3b3198edffcf643f878c2", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQyODE4MmZhYzdjM2IzMTk4ZWRmZmNmNjQzZjg3OGMy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7ea3cbb52014c400908de0040524f0d6", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdlYTNjYmI1MjAxNGM0MDA5MDhkZTAwNDA1MjRmMGQ2", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 428182fa-c7c3-b319-8edf-fcf643f878c2\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 7ea3cbb5-2014-c400-908d-e0040524f0d6\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "ac3966872111b75899bd7a00b4ec6829" + "b68034f2744ccc9c8f61a1feec5c5586" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:10:53 GMT" + "Mon, 13 Jul 2015 12:44:45 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14834" ], "x-ms-request-id": [ - "a8686fac-d158-4b1c-9aba-d5a7282db9a8" + "d0c8b897-c52c-4440-875e-7e0bc82ca3ee" ], "x-ms-correlation-request-id": [ - "a8686fac-d158-4b1c-9aba-d5a7282db9a8" + "d0c8b897-c52c-4440-875e-7e0bc82ca3ee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111053Z:a8686fac-d158-4b1c-9aba-d5a7282db9a8" + "WESTEUROPE:20150713T124447Z:d0c8b897-c52c-4440-875e-7e0bc82ca3ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:10:53 GMT" + "Mon, 13 Jul 2015 12:44:46 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1191" ], "x-ms-request-id": [ - "db37d7cd-dc20-44e9-84eb-7bdfe0ea1656" + "e84ea60a-4a02-48b5-86a0-8c09ff7b1cc4" ], "x-ms-correlation-request-id": [ - "db37d7cd-dc20-44e9-84eb-7bdfe0ea1656" + "e84ea60a-4a02-48b5-86a0-8c09ff7b1cc4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111056Z:db37d7cd-dc20-44e9-84eb-7bdfe0ea1656" + "WESTEUROPE:20150713T124449Z:e84ea60a-4a02-48b5-86a0-8c09ff7b1cc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:10:55 GMT" + "Mon, 13 Jul 2015 12:44:49 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:10:56.7517361Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"804ad201-edab-4b84-88aa-5070720b0f94\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:44:50.3250362Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"7c9aa1b5-f177-4e67-b5ff-7b2b57f6b555\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1190" ], "x-ms-request-id": [ - "804ad201-edab-4b84-88aa-5070720b0f94" + "7c9aa1b5-f177-4e67-b5ff-7b2b57f6b555" ], "x-ms-correlation-request-id": [ - "804ad201-edab-4b84-88aa-5070720b0f94" + "7c9aa1b5-f177-4e67-b5ff-7b2b57f6b555" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111056Z:804ad201-edab-4b84-88aa-5070720b0f94" + "WESTEUROPE:20150713T124450Z:7c9aa1b5-f177-4e67-b5ff-7b2b57f6b555" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:10:56 GMT" + "Mon, 13 Jul 2015 12:44:50 GMT" ] }, "StatusCode": 200 @@ -345,10 +345,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:10:58.964621Z\",\r\n \"duration\": \"PT1.4586722S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:44:52.2429592Z\",\r\n \"duration\": \"PT1.1548997S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1189" ], "x-ms-request-id": [ - "e98af81d-f9cf-43b5-b347-2d10870b9caa" + "92d937e2-744e-4bb2-88ce-08756bbecc54" ], "x-ms-correlation-request-id": [ - "e98af81d-f9cf-43b5-b347-2d10870b9caa" + "92d937e2-744e-4bb2-88ce-08756bbecc54" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111059Z:e98af81d-f9cf-43b5-b347-2d10870b9caa" + "WESTEUROPE:20150713T124452Z:92d937e2-744e-4bb2-88ce-08756bbecc54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:10:59 GMT" + "Mon, 13 Jul 2015 12:44:52 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14833" ], "x-ms-request-id": [ - "7edb8f96-6d53-473e-a3bd-9db2785cd1fc" + "ca1a9b2d-3b50-44b3-87ef-4dad9577952c" ], "x-ms-correlation-request-id": [ - "7edb8f96-6d53-473e-a3bd-9db2785cd1fc" + "ca1a9b2d-3b50-44b3-87ef-4dad9577952c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111100Z:7edb8f96-6d53-473e-a3bd-9db2785cd1fc" + "WESTEUROPE:20150713T124453Z:ca1a9b2d-3b50-44b3-87ef-4dad9577952c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:10:59 GMT" + "Mon, 13 Jul 2015 12:44:53 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14831" ], "x-ms-request-id": [ - "38db0534-b553-4e82-95a2-d9151a23ee46" + "25f29a97-cc59-4dc5-9752-075c0ea5d90a" ], "x-ms-correlation-request-id": [ - "38db0534-b553-4e82-95a2-d9151a23ee46" + "25f29a97-cc59-4dc5-9752-075c0ea5d90a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111103Z:38db0534-b553-4e82-95a2-d9151a23ee46" + "WESTEUROPE:20150713T124456Z:25f29a97-cc59-4dc5-9752-075c0ea5d90a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:02 GMT" + "Mon, 13 Jul 2015 12:44:56 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14829" ], "x-ms-request-id": [ - "519c7da0-878d-454f-b27b-0e8a7bfb3f02" + "72fa6eff-79d1-4b83-8552-ea53976bdc50" ], "x-ms-correlation-request-id": [ - "519c7da0-878d-454f-b27b-0e8a7bfb3f02" + "72fa6eff-79d1-4b83-8552-ea53976bdc50" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111106Z:519c7da0-878d-454f-b27b-0e8a7bfb3f02" + "WESTEUROPE:20150713T124459Z:72fa6eff-79d1-4b83-8552-ea53976bdc50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:05 GMT" + "Mon, 13 Jul 2015 12:44:59 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14861" ], "x-ms-request-id": [ - "8d8a61f7-6aaa-44b9-bed8-fb0f2d9f7ff2" + "3090b0c6-0f6b-49ed-9245-e5ba7ce37755" ], "x-ms-correlation-request-id": [ - "8d8a61f7-6aaa-44b9-bed8-fb0f2d9f7ff2" + "3090b0c6-0f6b-49ed-9245-e5ba7ce37755" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111109Z:8d8a61f7-6aaa-44b9-bed8-fb0f2d9f7ff2" + "WESTEUROPE:20150713T124502Z:3090b0c6-0f6b-49ed-9245-e5ba7ce37755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:08 GMT" + "Mon, 13 Jul 2015 12:45:02 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14859" ], "x-ms-request-id": [ - "5500e24e-b59f-494e-a955-b8df6ba58d50" + "d37acbab-e2ce-4fd4-8a05-570b79020226" ], "x-ms-correlation-request-id": [ - "5500e24e-b59f-494e-a955-b8df6ba58d50" + "d37acbab-e2ce-4fd4-8a05-570b79020226" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111112Z:5500e24e-b59f-494e-a955-b8df6ba58d50" + "WESTEUROPE:20150713T124505Z:d37acbab-e2ce-4fd4-8a05-570b79020226" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:11 GMT" + "Mon, 13 Jul 2015 12:45:05 GMT" ] }, "StatusCode": 200 @@ -633,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:11:12.8162Z\",\r\n \"duration\": \"PT10.4060367S\",\r\n \"trackingId\": \"8ce2eb92-deb0-4b16-902f-51edf5cee240\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:45:07.5341155Z\",\r\n \"duration\": \"PT14.2250603S\",\r\n \"trackingId\": \"ee9bd7e3-5ad6-4591-90a2-ad52b1a9665a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "665" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14857" ], "x-ms-request-id": [ - "8db38cf7-8054-4c07-94fe-16afd1a37e8e" + "7304a633-6fe0-4c60-a117-91bb7687e35c" ], "x-ms-correlation-request-id": [ - "8db38cf7-8054-4c07-94fe-16afd1a37e8e" + "7304a633-6fe0-4c60-a117-91bb7687e35c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111115Z:8db38cf7-8054-4c07-94fe-16afd1a37e8e" + "WESTEUROPE:20150713T124508Z:7304a633-6fe0-4c60-a117-91bb7687e35c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:14 GMT" + "Mon, 13 Jul 2015 12:45:08 GMT" ] }, "StatusCode": 200 @@ -681,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:11:12.8162Z\",\r\n \"duration\": \"PT10.4060367S\",\r\n \"trackingId\": \"8ce2eb92-deb0-4b16-902f-51edf5cee240\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:45:07.5341155Z\",\r\n \"duration\": \"PT14.2250603S\",\r\n \"trackingId\": \"ee9bd7e3-5ad6-4591-90a2-ad52b1a9665a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "665" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14855" ], "x-ms-request-id": [ - "0edb0c28-3d26-4197-85b1-a6dceccf104b" + "944fd334-3bc0-41b7-b986-f25a4e993333" ], "x-ms-correlation-request-id": [ - "0edb0c28-3d26-4197-85b1-a6dceccf104b" + "944fd334-3bc0-41b7-b986-f25a4e993333" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111118Z:0edb0c28-3d26-4197-85b1-a6dceccf104b" + "WESTEUROPE:20150713T124511Z:944fd334-3bc0-41b7-b986-f25a4e993333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:17 GMT" + "Mon, 13 Jul 2015 12:45:10 GMT" ] }, "StatusCode": 200 @@ -729,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:11:12.8162Z\",\r\n \"duration\": \"PT10.4060367S\",\r\n \"trackingId\": \"8ce2eb92-deb0-4b16-902f-51edf5cee240\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:45:07.5341155Z\",\r\n \"duration\": \"PT14.2250603S\",\r\n \"trackingId\": \"ee9bd7e3-5ad6-4591-90a2-ad52b1a9665a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "665" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14853" ], "x-ms-request-id": [ - "4552b5b6-6fb6-4e37-972d-1ffa62a71eba" + "30a37b53-6cac-4248-a1a1-a76d6cad1811" ], "x-ms-correlation-request-id": [ - "4552b5b6-6fb6-4e37-972d-1ffa62a71eba" + "30a37b53-6cac-4248-a1a1-a76d6cad1811" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111121Z:4552b5b6-6fb6-4e37-972d-1ffa62a71eba" + "WESTEUROPE:20150713T124514Z:30a37b53-6cac-4248-a1a1-a76d6cad1811" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:20 GMT" + "Mon, 13 Jul 2015 12:45:13 GMT" ] }, "StatusCode": 200 @@ -777,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/1F97A67882C6532C\",\r\n \"operationId\": \"1F97A67882C6532C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:11:22.6467741Z\",\r\n \"duration\": \"PT9.2883905S\",\r\n \"trackingId\": \"3af20ab7-5a6b-471b-b6a6-e37505a0b8f2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:11:12.8162Z\",\r\n \"duration\": \"PT10.4060367S\",\r\n \"trackingId\": \"8ce2eb92-deb0-4b16-902f-51edf5cee240\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/1F97A67882C6532C\",\r\n \"operationId\": \"1F97A67882C6532C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:45:16.9368646Z\",\r\n \"duration\": \"PT9.3137112S\",\r\n \"trackingId\": \"7b38e97d-84c8-430e-84ff-c03c1b2295ea\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:45:07.5341155Z\",\r\n \"duration\": \"PT14.2250603S\",\r\n \"trackingId\": \"ee9bd7e3-5ad6-4591-90a2-ad52b1a9665a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1387" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14851" ], "x-ms-request-id": [ - "8de2a66e-f96a-4686-9da3-edbb6b7c27fe" + "91ad6201-d113-4e78-9163-4ace4ffb67a1" ], "x-ms-correlation-request-id": [ - "8de2a66e-f96a-4686-9da3-edbb6b7c27fe" + "91ad6201-d113-4e78-9163-4ace4ffb67a1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111124Z:8de2a66e-f96a-4686-9da3-edbb6b7c27fe" + "WESTEUROPE:20150713T124517Z:91ad6201-d113-4e78-9163-4ace4ffb67a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,55 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:23 GMT" + "Mon, 13 Jul 2015 12:45:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/1F97A67882C6532C\",\r\n \"operationId\": \"1F97A67882C6532C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:45:16.9368646Z\",\r\n \"duration\": \"PT9.3137112S\",\r\n \"trackingId\": \"7b38e97d-84c8-430e-84ff-c03c1b2295ea\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup/operations/3DDCB0C4C59F9132\",\r\n \"operationId\": \"3DDCB0C4C59F9132\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:45:07.5341155Z\",\r\n \"duration\": \"PT14.2250603S\",\r\n \"trackingId\": \"ee9bd7e3-5ad6-4591-90a2-ad52b1a9665a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1390" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-request-id": [ + "a90c2dc0-db5e-4378-bd5a-918951555c79" + ], + "x-ms-correlation-request-id": [ + "a90c2dc0-db5e-4378-bd5a-918951555c79" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T124520Z:a90c2dc0-db5e-4378-bd5a-918951555c79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:45:20 GMT" ] }, "StatusCode": 200 @@ -825,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:10:58.964621Z\",\r\n \"duration\": \"PT1.4586722S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -840,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14832" ], "x-ms-request-id": [ - "8bb4e602-8a7f-4d4f-b6a5-5b4afa2fbafa" + "9bcc9869-f872-425c-b86c-dbd5e8a5c639" ], "x-ms-correlation-request-id": [ - "8bb4e602-8a7f-4d4f-b6a5-5b4afa2fbafa" + "9bcc9869-f872-425c-b86c-dbd5e8a5c639" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111100Z:8bb4e602-8a7f-4d4f-b6a5-5b4afa2fbafa" + "WESTEUROPE:20150713T124453Z:9bcc9869-f872-425c-b86c-dbd5e8a5c639" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:00 GMT" + "Mon, 13 Jul 2015 12:44:53 GMT" ] }, "StatusCode": 200 @@ -873,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:11:01.9293907Z\",\r\n \"duration\": \"PT4.4234419S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14830" ], "x-ms-request-id": [ - "5b35da77-226d-4471-a505-4f5ae40024f1" + "09c9d859-bc30-4a1a-a978-eba61f377691" ], "x-ms-correlation-request-id": [ - "5b35da77-226d-4471-a505-4f5ae40024f1" + "09c9d859-bc30-4a1a-a978-eba61f377691" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111103Z:5b35da77-226d-4471-a505-4f5ae40024f1" + "WESTEUROPE:20150713T124456Z:09c9d859-bc30-4a1a-a978-eba61f377691" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:03 GMT" + "Mon, 13 Jul 2015 12:44:56 GMT" ] }, "StatusCode": 200 @@ -921,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:11:01.9293907Z\",\r\n \"duration\": \"PT4.4234419S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14828" ], "x-ms-request-id": [ - "615fd204-a3d8-4bd5-aa9c-55aa0b1342c5" + "2e7c5074-edca-422e-888a-b9c26b7ece26" ], "x-ms-correlation-request-id": [ - "615fd204-a3d8-4bd5-aa9c-55aa0b1342c5" + "2e7c5074-edca-422e-888a-b9c26b7ece26" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111106Z:615fd204-a3d8-4bd5-aa9c-55aa0b1342c5" + "WESTEUROPE:20150713T124459Z:2e7c5074-edca-422e-888a-b9c26b7ece26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:05 GMT" + "Mon, 13 Jul 2015 12:44:59 GMT" ] }, "StatusCode": 200 @@ -969,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:11:01.9293907Z\",\r\n \"duration\": \"PT4.4234419S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14860" ], "x-ms-request-id": [ - "b07e005d-31eb-44db-b50d-3c3ec958ed3c" + "f9a4118e-9f5d-4bd6-8e0c-a555e1bbe8c0" ], "x-ms-correlation-request-id": [ - "b07e005d-31eb-44db-b50d-3c3ec958ed3c" + "f9a4118e-9f5d-4bd6-8e0c-a555e1bbe8c0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111109Z:b07e005d-31eb-44db-b50d-3c3ec958ed3c" + "WESTEUROPE:20150713T124502Z:f9a4118e-9f5d-4bd6-8e0c-a555e1bbe8c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:08 GMT" + "Mon, 13 Jul 2015 12:45:02 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:11:01.9293907Z\",\r\n \"duration\": \"PT4.4234419S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14858" ], "x-ms-request-id": [ - "febc4c63-643f-4988-ae33-13eb6509b3d1" + "fbc872ea-777f-4dc0-b6cf-9d584a23fda0" ], "x-ms-correlation-request-id": [ - "febc4c63-643f-4988-ae33-13eb6509b3d1" + "fbc872ea-777f-4dc0-b6cf-9d584a23fda0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111112Z:febc4c63-643f-4988-ae33-13eb6509b3d1" + "WESTEUROPE:20150713T124505Z:fbc872ea-777f-4dc0-b6cf-9d584a23fda0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:11 GMT" + "Mon, 13 Jul 2015 12:45:05 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:11:01.9293907Z\",\r\n \"duration\": \"PT4.4234419S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14856" ], "x-ms-request-id": [ - "93392a70-05e7-4269-a47f-cd52dbba58bb" + "ca735e0e-4342-4f10-8d95-95e12feaaa37" ], "x-ms-correlation-request-id": [ - "93392a70-05e7-4269-a47f-cd52dbba58bb" + "ca735e0e-4342-4f10-8d95-95e12feaaa37" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111115Z:93392a70-05e7-4269-a47f-cd52dbba58bb" + "WESTEUROPE:20150713T124508Z:ca735e0e-4342-4f10-8d95-95e12feaaa37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:14 GMT" + "Mon, 13 Jul 2015 12:45:08 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:11:01.9293907Z\",\r\n \"duration\": \"PT4.4234419S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14854" ], "x-ms-request-id": [ - "3d493ffa-da80-47e9-b0d1-49b51d6841bc" + "6542bd47-ecc0-48fb-a537-2fdae2173d03" ], "x-ms-correlation-request-id": [ - "3d493ffa-da80-47e9-b0d1-49b51d6841bc" + "6542bd47-ecc0-48fb-a537-2fdae2173d03" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111118Z:3d493ffa-da80-47e9-b0d1-49b51d6841bc" + "WESTEUROPE:20150713T124511Z:6542bd47-ecc0-48fb-a537-2fdae2173d03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:17 GMT" + "Mon, 13 Jul 2015 12:45:11 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1209,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:11:01.9293907Z\",\r\n \"duration\": \"PT4.4234419S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14852" ], "x-ms-request-id": [ - "c6d2cd35-760e-41e2-a6fb-8d1cc17fd692" + "49800e60-4a09-4fb7-b045-2c2ea5bae5e6" ], "x-ms-correlation-request-id": [ - "c6d2cd35-760e-41e2-a6fb-8d1cc17fd692" + "49800e60-4a09-4fb7-b045-2c2ea5bae5e6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111121Z:c6d2cd35-760e-41e2-a6fb-8d1cc17fd692" + "WESTEUROPE:20150713T124514Z:49800e60-4a09-4fb7-b045-2c2ea5bae5e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:20 GMT" + "Mon, 13 Jul 2015 12:45:14 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1257,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:11:24.2211278Z\",\r\n \"duration\": \"PT26.715179S\",\r\n \"correlationId\": \"e98af81d-f9cf-43b5-b347-2d10870b9caa\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:44:52.8043113Z\",\r\n \"duration\": \"PT1.7162518S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1652" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14850" ], "x-ms-request-id": [ - "aaf77f71-8f0d-46fb-a3ea-d2d9938332c4" + "aa6f2154-9738-4d6b-864d-69569358e1b2" ], "x-ms-correlation-request-id": [ - "aaf77f71-8f0d-46fb-a3ea-d2d9938332c4" + "aa6f2154-9738-4d6b-864d-69569358e1b2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111124Z:aaf77f71-8f0d-46fb-a3ea-d2d9938332c4" + "WESTEUROPE:20150713T124517Z:aa6f2154-9738-4d6b-864d-69569358e1b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1290,55 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:24 GMT" + "Mon, 13 Jul 2015 12:45:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db680\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server680\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:45:19.5520121Z\",\r\n \"duration\": \"PT28.4639526S\",\r\n \"correlationId\": \"92d937e2-744e-4bb2-88ce-08756bbecc54\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server680/sql-audit-cmdlet-db680\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server680\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server680/databases/sql-audit-cmdlet-db680\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1822" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14848" + ], + "x-ms-request-id": [ + "0ef5f099-0524-4e00-bfc5-8251c7cc7e7d" + ], + "x-ms-correlation-request-id": [ + "0ef5f099-0524-4e00-bfc5-8251c7cc7e7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150713T124521Z:0ef5f099-0524-4e00-bfc5-8251c7cc7e7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:45:20 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14847" ], "x-ms-request-id": [ - "a834e22f-3405-4742-ac59-073a6db92414" + "c57d5bd5-6240-4621-bdac-77058477f504" ], "x-ms-correlation-request-id": [ - "a834e22f-3405-4742-ac59-073a6db92414" + "c57d5bd5-6240-4621-bdac-77058477f504" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111127Z:a834e22f-3405-4742-ac59-073a6db92414" + "WESTEUROPE:20150713T124523Z:c57d5bd5-6240-4621-bdac-77058477f504" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:26 GMT" + "Mon, 13 Jul 2015 12:45:22 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1419,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:3723b1a7-7e31-4701-b700-5f2d05680f5e" + "westeurope:eee95ded-517c-4ccf-a2eb-46a1ac35f2a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14887" ], "x-ms-correlation-request-id": [ - "13878c99-a7e5-4dc9-81a0-e7b325293a01" + "a0c60037-382d-49f7-81f8-9331bdfca4bf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111127Z:13878c99-a7e5-4dc9-81a0-e7b325293a01" + "WESTEUROPE:20150713T124524Z:a0c60037-382d-49f7-81f8-9331bdfca4bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1437,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:26 GMT" + "Mon, 13 Jul 2015 12:45:23 GMT" ] }, "StatusCode": 200 @@ -1356,7 +1452,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "50a5968c-2f9b-49de-a7a6-020ea3a67b20" + "9fad3388-b925-4d18-a06a-4a16e70103b8" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1368,7 +1464,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "956f814a-9379-4bb7-ad9b-6e329ad79394" + "ca465154-bafd-47b4-bb28-145e51de2be6" ], "X-Content-Type-Options": [ "nosniff" @@ -1377,13 +1473,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14899" ], "x-ms-correlation-request-id": [ - "4a8b9656-9864-49cf-8acf-548d3ab8ef6d" + "b68a0d64-7139-40eb-b553-e53e1fd186e8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111129Z:4a8b9656-9864-49cf-8acf-548d3ab8ef6d" + "WESTEUROPE:20150713T124525Z:b68a0d64-7139-40eb-b553-e53e1fd186e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1488,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:28 GMT" + "Mon, 13 Jul 2015 12:45:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,7 +1506,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "cf227e2e-db61-468b-a39f-ee2edfae5817" + "251e3853-4059-4af1-80e9-e5a26da4c8d4" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1422,7 +1518,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "32891040-7bd6-466e-9068-a785e4cfe6bb" + "7b2edcd3-8f78-4ca4-b6b3-c4a31fc703c5" ], "X-Content-Type-Options": [ "nosniff" @@ -1431,13 +1527,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14898" ], "x-ms-correlation-request-id": [ - "3bc00022-38fb-4877-8c37-f006e75a1b45" + "0cfe9607-f8bd-47ec-b8fa-76808f4c7f96" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111134Z:3bc00022-38fb-4877-8c37-f006e75a1b45" + "WESTEUROPE:20150713T124530Z:0cfe9607-f8bd-47ec-b8fa-76808f4c7f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,7 +1542,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:34 GMT" + "Mon, 13 Jul 2015 12:45:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1464,7 +1560,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "856bc602-ea48-4910-a60f-e4f3af3445c3" + "1442ba0b-1e3c-4058-a73e-afccf120c12b" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1476,7 +1572,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "16c6c5bd-4db5-4495-add0-dda9db37589c" + "fd83bda1-42fe-4cb2-a5f0-aa4a1dc48f41" ], "X-Content-Type-Options": [ "nosniff" @@ -1485,13 +1581,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14897" ], "x-ms-correlation-request-id": [ - "1b731e7e-03ae-4a86-bc9f-d6a740bfc094" + "93428ea9-5972-420e-9cd7-df83c1829518" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111135Z:1b731e7e-03ae-4a86-bc9f-d6a740bfc094" + "WESTEUROPE:20150713T124532Z:93428ea9-5972-420e-9cd7-df83c1829518" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1596,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:35 GMT" + "Mon, 13 Jul 2015 12:45:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1518,7 +1614,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e241ba85-0fa7-4770-b77f-d75a5a43de1b" + "b65306c6-c9e2-4012-9c1a-5ab0c2ce82b6" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": \"********\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1530,7 +1626,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d6595eee-4b85-438d-b42a-30f326c7c071" + "786ce69d-1544-451a-a6c4-bece9c771150" ], "X-Content-Type-Options": [ "nosniff" @@ -1539,13 +1635,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14896" ], "x-ms-correlation-request-id": [ - "50910f77-b0c6-4053-ada2-d8229a39dbac" + "8fd96d41-d106-4a5b-99c4-3a923e400d16" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111139Z:50910f77-b0c6-4053-ada2-d8229a39dbac" + "WESTEUROPE:20150713T124536Z:8fd96d41-d106-4a5b-99c4-3a923e400d16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +1650,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:39 GMT" + "Mon, 13 Jul 2015 12:45:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1572,7 +1668,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c0d09461-7f74-4a3b-bda8-6dde591bdac5" + "70f8c4a3-5f3d-4a65-9b1e-ab467fa380c7" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": \"********\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1584,7 +1680,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "03cecffd-a9cb-4def-988c-e912c9ca5a37" + "e7d3c0fc-163a-41ef-ad94-927d19eeb0b3" ], "X-Content-Type-Options": [ "nosniff" @@ -1593,13 +1689,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14895" ], "x-ms-correlation-request-id": [ - "4e8c5a73-ec64-40a5-8ea1-cefa5ea8ff2a" + "fc896d5e-2da2-4239-8347-cf773c487c06" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111141Z:4e8c5a73-ec64-40a5-8ea1-cefa5ea8ff2a" + "WESTEUROPE:20150713T124537Z:fc896d5e-2da2-4239-8347-cf773c487c06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1704,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:40 GMT" + "Mon, 13 Jul 2015 12:45:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1626,7 +1722,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "10a1b122-70b3-4e84-80a8-6b0455dfd613" + "496b270a-62b4-4137-b636-d8ddec9302f7" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1638,7 +1734,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "26633ed4-0986-4aa4-a2be-acc1083fa983" + "bdede107-19f2-414b-a391-8da8bef71784" ], "X-Content-Type-Options": [ "nosniff" @@ -1647,13 +1743,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14894" ], "x-ms-correlation-request-id": [ - "b52789b0-565b-41c2-94e6-b92dfce04158" + "b6016c91-a1a5-4d32-b449-ded5c51e241d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111145Z:b52789b0-565b-41c2-94e6-b92dfce04158" + "WESTEUROPE:20150713T124541Z:b6016c91-a1a5-4d32-b449-ded5c51e241d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1662,7 +1758,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:44 GMT" + "Mon, 13 Jul 2015 12:45:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1680,10 +1776,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets680\",\r\n \"name\": \"auditcmdlets680\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets680\",\r\n \"name\": \"auditcmdlets680\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1695,16 +1791,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14846" ], "x-ms-request-id": [ - "44935614-089b-470b-84c4-80360654a94b" + "55438ac7-ea7f-4525-a3b1-2cc15a2f906e" ], "x-ms-correlation-request-id": [ - "44935614-089b-470b-84c4-80360654a94b" + "55438ac7-ea7f-4525-a3b1-2cc15a2f906e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111129Z:44935614-089b-470b-84c4-80360654a94b" + "WESTEUROPE:20150713T124526Z:55438ac7-ea7f-4525-a3b1-2cc15a2f906e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1713,7 +1809,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:28 GMT" + "Mon, 13 Jul 2015 12:45:25 GMT" ] }, "StatusCode": 200 @@ -1731,7 +1827,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets680\r\n auditcmdlets680\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets680.blob.core.windows.net/\r\n https://auditcmdlets680.queue.core.windows.net/\r\n https://auditcmdlets680.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T11:09:52Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets680\r\n auditcmdlets680\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets680.blob.core.windows.net/\r\n https://auditcmdlets680.queue.core.windows.net/\r\n https://auditcmdlets680.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:43:44Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1743,13 +1839,13 @@ "ussouth3" ], "x-ms-request-id": [ - "0725bb61e08db7568ce7ff731f78a174" + "6552e88b0d3bc550bc2c360da9c5abef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:29 GMT" + "Mon, 13 Jul 2015 12:45:25 GMT" ], "Server": [ "1.0.6198.243", @@ -1772,7 +1868,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"z1LOxEeQBDqC9hLIaRdpitFUqatT3VrkaarRtFSapt8bxKjypxavKefWHzNvprsEAdYZ4lejZtneliEoCrt3RQ==\",\r\n \"secondaryKey\": \"BK9WnbZk1LNtoMuWE8ujqYG3a0oHz9UrKMlhLSbsjWhr3EQEeBQBQNCQQJciXRnxYf7zhuWZIBZPYIXeafobPQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"vbCHMcWLZNAH9Nc0AEHply0DG7Iw2c5QH4K8qNjSSAxSw+flRljoJXCes16x7sFcjiDBqL5KFC7i6RMHXHIOcw==\",\r\n \"secondaryKey\": \"NsnKLdtkLyB7Qj0Vtbbu6Os5OI1aL6gHv5puTNJecfnMZPd+mDXXQFQmFdqW5AmRCl8uVpo22bI7CJw5ERMz3g==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1790,16 +1886,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:4e2372b6-3194-40dc-9ef0-05b45f32b342" + "southcentralus:4120eff7-b190-4c28-bfea-60b717615f81" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1189" ], "x-ms-correlation-request-id": [ - "5afc21ba-711f-465f-9ead-49630e9abb09" + "e935ffd4-6ebf-4114-9fb5-1f7f0eb8dcc7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111131Z:5afc21ba-711f-465f-9ead-49630e9abb09" + "WESTEUROPE:20150713T124527Z:e935ffd4-6ebf-4114-9fb5-1f7f0eb8dcc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1808,7 +1904,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:30 GMT" + "Mon, 13 Jul 2015 12:45:27 GMT" ] }, "StatusCode": 200 @@ -1826,7 +1922,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"z1LOxEeQBDqC9hLIaRdpitFUqatT3VrkaarRtFSapt8bxKjypxavKefWHzNvprsEAdYZ4lejZtneliEoCrt3RQ==\",\r\n \"secondaryKey\": \"BK9WnbZk1LNtoMuWE8ujqYG3a0oHz9UrKMlhLSbsjWhr3EQEeBQBQNCQQJciXRnxYf7zhuWZIBZPYIXeafobPQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"vbCHMcWLZNAH9Nc0AEHply0DG7Iw2c5QH4K8qNjSSAxSw+flRljoJXCes16x7sFcjiDBqL5KFC7i6RMHXHIOcw==\",\r\n \"secondaryKey\": \"NsnKLdtkLyB7Qj0Vtbbu6Os5OI1aL6gHv5puTNJecfnMZPd+mDXXQFQmFdqW5AmRCl8uVpo22bI7CJw5ERMz3g==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1844,16 +1940,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:98ba5171-2c16-4eb6-9f49-75bcda311077" + "southcentralus:934b254c-4811-4598-a7e4-6c9939961280" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1187" ], "x-ms-correlation-request-id": [ - "336e000c-cb8d-4e5c-8772-756f8da5e5a9" + "74c3c0e7-3e37-4306-bbf9-0a70be293c8f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111136Z:336e000c-cb8d-4e5c-8772-756f8da5e5a9" + "WESTEUROPE:20150713T124532Z:74c3c0e7-3e37-4306-bbf9-0a70be293c8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1862,7 +1958,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:36 GMT" + "Mon, 13 Jul 2015 12:45:32 GMT" ] }, "StatusCode": 200 @@ -1880,7 +1976,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"z1LOxEeQBDqC9hLIaRdpitFUqatT3VrkaarRtFSapt8bxKjypxavKefWHzNvprsEAdYZ4lejZtneliEoCrt3RQ==\",\r\n \"secondaryKey\": \"BK9WnbZk1LNtoMuWE8ujqYG3a0oHz9UrKMlhLSbsjWhr3EQEeBQBQNCQQJciXRnxYf7zhuWZIBZPYIXeafobPQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"vbCHMcWLZNAH9Nc0AEHply0DG7Iw2c5QH4K8qNjSSAxSw+flRljoJXCes16x7sFcjiDBqL5KFC7i6RMHXHIOcw==\",\r\n \"secondaryKey\": \"NsnKLdtkLyB7Qj0Vtbbu6Os5OI1aL6gHv5puTNJecfnMZPd+mDXXQFQmFdqW5AmRCl8uVpo22bI7CJw5ERMz3g==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1898,16 +1994,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:95bc99af-6570-4bbd-8309-fa2c05f78b01" + "southcentralus:d8da833e-be0d-42bc-96f7-8e24b17dfa0f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1185" ], "x-ms-correlation-request-id": [ - "7b7d4782-8cd4-46ec-a97a-9c50c2412b08" + "f0a350a9-4e62-4e35-82f9-af9a0634e4ae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111142Z:7b7d4782-8cd4-46ec-a97a-9c50c2412b08" + "WESTEUROPE:20150713T124537Z:f0a350a9-4e62-4e35-82f9-af9a0634e4ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1916,7 +2012,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:41 GMT" + "Mon, 13 Jul 2015 12:45:37 GMT" ] }, "StatusCode": 200 @@ -1925,7 +2021,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjgwL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountKey\": \"z1LOxEeQBDqC9hLIaRdpitFUqatT3VrkaarRtFSapt8bxKjypxavKefWHzNvprsEAdYZ4lejZtneliEoCrt3RQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountKey\": \"vbCHMcWLZNAH9Nc0AEHply0DG7Iw2c5QH4K8qNjSSAxSw+flRljoJXCes16x7sFcjiDBqL5KFC7i6RMHXHIOcw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1937,10 +2033,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "50a5968c-2f9b-49de-a7a6-020ea3a67b20" + "9fad3388-b925-4d18-a06a-4a16e70103b8" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": \"z1LOxEeQBDqC9hLIaRdpitFUqatT3VrkaarRtFSapt8bxKjypxavKefWHzNvprsEAdYZ4lejZtneliEoCrt3RQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": \"vbCHMcWLZNAH9Nc0AEHply0DG7Iw2c5QH4K8qNjSSAxSw+flRljoJXCes16x7sFcjiDBqL5KFC7i6RMHXHIOcw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -1949,7 +2045,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "adbab4ce-6c86-476f-9191-a4e7f757fb9b" + "4ed0d690-f139-4c5f-ae12-34328da4404e" ], "X-Content-Type-Options": [ "nosniff" @@ -1961,13 +2057,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1188" ], "x-ms-correlation-request-id": [ - "ca7c1e28-ac33-4c0b-9850-1c85f23f33b7" + "9f0b94df-1a32-441c-aa13-260520e8ce37" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111133Z:ca7c1e28-ac33-4c0b-9850-1c85f23f33b7" + "WESTEUROPE:20150713T124529Z:9f0b94df-1a32-441c-aa13-260520e8ce37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1976,7 +2072,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:32 GMT" + "Mon, 13 Jul 2015 12:45:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1988,7 +2084,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjgwL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountSecondaryKey\": \"BK9WnbZk1LNtoMuWE8ujqYG3a0oHz9UrKMlhLSbsjWhr3EQEeBQBQNCQQJciXRnxYf7zhuWZIBZPYIXeafobPQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountSecondaryKey\": \"NsnKLdtkLyB7Qj0Vtbbu6Os5OI1aL6gHv5puTNJecfnMZPd+mDXXQFQmFdqW5AmRCl8uVpo22bI7CJw5ERMz3g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2000,10 +2096,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "856bc602-ea48-4910-a60f-e4f3af3445c3" + "1442ba0b-1e3c-4058-a73e-afccf120c12b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": \"BK9WnbZk1LNtoMuWE8ujqYG3a0oHz9UrKMlhLSbsjWhr3EQEeBQBQNCQQJciXRnxYf7zhuWZIBZPYIXeafobPQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": \"NsnKLdtkLyB7Qj0Vtbbu6Os5OI1aL6gHv5puTNJecfnMZPd+mDXXQFQmFdqW5AmRCl8uVpo22bI7CJw5ERMz3g==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -2012,7 +2108,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9fbe3250-c411-48f3-af8f-eaaaf35a14cd" + "7f9195c1-669f-41a6-b5bd-28c94e029bbd" ], "X-Content-Type-Options": [ "nosniff" @@ -2024,13 +2120,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1186" ], "x-ms-correlation-request-id": [ - "dd483968-77a7-45ca-8ce9-4c6466d202eb" + "4ede9f3a-d68c-448a-aa62-dc1bd0d1d47a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111138Z:dd483968-77a7-45ca-8ce9-4c6466d202eb" + "WESTEUROPE:20150713T124534Z:4ede9f3a-d68c-448a-aa62-dc1bd0d1d47a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2039,7 +2135,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:37 GMT" + "Mon, 13 Jul 2015 12:45:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2051,7 +2147,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzY4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjgwL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountKey\": \"z1LOxEeQBDqC9hLIaRdpitFUqatT3VrkaarRtFSapt8bxKjypxavKefWHzNvprsEAdYZ4lejZtneliEoCrt3RQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"storageAccountKey\": \"vbCHMcWLZNAH9Nc0AEHply0DG7Iw2c5QH4K8qNjSSAxSw+flRljoJXCes16x7sFcjiDBqL5KFC7i6RMHXHIOcw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2063,10 +2159,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c0d09461-7f74-4a3b-bda8-6dde591bdac5" + "70f8c4a3-5f3d-4a65-9b1e-ab467fa380c7" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": \"z1LOxEeQBDqC9hLIaRdpitFUqatT3VrkaarRtFSapt8bxKjypxavKefWHzNvprsEAdYZ4lejZtneliEoCrt3RQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg680/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server680/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets680\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver680\",\r\n \"storageAccountKey\": \"vbCHMcWLZNAH9Nc0AEHply0DG7Iw2c5QH4K8qNjSSAxSw+flRljoJXCes16x7sFcjiDBqL5KFC7i6RMHXHIOcw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets680.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -2075,7 +2171,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5c9aa6b3-5fac-41a5-a2b0-fce5ed726c18" + "0ae1a4ae-f700-4b1b-b686-c16981edb223" ], "X-Content-Type-Options": [ "nosniff" @@ -2087,13 +2183,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1184" ], "x-ms-correlation-request-id": [ - "d40c8e22-30fe-4f4e-b0dc-0ff5d9f5a3b7" + "a1f9424c-d558-4f78-8b61-ee6f82336ff0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T111144Z:d40c8e22-30fe-4f4e-b0dc-0ff5d9f5a3b7" + "WESTEUROPE:20150713T124539Z:a1f9424c-d558-4f78-8b61-ee6f82336ff0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2102,7 +2198,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:43 GMT" + "Mon, 13 Jul 2015 12:45:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2132,13 +2228,13 @@ "ussouth3" ], "x-ms-request-id": [ - "8a8747482e38baac875c8438f5fdf511" + "b1f8970d0107c235b5b3d5405d6bd037" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:49 GMT" + "Mon, 13 Jul 2015 12:45:43 GMT" ], "Server": [ "1.0.6198.243", @@ -2149,8 +2245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/8a8747482e38baac875c8438f5fdf511", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzhhODc0NzQ4MmUzOGJhYWM4NzVjODQzOGY1ZmRmNTEx", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/b1f8970d0107c235b5b3d5405d6bd037", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2IxZjg5NzBkMDEwN2MyMzViNWIzZDU0MDVkNmJkMDM3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2161,7 +2257,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 8a874748-2e38-baac-875c-8438f5fdf511\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n b1f8970d-0107-c235-b5b3-d5405d6bd037\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2173,13 +2269,13 @@ "ussouth3" ], "x-ms-request-id": [ - "612d5a535417bf148bd122d9094006cd" + "fbc9c3b57fa1c32fa33b0a6c8e1bf987" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:11:51 GMT" + "Mon, 13 Jul 2015 12:45:45 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyKeepPreviousStorage.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyKeepPreviousStorage.json index f619da5e5893..58803f40cc96 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyKeepPreviousStorage.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyKeepPreviousStorage.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "6ce409d167f8b70e895d813bf83281d4" + "7f793474b827cd69b048687e78c2ddb2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:25:22 GMT" + "Mon, 13 Jul 2015 12:47:00 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets401" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6ce409d167f8b70e895d813bf83281d4", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZjZTQwOWQxNjdmOGI3MGU4OTVkODEzYmY4MzI4MWQ0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7f793474b827cd69b048687e78c2ddb2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdmNzkzNDc0YjgyN2NkNjliMDQ4Njg3ZTc4YzJkZGIy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 6ce409d1-67f8-b70e-895d-813bf83281d4\r\n InProgress\r\n", + "ResponseBody": "\r\n 7f793474-b827-cd69-b048-687e78c2ddb2\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b0e01b08d0e8b78eb98295e35aa48d21" + "180ea1402403cd5d832853ce79e56ef2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:25:23 GMT" + "Mon, 13 Jul 2015 12:47:00 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6ce409d167f8b70e895d813bf83281d4", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZjZTQwOWQxNjdmOGI3MGU4OTVkODEzYmY4MzI4MWQ0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7f793474b827cd69b048687e78c2ddb2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdmNzkzNDc0YjgyN2NkNjliMDQ4Njg3ZTc4YzJkZGIy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 6ce409d1-67f8-b70e-895d-813bf83281d4\r\n InProgress\r\n", + "ResponseBody": "\r\n 7f793474-b827-cd69-b048-687e78c2ddb2\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "b252286d34d7ba9ea7523e86dfb8526f" + "d0f3130ca26ccf43ab8cb6296f1efae7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:25:54 GMT" + "Mon, 13 Jul 2015 12:47:31 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/6ce409d167f8b70e895d813bf83281d4", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzZjZTQwOWQxNjdmOGI3MGU4OTVkODEzYmY4MzI4MWQ0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7f793474b827cd69b048687e78c2ddb2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdmNzkzNDc0YjgyN2NkNjliMDQ4Njg3ZTc4YzJkZGIy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 6ce409d1-67f8-b70e-895d-813bf83281d4\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 7f793474-b827-cd69-b048-687e78c2ddb2\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "441fb5681801b866b2540fd291c2a51e" + "8997edb35220cb1c8120f893f94d5a06" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:24 GMT" + "Mon, 13 Jul 2015 12:48:01 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14870" ], "x-ms-request-id": [ - "4fd63398-555d-4219-9532-69c4262c1f50" + "b6a83687-407c-408d-8d1d-e6a1cf75f309" ], "x-ms-correlation-request-id": [ - "4fd63398-555d-4219-9532-69c4262c1f50" + "b6a83687-407c-408d-8d1d-e6a1cf75f309" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112626Z:4fd63398-555d-4219-9532-69c4262c1f50" + "WESTEUROPE:20150713T124803Z:b6a83687-407c-408d-8d1d-e6a1cf75f309" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:25 GMT" + "Mon, 13 Jul 2015 12:48:02 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-request-id": [ - "40f9f421-b0cd-438a-a494-b0d1d25bcd6b" + "e0e47af8-6d7f-4249-8c5f-05e85e271ace" ], "x-ms-correlation-request-id": [ - "40f9f421-b0cd-438a-a494-b0d1d25bcd6b" + "e0e47af8-6d7f-4249-8c5f-05e85e271ace" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112628Z:40f9f421-b0cd-438a-a494-b0d1d25bcd6b" + "WESTEUROPE:20150713T124804Z:e0e47af8-6d7f-4249-8c5f-05e85e271ace" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:27 GMT" + "Mon, 13 Jul 2015 12:48:04 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:26:29.2098409Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"12c725b2-6a04-417f-b72a-712c7158e64d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:48:05.4862578Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"c47d78cf-c928-42de-9c5f-66ef6be6ef3c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "12c725b2-6a04-417f-b72a-712c7158e64d" + "c47d78cf-c928-42de-9c5f-66ef6be6ef3c" ], "x-ms-correlation-request-id": [ - "12c725b2-6a04-417f-b72a-712c7158e64d" + "c47d78cf-c928-42de-9c5f-66ef6be6ef3c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112629Z:12c725b2-6a04-417f-b72a-712c7158e64d" + "WESTEUROPE:20150713T124805Z:c47d78cf-c928-42de-9c5f-66ef6be6ef3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:28 GMT" + "Mon, 13 Jul 2015 12:48:04 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:26:31.4928489Z\",\r\n \"duration\": \"PT1.4997448S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:48:07.3982641Z\",\r\n \"duration\": \"PT1.1435348S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "18aa2c6e-7c99-417c-86dc-e19f152802d8" + "9fafc6d4-241c-433f-bc66-e325981b9d97" ], "x-ms-correlation-request-id": [ - "18aa2c6e-7c99-417c-86dc-e19f152802d8" + "9fafc6d4-241c-433f-bc66-e325981b9d97" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112632Z:18aa2c6e-7c99-417c-86dc-e19f152802d8" + "WESTEUROPE:20150713T124807Z:9fafc6d4-241c-433f-bc66-e325981b9d97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:31 GMT" + "Mon, 13 Jul 2015 12:48:07 GMT" ] }, "StatusCode": 201 @@ -408,64 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-request-id": [ - "680b41d1-608f-4786-a500-dbb258715801" - ], - "x-ms-correlation-request-id": [ - "680b41d1-608f-4786-a500-dbb258715801" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112632Z:680b41d1-608f-4786-a500-dbb258715801" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:26:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzQwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14869" ], "x-ms-request-id": [ - "adb1261b-9cce-4ca2-8957-52c2620c909d" + "da3029ef-8830-44b0-85e5-1cb2157a6eb8" ], "x-ms-correlation-request-id": [ - "adb1261b-9cce-4ca2-8957-52c2620c909d" + "da3029ef-8830-44b0-85e5-1cb2157a6eb8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112635Z:adb1261b-9cce-4ca2-8957-52c2620c909d" + "WESTEUROPE:20150713T124808Z:da3029ef-8830-44b0-85e5-1cb2157a6eb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:34 GMT" + "Mon, 13 Jul 2015 12:48:07 GMT" ] }, "StatusCode": 200 @@ -504,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14867" ], "x-ms-request-id": [ - "515fd12b-fcb8-49bb-aa02-925e30c14df3" + "1cbe979c-ba8a-4be4-aea7-914690d0c4ed" ], "x-ms-correlation-request-id": [ - "515fd12b-fcb8-49bb-aa02-925e30c14df3" + "1cbe979c-ba8a-4be4-aea7-914690d0c4ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112638Z:515fd12b-fcb8-49bb-aa02-925e30c14df3" + "WESTEUROPE:20150713T124811Z:1cbe979c-ba8a-4be4-aea7-914690d0c4ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:37 GMT" + "Mon, 13 Jul 2015 12:48:10 GMT" ] }, "StatusCode": 200 @@ -552,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14865" ], "x-ms-request-id": [ - "f028fb09-bf21-454c-904b-3ce0ca599eaa" + "3df6c57d-5587-49c3-93fb-6326ccaa7d90" ], "x-ms-correlation-request-id": [ - "f028fb09-bf21-454c-904b-3ce0ca599eaa" + "3df6c57d-5587-49c3-93fb-6326ccaa7d90" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112641Z:f028fb09-bf21-454c-904b-3ce0ca599eaa" + "WESTEUROPE:20150713T124814Z:3df6c57d-5587-49c3-93fb-6326ccaa7d90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:40 GMT" + "Mon, 13 Jul 2015 12:48:13 GMT" ] }, "StatusCode": 200 @@ -600,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14862" ], "x-ms-request-id": [ - "6c13869a-44b8-42fc-a4cf-955597943fc6" + "ae07c4e4-b6ee-45e9-8ea2-d32af21d0973" ], "x-ms-correlation-request-id": [ - "6c13869a-44b8-42fc-a4cf-955597943fc6" + "ae07c4e4-b6ee-45e9-8ea2-d32af21d0973" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112644Z:6c13869a-44b8-42fc-a4cf-955597943fc6" + "WESTEUROPE:20150713T124817Z:ae07c4e4-b6ee-45e9-8ea2-d32af21d0973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:44 GMT" + "Mon, 13 Jul 2015 12:48:16 GMT" ] }, "StatusCode": 200 @@ -633,58 +585,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:48:20.2366881Z\",\r\n \"duration\": \"PT9.8909859S\",\r\n \"trackingId\": \"37ee34dc-1af5-449f-8a92-d89d2d72d219\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-request-id": [ - "b7361214-1c02-4423-9919-425a16a82953" - ], - "x-ms-correlation-request-id": [ - "b7361214-1c02-4423-9919-425a16a82953" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112647Z:b7361214-1c02-4423-9919-425a16a82953" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:26:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzQwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14860" ], "x-ms-request-id": [ - "6cb338ad-2de8-4f3b-9b59-abb779d5a92c" + "467cb391-b9ca-4c61-9da9-632d3398e276" ], "x-ms-correlation-request-id": [ - "6cb338ad-2de8-4f3b-9b59-abb779d5a92c" + "467cb391-b9ca-4c61-9da9-632d3398e276" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112650Z:6cb338ad-2de8-4f3b-9b59-abb779d5a92c" + "WESTEUROPE:20150713T124820Z:467cb391-b9ca-4c61-9da9-632d3398e276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:50 GMT" + "Mon, 13 Jul 2015 12:48:19 GMT" ] }, "StatusCode": 200 @@ -729,7 +633,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:26:51.330497Z\",\r\n \"duration\": \"PT17.1715056S\",\r\n \"trackingId\": \"a12ed802-a1b6-4d64-8e25-3028f96f04ac\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:48:20.2366881Z\",\r\n \"duration\": \"PT9.8909859S\",\r\n \"trackingId\": \"37ee34dc-1af5-449f-8a92-d89d2d72d219\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "667" @@ -744,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14858" ], "x-ms-request-id": [ - "ccdcdd03-bded-4102-8523-ea241cb48a73" + "d5c1fc5a-3387-4379-b327-045c74c4af16" ], "x-ms-correlation-request-id": [ - "ccdcdd03-bded-4102-8523-ea241cb48a73" + "d5c1fc5a-3387-4379-b327-045c74c4af16" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112653Z:ccdcdd03-bded-4102-8523-ea241cb48a73" + "WESTEUROPE:20150713T124823Z:d5c1fc5a-3387-4379-b327-045c74c4af16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:53 GMT" + "Mon, 13 Jul 2015 12:48:22 GMT" ] }, "StatusCode": 200 @@ -777,7 +681,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:26:51.330497Z\",\r\n \"duration\": \"PT17.1715056S\",\r\n \"trackingId\": \"a12ed802-a1b6-4d64-8e25-3028f96f04ac\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:48:20.2366881Z\",\r\n \"duration\": \"PT9.8909859S\",\r\n \"trackingId\": \"37ee34dc-1af5-449f-8a92-d89d2d72d219\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "667" @@ -792,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14856" ], "x-ms-request-id": [ - "5647033a-619c-413d-87e0-09c317c59758" + "8af5363e-f608-4731-b606-7836f7f13c3f" ], "x-ms-correlation-request-id": [ - "5647033a-619c-413d-87e0-09c317c59758" + "8af5363e-f608-4731-b606-7836f7f13c3f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112656Z:5647033a-619c-413d-87e0-09c317c59758" + "WESTEUROPE:20150713T124826Z:8af5363e-f608-4731-b606-7836f7f13c3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:56 GMT" + "Mon, 13 Jul 2015 12:48:26 GMT" ] }, "StatusCode": 200 @@ -825,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/1D43CCE355A6BA3E\",\r\n \"operationId\": \"1D43CCE355A6BA3E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:26:59.2533039Z\",\r\n \"duration\": \"PT7.3851004S\",\r\n \"trackingId\": \"d3b5821c-e894-40a6-b66f-256c2c759b77\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:26:51.330497Z\",\r\n \"duration\": \"PT17.1715056S\",\r\n \"trackingId\": \"a12ed802-a1b6-4d64-8e25-3028f96f04ac\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/1D43CCE355A6BA3E\",\r\n \"operationId\": \"1D43CCE355A6BA3E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:48:29.1601903Z\",\r\n \"duration\": \"PT8.8357654S\",\r\n \"trackingId\": \"1a2e247d-01df-4d33-b2e9-f6ca09bc527a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:48:20.2366881Z\",\r\n \"duration\": \"PT9.8909859S\",\r\n \"trackingId\": \"37ee34dc-1af5-449f-8a92-d89d2d72d219\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -840,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14854" ], "x-ms-request-id": [ - "177e741d-3eaa-4e22-a3ee-eaa67acc69ac" + "2ea9d273-f295-4282-9f6e-160f28bb80a8" ], "x-ms-correlation-request-id": [ - "177e741d-3eaa-4e22-a3ee-eaa67acc69ac" + "2ea9d273-f295-4282-9f6e-160f28bb80a8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112659Z:177e741d-3eaa-4e22-a3ee-eaa67acc69ac" + "WESTEUROPE:20150713T124829Z:2ea9d273-f295-4282-9f6e-160f28bb80a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:59 GMT" + "Mon, 13 Jul 2015 12:48:29 GMT" ] }, "StatusCode": 200 @@ -873,7 +777,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/1D43CCE355A6BA3E\",\r\n \"operationId\": \"1D43CCE355A6BA3E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:26:59.2533039Z\",\r\n \"duration\": \"PT7.3851004S\",\r\n \"trackingId\": \"d3b5821c-e894-40a6-b66f-256c2c759b77\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:26:51.330497Z\",\r\n \"duration\": \"PT17.1715056S\",\r\n \"trackingId\": \"a12ed802-a1b6-4d64-8e25-3028f96f04ac\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/1D43CCE355A6BA3E\",\r\n \"operationId\": \"1D43CCE355A6BA3E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:48:29.1601903Z\",\r\n \"duration\": \"PT8.8357654S\",\r\n \"trackingId\": \"1a2e247d-01df-4d33-b2e9-f6ca09bc527a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup/operations/0BFAA98F209E2AC0\",\r\n \"operationId\": \"0BFAA98F209E2AC0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:48:20.2366881Z\",\r\n \"duration\": \"PT9.8909859S\",\r\n \"trackingId\": \"37ee34dc-1af5-449f-8a92-d89d2d72d219\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -888,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14852" ], "x-ms-request-id": [ - "36b93c59-acb6-4f59-8eef-54ac586f9d44" + "d721ee05-0374-4035-96b4-65c578e92083" ], "x-ms-correlation-request-id": [ - "36b93c59-acb6-4f59-8eef-54ac586f9d44" + "d721ee05-0374-4035-96b4-65c578e92083" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112702Z:36b93c59-acb6-4f59-8eef-54ac586f9d44" + "WESTEUROPE:20150713T124832Z:d721ee05-0374-4035-96b4-65c578e92083" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:02 GMT" + "Mon, 13 Jul 2015 12:48:32 GMT" ] }, "StatusCode": 200 @@ -921,7 +825,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:26:31.4928489Z\",\r\n \"duration\": \"PT1.4997448S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:48:07.3982641Z\",\r\n \"duration\": \"PT1.1435348S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -936,112 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-request-id": [ - "cd0f75fb-4f66-4ce9-9ead-b90d555e1e18" - ], - "x-ms-correlation-request-id": [ - "cd0f75fb-4f66-4ce9-9ead-b90d555e1e18" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112633Z:cd0f75fb-4f66-4ce9-9ead-b90d555e1e18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:26:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzQwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-request-id": [ - "8df1d7c9-4f41-4219-a435-7ce779d84fb4" - ], - "x-ms-correlation-request-id": [ - "8df1d7c9-4f41-4219-a435-7ce779d84fb4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112636Z:8df1d7c9-4f41-4219-a435-7ce779d84fb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:26:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzQwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14868" ], "x-ms-request-id": [ - "040e7068-3c08-49e2-a28b-7f202fb540b8" + "570ea653-c591-4b7f-b845-62ac9e55780b" ], "x-ms-correlation-request-id": [ - "040e7068-3c08-49e2-a28b-7f202fb540b8" + "570ea653-c591-4b7f-b845-62ac9e55780b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112639Z:040e7068-3c08-49e2-a28b-7f202fb540b8" + "WESTEUROPE:20150713T124808Z:570ea653-c591-4b7f-b845-62ac9e55780b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:38 GMT" + "Mon, 13 Jul 2015 12:48:08 GMT" ] }, "StatusCode": 200 @@ -1065,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:48:09.8814015Z\",\r\n \"duration\": \"PT3.6266722S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14866" ], "x-ms-request-id": [ - "d73b08ca-e0b4-4bbe-8c50-abc7d7835815" + "81a8b7dd-2090-4b84-9b68-b9bdbd7df58e" ], "x-ms-correlation-request-id": [ - "d73b08ca-e0b4-4bbe-8c50-abc7d7835815" + "81a8b7dd-2090-4b84-9b68-b9bdbd7df58e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112642Z:d73b08ca-e0b4-4bbe-8c50-abc7d7835815" + "WESTEUROPE:20150713T124811Z:81a8b7dd-2090-4b84-9b68-b9bdbd7df58e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:41 GMT" + "Mon, 13 Jul 2015 12:48:11 GMT" ] }, "StatusCode": 200 @@ -1113,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:48:09.8814015Z\",\r\n \"duration\": \"PT3.6266722S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14864" ], "x-ms-request-id": [ - "693d5596-cbd3-49a2-ba14-f90ed083d0e4" + "54a27f89-3e72-477e-9fec-698ee62add05" ], "x-ms-correlation-request-id": [ - "693d5596-cbd3-49a2-ba14-f90ed083d0e4" + "54a27f89-3e72-477e-9fec-698ee62add05" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112645Z:693d5596-cbd3-49a2-ba14-f90ed083d0e4" + "WESTEUROPE:20150713T124814Z:54a27f89-3e72-477e-9fec-698ee62add05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:45 GMT" + "Mon, 13 Jul 2015 12:48:14 GMT" ] }, "StatusCode": 200 @@ -1161,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:48:09.8814015Z\",\r\n \"duration\": \"PT3.6266722S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14861" ], "x-ms-request-id": [ - "34c3c611-99fb-42ad-893f-7e6e12f2591f" + "57652db0-f1db-45e0-976b-ce73bb089f69" ], "x-ms-correlation-request-id": [ - "34c3c611-99fb-42ad-893f-7e6e12f2591f" + "57652db0-f1db-45e0-976b-ce73bb089f69" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112648Z:34c3c611-99fb-42ad-893f-7e6e12f2591f" + "WESTEUROPE:20150713T124817Z:57652db0-f1db-45e0-976b-ce73bb089f69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:48 GMT" + "Mon, 13 Jul 2015 12:48:17 GMT" ] }, "StatusCode": 200 @@ -1209,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:48:09.8814015Z\",\r\n \"duration\": \"PT3.6266722S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1224,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14859" ], "x-ms-request-id": [ - "f84bc5b4-b967-4816-b56b-083191e369b4" + "53d5ddd3-8230-4c90-ac20-659ef30904e3" ], "x-ms-correlation-request-id": [ - "f84bc5b4-b967-4816-b56b-083191e369b4" + "53d5ddd3-8230-4c90-ac20-659ef30904e3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112651Z:f84bc5b4-b967-4816-b56b-083191e369b4" + "WESTEUROPE:20150713T124820Z:53d5ddd3-8230-4c90-ac20-659ef30904e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:51 GMT" + "Mon, 13 Jul 2015 12:48:20 GMT" ] }, "StatusCode": 200 @@ -1257,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:48:09.8814015Z\",\r\n \"duration\": \"PT3.6266722S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1272,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14857" ], "x-ms-request-id": [ - "c8964ae8-036f-44f0-a7ce-b9b41c28d629" + "9c0fb50d-77b2-4e2c-81f6-60f76c695a8a" ], "x-ms-correlation-request-id": [ - "c8964ae8-036f-44f0-a7ce-b9b41c28d629" + "9c0fb50d-77b2-4e2c-81f6-60f76c695a8a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112654Z:c8964ae8-036f-44f0-a7ce-b9b41c28d629" + "WESTEUROPE:20150713T124823Z:9c0fb50d-77b2-4e2c-81f6-60f76c695a8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:53 GMT" + "Mon, 13 Jul 2015 12:48:22 GMT" ] }, "StatusCode": 200 @@ -1305,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:48:09.8814015Z\",\r\n \"duration\": \"PT3.6266722S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1320,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14855" ], "x-ms-request-id": [ - "103269d1-0ba4-44ba-82c1-a6fd3b1b38a0" + "2a0e1f66-88f4-4df8-893d-57c14b89995b" ], "x-ms-correlation-request-id": [ - "103269d1-0ba4-44ba-82c1-a6fd3b1b38a0" + "2a0e1f66-88f4-4df8-893d-57c14b89995b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112657Z:103269d1-0ba4-44ba-82c1-a6fd3b1b38a0" + "WESTEUROPE:20150713T124826Z:2a0e1f66-88f4-4df8-893d-57c14b89995b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:56 GMT" + "Mon, 13 Jul 2015 12:48:26 GMT" ] }, "StatusCode": 200 @@ -1353,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:26:33.6859239Z\",\r\n \"duration\": \"PT3.6928198S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:48:09.8814015Z\",\r\n \"duration\": \"PT3.6266722S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1368,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14853" ], "x-ms-request-id": [ - "47bb6684-d0bb-4e10-8290-fd3dfe32caa5" + "45774ec0-df8d-402e-8a93-f2f09117d70b" ], "x-ms-correlation-request-id": [ - "47bb6684-d0bb-4e10-8290-fd3dfe32caa5" + "45774ec0-df8d-402e-8a93-f2f09117d70b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112700Z:47bb6684-d0bb-4e10-8290-fd3dfe32caa5" + "WESTEUROPE:20150713T124830Z:45774ec0-df8d-402e-8a93-f2f09117d70b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:26:59 GMT" + "Mon, 13 Jul 2015 12:48:29 GMT" ] }, "StatusCode": 200 @@ -1401,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:27:02.6040031Z\",\r\n \"duration\": \"PT32.610899S\",\r\n \"correlationId\": \"18aa2c6e-7c99-417c-86dc-e19f152802d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db401\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server401\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:48:32.1843667Z\",\r\n \"duration\": \"PT25.9296374S\",\r\n \"correlationId\": \"9fafc6d4-241c-433f-bc66-e325981b9d97\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server401/sql-audit-cmdlet-db401\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server401\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server401/databases/sql-audit-cmdlet-db401\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1652" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1416,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14851" ], "x-ms-request-id": [ - "7d8b3fac-8824-4337-9703-6a1579ed407a" + "b277df83-16fa-4e78-bd5f-ab0e48c91d02" ], "x-ms-correlation-request-id": [ - "7d8b3fac-8824-4337-9703-6a1579ed407a" + "b277df83-16fa-4e78-bd5f-ab0e48c91d02" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112703Z:7d8b3fac-8824-4337-9703-6a1579ed407a" + "WESTEUROPE:20150713T124833Z:b277df83-16fa-4e78-bd5f-ab0e48c91d02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:02 GMT" + "Mon, 13 Jul 2015 12:48:33 GMT" ] }, "StatusCode": 200 @@ -1464,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14850" ], "x-ms-request-id": [ - "e8f8c32f-a6c5-46e9-9a1a-7826a195bf64" + "0cd24c19-9fa3-4432-a6b1-57a04e67861f" ], "x-ms-correlation-request-id": [ - "e8f8c32f-a6c5-46e9-9a1a-7826a195bf64" + "0cd24c19-9fa3-4432-a6b1-57a04e67861f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112705Z:e8f8c32f-a6c5-46e9-9a1a-7826a195bf64" + "WESTEUROPE:20150713T124835Z:0cd24c19-9fa3-4432-a6b1-57a04e67861f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:05 GMT" + "Mon, 13 Jul 2015 12:48:35 GMT" ] }, "StatusCode": 200 @@ -1515,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:501d9669-e6f5-4cd9-8932-0a10c0800f8d" + "westeurope:99a10043-7454-4c7d-aa0d-5e127e8a9923" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14815" ], "x-ms-correlation-request-id": [ - "9757745e-3107-4ade-b04c-412e412cb195" + "aeb9b456-857d-4e19-b977-983807dc5002" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112706Z:9757745e-3107-4ade-b04c-412e412cb195" + "WESTEUROPE:20150713T124836Z:aeb9b456-857d-4e19-b977-983807dc5002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1533,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:05 GMT" + "Mon, 13 Jul 2015 12:48:36 GMT" ] }, "StatusCode": 200 @@ -1548,7 +1356,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e7400963-c272-43b4-8958-e4eb7bee710e" + "676ef2b7-9125-4ead-85d8-f4e5ff0c738d" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1560,7 +1368,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "37578715-3f35-4869-8bfd-7eb636bad774" + "67980389-bdec-4925-bf5b-b07a0cd86fc9" ], "X-Content-Type-Options": [ "nosniff" @@ -1569,13 +1377,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14882" ], "x-ms-correlation-request-id": [ - "6282a96d-579d-44df-801a-54dc1e582ea4" + "cb973ba9-732f-44f0-8ef5-cab082c25ea8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112708Z:6282a96d-579d-44df-801a-54dc1e582ea4" + "WESTEUROPE:20150713T124839Z:cb973ba9-732f-44f0-8ef5-cab082c25ea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,7 +1392,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:08 GMT" + "Mon, 13 Jul 2015 12:48:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1602,7 +1410,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "2c100406-1f3e-4180-9f4f-2f7515fe3f2a" + "cf733629-abb3-40aa-b36a-3c41787ffeed" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1614,7 +1422,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c069c7a8-44a9-47a7-8bbe-f656fb3ddc6d" + "cdab7452-802a-43ae-abe5-5911de462b3d" ], "X-Content-Type-Options": [ "nosniff" @@ -1623,13 +1431,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14881" ], "x-ms-correlation-request-id": [ - "d229538c-6c34-4a5c-9fc0-182d795eaa1a" + "16c21bd0-1122-48af-9db9-99eaea80433c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112714Z:d229538c-6c34-4a5c-9fc0-182d795eaa1a" + "WESTEUROPE:20150713T124844Z:16c21bd0-1122-48af-9db9-99eaea80433c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,7 +1446,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:13 GMT" + "Mon, 13 Jul 2015 12:48:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1656,7 +1464,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8f1f248d-405e-4545-bae1-db1453c3ced9" + "5ff51008-3693-4297-8666-1e88a51ae79f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1668,7 +1476,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1fcb3fa3-83c6-4deb-a2d7-f1692742fc75" + "165dfe47-26e8-4638-aa53-644982c0c362" ], "X-Content-Type-Options": [ "nosniff" @@ -1677,13 +1485,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14880" ], "x-ms-correlation-request-id": [ - "56d8ce3a-9f56-49be-bfa0-ab7af81393b5" + "045763fa-b748-43c0-9c08-2961b293f135" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112715Z:56d8ce3a-9f56-49be-bfa0-ab7af81393b5" + "WESTEUROPE:20150713T124845Z:045763fa-b748-43c0-9c08-2961b293f135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1692,7 +1500,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:15 GMT" + "Mon, 13 Jul 2015 12:48:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1710,7 +1518,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "1f4aac30-5cd6-4dc8-8357-81b5a8702f8b" + "df539839-6f14-40c0-8792-ba6e4ecbc95c" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1722,7 +1530,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2382f782-e6d0-4a70-81ba-f9744b4628b9" + "1cc25565-c4fb-4440-a0f2-38ec744cceef" ], "X-Content-Type-Options": [ "nosniff" @@ -1731,13 +1539,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14879" ], "x-ms-correlation-request-id": [ - "7edf4289-4f2a-4afe-b8c9-e1f447bf2499" + "21431e2f-9d69-4396-896e-61b88066deea" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112719Z:7edf4289-4f2a-4afe-b8c9-e1f447bf2499" + "WESTEUROPE:20150713T124851Z:21431e2f-9d69-4396-896e-61b88066deea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1746,7 +1554,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:18 GMT" + "Mon, 13 Jul 2015 12:48:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1764,10 +1572,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets401\",\r\n \"name\": \"auditcmdlets401\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets401\",\r\n \"name\": \"auditcmdlets401\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1779,16 +1587,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14849" ], "x-ms-request-id": [ - "55a3ba4e-a610-41ce-ab4d-fe643efae0ae" + "c25f20a0-ff4e-4e91-b45d-c09b15fd9372" ], "x-ms-correlation-request-id": [ - "55a3ba4e-a610-41ce-ab4d-fe643efae0ae" + "c25f20a0-ff4e-4e91-b45d-c09b15fd9372" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112708Z:55a3ba4e-a610-41ce-ab4d-fe643efae0ae" + "WESTEUROPE:20150713T124839Z:c25f20a0-ff4e-4e91-b45d-c09b15fd9372" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1797,7 +1605,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:08 GMT" + "Mon, 13 Jul 2015 12:48:39 GMT" ] }, "StatusCode": 200 @@ -1815,7 +1623,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets401\r\n auditcmdlets401\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets401.blob.core.windows.net/\r\n https://auditcmdlets401.queue.core.windows.net/\r\n https://auditcmdlets401.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T11:25:22Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets401\r\n auditcmdlets401\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets401.blob.core.windows.net/\r\n https://auditcmdlets401.queue.core.windows.net/\r\n https://auditcmdlets401.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:47:00Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1827,13 +1635,13 @@ "ussouth3" ], "x-ms-request-id": [ - "d737d1db3f47bc5385a05e8e49443019" + "3ebdb73dea20ca5d83911d4ba8e7c7a2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:09 GMT" + "Mon, 13 Jul 2015 12:48:39 GMT" ], "Server": [ "1.0.6198.243", @@ -1856,7 +1664,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"cKj5JOiBX27Qsk9DZC/nLZFEcmqVxZDWA9Vv3KDjqqgKKJ3c6/IIYhCORxYyallZmqfnCJHo8YWF04f6bVvjaw==\",\r\n \"secondaryKey\": \"K50F9+FS/yUaSu3jdkZdRysPmhKMiMn8AUqrpSoa2tgATOk1XVbqCYrUOgAtb9rKXm9mzj6CsKi9EddTy2PUBQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ncswhNWtN0intPhXOOG3IxbUtIjx+K78EvtmJ7X5w+kHSnjY5brn8pZo84fEHq3PiuWfpRpshgD+6Ukd1gti9A==\",\r\n \"secondaryKey\": \"MN5RG41QLGZCzKpQg66e5cqN7g+V3Jo5Go9/V1GzDK5N1mt2vP+yfOvJvGznnsb3guZx8jo0E5hHpR+yd3o3Nw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1874,16 +1682,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:e6e60e0b-50dd-4993-a179-1e045b777cc9" + "southcentralus:a29d8f0f-ff0d-431a-846c-2df9f0e8ebb4" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], "x-ms-correlation-request-id": [ - "bf0c1dc3-1c22-4985-8181-f2bbd8be55fb" + "96175a19-343d-4d0e-97be-6ec9ec546d4c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112710Z:bf0c1dc3-1c22-4985-8181-f2bbd8be55fb" + "WESTEUROPE:20150713T124841Z:96175a19-343d-4d0e-97be-6ec9ec546d4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1892,7 +1700,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:10 GMT" + "Mon, 13 Jul 2015 12:48:40 GMT" ] }, "StatusCode": 200 @@ -1910,7 +1718,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"cKj5JOiBX27Qsk9DZC/nLZFEcmqVxZDWA9Vv3KDjqqgKKJ3c6/IIYhCORxYyallZmqfnCJHo8YWF04f6bVvjaw==\",\r\n \"secondaryKey\": \"K50F9+FS/yUaSu3jdkZdRysPmhKMiMn8AUqrpSoa2tgATOk1XVbqCYrUOgAtb9rKXm9mzj6CsKi9EddTy2PUBQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ncswhNWtN0intPhXOOG3IxbUtIjx+K78EvtmJ7X5w+kHSnjY5brn8pZo84fEHq3PiuWfpRpshgD+6Ukd1gti9A==\",\r\n \"secondaryKey\": \"MN5RG41QLGZCzKpQg66e5cqN7g+V3Jo5Go9/V1GzDK5N1mt2vP+yfOvJvGznnsb3guZx8jo0E5hHpR+yd3o3Nw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1928,16 +1736,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:58cd4c74-39e5-45c5-8c77-93a53836b493" + "southcentralus:4357fcdc-31b7-44a8-8f2c-99336cec0a6d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], "x-ms-correlation-request-id": [ - "fc1576bd-b4ce-4577-bb07-b8d4643c2a26" + "b81fbcd8-d5e7-49ee-a0ad-2b07bda13459" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112716Z:fc1576bd-b4ce-4577-bb07-b8d4643c2a26" + "WESTEUROPE:20150713T124846Z:b81fbcd8-d5e7-49ee-a0ad-2b07bda13459" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1946,7 +1754,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:16 GMT" + "Mon, 13 Jul 2015 12:48:45 GMT" ] }, "StatusCode": 200 @@ -1955,7 +1763,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzQwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"storageAccountKey\": \"cKj5JOiBX27Qsk9DZC/nLZFEcmqVxZDWA9Vv3KDjqqgKKJ3c6/IIYhCORxYyallZmqfnCJHo8YWF04f6bVvjaw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"storageAccountKey\": \"ncswhNWtN0intPhXOOG3IxbUtIjx+K78EvtmJ7X5w+kHSnjY5brn8pZo84fEHq3PiuWfpRpshgD+6Ukd1gti9A==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1967,10 +1775,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e7400963-c272-43b4-8958-e4eb7bee710e" + "676ef2b7-9125-4ead-85d8-f4e5ff0c738d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\",\r\n \"storageAccountKey\": \"cKj5JOiBX27Qsk9DZC/nLZFEcmqVxZDWA9Vv3KDjqqgKKJ3c6/IIYhCORxYyallZmqfnCJHo8YWF04f6bVvjaw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\",\r\n \"storageAccountKey\": \"ncswhNWtN0intPhXOOG3IxbUtIjx+K78EvtmJ7X5w+kHSnjY5brn8pZo84fEHq3PiuWfpRpshgD+6Ukd1gti9A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -1979,7 +1787,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c1442c97-0858-4bed-9a11-6c6345081c5e" + "0229b1d5-256d-4e15-9bae-cfb741541785" ], "X-Content-Type-Options": [ "nosniff" @@ -1994,10 +1802,10 @@ "1187" ], "x-ms-correlation-request-id": [ - "9eeff642-d51a-4f34-b8d7-06ab3f341185" + "01ae6355-a511-4e7e-876b-2cf08479a7d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112712Z:9eeff642-d51a-4f34-b8d7-06ab3f341185" + "WESTEUROPE:20150713T124843Z:01ae6355-a511-4e7e-876b-2cf08479a7d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2006,7 +1814,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:12 GMT" + "Mon, 13 Jul 2015 12:48:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2018,7 +1826,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzQwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"storageAccountKey\": \"cKj5JOiBX27Qsk9DZC/nLZFEcmqVxZDWA9Vv3KDjqqgKKJ3c6/IIYhCORxYyallZmqfnCJHo8YWF04f6bVvjaw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"storageAccountKey\": \"ncswhNWtN0intPhXOOG3IxbUtIjx+K78EvtmJ7X5w+kHSnjY5brn8pZo84fEHq3PiuWfpRpshgD+6Ukd1gti9A==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2030,10 +1838,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8f1f248d-405e-4545-bae1-db1453c3ced9" + "5ff51008-3693-4297-8666-1e88a51ae79f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\",\r\n \"storageAccountKey\": \"cKj5JOiBX27Qsk9DZC/nLZFEcmqVxZDWA9Vv3KDjqqgKKJ3c6/IIYhCORxYyallZmqfnCJHo8YWF04f6bVvjaw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg401/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server401/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets401\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver401\",\r\n \"storageAccountKey\": \"ncswhNWtN0intPhXOOG3IxbUtIjx+K78EvtmJ7X5w+kHSnjY5brn8pZo84fEHq3PiuWfpRpshgD+6Ukd1gti9A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets401.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -2042,7 +1850,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c87920c3-37b6-4957-8a0d-c01072a33c59" + "86de6499-338e-48cd-868a-e5ff604a134a" ], "X-Content-Type-Options": [ "nosniff" @@ -2057,10 +1865,10 @@ "1185" ], "x-ms-correlation-request-id": [ - "2cbc3e73-ab3a-4e8d-90d9-6e3616c32dfe" + "09cc820a-aea0-410f-802e-2f7e073c0072" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112717Z:2cbc3e73-ab3a-4e8d-90d9-6e3616c32dfe" + "WESTEUROPE:20150713T124849Z:09cc820a-aea0-410f-802e-2f7e073c0072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,7 +1877,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:17 GMT" + "Mon, 13 Jul 2015 12:48:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2099,13 +1907,13 @@ "ussouth3" ], "x-ms-request-id": [ - "72949107f87bbc9d85d8fc8c77b952cd" + "25cd273faaaec81792452773f1fe294f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:24 GMT" + "Mon, 13 Jul 2015 12:48:53 GMT" ], "Server": [ "1.0.6198.243", @@ -2116,8 +1924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/72949107f87bbc9d85d8fc8c77b952cd", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzcyOTQ5MTA3Zjg3YmJjOWQ4NWQ4ZmM4Yzc3Yjk1MmNk", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/25cd273faaaec81792452773f1fe294f", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzI1Y2QyNzNmYWFhZWM4MTc5MjQ1Mjc3M2YxZmUyOTRm", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2128,7 +1936,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 72949107-f87b-bc9d-85d8-fc8c77b952cd\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 25cd273f-aaae-c817-9245-2773f1fe294f\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2140,13 +1948,13 @@ "ussouth3" ], "x-ms-request-id": [ - "2e4662e4227db9ddb474aeb6a875a865" + "175d3b3addcecbb5806968dd2bc07738" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:27:25 GMT" + "Mon, 13 Jul 2015 12:48:55 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithEventTypeShortcuts.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithEventTypeShortcuts.json index c53d5cba7f30..3249a974378d 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithEventTypeShortcuts.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithEventTypeShortcuts.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "87f1d8160cbbb6a783007f01c092d072" + "1ad45bf24436c897afa21b12bf3b309d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:23:50 GMT" + "Mon, 13 Jul 2015 12:55:38 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets801" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/1ad45bf24436c897afa21b12bf3b309d", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzFhZDQ1YmYyNDQzNmM4OTdhZmEyMWIxMmJmM2IzMDlk", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", + "ResponseBody": "\r\n 1ad45bf2-4436-c897-afa2-1b12bf3b309d\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "dfa75279c13ebae0a421a708c3a7b1b8" + "4cacb7093145c0129bbcdab3acc231a2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:23:50 GMT" + "Mon, 13 Jul 2015 12:55:38 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/1ad45bf24436c897afa21b12bf3b309d", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzFhZDQ1YmYyNDQzNmM4OTdhZmEyMWIxMmJmM2IzMDlk", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", + "ResponseBody": "\r\n 1ad45bf2-4436-c897-afa2-1b12bf3b309d\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "a957fd4260a3b5b28c30751473d45fdb" + "0fe16e464d86ca5a989d0ffefb2d50dd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:24:21 GMT" + "Mon, 13 Jul 2015 12:56:09 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/1ad45bf24436c897afa21b12bf3b309d", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzFhZDQ1YmYyNDQzNmM4OTdhZmEyMWIxMmJmM2IzMDlk", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,786 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "bf04347e1da2b6928d57cb2966b3942e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:24:51 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "d554c91b7799b6568087faa228083ded" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:25:22 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "31406b780087bdfdbf8ec9fa6589e080" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:25:52 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "aaa8e5078e69b3fe8662b44c65ee44c2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:26:23 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "f2f8207f280ab4998f6fce38c2c1b74b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:26:53 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "30fbcf21ab48bee4b6b199be30a309ec" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:27:23 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "9aa276c73c76b7e1be8d09e421a7ceea" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:27:53 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "bc0995256e8fb160aebd13e47dfdd009" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:28:24 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "baed15ce9b1fb2c7974da700bda4e088" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:28:55 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "b1d165a5102cb511b87bb39605078edf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:29:25 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "c255e35fc484b8758960cb5983b09da3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:29:56 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "e3a7792365e7b4ccac3b035447604796" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:30:25 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "31801592d434bbf0bc2db011b8172cb4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:30:56 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "09c81a9a6b3eb9789c42f77c2fc4af6d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:31:26 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "040ab4aae548bc8da86cc3f65889c293" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:31:57 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "3dcd35412ca5b05b9dc1e83f199f7ea9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:32:27 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "f1e3435a3658b65bb6e3d93ae2232f4e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:32:57 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "8f701ccb104db4059517e0fa17a6915d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:33:28 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n InProgress\r\n", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "3a76d15bac9eb77ba16fc61e7cc75034" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:33:58 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/87f1d8160cbbb6a783007f01c092d072", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzg3ZjFkODE2MGNiYmI2YTc4MzAwN2YwMWMwOTJkMDcy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n 87f1d816-0cbb-b6a7-8300-7f01c092d072\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 1ad45bf2-4436-c897-afa2-1b12bf3b309d\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -933,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "34cfb26bfd22b144ad33c04fb73621a0" + "9fb78519d61fc7f8a3631a8eca56c80a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:28 GMT" + "Mon, 13 Jul 2015 12:56:39 GMT" ], "Server": [ "1.0.6198.243", @@ -977,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14775" + "14877" ], "x-ms-request-id": [ - "78ce3616-62fa-43e3-aed9-b1b8e4d9912a" + "de46ddcd-4e5e-45de-b2ea-242625a631b6" ], "x-ms-correlation-request-id": [ - "78ce3616-62fa-43e3-aed9-b1b8e4d9912a" + "de46ddcd-4e5e-45de-b2ea-242625a631b6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103430Z:78ce3616-62fa-43e3-aed9-b1b8e4d9912a" + "WESTEUROPE:20150713T125640Z:de46ddcd-4e5e-45de-b2ea-242625a631b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:29 GMT" + "Mon, 13 Jul 2015 12:56:40 GMT" ] }, "StatusCode": 404 @@ -1031,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1178" ], "x-ms-request-id": [ - "51f2160d-2000-4fae-a5ce-05526b206c35" + "af68b804-334c-4e7d-9087-b3b81ff8fc62" ], "x-ms-correlation-request-id": [ - "51f2160d-2000-4fae-a5ce-05526b206c35" + "af68b804-334c-4e7d-9087-b3b81ff8fc62" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103432Z:51f2160d-2000-4fae-a5ce-05526b206c35" + "WESTEUROPE:20150713T125642Z:af68b804-334c-4e7d-9087-b3b81ff8fc62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1049,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:31 GMT" + "Mon, 13 Jul 2015 12:56:41 GMT" ] }, "StatusCode": 201 @@ -1070,10 +291,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:34:33.226468Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"8620b2b1-b4f5-4d82-ac4f-af1ec214618f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:56:43.1335673Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"13122305-e7ad-44f7-9387-d9dbe7d5be99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1642" + "1643" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1085,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1177" ], "x-ms-request-id": [ - "8620b2b1-b4f5-4d82-ac4f-af1ec214618f" + "13122305-e7ad-44f7-9387-d9dbe7d5be99" ], "x-ms-correlation-request-id": [ - "8620b2b1-b4f5-4d82-ac4f-af1ec214618f" + "13122305-e7ad-44f7-9387-d9dbe7d5be99" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103433Z:8620b2b1-b4f5-4d82-ac4f-af1ec214618f" + "WESTEUROPE:20150713T125643Z:13122305-e7ad-44f7-9387-d9dbe7d5be99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:32 GMT" + "Mon, 13 Jul 2015 12:56:42 GMT" ] }, "StatusCode": 200 @@ -1124,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:34:35.6058899Z\",\r\n \"duration\": \"PT1.0959054S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:56:45.1676199Z\",\r\n \"duration\": \"PT1.1990539S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -1139,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1176" ], "x-ms-request-id": [ - "c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e" + "ed822674-27da-4aab-9719-e6ff7a7bddd4" ], "x-ms-correlation-request-id": [ - "c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e" + "ed822674-27da-4aab-9719-e6ff7a7bddd4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103436Z:c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e" + "WESTEUROPE:20150713T125645Z:ed822674-27da-4aab-9719-e6ff7a7bddd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1157,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:35 GMT" + "Mon, 13 Jul 2015 12:56:45 GMT" ] }, "StatusCode": 201 @@ -1187,64 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14774" - ], - "x-ms-request-id": [ - "92fa2804-1cd1-4db8-b6f3-25506cb167c5" - ], - "x-ms-correlation-request-id": [ - "92fa2804-1cd1-4db8-b6f3-25506cb167c5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103436Z:92fa2804-1cd1-4db8-b6f3-25506cb167c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:34:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14772" + "14876" ], "x-ms-request-id": [ - "bfb6f7d6-61a3-4a66-86bf-45c53e055fb7" + "31690048-a252-416f-aecf-51682d7861b2" ], "x-ms-correlation-request-id": [ - "bfb6f7d6-61a3-4a66-86bf-45c53e055fb7" + "31690048-a252-416f-aecf-51682d7861b2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103439Z:bfb6f7d6-61a3-4a66-86bf-45c53e055fb7" + "WESTEUROPE:20150713T125646Z:31690048-a252-416f-aecf-51682d7861b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1253,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:39 GMT" + "Mon, 13 Jul 2015 12:56:45 GMT" ] }, "StatusCode": 200 @@ -1283,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14770" + "14874" ], "x-ms-request-id": [ - "727cf786-ca33-464d-8305-82a0fa482238" + "f78f16c2-1f3a-42a7-b6d5-317cc785e795" ], "x-ms-correlation-request-id": [ - "727cf786-ca33-464d-8305-82a0fa482238" + "f78f16c2-1f3a-42a7-b6d5-317cc785e795" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103443Z:727cf786-ca33-464d-8305-82a0fa482238" + "WESTEUROPE:20150713T125649Z:f78f16c2-1f3a-42a7-b6d5-317cc785e795" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1301,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:42 GMT" + "Mon, 13 Jul 2015 12:56:48 GMT" ] }, "StatusCode": 200 @@ -1331,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14872" ], "x-ms-request-id": [ - "35102e41-af40-41e2-b1b4-709f8f608a76" + "78238981-55e5-4f39-9d23-c82510e0d265" ], "x-ms-correlation-request-id": [ - "35102e41-af40-41e2-b1b4-709f8f608a76" + "78238981-55e5-4f39-9d23-c82510e0d265" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103446Z:35102e41-af40-41e2-b1b4-709f8f608a76" + "WESTEUROPE:20150713T125652Z:78238981-55e5-4f39-9d23-c82510e0d265" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1349,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:45 GMT" + "Mon, 13 Jul 2015 12:56:51 GMT" ] }, "StatusCode": 200 @@ -1379,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14870" ], "x-ms-request-id": [ - "045fab59-0608-4e8a-96d2-76649f612054" + "396265ed-65cc-4d3b-96f8-1db9d6cce263" ], "x-ms-correlation-request-id": [ - "045fab59-0608-4e8a-96d2-76649f612054" + "396265ed-65cc-4d3b-96f8-1db9d6cce263" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103449Z:045fab59-0608-4e8a-96d2-76649f612054" + "WESTEUROPE:20150713T125655Z:396265ed-65cc-4d3b-96f8-1db9d6cce263" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1397,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:48 GMT" + "Mon, 13 Jul 2015 12:56:54 GMT" ] }, "StatusCode": 200 @@ -1427,64 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" - ], - "x-ms-request-id": [ - "a13652fb-1623-4565-aeed-bd9eadb25592" - ], - "x-ms-correlation-request-id": [ - "a13652fb-1623-4565-aeed-bd9eadb25592" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103452Z:a13652fb-1623-4565-aeed-bd9eadb25592" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:34:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:34:51.9976641Z\",\r\n \"duration\": \"PT12.2158066S\",\r\n \"trackingId\": \"e4118e3f-795a-48a9-b968-4ac15439b58a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14762" + "14868" ], "x-ms-request-id": [ - "0dc43364-5eff-4348-880f-523c7c21e409" + "f5f4bdf9-97a8-4161-b717-1c550a2e3719" ], "x-ms-correlation-request-id": [ - "0dc43364-5eff-4348-880f-523c7c21e409" + "f5f4bdf9-97a8-4161-b717-1c550a2e3719" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103454Z:0dc43364-5eff-4348-880f-523c7c21e409" + "WESTEUROPE:20150713T125658Z:f5f4bdf9-97a8-4161-b717-1c550a2e3719" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1493,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:54 GMT" + "Mon, 13 Jul 2015 12:56:57 GMT" ] }, "StatusCode": 200 @@ -1508,7 +633,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:34:51.9976641Z\",\r\n \"duration\": \"PT12.2158066S\",\r\n \"trackingId\": \"e4118e3f-795a-48a9-b968-4ac15439b58a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:56:59.4499546Z\",\r\n \"duration\": \"PT12.6100292S\",\r\n \"trackingId\": \"00a98ae2-643b-439f-b0fe-fa9b60d8e2e4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -1523,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14758" + "14865" ], "x-ms-request-id": [ - "831433e0-996b-4131-b034-23ea95ac97bf" + "ba35aba0-d23c-4361-ba94-815019231b9a" ], "x-ms-correlation-request-id": [ - "831433e0-996b-4131-b034-23ea95ac97bf" + "ba35aba0-d23c-4361-ba94-815019231b9a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103457Z:831433e0-996b-4131-b034-23ea95ac97bf" + "WESTEUROPE:20150713T125701Z:ba35aba0-d23c-4361-ba94-815019231b9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1541,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:57 GMT" + "Mon, 13 Jul 2015 12:57:00 GMT" ] }, "StatusCode": 200 @@ -1556,7 +681,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:34:51.9976641Z\",\r\n \"duration\": \"PT12.2158066S\",\r\n \"trackingId\": \"e4118e3f-795a-48a9-b968-4ac15439b58a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:56:59.4499546Z\",\r\n \"duration\": \"PT12.6100292S\",\r\n \"trackingId\": \"00a98ae2-643b-439f-b0fe-fa9b60d8e2e4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -1571,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" + "14863" ], "x-ms-request-id": [ - "32d7d381-4428-49b0-8fe8-20e53a35dc85" + "d5d89dd2-ceb3-4d8f-a66f-85ccbdf47ea4" ], "x-ms-correlation-request-id": [ - "32d7d381-4428-49b0-8fe8-20e53a35dc85" + "d5d89dd2-ceb3-4d8f-a66f-85ccbdf47ea4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103500Z:32d7d381-4428-49b0-8fe8-20e53a35dc85" + "WESTEUROPE:20150713T125704Z:d5d89dd2-ceb3-4d8f-a66f-85ccbdf47ea4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1589,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:00 GMT" + "Mon, 13 Jul 2015 12:57:03 GMT" ] }, "StatusCode": 200 @@ -1604,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:34:51.9976641Z\",\r\n \"duration\": \"PT12.2158066S\",\r\n \"trackingId\": \"e4118e3f-795a-48a9-b968-4ac15439b58a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:56:59.4499546Z\",\r\n \"duration\": \"PT12.6100292S\",\r\n \"trackingId\": \"00a98ae2-643b-439f-b0fe-fa9b60d8e2e4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "668" @@ -1619,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14861" ], "x-ms-request-id": [ - "f3ff199c-eca9-4a5f-acef-48389d7f489d" + "32f1074c-9f8b-468f-8345-b51060bca689" ], "x-ms-correlation-request-id": [ - "f3ff199c-eca9-4a5f-acef-48389d7f489d" + "32f1074c-9f8b-468f-8345-b51060bca689" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103504Z:f3ff199c-eca9-4a5f-acef-48389d7f489d" + "WESTEUROPE:20150713T125707Z:32f1074c-9f8b-468f-8345-b51060bca689" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1637,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:03 GMT" + "Mon, 13 Jul 2015 12:57:06 GMT" ] }, "StatusCode": 200 @@ -1652,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/950B6A4B4675DD5F\",\r\n \"operationId\": \"950B6A4B4675DD5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:35:05.9227304Z\",\r\n \"duration\": \"PT13.3582857S\",\r\n \"trackingId\": \"8b22e01b-8500-4966-aa35-a0547b2db26f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:34:51.9976641Z\",\r\n \"duration\": \"PT12.2158066S\",\r\n \"trackingId\": \"e4118e3f-795a-48a9-b968-4ac15439b58a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/950B6A4B4675DD5F\",\r\n \"operationId\": \"950B6A4B4675DD5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:57:08.3732524Z\",\r\n \"duration\": \"PT7.9314995S\",\r\n \"trackingId\": \"42a535eb-03d8-45b6-950e-530a884b188d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:56:59.4499546Z\",\r\n \"duration\": \"PT12.6100292S\",\r\n \"trackingId\": \"00a98ae2-643b-439f-b0fe-fa9b60d8e2e4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1391" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1667,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" + "14859" ], "x-ms-request-id": [ - "075dc25e-bd53-433e-ac26-d27fe810009f" + "da058c44-5443-4769-9fa6-74181e456c46" ], "x-ms-correlation-request-id": [ - "075dc25e-bd53-433e-ac26-d27fe810009f" + "da058c44-5443-4769-9fa6-74181e456c46" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103507Z:075dc25e-bd53-433e-ac26-d27fe810009f" + "WESTEUROPE:20150713T125710Z:da058c44-5443-4769-9fa6-74181e456c46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1685,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:07 GMT" + "Mon, 13 Jul 2015 12:57:10 GMT" ] }, "StatusCode": 200 @@ -1700,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/950B6A4B4675DD5F\",\r\n \"operationId\": \"950B6A4B4675DD5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:35:05.9227304Z\",\r\n \"duration\": \"PT13.3582857S\",\r\n \"trackingId\": \"8b22e01b-8500-4966-aa35-a0547b2db26f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:34:51.9976641Z\",\r\n \"duration\": \"PT12.2158066S\",\r\n \"trackingId\": \"e4118e3f-795a-48a9-b968-4ac15439b58a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/950B6A4B4675DD5F\",\r\n \"operationId\": \"950B6A4B4675DD5F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:57:08.3732524Z\",\r\n \"duration\": \"PT7.9314995S\",\r\n \"trackingId\": \"42a535eb-03d8-45b6-950e-530a884b188d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup/operations/BC8F02D5C0856B66\",\r\n \"operationId\": \"BC8F02D5C0856B66\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:56:59.4499546Z\",\r\n \"duration\": \"PT12.6100292S\",\r\n \"trackingId\": \"00a98ae2-643b-439f-b0fe-fa9b60d8e2e4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1391" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1715,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14777" + "14856" ], "x-ms-request-id": [ - "9f0fd6c6-4aea-4b1a-b579-cfbf1d3cda93" + "1bcb8a1e-92bd-4919-bbcc-b4f4aab5ae25" ], "x-ms-correlation-request-id": [ - "9f0fd6c6-4aea-4b1a-b579-cfbf1d3cda93" + "1bcb8a1e-92bd-4919-bbcc-b4f4aab5ae25" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103510Z:9f0fd6c6-4aea-4b1a-b579-cfbf1d3cda93" + "WESTEUROPE:20150713T125713Z:1bcb8a1e-92bd-4919-bbcc-b4f4aab5ae25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1733,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:10 GMT" + "Mon, 13 Jul 2015 12:57:13 GMT" ] }, "StatusCode": 200 @@ -1748,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T10:34:35.6058899Z\",\r\n \"duration\": \"PT1.0959054S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:56:45.1676199Z\",\r\n \"duration\": \"PT1.1990539S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -1763,112 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" - ], - "x-ms-request-id": [ - "9b529042-cf17-4b1b-9c62-94bd0b49324c" - ], - "x-ms-correlation-request-id": [ - "9b529042-cf17-4b1b-9c62-94bd0b49324c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103437Z:9b529042-cf17-4b1b-9c62-94bd0b49324c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:34:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1649" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" - ], - "x-ms-request-id": [ - "39cf443e-ced2-4972-94f2-dc366325098a" - ], - "x-ms-correlation-request-id": [ - "39cf443e-ced2-4972-94f2-dc366325098a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103440Z:39cf443e-ced2-4972-94f2-dc366325098a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 10:34:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1649" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "14875" ], "x-ms-request-id": [ - "9a9e52fd-f963-4abe-b512-a447aedde186" + "619e88a8-66ac-4558-97df-555511dd8663" ], "x-ms-correlation-request-id": [ - "9a9e52fd-f963-4abe-b512-a447aedde186" + "619e88a8-66ac-4558-97df-555511dd8663" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103443Z:9a9e52fd-f963-4abe-b512-a447aedde186" + "WESTEUROPE:20150713T125646Z:619e88a8-66ac-4558-97df-555511dd8663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1877,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:42 GMT" + "Mon, 13 Jul 2015 12:56:46 GMT" ] }, "StatusCode": 200 @@ -1892,10 +921,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:56:46.6950201Z\",\r\n \"duration\": \"PT2.7264541S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1907,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14873" ], "x-ms-request-id": [ - "ca23e177-53c5-4d0e-bff3-bca16dfa0166" + "d20ca69a-e0d9-4395-a094-b5c7830d27ad" ], "x-ms-correlation-request-id": [ - "ca23e177-53c5-4d0e-bff3-bca16dfa0166" + "d20ca69a-e0d9-4395-a094-b5c7830d27ad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103446Z:ca23e177-53c5-4d0e-bff3-bca16dfa0166" + "WESTEUROPE:20150713T125649Z:d20ca69a-e0d9-4395-a094-b5c7830d27ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1925,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:45 GMT" + "Mon, 13 Jul 2015 12:56:48 GMT" ] }, "StatusCode": 200 @@ -1940,10 +969,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:56:46.6950201Z\",\r\n \"duration\": \"PT2.7264541S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1955,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" + "14871" ], "x-ms-request-id": [ - "888e1643-d353-4061-b41e-d9507fa285cc" + "15a74fbc-fb77-48a9-a47e-79b3255a1c87" ], "x-ms-correlation-request-id": [ - "888e1643-d353-4061-b41e-d9507fa285cc" + "15a74fbc-fb77-48a9-a47e-79b3255a1c87" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103449Z:888e1643-d353-4061-b41e-d9507fa285cc" + "WESTEUROPE:20150713T125652Z:15a74fbc-fb77-48a9-a47e-79b3255a1c87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1973,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:48 GMT" + "Mon, 13 Jul 2015 12:56:51 GMT" ] }, "StatusCode": 200 @@ -1988,10 +1017,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:56:46.6950201Z\",\r\n \"duration\": \"PT2.7264541S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2003,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14869" ], "x-ms-request-id": [ - "6d9de5b8-0fdd-4885-81d1-bac4216097c3" + "e6737e37-ccf5-4bf1-b783-7caa8ce84df7" ], "x-ms-correlation-request-id": [ - "6d9de5b8-0fdd-4885-81d1-bac4216097c3" + "e6737e37-ccf5-4bf1-b783-7caa8ce84df7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103452Z:6d9de5b8-0fdd-4885-81d1-bac4216097c3" + "WESTEUROPE:20150713T125655Z:e6737e37-ccf5-4bf1-b783-7caa8ce84df7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2021,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:51 GMT" + "Mon, 13 Jul 2015 12:56:54 GMT" ] }, "StatusCode": 200 @@ -2036,10 +1065,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:56:46.6950201Z\",\r\n \"duration\": \"PT2.7264541S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2051,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14759" + "14867" ], "x-ms-request-id": [ - "d843c5fd-3b8a-44ae-9abf-c095adb5b65b" + "25a489fb-9163-41a8-b261-f85344251013" ], "x-ms-correlation-request-id": [ - "d843c5fd-3b8a-44ae-9abf-c095adb5b65b" + "25a489fb-9163-41a8-b261-f85344251013" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103455Z:d843c5fd-3b8a-44ae-9abf-c095adb5b65b" + "WESTEUROPE:20150713T125658Z:25a489fb-9163-41a8-b261-f85344251013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:54 GMT" + "Mon, 13 Jul 2015 12:56:57 GMT" ] }, "StatusCode": 200 @@ -2084,10 +1113,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:56:46.6950201Z\",\r\n \"duration\": \"PT2.7264541S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2099,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14757" + "14864" ], "x-ms-request-id": [ - "0b06ff44-c45f-4e55-813b-834182dd16ec" + "713b45c8-5545-4e7c-91fb-2b36c946fb52" ], "x-ms-correlation-request-id": [ - "0b06ff44-c45f-4e55-813b-834182dd16ec" + "713b45c8-5545-4e7c-91fb-2b36c946fb52" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103458Z:0b06ff44-c45f-4e55-813b-834182dd16ec" + "WESTEUROPE:20150713T125701Z:713b45c8-5545-4e7c-91fb-2b36c946fb52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2117,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:34:57 GMT" + "Mon, 13 Jul 2015 12:57:00 GMT" ] }, "StatusCode": 200 @@ -2132,10 +1161,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:56:46.6950201Z\",\r\n \"duration\": \"PT2.7264541S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2147,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14862" ], "x-ms-request-id": [ - "f6719d25-4c74-4eec-9fae-bbf05cb857a3" + "577ff0d4-28e3-402e-a22d-a3f3ad925102" ], "x-ms-correlation-request-id": [ - "f6719d25-4c74-4eec-9fae-bbf05cb857a3" + "577ff0d4-28e3-402e-a22d-a3f3ad925102" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103501Z:f6719d25-4c74-4eec-9fae-bbf05cb857a3" + "WESTEUROPE:20150713T125704Z:577ff0d4-28e3-402e-a22d-a3f3ad925102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2165,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:00 GMT" + "Mon, 13 Jul 2015 12:57:03 GMT" ] }, "StatusCode": 200 @@ -2180,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:56:46.6950201Z\",\r\n \"duration\": \"PT2.7264541S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2195,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "14860" ], "x-ms-request-id": [ - "31c2ccf7-305e-4985-8e50-c4c714ba584f" + "a343dcc5-30bf-4595-9385-2c89cac6919d" ], "x-ms-correlation-request-id": [ - "31c2ccf7-305e-4985-8e50-c4c714ba584f" + "a343dcc5-30bf-4595-9385-2c89cac6919d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103504Z:31c2ccf7-305e-4985-8e50-c4c714ba584f" + "WESTEUROPE:20150713T125707Z:a343dcc5-30bf-4595-9385-2c89cac6919d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2213,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:03 GMT" + "Mon, 13 Jul 2015 12:57:06 GMT" ] }, "StatusCode": 200 @@ -2228,10 +1257,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T10:34:39.259507Z\",\r\n \"duration\": \"PT4.7495225S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:56:46.6950201Z\",\r\n \"duration\": \"PT2.7264541S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1649" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2243,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14858" ], "x-ms-request-id": [ - "d8283ceb-3d4e-4901-9fda-0aa56f6bd67a" + "319bd875-1240-4d4a-b892-5e538e471192" ], "x-ms-correlation-request-id": [ - "d8283ceb-3d4e-4901-9fda-0aa56f6bd67a" + "319bd875-1240-4d4a-b892-5e538e471192" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103507Z:d8283ceb-3d4e-4901-9fda-0aa56f6bd67a" + "WESTEUROPE:20150713T125710Z:319bd875-1240-4d4a-b892-5e538e471192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2261,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:07 GMT" + "Mon, 13 Jul 2015 12:57:10 GMT" ] }, "StatusCode": 200 @@ -2276,10 +1305,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T10:35:07.339065Z\",\r\n \"duration\": \"PT32.8290805S\",\r\n \"correlationId\": \"c2d5dcc1-097f-476b-83c7-9ff1ba07ca0e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db801\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server801\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:57:11.6067698Z\",\r\n \"duration\": \"PT27.6382038S\",\r\n \"correlationId\": \"ed822674-27da-4aab-9719-e6ff7a7bddd4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server801/sql-audit-cmdlet-db801\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server801\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server801/databases/sql-audit-cmdlet-db801\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1652" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2291,16 +1320,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "14855" ], "x-ms-request-id": [ - "6b3b8f35-8688-4a17-b0d0-0b9339c7b1a3" + "256f2403-9491-423d-bada-da18d0726494" ], "x-ms-correlation-request-id": [ - "6b3b8f35-8688-4a17-b0d0-0b9339c7b1a3" + "256f2403-9491-423d-bada-da18d0726494" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103510Z:6b3b8f35-8688-4a17-b0d0-0b9339c7b1a3" + "WESTEUROPE:20150713T125713Z:256f2403-9491-423d-bada-da18d0726494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2309,7 +1338,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:10 GMT" + "Mon, 13 Jul 2015 12:57:13 GMT" ] }, "StatusCode": 200 @@ -2339,16 +1368,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14775" + "14854" ], "x-ms-request-id": [ - "bec6f855-37dc-4e42-826f-12a8ba0fcbd6" + "8845f745-7069-4828-b7bc-f9983ecdcd7a" ], "x-ms-correlation-request-id": [ - "bec6f855-37dc-4e42-826f-12a8ba0fcbd6" + "8845f745-7069-4828-b7bc-f9983ecdcd7a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103512Z:bec6f855-37dc-4e42-826f-12a8ba0fcbd6" + "WESTEUROPE:20150713T125716Z:8845f745-7069-4828-b7bc-f9983ecdcd7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2357,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:12 GMT" + "Mon, 13 Jul 2015 12:57:15 GMT" ] }, "StatusCode": 200 @@ -2390,16 +1419,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:618b117d-3560-4c6e-900c-ebe8b44f4b95" + "westeurope:1b75d73b-02ce-4e86-b17c-857bb89d3c53" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14777" + "14843" ], "x-ms-correlation-request-id": [ - "d97be9ce-9de6-4673-947f-4cce12c63f08" + "2ca5b3b7-97a8-433c-b63c-f5ae7ef0fbc4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103513Z:d97be9ce-9de6-4673-947f-4cce12c63f08" + "WESTEUROPE:20150713T125717Z:2ca5b3b7-97a8-433c-b63c-f5ae7ef0fbc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2408,7 +1437,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:13 GMT" + "Mon, 13 Jul 2015 12:57:16 GMT" ] }, "StatusCode": 200 @@ -2423,19 +1452,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "196f3a47-17b3-4787-ba49-940113d7b466" + "17099320-5cf4-4dba-9d79-f96372f1cdb7" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "710" + "807" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e75d6eec-36e1-4483-bec1-aa593326e414" + "60a85f1c-2a1e-4532-b7ad-88bcb66bcea0" ], "X-Content-Type-Options": [ "nosniff" @@ -2444,13 +1473,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "14776" ], "x-ms-correlation-request-id": [ - "51fc4e62-ac55-4766-be1d-62f43323a043" + "0ec1ae8c-78f1-4163-8d45-75d2a162ee59" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103515Z:51fc4e62-ac55-4766-be1d-62f43323a043" + "WESTEUROPE:20150713T125718Z:0ec1ae8c-78f1-4163-8d45-75d2a162ee59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2459,7 +1488,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:15 GMT" + "Mon, 13 Jul 2015 12:57:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2477,7 +1506,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8c6ea08b-6acf-4f21-a3aa-0728ce2d17fb" + "43c44f77-b40f-488e-aadc-0c8a73e620b6" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2489,7 +1518,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f102f817-08f6-4fd7-80e6-61c693693263" + "3f9097b3-6a92-4074-8416-081cdd878632" ], "X-Content-Type-Options": [ "nosniff" @@ -2498,13 +1527,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14775" ], "x-ms-correlation-request-id": [ - "2d42ffdb-c250-4be3-9003-24cba0c4ca76" + "4bbe3df0-1d50-4851-a1f8-06cfda2094de" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103520Z:2d42ffdb-c250-4be3-9003-24cba0c4ca76" + "WESTEUROPE:20150713T125722Z:4bbe3df0-1d50-4851-a1f8-06cfda2094de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2513,7 +1542,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:20 GMT" + "Mon, 13 Jul 2015 12:57:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2531,7 +1560,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "24525e62-4958-48f0-b6ed-7eac14d9246e" + "13772e3e-ff89-4278-94c0-7f41b9e917ba" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2543,7 +1572,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "321f99e0-a071-4664-a540-01e4930cd1a1" + "ea0bb897-9f56-4240-993a-fb3524d0648b" ], "X-Content-Type-Options": [ "nosniff" @@ -2552,13 +1581,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "14774" ], "x-ms-correlation-request-id": [ - "2ba1d1d8-c592-49df-a1f5-b9aa374a0b09" + "82d17613-d39b-40b4-b0cf-ec8b57765b74" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103522Z:2ba1d1d8-c592-49df-a1f5-b9aa374a0b09" + "WESTEUROPE:20150713T125724Z:82d17613-d39b-40b4-b0cf-ec8b57765b74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2567,7 +1596,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:21 GMT" + "Mon, 13 Jul 2015 12:57:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2585,7 +1614,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9605db03-c772-40b2-934e-84488172c6dc" + "ebc24a46-884d-4a78-a385-809d92f2f4c1" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2597,7 +1626,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2be902ee-0ed0-46a4-b340-6fed0acc5cd4" + "8224d17c-8bfb-4e21-8065-4c50da08e060" ], "X-Content-Type-Options": [ "nosniff" @@ -2606,13 +1635,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "14772" ], "x-ms-correlation-request-id": [ - "2f5eeef8-7bb1-4d6e-9116-5b3401f5f3c0" + "17d41dc1-7a29-401d-bddc-cc26386b0c77" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103526Z:2f5eeef8-7bb1-4d6e-9116-5b3401f5f3c0" + "WESTEUROPE:20150713T125727Z:17d41dc1-7a29-401d-bddc-cc26386b0c77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2621,7 +1650,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:25 GMT" + "Mon, 13 Jul 2015 12:57:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2639,7 +1668,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "cea34f36-8a20-456b-b699-e435d70a0d19" + "319251c9-8fd7-4a9b-bb2e-9a03d9cfc501" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2651,7 +1680,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "86a9f502-dc64-4547-a949-9584a79e25b2" + "d7062a0c-1842-4f5f-86cf-05c2c990c91f" ], "X-Content-Type-Options": [ "nosniff" @@ -2660,13 +1689,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14771" ], "x-ms-correlation-request-id": [ - "e24046f6-efad-492d-9f6d-d8bff2e9f0fc" + "6bb7e2be-e0a0-42d4-9602-20626b218793" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103527Z:e24046f6-efad-492d-9f6d-d8bff2e9f0fc" + "WESTEUROPE:20150713T125729Z:6bb7e2be-e0a0-42d4-9602-20626b218793" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2675,7 +1704,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:26 GMT" + "Mon, 13 Jul 2015 12:57:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2693,7 +1722,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "efb8b600-9e0c-4397-b7d5-adbc6176c43e" + "01f674c6-9c86-46d6-aa12-9db0d1e4eb0f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2705,7 +1734,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8a29ae4e-f67a-4bab-9071-644bb9ce82e5" + "69471a22-cac5-4247-ad9d-cd1983063256" ], "X-Content-Type-Options": [ "nosniff" @@ -2714,13 +1743,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14770" ], "x-ms-correlation-request-id": [ - "2db981b0-5524-4ed8-b9ed-5bfd7c17bcc1" + "f1b1b7e1-b714-4eec-9d92-2c12efb050d6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103531Z:2db981b0-5524-4ed8-b9ed-5bfd7c17bcc1" + "WESTEUROPE:20150713T125733Z:f1b1b7e1-b714-4eec-9d92-2c12efb050d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2729,7 +1758,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:30 GMT" + "Mon, 13 Jul 2015 12:57:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2747,7 +1776,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ac6cd84b-14c2-4f43-82d8-c5983f24f7cf" + "69ddbcd1-f827-448c-b265-c8ad65e3fe93" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2759,7 +1788,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8bc83ac7-443a-4f24-ac62-ef7fd736fb9a" + "41e0fd21-ed60-4eb0-96d4-1a3c1dbfab5e" ], "X-Content-Type-Options": [ "nosniff" @@ -2768,13 +1797,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14769" ], "x-ms-correlation-request-id": [ - "0edc87bd-dbc8-412e-b107-889105059b56" + "f20c6d61-d666-4102-8a42-5338e6a5f33a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103532Z:0edc87bd-dbc8-412e-b107-889105059b56" + "WESTEUROPE:20150713T125734Z:f20c6d61-d666-4102-8a42-5338e6a5f33a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2783,7 +1812,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:32 GMT" + "Mon, 13 Jul 2015 12:57:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2801,7 +1830,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b8e3a81b-eb64-4e13-99b6-3c9c2f75ebff" + "f77f513c-6aa6-4719-96a4-4f8bbf693f25" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2813,7 +1842,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6531e4a9-145a-45e3-a09e-5687080e6fda" + "b92687ab-fda9-426f-8272-5e304388091e" ], "X-Content-Type-Options": [ "nosniff" @@ -2822,13 +1851,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14768" ], "x-ms-correlation-request-id": [ - "b03480ec-5509-4a7a-be5d-494bc00ddf33" + "a2840fdc-f7e8-4c48-a122-d962388d4d07" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103536Z:b03480ec-5509-4a7a-be5d-494bc00ddf33" + "WESTEUROPE:20150713T125738Z:a2840fdc-f7e8-4c48-a122-d962388d4d07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2837,7 +1866,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:35 GMT" + "Mon, 13 Jul 2015 12:57:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2855,7 +1884,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b963a224-39c1-455f-a2fc-f0bf29e3cbaf" + "87bd6655-4a5e-4de7-ac11-d840dffe3f81" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2867,7 +1896,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "bf198a2a-700f-4362-a842-1bcf81d91746" + "703cd64b-bc91-4f0f-b26d-e655746e9245" ], "X-Content-Type-Options": [ "nosniff" @@ -2876,13 +1905,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14806" + "14767" ], "x-ms-correlation-request-id": [ - "06805e77-4ee1-4808-8abd-7188c9c162b6" + "d1ca1467-9eaf-49ad-ab54-88d43a73b8b7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103537Z:06805e77-4ee1-4808-8abd-7188c9c162b6" + "WESTEUROPE:20150713T125739Z:d1ca1467-9eaf-49ad-ab54-88d43a73b8b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2891,7 +1920,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:36 GMT" + "Mon, 13 Jul 2015 12:57:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2909,7 +1938,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c6ad42bf-56c5-4333-87e4-a38d194656e6" + "a96098d7-ef97-414f-ac41-b8433393d7a2" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2921,7 +1950,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "824484fe-5862-484d-867e-f058becaeee5" + "0201c1f1-e8d0-4bc3-9a05-3bf92ab8a066" ], "X-Content-Type-Options": [ "nosniff" @@ -2930,13 +1959,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "14766" ], "x-ms-correlation-request-id": [ - "f2a3f176-f071-4ec0-bbbc-dc550024be52" + "a2fa13ee-85a4-4284-b65d-1e023b659b83" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103538Z:f2a3f176-f071-4ec0-bbbc-dc550024be52" + "WESTEUROPE:20150713T125740Z:a2fa13ee-85a4-4284-b65d-1e023b659b83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2945,7 +1974,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:38 GMT" + "Mon, 13 Jul 2015 12:57:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2963,7 +1992,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5af6eaa7-68dd-4dc0-8cf1-33f7bce617f1" + "60e18321-bcde-40e2-a434-f5767054187a" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2975,7 +2004,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "43a4270c-9718-4cc7-afe0-f03d18194207" + "c22af49b-89a6-4889-abc9-835c01393633" ], "X-Content-Type-Options": [ "nosniff" @@ -2984,13 +2013,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" + "14765" ], "x-ms-correlation-request-id": [ - "e874348b-5ef7-49c6-b3ac-bb1674d30469" + "41201acb-f178-4dbd-806b-a6a8261ebd22" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103540Z:e874348b-5ef7-49c6-b3ac-bb1674d30469" + "WESTEUROPE:20150713T125741Z:41201acb-f178-4dbd-806b-a6a8261ebd22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2999,7 +2028,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:39 GMT" + "Mon, 13 Jul 2015 12:57:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3017,7 +2046,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5c489785-e402-4b15-8325-3916fe29b334" + "db5b996b-a9d7-40b7-a79a-b9b1309702e8" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3029,7 +2058,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2ad30f01-5042-44e1-9594-02038f50e8c2" + "4f3865ad-bbac-4a39-b381-069d50c84cc3" ], "X-Content-Type-Options": [ "nosniff" @@ -3038,13 +2067,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14803" + "14764" ], "x-ms-correlation-request-id": [ - "b36e56bc-6e3d-4224-96fd-6db726f0c535" + "505a1c29-8fcc-41ec-9f8b-55d237dafbce" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103541Z:b36e56bc-6e3d-4224-96fd-6db726f0c535" + "WESTEUROPE:20150713T125743Z:505a1c29-8fcc-41ec-9f8b-55d237dafbce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3053,7 +2082,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:40 GMT" + "Mon, 13 Jul 2015 12:57:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3062,54 +2091,89 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyODAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "af37c9ff-70d7-456f-82b6-0b09328b6704" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets801\",\r\n \"name\": \"auditcmdlets801\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "710" + "3542" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "e2e50b2c-624e-4fd9-b41e-f8409180c77a" + "application/json; charset=utf-8" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "-1" ], - "DataServiceVersion": [ - "3.0;" + "Pragma": [ + "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" + "14853" + ], + "x-ms-request-id": [ + "89023df0-2f67-45db-a796-dbf2844ab8c8" ], "x-ms-correlation-request-id": [ - "76b6c097-df26-4b3a-904d-2b0d08bbfdcd" + "89023df0-2f67-45db-a796-dbf2844ab8c8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103542Z:76b6c097-df26-4b3a-904d-2b0d08bbfdcd" + "WESTEUROPE:20150713T125718Z:89023df0-2f67-45db-a796-dbf2844ab8c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" + ], + "Date": [ + "Mon, 13 Jul 2015 12:57:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets801", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzODAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets801\r\n auditcmdlets801\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets801.blob.core.windows.net/\r\n https://auditcmdlets801.queue.core.windows.net/\r\n https://auditcmdlets801.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:55:38Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "e173c0ff2917cb46b3682365dbf48d85" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:41 GMT" + "Mon, 13 Jul 2015 12:57:18 GMT" ], "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", "Microsoft-HTTPAPI/2.0" ] }, @@ -3128,7 +2192,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"secondaryKey\": \"bB98dusz2oEhyTggb/l9nQ7NQTcHEv0tH7lmw+GdDFlD4ZNn3W5QEiQBO3IWoULDYw6PCkf3RZnGAg2DfLdiIA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"secondaryKey\": \"QBUXU9Fd3gHO2yxdbtAaCieF9pJKpdmIUZ8hii6ZV1SHQgfxIvxbLSq/5xKgVlsAR/EqdRZS6PiKSuVJ7oXNtQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -3146,16 +2210,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:15863c5f-f24c-4941-aa10-90113978b0e2" + "southcentralus:2f3af641-eee7-4466-ae5a-aaeb0bebf324" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1185" ], "x-ms-correlation-request-id": [ - "4ba80080-90e8-4345-bd37-055752a953be" + "67ac0b89-1529-4d26-8681-7c0539f02d22" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103517Z:4ba80080-90e8-4345-bd37-055752a953be" + "WESTEUROPE:20150713T125719Z:67ac0b89-1529-4d26-8681-7c0539f02d22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3164,7 +2228,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:16 GMT" + "Mon, 13 Jul 2015 12:57:19 GMT" ] }, "StatusCode": 200 @@ -3182,7 +2246,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"secondaryKey\": \"bB98dusz2oEhyTggb/l9nQ7NQTcHEv0tH7lmw+GdDFlD4ZNn3W5QEiQBO3IWoULDYw6PCkf3RZnGAg2DfLdiIA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"secondaryKey\": \"QBUXU9Fd3gHO2yxdbtAaCieF9pJKpdmIUZ8hii6ZV1SHQgfxIvxbLSq/5xKgVlsAR/EqdRZS6PiKSuVJ7oXNtQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -3200,16 +2264,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:435a9a12-09da-4547-b39c-4d85cd70d221" + "southcentralus:45978028-aebd-4091-868d-e47a5d556bd2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1183" ], "x-ms-correlation-request-id": [ - "a42ad35a-639a-441d-a509-8849a603db4b" + "69befee9-f05d-4a48-a2e7-6e88f22d0bed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103523Z:a42ad35a-639a-441d-a509-8849a603db4b" + "WESTEUROPE:20150713T125724Z:69befee9-f05d-4a48-a2e7-6e88f22d0bed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3218,7 +2282,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:22 GMT" + "Mon, 13 Jul 2015 12:57:24 GMT" ] }, "StatusCode": 200 @@ -3236,7 +2300,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"secondaryKey\": \"bB98dusz2oEhyTggb/l9nQ7NQTcHEv0tH7lmw+GdDFlD4ZNn3W5QEiQBO3IWoULDYw6PCkf3RZnGAg2DfLdiIA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"secondaryKey\": \"QBUXU9Fd3gHO2yxdbtAaCieF9pJKpdmIUZ8hii6ZV1SHQgfxIvxbLSq/5xKgVlsAR/EqdRZS6PiKSuVJ7oXNtQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -3254,16 +2318,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:05d148a6-b397-427b-a81c-304a1cf54103" + "southcentralus:895faa60-37b6-4536-8c10-808781228479" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1181" ], "x-ms-correlation-request-id": [ - "69179b47-6fa1-4b8a-a7f5-5eafd2c584d9" + "ed7a174f-a7bf-428f-a980-07c9b4b95d89" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103528Z:69179b47-6fa1-4b8a-a7f5-5eafd2c584d9" + "WESTEUROPE:20150713T125729Z:ed7a174f-a7bf-428f-a980-07c9b4b95d89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3272,7 +2336,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:27 GMT" + "Mon, 13 Jul 2015 12:57:29 GMT" ] }, "StatusCode": 200 @@ -3290,7 +2354,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"secondaryKey\": \"bB98dusz2oEhyTggb/l9nQ7NQTcHEv0tH7lmw+GdDFlD4ZNn3W5QEiQBO3IWoULDYw6PCkf3RZnGAg2DfLdiIA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"secondaryKey\": \"QBUXU9Fd3gHO2yxdbtAaCieF9pJKpdmIUZ8hii6ZV1SHQgfxIvxbLSq/5xKgVlsAR/EqdRZS6PiKSuVJ7oXNtQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -3308,16 +2372,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:5fad2161-bb08-45bd-8225-7f2bd55ecf53" + "southcentralus:835a29fc-88f9-4c9a-909a-7aa1d6f5db5d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1179" ], "x-ms-correlation-request-id": [ - "513820e1-f2f9-47ee-b504-9610dd51cc80" + "28cf0b7c-51d1-4c2c-994a-e52e043f2ba1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103533Z:513820e1-f2f9-47ee-b504-9610dd51cc80" + "WESTEUROPE:20150713T125735Z:28cf0b7c-51d1-4c2c-994a-e52e043f2ba1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3326,7 +2390,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:32 GMT" + "Mon, 13 Jul 2015 12:57:34 GMT" ] }, "StatusCode": 200 @@ -3335,7 +2399,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyODAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"storageAccountKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"storageAccountKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3347,10 +2411,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "196f3a47-17b3-4787-ba49-940113d7b466" + "17099320-5cf4-4dba-9d79-f96372f1cdb7" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -3359,7 +2423,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e4bd4d9c-7410-415e-9d02-1db5e8672ade" + "92b96938-a72f-42a2-bdcb-caed7ca13909" ], "X-Content-Type-Options": [ "nosniff" @@ -3371,13 +2435,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1184" ], "x-ms-correlation-request-id": [ - "3662a950-20c6-49d7-84eb-1e36ce145bd3" + "60063ad3-99c1-40ec-b106-a0467a21ed96" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103519Z:3662a950-20c6-49d7-84eb-1e36ce145bd3" + "WESTEUROPE:20150713T125721Z:60063ad3-99c1-40ec-b106-a0467a21ed96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3386,7 +2450,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:18 GMT" + "Mon, 13 Jul 2015 12:57:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3398,7 +2462,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyODAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"storageAccountKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"storageAccountKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3410,10 +2474,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "24525e62-4958-48f0-b6ed-7eac14d9246e" + "13772e3e-ff89-4278-94c0-7f41b9e917ba" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -3422,7 +2486,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cf1f4896-a632-4a52-ae91-f737e200d4a0" + "34d27165-c22a-404e-9a92-8a23ee6fd72e" ], "X-Content-Type-Options": [ "nosniff" @@ -3434,13 +2498,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1182" ], "x-ms-correlation-request-id": [ - "11394707-c534-4e01-8fe3-c348360ac20a" + "534cf5c7-daa9-4374-bbb3-0b4c4e1a7d97" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103524Z:11394707-c534-4e01-8fe3-c348360ac20a" + "WESTEUROPE:20150713T125726Z:534cf5c7-daa9-4374-bbb3-0b4c4e1a7d97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3449,7 +2513,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:24 GMT" + "Mon, 13 Jul 2015 12:57:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3461,7 +2525,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyODAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"storageAccountKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"storageAccountKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3473,10 +2537,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "cea34f36-8a20-456b-b699-e435d70a0d19" + "319251c9-8fd7-4a9b-bb2e-9a03d9cfc501" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "785" @@ -3485,7 +2549,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5f7cd514-bb92-44c5-8e65-9f3355212610" + "d2d08f11-460e-4216-9e19-d92f22adbad7" ], "X-Content-Type-Options": [ "nosniff" @@ -3497,13 +2561,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1180" ], "x-ms-correlation-request-id": [ - "80fe9270-4fac-4b76-92f2-337ce147366a" + "7f80d3a3-f09d-4e5e-8ba9-b7b718534d02" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103530Z:80fe9270-4fac-4b76-92f2-337ce147366a" + "WESTEUROPE:20150713T125731Z:7f80d3a3-f09d-4e5e-8ba9-b7b718534d02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3512,7 +2576,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:29 GMT" + "Mon, 13 Jul 2015 12:57:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3524,7 +2588,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzgwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyODAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"storageAccountKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"storageAccountKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3536,10 +2600,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ac6cd84b-14c2-4f43-82d8-c5983f24f7cf" + "69ddbcd1-f827-448c-b265-c8ad65e3fe93" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"9eW003p63jg++s0VsA/kB7IeHtpOK9jusVHfyw2dGnm/LAJL5vpfpfJEV19zbsFstIrKrAP6+w5L0WYWCHn8rQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg801/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server801/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets801\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver801\",\r\n \"storageAccountKey\": \"w8J3b1HYKATcUyKxzpI/wjWft13BWP/1hqUTxi1l2WJPZDhNn/H097rg+qRXoiQm2L/1E79EEsenAIc+SoPBFg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets801.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "785" @@ -3548,7 +2612,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "11e7e8c8-8e03-4978-a651-c0ebe748a47b" + "d242d881-31ca-48a6-8504-ffa6bbf483f6" ], "X-Content-Type-Options": [ "nosniff" @@ -3560,13 +2624,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1178" ], "x-ms-correlation-request-id": [ - "b1861a91-ce27-4ddb-b06d-7c9422542cd5" + "3e8d0948-bf32-4b29-bcb6-2e076ae13052" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T103535Z:b1861a91-ce27-4ddb-b06d-7c9422542cd5" + "WESTEUROPE:20150713T125736Z:3e8d0948-bf32-4b29-bcb6-2e076ae13052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3575,7 +2639,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:34 GMT" + "Mon, 13 Jul 2015 12:57:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3605,13 +2669,13 @@ "ussouth3" ], "x-ms-request-id": [ - "2e9d35293d9bb30aa1ba1cdcca4a3bf0" + "a009b39dde34c8f8921378e0f0c4f129" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:47 GMT" + "Mon, 13 Jul 2015 12:57:46 GMT" ], "Server": [ "1.0.6198.243", @@ -3622,8 +2686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/2e9d35293d9bb30aa1ba1cdcca4a3bf0", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzJlOWQzNTI5M2Q5YmIzMGFhMWJhMWNkY2NhNGEzYmYw", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/a009b39dde34c8f8921378e0f0c4f129", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2EwMDliMzlkZGUzNGM4Zjg5MjEzNzhlMGYwYzRmMTI5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3634,7 +2698,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 2e9d3529-3d9b-b30a-a1ba-1cdcca4a3bf0\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n a009b39d-de34-c8f8-9213-78e0f0c4f129\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -3646,13 +2710,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c6ca94521259b3d1b560e05cd8fa95ea" + "f627b2fc06a7cb819b86cd40649c0c24" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 10:35:50 GMT" + "Mon, 13 Jul 2015 12:57:48 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithEventTypes.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithEventTypes.json index 12856ebe410c..f316ac47c141 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithEventTypes.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithEventTypes.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "552b883f23efb94db548f7e73b0063f4" + "9be81ea2fd7cc2848392e3f734b8d4c2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:28:32 GMT" + "Mon, 13 Jul 2015 12:50:37 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets601" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/552b883f23efb94db548f7e73b0063f4", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzU1MmI4ODNmMjNlZmI5NGRiNTQ4ZjdlNzNiMDA2M2Y0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9be81ea2fd7cc2848392e3f734b8d4c2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzliZTgxZWEyZmQ3Y2MyODQ4MzkyZTNmNzM0YjhkNGMy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 552b883f-23ef-b94d-b548-f7e73b0063f4\r\n InProgress\r\n", + "ResponseBody": "\r\n 9be81ea2-fd7c-c284-8392-e3f734b8d4c2\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c5a54e6fecc9b33abe3cf1f73c599001" + "c904d8545f90c7178469a58066795fa8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:28:32 GMT" + "Mon, 13 Jul 2015 12:50:37 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/552b883f23efb94db548f7e73b0063f4", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzU1MmI4ODNmMjNlZmI5NGRiNTQ4ZjdlNzNiMDA2M2Y0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9be81ea2fd7cc2848392e3f734b8d4c2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzliZTgxZWEyZmQ3Y2MyODQ4MzkyZTNmNzM0YjhkNGMy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 552b883f-23ef-b94d-b548-f7e73b0063f4\r\n InProgress\r\n", + "ResponseBody": "\r\n 9be81ea2-fd7c-c284-8392-e3f734b8d4c2\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "0b06470ca426b49c8691dd791899a851" + "f3c62df4e710caa4adca4cc21b0b51e5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:03 GMT" + "Mon, 13 Jul 2015 12:51:08 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/552b883f23efb94db548f7e73b0063f4", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzU1MmI4ODNmMjNlZmI5NGRiNTQ4ZjdlNzNiMDA2M2Y0", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9be81ea2fd7cc2848392e3f734b8d4c2", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzliZTgxZWEyZmQ3Y2MyODQ4MzkyZTNmNzM0YjhkNGMy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 552b883f-23ef-b94d-b548-f7e73b0063f4\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 9be81ea2-fd7c-c284-8392-e3f734b8d4c2\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "0c5437b6151eb225b9b4bc9d28d9dd33" + "ffd17f32c0fbc7aeb26d63c5164f3d83" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:33 GMT" + "Mon, 13 Jul 2015 12:51:38 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14820" ], "x-ms-request-id": [ - "26275770-5825-4a31-aba2-72e09ff77118" + "0df17ce1-4eb7-4972-b1c2-0463f2a69727" ], "x-ms-correlation-request-id": [ - "26275770-5825-4a31-aba2-72e09ff77118" + "0df17ce1-4eb7-4972-b1c2-0463f2a69727" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112934Z:26275770-5825-4a31-aba2-72e09ff77118" + "WESTEUROPE:20150713T125140Z:0df17ce1-4eb7-4972-b1c2-0463f2a69727" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:34 GMT" + "Mon, 13 Jul 2015 12:51:39 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-request-id": [ - "ae0756bc-d162-4592-abe1-dc63801352aa" + "b7825d9d-a891-4262-aba5-908f6a3d7e55" ], "x-ms-correlation-request-id": [ - "ae0756bc-d162-4592-abe1-dc63801352aa" + "b7825d9d-a891-4262-aba5-908f6a3d7e55" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112936Z:ae0756bc-d162-4592-abe1-dc63801352aa" + "WESTEUROPE:20150713T125142Z:b7825d9d-a891-4262-aba5-908f6a3d7e55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:36 GMT" + "Mon, 13 Jul 2015 12:51:41 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:29:37.5975083Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"b91198c4-29ef-4985-a2b1-452ad7d8f923\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:51:42.7299831Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"c05a9838-dcaa-45ad-9bc2-42ff0dfb1e2d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-request-id": [ - "b91198c4-29ef-4985-a2b1-452ad7d8f923" + "c05a9838-dcaa-45ad-9bc2-42ff0dfb1e2d" ], "x-ms-correlation-request-id": [ - "b91198c4-29ef-4985-a2b1-452ad7d8f923" + "c05a9838-dcaa-45ad-9bc2-42ff0dfb1e2d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112937Z:b91198c4-29ef-4985-a2b1-452ad7d8f923" + "WESTEUROPE:20150713T125142Z:c05a9838-dcaa-45ad-9bc2-42ff0dfb1e2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:37 GMT" + "Mon, 13 Jul 2015 12:51:42 GMT" ] }, "StatusCode": 200 @@ -345,10 +345,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:29:39.4850775Z\",\r\n \"duration\": \"PT1.1189185S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:51:44.836558Z\",\r\n \"duration\": \"PT1.2150674S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-request-id": [ - "02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd" + "3e3ddea1-a688-40c7-a7a6-b703c7e82891" ], "x-ms-correlation-request-id": [ - "02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd" + "3e3ddea1-a688-40c7-a7a6-b703c7e82891" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112939Z:02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd" + "WESTEUROPE:20150713T125145Z:3e3ddea1-a688-40c7-a7a6-b703c7e82891" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:39 GMT" + "Mon, 13 Jul 2015 12:51:44 GMT" ] }, "StatusCode": 201 @@ -408,64 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], - "x-ms-request-id": [ - "67cfad5c-e595-4d96-ab69-e6df9aba69b4" - ], - "x-ms-correlation-request-id": [ - "67cfad5c-e595-4d96-ab69-e6df9aba69b4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112940Z:67cfad5c-e595-4d96-ab69-e6df9aba69b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:29:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzYwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14819" ], "x-ms-request-id": [ - "691601c3-14a1-4b11-a07b-eed892c8154c" + "298d2e8b-fe22-4fae-8f11-144c1329e001" ], "x-ms-correlation-request-id": [ - "691601c3-14a1-4b11-a07b-eed892c8154c" + "298d2e8b-fe22-4fae-8f11-144c1329e001" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112943Z:691601c3-14a1-4b11-a07b-eed892c8154c" + "WESTEUROPE:20150713T125145Z:298d2e8b-fe22-4fae-8f11-144c1329e001" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:43 GMT" + "Mon, 13 Jul 2015 12:51:45 GMT" ] }, "StatusCode": 200 @@ -504,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14817" ], "x-ms-request-id": [ - "e271b11b-8216-49d1-a3fc-4ed4e385dfb1" + "48b611ad-653b-4868-8949-5747a36b2934" ], "x-ms-correlation-request-id": [ - "e271b11b-8216-49d1-a3fc-4ed4e385dfb1" + "48b611ad-653b-4868-8949-5747a36b2934" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112946Z:e271b11b-8216-49d1-a3fc-4ed4e385dfb1" + "WESTEUROPE:20150713T125148Z:48b611ad-653b-4868-8949-5747a36b2934" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:46 GMT" + "Mon, 13 Jul 2015 12:51:48 GMT" ] }, "StatusCode": 200 @@ -552,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14815" ], "x-ms-request-id": [ - "877c1634-a9df-4c54-a6d5-6cdb65c0d4ef" + "b9f85221-845a-4244-be0a-76f6eb458662" ], "x-ms-correlation-request-id": [ - "877c1634-a9df-4c54-a6d5-6cdb65c0d4ef" + "b9f85221-845a-4244-be0a-76f6eb458662" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112949Z:877c1634-a9df-4c54-a6d5-6cdb65c0d4ef" + "WESTEUROPE:20150713T125152Z:b9f85221-845a-4244-be0a-76f6eb458662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:49 GMT" + "Mon, 13 Jul 2015 12:51:51 GMT" ] }, "StatusCode": 200 @@ -585,10 +537,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:51:54.5983289Z\",\r\n \"duration\": \"PT8.7162835S\",\r\n \"trackingId\": \"bd492414-6f68-485d-8c5d-4c5faf9f44a9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14813" ], "x-ms-request-id": [ - "b726142b-e5ad-48e9-aaa4-e01d14ec0f1b" + "3f44854f-24fb-483d-819c-fe87aa624703" ], "x-ms-correlation-request-id": [ - "b726142b-e5ad-48e9-aaa4-e01d14ec0f1b" + "3f44854f-24fb-483d-819c-fe87aa624703" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112952Z:b726142b-e5ad-48e9-aaa4-e01d14ec0f1b" + "WESTEUROPE:20150713T125155Z:3f44854f-24fb-483d-819c-fe87aa624703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:52 GMT" + "Mon, 13 Jul 2015 12:51:54 GMT" ] }, "StatusCode": 200 @@ -633,10 +585,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:29:53.5524391Z\",\r\n \"duration\": \"PT12.0247658S\",\r\n \"trackingId\": \"d209b0d8-94be-44c6-bb94-8e532208e478\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:51:54.5983289Z\",\r\n \"duration\": \"PT8.7162835S\",\r\n \"trackingId\": \"bd492414-6f68-485d-8c5d-4c5faf9f44a9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14811" ], "x-ms-request-id": [ - "d4225ca4-7b8c-4a44-9c25-641a0d4533b3" + "905660cb-2fd3-40d9-b7fa-4517913d2d76" ], "x-ms-correlation-request-id": [ - "d4225ca4-7b8c-4a44-9c25-641a0d4533b3" + "905660cb-2fd3-40d9-b7fa-4517913d2d76" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112955Z:d4225ca4-7b8c-4a44-9c25-641a0d4533b3" + "WESTEUROPE:20150713T125158Z:905660cb-2fd3-40d9-b7fa-4517913d2d76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:55 GMT" + "Mon, 13 Jul 2015 12:51:57 GMT" ] }, "StatusCode": 200 @@ -681,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:29:53.5524391Z\",\r\n \"duration\": \"PT12.0247658S\",\r\n \"trackingId\": \"d209b0d8-94be-44c6-bb94-8e532208e478\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:51:54.5983289Z\",\r\n \"duration\": \"PT8.7162835S\",\r\n \"trackingId\": \"bd492414-6f68-485d-8c5d-4c5faf9f44a9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14808" ], "x-ms-request-id": [ - "b92dd9d9-ec97-488f-a479-2bfdfdd78447" + "b93718b6-7718-4e7d-a6db-6ccaa6ec48e4" ], "x-ms-correlation-request-id": [ - "b92dd9d9-ec97-488f-a479-2bfdfdd78447" + "b93718b6-7718-4e7d-a6db-6ccaa6ec48e4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112958Z:b92dd9d9-ec97-488f-a479-2bfdfdd78447" + "WESTEUROPE:20150713T125201Z:b93718b6-7718-4e7d-a6db-6ccaa6ec48e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:57 GMT" + "Mon, 13 Jul 2015 12:52:00 GMT" ] }, "StatusCode": 200 @@ -729,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:29:53.5524391Z\",\r\n \"duration\": \"PT12.0247658S\",\r\n \"trackingId\": \"d209b0d8-94be-44c6-bb94-8e532208e478\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:51:54.5983289Z\",\r\n \"duration\": \"PT8.7162835S\",\r\n \"trackingId\": \"bd492414-6f68-485d-8c5d-4c5faf9f44a9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14805" ], "x-ms-request-id": [ - "4a8c4ae1-fd63-49c6-be53-7d1fb21769c1" + "651e365c-1f50-49d0-bc19-215a54bed37b" ], "x-ms-correlation-request-id": [ - "4a8c4ae1-fd63-49c6-be53-7d1fb21769c1" + "651e365c-1f50-49d0-bc19-215a54bed37b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113001Z:4a8c4ae1-fd63-49c6-be53-7d1fb21769c1" + "WESTEUROPE:20150713T125204Z:651e365c-1f50-49d0-bc19-215a54bed37b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:00 GMT" + "Mon, 13 Jul 2015 12:52:03 GMT" ] }, "StatusCode": 200 @@ -777,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/575FAFDB90437210\",\r\n \"operationId\": \"575FAFDB90437210\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:30:04.125349Z\",\r\n \"duration\": \"PT9.8611665S\",\r\n \"trackingId\": \"5f0f1ea7-c11b-4b16-98b6-9e521626d1db\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:29:53.5524391Z\",\r\n \"duration\": \"PT12.0247658S\",\r\n \"trackingId\": \"d209b0d8-94be-44c6-bb94-8e532208e478\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/575FAFDB90437210\",\r\n \"operationId\": \"575FAFDB90437210\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:52:04.2084299Z\",\r\n \"duration\": \"PT8.2654541S\",\r\n \"trackingId\": \"2637939b-a750-4763-958c-c2377426e794\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:51:54.5983289Z\",\r\n \"duration\": \"PT8.7162835S\",\r\n \"trackingId\": \"bd492414-6f68-485d-8c5d-4c5faf9f44a9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -792,160 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" - ], - "x-ms-request-id": [ - "48a2a7a3-e03e-4e8a-a4e6-9d8602fd34f2" - ], - "x-ms-correlation-request-id": [ - "48a2a7a3-e03e-4e8a-a4e6-9d8602fd34f2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113004Z:48a2a7a3-e03e-4e8a-a4e6-9d8602fd34f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:30:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzYwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/575FAFDB90437210\",\r\n \"operationId\": \"575FAFDB90437210\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:30:04.125349Z\",\r\n \"duration\": \"PT9.8611665S\",\r\n \"trackingId\": \"5f0f1ea7-c11b-4b16-98b6-9e521626d1db\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup/operations/CC441065B89B7261\",\r\n \"operationId\": \"CC441065B89B7261\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:29:53.5524391Z\",\r\n \"duration\": \"PT12.0247658S\",\r\n \"trackingId\": \"d209b0d8-94be-44c6-bb94-8e532208e478\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1389" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" - ], - "x-ms-request-id": [ - "cba538d4-3f08-4d16-a755-99013ab0fe60" - ], - "x-ms-correlation-request-id": [ - "cba538d4-3f08-4d16-a755-99013ab0fe60" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113007Z:cba538d4-3f08-4d16-a755-99013ab0fe60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:30:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzYwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:29:39.4850775Z\",\r\n \"duration\": \"PT1.1189185S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1651" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" - ], - "x-ms-request-id": [ - "872c8e7c-0416-45a3-b54d-b529b900650d" - ], - "x-ms-correlation-request-id": [ - "872c8e7c-0416-45a3-b54d-b529b900650d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112941Z:872c8e7c-0416-45a3-b54d-b529b900650d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:29:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzYwMS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:29:40.9023901Z\",\r\n \"duration\": \"PT2.5362311S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14802" ], "x-ms-request-id": [ - "72aed9d1-649c-46ce-be6f-0a7983bd0312" + "4a352ab0-b77a-43cb-8629-2cf5da7eff4f" ], "x-ms-correlation-request-id": [ - "72aed9d1-649c-46ce-be6f-0a7983bd0312" + "4a352ab0-b77a-43cb-8629-2cf5da7eff4f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112944Z:72aed9d1-649c-46ce-be6f-0a7983bd0312" + "WESTEUROPE:20150713T125207Z:4a352ab0-b77a-43cb-8629-2cf5da7eff4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:43 GMT" + "Mon, 13 Jul 2015 12:52:06 GMT" ] }, "StatusCode": 200 @@ -969,10 +777,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:29:40.9023901Z\",\r\n \"duration\": \"PT2.5362311S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:51:45.425153Z\",\r\n \"duration\": \"PT1.8036624S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14818" ], "x-ms-request-id": [ - "abc3a832-1a2a-42b1-997b-9f7f46ef810a" + "c95836f8-39c8-4b03-8bf7-56e2614625ea" ], "x-ms-correlation-request-id": [ - "abc3a832-1a2a-42b1-997b-9f7f46ef810a" + "c95836f8-39c8-4b03-8bf7-56e2614625ea" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112947Z:abc3a832-1a2a-42b1-997b-9f7f46ef810a" + "WESTEUROPE:20150713T125146Z:c95836f8-39c8-4b03-8bf7-56e2614625ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:46 GMT" + "Mon, 13 Jul 2015 12:51:45 GMT" ] }, "StatusCode": 200 @@ -1017,10 +825,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:29:40.9023901Z\",\r\n \"duration\": \"PT2.5362311S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:51:45.425153Z\",\r\n \"duration\": \"PT1.8036624S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14816" ], "x-ms-request-id": [ - "0ce0ea41-4228-4a26-af43-2ff15b9e22e6" + "b7a2ae57-f281-492d-a63f-b6f96bf7876f" ], "x-ms-correlation-request-id": [ - "0ce0ea41-4228-4a26-af43-2ff15b9e22e6" + "b7a2ae57-f281-492d-a63f-b6f96bf7876f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112950Z:0ce0ea41-4228-4a26-af43-2ff15b9e22e6" + "WESTEUROPE:20150713T125149Z:b7a2ae57-f281-492d-a63f-b6f96bf7876f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:49 GMT" + "Mon, 13 Jul 2015 12:51:48 GMT" ] }, "StatusCode": 200 @@ -1065,10 +873,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:29:40.9023901Z\",\r\n \"duration\": \"PT2.5362311S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:51:45.425153Z\",\r\n \"duration\": \"PT1.8036624S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1080,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14814" ], "x-ms-request-id": [ - "2bae6cc8-8edb-4cb7-94b8-abcdbb0623b2" + "4991ef9e-bb75-4cef-877d-0988ffa7cc61" ], "x-ms-correlation-request-id": [ - "2bae6cc8-8edb-4cb7-94b8-abcdbb0623b2" + "4991ef9e-bb75-4cef-877d-0988ffa7cc61" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112953Z:2bae6cc8-8edb-4cb7-94b8-abcdbb0623b2" + "WESTEUROPE:20150713T125152Z:4991ef9e-bb75-4cef-877d-0988ffa7cc61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:52 GMT" + "Mon, 13 Jul 2015 12:51:52 GMT" ] }, "StatusCode": 200 @@ -1113,10 +921,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:29:40.9023901Z\",\r\n \"duration\": \"PT2.5362311S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:51:45.425153Z\",\r\n \"duration\": \"PT1.8036624S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1128,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14812" ], "x-ms-request-id": [ - "0a7be2d9-fa4d-4577-9c59-d19ee1332df5" + "82664e3d-fe99-48e9-bcc6-3dec254218ee" ], "x-ms-correlation-request-id": [ - "0a7be2d9-fa4d-4577-9c59-d19ee1332df5" + "82664e3d-fe99-48e9-bcc6-3dec254218ee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112956Z:0a7be2d9-fa4d-4577-9c59-d19ee1332df5" + "WESTEUROPE:20150713T125155Z:82664e3d-fe99-48e9-bcc6-3dec254218ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:55 GMT" + "Mon, 13 Jul 2015 12:51:55 GMT" ] }, "StatusCode": 200 @@ -1161,10 +969,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:29:40.9023901Z\",\r\n \"duration\": \"PT2.5362311S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:51:45.425153Z\",\r\n \"duration\": \"PT1.8036624S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1176,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14810" ], "x-ms-request-id": [ - "2626f532-8002-4927-b923-2e76e2b75d04" + "b6af9cef-664b-4975-94e3-cecbc3c3c004" ], "x-ms-correlation-request-id": [ - "2626f532-8002-4927-b923-2e76e2b75d04" + "b6af9cef-664b-4975-94e3-cecbc3c3c004" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T112959Z:2626f532-8002-4927-b923-2e76e2b75d04" + "WESTEUROPE:20150713T125158Z:b6af9cef-664b-4975-94e3-cecbc3c3c004" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:29:58 GMT" + "Mon, 13 Jul 2015 12:51:58 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1017,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:29:40.9023901Z\",\r\n \"duration\": \"PT2.5362311S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:51:45.425153Z\",\r\n \"duration\": \"PT1.8036624S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14807" ], "x-ms-request-id": [ - "c19cc4a4-1576-4de8-b620-12079ee4c02e" + "1dcb07ef-0219-4e9e-91d0-a475af88b3c9" ], "x-ms-correlation-request-id": [ - "c19cc4a4-1576-4de8-b620-12079ee4c02e" + "1dcb07ef-0219-4e9e-91d0-a475af88b3c9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113002Z:c19cc4a4-1576-4de8-b620-12079ee4c02e" + "WESTEUROPE:20150713T125201Z:1dcb07ef-0219-4e9e-91d0-a475af88b3c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:01 GMT" + "Mon, 13 Jul 2015 12:52:00 GMT" ] }, "StatusCode": 200 @@ -1257,10 +1065,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:29:40.9023901Z\",\r\n \"duration\": \"PT2.5362311S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:51:45.425153Z\",\r\n \"duration\": \"PT1.8036624S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1649" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1272,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14804" ], "x-ms-request-id": [ - "f1e01359-1267-478b-982c-944c8ab829e5" + "c579a028-b908-4494-ac68-9268995d9db0" ], "x-ms-correlation-request-id": [ - "f1e01359-1267-478b-982c-944c8ab829e5" + "c579a028-b908-4494-ac68-9268995d9db0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113005Z:f1e01359-1267-478b-982c-944c8ab829e5" + "WESTEUROPE:20150713T125204Z:c579a028-b908-4494-ac68-9268995d9db0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:04 GMT" + "Mon, 13 Jul 2015 12:52:04 GMT" ] }, "StatusCode": 200 @@ -1305,10 +1113,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:30:07.6030455Z\",\r\n \"duration\": \"PT29.2368865S\",\r\n \"correlationId\": \"02c9f887-f2cd-45ee-bb1e-08f3c0ff69cd\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db601\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server601\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:52:04.5550742Z\",\r\n \"duration\": \"PT20.9335836S\",\r\n \"correlationId\": \"3e3ddea1-a688-40c7-a7a6-b703c7e82891\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server601/sql-audit-cmdlet-db601\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server601\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server601/databases/sql-audit-cmdlet-db601\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1320,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14801" ], "x-ms-request-id": [ - "92db1ce1-a144-4a87-bcec-a9a42fa77b43" + "1d48442f-a0b5-42d8-aedc-41c99ef01428" ], "x-ms-correlation-request-id": [ - "92db1ce1-a144-4a87-bcec-a9a42fa77b43" + "1d48442f-a0b5-42d8-aedc-41c99ef01428" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113008Z:92db1ce1-a144-4a87-bcec-a9a42fa77b43" + "WESTEUROPE:20150713T125207Z:1d48442f-a0b5-42d8-aedc-41c99ef01428" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:07 GMT" + "Mon, 13 Jul 2015 12:52:07 GMT" ] }, "StatusCode": 200 @@ -1368,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14800" ], "x-ms-request-id": [ - "b2f5ece1-aea4-48af-8f08-057a608a7337" + "3560807f-6aa4-4346-b82e-46c14da20cef" ], "x-ms-correlation-request-id": [ - "b2f5ece1-aea4-48af-8f08-057a608a7337" + "3560807f-6aa4-4346-b82e-46c14da20cef" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113010Z:b2f5ece1-aea4-48af-8f08-057a608a7337" + "WESTEUROPE:20150713T125210Z:3560807f-6aa4-4346-b82e-46c14da20cef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:09 GMT" + "Mon, 13 Jul 2015 12:52:09 GMT" ] }, "StatusCode": 200 @@ -1419,16 +1227,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:da66d119-a15c-49ce-9718-2b618e0a019c" + "westeurope:b7a2583e-f9a4-4f93-b9d4-1e12349905bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14892" ], "x-ms-correlation-request-id": [ - "ddccc87b-6c9d-4f43-950c-4fcfdb0f7252" + "1e63427a-e160-44fb-8d93-2115c0c8f743" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113011Z:ddccc87b-6c9d-4f43-950c-4fcfdb0f7252" + "WESTEUROPE:20150713T125211Z:1e63427a-e160-44fb-8d93-2115c0c8f743" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1245,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:11 GMT" + "Mon, 13 Jul 2015 12:52:10 GMT" ] }, "StatusCode": 200 @@ -1452,19 +1260,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fc189800-7a5c-40af-9c84-e66fe59f16d8" + "63f52771-6002-4260-95b6-3c58b32e4ec6" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "807" + "710" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5e710211-75ef-432e-b317-03a63889def1" + "4f0599fe-8455-4cf9-8c90-d75c05ce58ed" ], "X-Content-Type-Options": [ "nosniff" @@ -1473,13 +1281,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14883" ], "x-ms-correlation-request-id": [ - "8edf1033-77f6-450d-960f-3c58026d6405" + "b4c3fec0-e59f-452c-9779-912a5563779b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113014Z:8edf1033-77f6-450d-960f-3c58026d6405" + "WESTEUROPE:20150713T125213Z:b4c3fec0-e59f-452c-9779-912a5563779b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1296,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:13 GMT" + "Mon, 13 Jul 2015 12:52:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1506,7 +1314,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fe30e0a1-2433-4212-a933-e6d29db807b6" + "3db80609-2d7f-4fec-b251-6c5431c05147" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1518,7 +1326,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3d30c1d9-1d36-4f78-978d-849db85d4d3e" + "ca570c3c-43d4-4add-91ce-62f6c479344b" ], "X-Content-Type-Options": [ "nosniff" @@ -1527,13 +1335,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14882" ], "x-ms-correlation-request-id": [ - "07898af9-e8a8-4bee-8498-4fff1356d2b9" + "1ec9844b-c980-4ebe-894f-12c2e992d11c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113019Z:07898af9-e8a8-4bee-8498-4fff1356d2b9" + "WESTEUROPE:20150713T125217Z:1ec9844b-c980-4ebe-894f-12c2e992d11c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1542,7 +1350,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:18 GMT" + "Mon, 13 Jul 2015 12:52:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1560,7 +1368,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "42f9a99a-ae2b-4b5f-a8f6-a653aa5e0e59" + "c5363617-219a-401e-9877-5e175f8249a6" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1572,7 +1380,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "61efd3ea-022f-4eff-b1f6-80908defc319" + "2cc03d5b-6d37-41d3-9262-1afc1be7f782" ], "X-Content-Type-Options": [ "nosniff" @@ -1581,13 +1389,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14881" ], "x-ms-correlation-request-id": [ - "5d26708e-d7c3-4517-a7a0-43d242b10aa5" + "186ba823-6b00-4f5e-ae0d-743993e57b7c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113020Z:5d26708e-d7c3-4517-a7a0-43d242b10aa5" + "WESTEUROPE:20150713T125219Z:186ba823-6b00-4f5e-ae0d-743993e57b7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1404,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:19 GMT" + "Mon, 13 Jul 2015 12:52:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1614,7 +1422,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9a80a0a8-1f37-4d03-9392-f3b006ba945d" + "a286178f-96fd-4979-9735-c9f27d1377e4" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1626,7 +1434,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ab019aab-7514-49d7-92db-3b2a0faf41f0" + "be35cfd0-f822-4f8f-89a6-1ec19461b0bf" ], "X-Content-Type-Options": [ "nosniff" @@ -1635,13 +1443,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14880" ], "x-ms-correlation-request-id": [ - "1ff7bfa0-6c62-40b8-bad8-e66cd2ad49a3" + "861aa91c-f39e-4a6a-8cc8-0d958168e53d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113024Z:1ff7bfa0-6c62-40b8-bad8-e66cd2ad49a3" + "WESTEUROPE:20150713T125225Z:861aa91c-f39e-4a6a-8cc8-0d958168e53d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1650,7 +1458,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:23 GMT" + "Mon, 13 Jul 2015 12:52:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1668,7 +1476,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a6fc87c2-fad2-469f-9899-4815e7cedd79" + "a448c316-3559-4669-b4b2-ac72881706e9" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1680,7 +1488,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "44ada61f-f4d1-4488-a71d-01ddf3528618" + "760b79a3-c50a-4cb1-b81d-68ca556894bb" ], "X-Content-Type-Options": [ "nosniff" @@ -1689,13 +1497,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14879" ], "x-ms-correlation-request-id": [ - "f108b47d-4022-4c5c-a0ff-6729066298a7" + "fd127413-9275-4e58-b9f5-f9f17dd2aa77" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113025Z:f108b47d-4022-4c5c-a0ff-6729066298a7" + "WESTEUROPE:20150713T125227Z:fd127413-9275-4e58-b9f5-f9f17dd2aa77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,7 +1512,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:24 GMT" + "Mon, 13 Jul 2015 12:52:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1722,7 +1530,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "25da6775-5ecc-48c9-9a57-2a064453e6dd" + "82c4977c-4293-4449-9e00-4ce2341a870b" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1734,7 +1542,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "39e30702-40a0-4395-b46a-7f0b22c91f76" + "d3a6e649-1a5d-497c-bb13-55a5c7da5d15" ], "X-Content-Type-Options": [ "nosniff" @@ -1743,13 +1551,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14878" ], "x-ms-correlation-request-id": [ - "b977858c-e88f-442c-b44e-2dac47db0ee8" + "a949430e-9a0e-4871-92a4-c841f9810d8c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113029Z:b977858c-e88f-442c-b44e-2dac47db0ee8" + "WESTEUROPE:20150713T125230Z:a949430e-9a0e-4871-92a4-c841f9810d8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1758,7 +1566,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:28 GMT" + "Mon, 13 Jul 2015 12:52:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1766,95 +1574,6 @@ }, "StatusCode": 200 }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets601\",\r\n \"name\": \"auditcmdlets601\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3799" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" - ], - "x-ms-request-id": [ - "8525c01c-eecd-4d67-a4f7-57369a1fb834" - ], - "x-ms-correlation-request-id": [ - "8525c01c-eecd-4d67-a4f7-57369a1fb834" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113014Z:8525c01c-eecd-4d67-a4f7-57369a1fb834" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:30:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets601", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzNjAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets601\r\n auditcmdlets601\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets601.blob.core.windows.net/\r\n https://auditcmdlets601.queue.core.windows.net/\r\n https://auditcmdlets601.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T11:28:32Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1281" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "8a2398ba0235b2c7b030939fe29edc82" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:30:13 GMT" - ], - "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets601/listKeys?api-version=2014-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXVkaXRjbWRsZXRzNjAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTQtMDYtMDE=", @@ -1868,7 +1587,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"secondaryKey\": \"Pstb8wvd5Xwvcxy+4GSke++bIGcz+HOGLrFafzk8HOrY6GdHbHyJvmXHomca/M9KMUhL7OriHaCuHUt8SqbDxA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"secondaryKey\": \"6ByxiH38ie1JiPdTxK+Zz7EVrwEH2AAIFKdHRa7MLmCzQ2Z//lt6jDT0SE+P7fgZJGnFFx2PPHgNil12Jw9YdA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1886,16 +1605,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:1f72c00b-714f-4a3f-8846-a9de756d0fc0" + "southcentralus:e0b25f49-c503-4e48-b52e-7e9f8a5889e1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1183" ], "x-ms-correlation-request-id": [ - "9abb8bb7-f268-4d2d-8600-a681b0809151" + "54ee1458-9767-4529-bf60-e387c19d59cf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113016Z:9abb8bb7-f268-4d2d-8600-a681b0809151" + "WESTEUROPE:20150713T125214Z:54ee1458-9767-4529-bf60-e387c19d59cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1904,7 +1623,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:15 GMT" + "Mon, 13 Jul 2015 12:52:13 GMT" ] }, "StatusCode": 200 @@ -1922,7 +1641,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"secondaryKey\": \"Pstb8wvd5Xwvcxy+4GSke++bIGcz+HOGLrFafzk8HOrY6GdHbHyJvmXHomca/M9KMUhL7OriHaCuHUt8SqbDxA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"secondaryKey\": \"6ByxiH38ie1JiPdTxK+Zz7EVrwEH2AAIFKdHRa7MLmCzQ2Z//lt6jDT0SE+P7fgZJGnFFx2PPHgNil12Jw9YdA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1940,16 +1659,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:3a25dee9-b430-4066-8423-58f3d4c2c394" + "southcentralus:69914615-e697-4cb8-bf67-73946d25ace0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1181" ], "x-ms-correlation-request-id": [ - "3ce48f72-0c36-4923-a5a0-7ffebc3f0b07" + "9eac8539-793c-4503-ac59-0e95f03da8b9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113021Z:3ce48f72-0c36-4923-a5a0-7ffebc3f0b07" + "WESTEUROPE:20150713T125219Z:9eac8539-793c-4503-ac59-0e95f03da8b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1958,7 +1677,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:20 GMT" + "Mon, 13 Jul 2015 12:52:18 GMT" ] }, "StatusCode": 200 @@ -1976,7 +1695,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"secondaryKey\": \"Pstb8wvd5Xwvcxy+4GSke++bIGcz+HOGLrFafzk8HOrY6GdHbHyJvmXHomca/M9KMUhL7OriHaCuHUt8SqbDxA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"secondaryKey\": \"6ByxiH38ie1JiPdTxK+Zz7EVrwEH2AAIFKdHRa7MLmCzQ2Z//lt6jDT0SE+P7fgZJGnFFx2PPHgNil12Jw9YdA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1994,16 +1713,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:f26ff6fd-d138-4af4-8bad-5d709e8ffdc6" + "southcentralus:1a151493-0dfa-4aed-83b0-4ceb2dccb4d4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1179" ], "x-ms-correlation-request-id": [ - "3962ff99-33a6-4e44-b22a-e1f9f6825e1d" + "03003910-dae0-4b1a-a5ca-b63a84a9c358" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113026Z:3962ff99-33a6-4e44-b22a-e1f9f6825e1d" + "WESTEUROPE:20150713T125227Z:03003910-dae0-4b1a-a5ca-b63a84a9c358" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2012,7 +1731,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:25 GMT" + "Mon, 13 Jul 2015 12:52:27 GMT" ] }, "StatusCode": 200 @@ -2021,7 +1740,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"storageAccountKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"storageAccountKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2033,10 +1752,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fc189800-7a5c-40af-9c84-e66fe59f16d8" + "63f52771-6002-4260-95b6-3c58b32e4ec6" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -2045,7 +1764,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f24b05b8-47b4-402e-bcfb-5a9cd2582ce7" + "16c3e666-c56f-4958-854c-f971d77756fe" ], "X-Content-Type-Options": [ "nosniff" @@ -2057,13 +1776,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1182" ], "x-ms-correlation-request-id": [ - "04171e88-7791-4a77-9378-a08844095cfb" + "d843b586-6a8a-4099-b5c0-071197f66f01" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113017Z:04171e88-7791-4a77-9378-a08844095cfb" + "WESTEUROPE:20150713T125216Z:d843b586-6a8a-4099-b5c0-071197f66f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2072,7 +1791,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:17 GMT" + "Mon, 13 Jul 2015 12:52:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2084,7 +1803,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"storageAccountKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"storageAccountKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2096,10 +1815,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "42f9a99a-ae2b-4b5f-a8f6-a653aa5e0e59" + "c5363617-219a-401e-9877-5e175f8249a6" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,ParameterizedSQL_Success,ParameterizedSQL_Failure\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "851" @@ -2108,7 +1827,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a4e95a1c-82fe-4466-aa1b-c0c7decd0cc1" + "5e3b2ee8-ca8e-40a6-a92f-05beeb0db231" ], "X-Content-Type-Options": [ "nosniff" @@ -2120,13 +1839,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1180" ], "x-ms-correlation-request-id": [ - "9d3d8877-d27f-4a72-9bbd-f4638b836acf" + "428e68f8-17de-4e7c-8c57-11f0be9fdd5f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113022Z:9d3d8877-d27f-4a72-9bbd-f4638b836acf" + "WESTEUROPE:20150713T125223Z:428e68f8-17de-4e7c-8c57-11f0be9fdd5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2135,7 +1854,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:22 GMT" + "Mon, 13 Jul 2015 12:52:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2147,7 +1866,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyNjAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"storageAccountKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"storageAccountKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2159,10 +1878,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a6fc87c2-fad2-469f-9899-4815e7cedd79" + "a448c316-3559-4669-b4b2-ac72881706e9" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"GRn7if3LJFT25iK6WRN73KTzMLdAT9lZqnmWJhxpJEtgk+tHPujl5QZOzBCj8NHcp81TyHylN3900guHg0i/zA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg601/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server601/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets601\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver601\",\r\n \"storageAccountKey\": \"d3oEAn+6+sO5rgwrBG0bvjUo5B97z5t7sseSqh25iWV0WYgdz19FF+m9G/+fwSlDAvpLm9vRtZiF2OUEE3M/5Q==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets601.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "785" @@ -2171,7 +1890,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "29ee0b45-7461-45e4-946b-7dc08038e21a" + "624d2b01-a475-426a-b73f-ffb8e625652d" ], "X-Content-Type-Options": [ "nosniff" @@ -2183,13 +1902,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1178" ], "x-ms-correlation-request-id": [ - "771987dc-5191-4909-aebe-59e64e7f12a8" + "131bba08-409b-4c0b-85c5-d1f35ac5b925" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113027Z:771987dc-5191-4909-aebe-59e64e7f12a8" + "WESTEUROPE:20150713T125229Z:131bba08-409b-4c0b-85c5-d1f35ac5b925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2198,7 +1917,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:27 GMT" + "Mon, 13 Jul 2015 12:52:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2228,13 +1947,13 @@ "ussouth3" ], "x-ms-request-id": [ - "e37f0ebbdc88bc34a77272dd575ade1f" + "af19a783fd37c2869086579894aa9f99" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:34 GMT" + "Mon, 13 Jul 2015 12:52:33 GMT" ], "Server": [ "1.0.6198.243", @@ -2245,8 +1964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/e37f0ebbdc88bc34a77272dd575ade1f", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2UzN2YwZWJiZGM4OGJjMzRhNzcyNzJkZDU3NWFkZTFm", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/af19a783fd37c2869086579894aa9f99", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2FmMTlhNzgzZmQzN2MyODY5MDg2NTc5ODk0YWE5Zjk5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2257,7 +1976,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n e37f0ebb-dc88-bc34-a772-72dd575ade1f\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n af19a783-fd37-c286-9086-579894aa9f99\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2269,13 +1988,13 @@ "ussouth3" ], "x-ms-request-id": [ - "6e44696d650ebfb7ad3cccbfe1f08bfe" + "75e9d9a36151cd8db86c574fdfce1628" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:30:35 GMT" + "Mon, 13 Jul 2015 12:52:34 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithRetention.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithRetention.json index 08b5e2ea2a86..43fb3d933d92 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithRetention.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithRetention.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "d0b67114544eb373b6aa5b1868fe46bf" + "7a696097ef16cdcca33bd759c3d02380" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:31:51 GMT" + "Mon, 13 Jul 2015 12:58:59 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets202" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d0b67114544eb373b6aa5b1868fe46bf", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2QwYjY3MTE0NTQ0ZWIzNzNiNmFhNWIxODY4ZmU0NmJm", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7a696097ef16cdcca33bd759c3d02380", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdhNjk2MDk3ZWYxNmNkY2NhMzNiZDc1OWMzZDAyMzgw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n d0b67114-544e-b373-b6aa-5b1868fe46bf\r\n InProgress\r\n", + "ResponseBody": "\r\n 7a696097-ef16-cdcc-a33b-d759c3d02380\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "41b40de33898bea495ced14f722b3992" + "eeb15607acd9c7498ac83abe4d35ca67" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:31:51 GMT" + "Mon, 13 Jul 2015 12:58:59 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d0b67114544eb373b6aa5b1868fe46bf", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2QwYjY3MTE0NTQ0ZWIzNzNiNmFhNWIxODY4ZmU0NmJm", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7a696097ef16cdcca33bd759c3d02380", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdhNjk2MDk3ZWYxNmNkY2NhMzNiZDc1OWMzZDAyMzgw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n d0b67114-544e-b373-b6aa-5b1868fe46bf\r\n InProgress\r\n", + "ResponseBody": "\r\n 7a696097-ef16-cdcc-a33b-d759c3d02380\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "4e81245245e3beae9acbdd2e573238be" + "c4990a586566cb3284c94ef0478e5606" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:32:22 GMT" + "Mon, 13 Jul 2015 12:59:30 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/d0b67114544eb373b6aa5b1868fe46bf", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2QwYjY3MTE0NTQ0ZWIzNzNiNmFhNWIxODY4ZmU0NmJm", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/7a696097ef16cdcca33bd759c3d02380", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzdhNjk2MDk3ZWYxNmNkY2NhMzNiZDc1OWMzZDAyMzgw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n d0b67114-544e-b373-b6aa-5b1868fe46bf\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 7a696097-ef16-cdcc-a33b-d759c3d02380\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "9fd6d3a19fd5b11284969790da251cc9" + "61dc72501c3dc31781ae087a14f0fbe0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:32:52 GMT" + "Mon, 13 Jul 2015 13:00:00 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14878" ], "x-ms-request-id": [ - "8e998beb-7d82-4418-9051-911cb57fe1ee" + "e367270a-a945-4899-bf68-b824721d943e" ], "x-ms-correlation-request-id": [ - "8e998beb-7d82-4418-9051-911cb57fe1ee" + "e367270a-a945-4899-bf68-b824721d943e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113254Z:8e998beb-7d82-4418-9051-911cb57fe1ee" + "WESTEUROPE:20150713T130002Z:e367270a-a945-4899-bf68-b824721d943e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:32:53 GMT" + "Mon, 13 Jul 2015 13:00:01 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-request-id": [ - "d6dc2af1-e9c3-42f0-9d83-519cdaf0b581" + "209e5136-3c70-4c8f-b09f-a07d2ddd8e1a" ], "x-ms-correlation-request-id": [ - "d6dc2af1-e9c3-42f0-9d83-519cdaf0b581" + "209e5136-3c70-4c8f-b09f-a07d2ddd8e1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113256Z:d6dc2af1-e9c3-42f0-9d83-519cdaf0b581" + "WESTEUROPE:20150713T130003Z:209e5136-3c70-4c8f-b09f-a07d2ddd8e1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:32:55 GMT" + "Mon, 13 Jul 2015 13:00:03 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:32:57.0207426Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"dc7b087a-63e5-492e-9f19-2f3dfca0f78e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T13:00:04.8599674Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"9cf03074-46aa-4f4d-873e-7f7e2b44d623\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-request-id": [ - "dc7b087a-63e5-492e-9f19-2f3dfca0f78e" + "9cf03074-46aa-4f4d-873e-7f7e2b44d623" ], "x-ms-correlation-request-id": [ - "dc7b087a-63e5-492e-9f19-2f3dfca0f78e" + "9cf03074-46aa-4f4d-873e-7f7e2b44d623" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113257Z:dc7b087a-63e5-492e-9f19-2f3dfca0f78e" + "WESTEUROPE:20150713T130004Z:9cf03074-46aa-4f4d-873e-7f7e2b44d623" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:32:56 GMT" + "Mon, 13 Jul 2015 13:00:04 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:32:58.8314483Z\",\r\n \"duration\": \"PT1.0983075S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T13:00:06.9888328Z\",\r\n \"duration\": \"PT1.2163718S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-request-id": [ - "50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3" + "79940534-434b-4b25-861d-e537638f3fe5" ], "x-ms-correlation-request-id": [ - "50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3" + "79940534-434b-4b25-861d-e537638f3fe5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113259Z:50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3" + "WESTEUROPE:20150713T130007Z:79940534-434b-4b25-861d-e537638f3fe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:32:58 GMT" + "Mon, 13 Jul 2015 13:00:07 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14877" ], "x-ms-request-id": [ - "93fd14f7-052a-4717-99d1-693fcb6d318a" + "a60f1c67-8080-4a06-9f98-847465bff1a2" ], "x-ms-correlation-request-id": [ - "93fd14f7-052a-4717-99d1-693fcb6d318a" + "a60f1c67-8080-4a06-9f98-847465bff1a2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113300Z:93fd14f7-052a-4717-99d1-693fcb6d318a" + "WESTEUROPE:20150713T130008Z:a60f1c67-8080-4a06-9f98-847465bff1a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:32:59 GMT" + "Mon, 13 Jul 2015 13:00:07 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14875" ], "x-ms-request-id": [ - "8223e6c6-b3c4-4419-b163-0ec0a76cd555" + "a94d84c5-928f-40d5-a6a7-d7714e1af26b" ], "x-ms-correlation-request-id": [ - "8223e6c6-b3c4-4419-b163-0ec0a76cd555" + "a94d84c5-928f-40d5-a6a7-d7714e1af26b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113303Z:8223e6c6-b3c4-4419-b163-0ec0a76cd555" + "WESTEUROPE:20150713T130011Z:a94d84c5-928f-40d5-a6a7-d7714e1af26b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:02 GMT" + "Mon, 13 Jul 2015 13:00:11 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14873" ], "x-ms-request-id": [ - "cccc1cfa-2c5b-46f4-8fbc-c9280470ba05" + "c4b0e3ef-11b6-4e73-8d5a-cea08ce662f6" ], "x-ms-correlation-request-id": [ - "cccc1cfa-2c5b-46f4-8fbc-c9280470ba05" + "c4b0e3ef-11b6-4e73-8d5a-cea08ce662f6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113306Z:cccc1cfa-2c5b-46f4-8fbc-c9280470ba05" + "WESTEUROPE:20150713T130014Z:c4b0e3ef-11b6-4e73-8d5a-cea08ce662f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:05 GMT" + "Mon, 13 Jul 2015 13:00:14 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14871" ], "x-ms-request-id": [ - "14c0b945-1e48-4ed9-86c4-b6070f82b042" + "207ea997-14b4-4962-97f5-beb749cc6e9d" ], "x-ms-correlation-request-id": [ - "14c0b945-1e48-4ed9-86c4-b6070f82b042" + "207ea997-14b4-4962-97f5-beb749cc6e9d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113309Z:14c0b945-1e48-4ed9-86c4-b6070f82b042" + "WESTEUROPE:20150713T130017Z:207ea997-14b4-4962-97f5-beb749cc6e9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:08 GMT" + "Mon, 13 Jul 2015 13:00:17 GMT" ] }, "StatusCode": 200 @@ -600,64 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" - ], - "x-ms-request-id": [ - "622289ee-9f98-4859-8ce3-4e1831cca233" - ], - "x-ms-correlation-request-id": [ - "622289ee-9f98-4859-8ce3-4e1831cca233" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113312Z:622289ee-9f98-4859-8ce3-4e1831cca233" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:33:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:33:12.3626151Z\",\r\n \"duration\": \"PT11.8275062S\",\r\n \"trackingId\": \"7ba5ba30-0ead-49d5-be21-84f1b674a7e9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14869" ], "x-ms-request-id": [ - "c6f036ab-9eb9-4345-98a2-7128cf95bb28" + "f3dff266-8585-4823-9a37-e564f74dd807" ], "x-ms-correlation-request-id": [ - "c6f036ab-9eb9-4345-98a2-7128cf95bb28" + "f3dff266-8585-4823-9a37-e564f74dd807" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113315Z:c6f036ab-9eb9-4345-98a2-7128cf95bb28" + "WESTEUROPE:20150713T130021Z:f3dff266-8585-4823-9a37-e564f74dd807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:14 GMT" + "Mon, 13 Jul 2015 13:00:20 GMT" ] }, "StatusCode": 200 @@ -681,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:33:12.3626151Z\",\r\n \"duration\": \"PT11.8275062S\",\r\n \"trackingId\": \"7ba5ba30-0ead-49d5-be21-84f1b674a7e9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:00:23.2617752Z\",\r\n \"duration\": \"PT15.281306S\",\r\n \"trackingId\": \"23af716a-5a0e-4af0-9e8a-1b06413c7638\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14867" ], "x-ms-request-id": [ - "81da6ded-4e0a-4d09-8813-3b1c2be66d66" + "aacb8c8a-59b2-44c4-9c5a-cc3d76eecd03" ], "x-ms-correlation-request-id": [ - "81da6ded-4e0a-4d09-8813-3b1c2be66d66" + "aacb8c8a-59b2-44c4-9c5a-cc3d76eecd03" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113318Z:81da6ded-4e0a-4d09-8813-3b1c2be66d66" + "WESTEUROPE:20150713T130024Z:aacb8c8a-59b2-44c4-9c5a-cc3d76eecd03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:17 GMT" + "Mon, 13 Jul 2015 13:00:24 GMT" ] }, "StatusCode": 200 @@ -729,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:33:12.3626151Z\",\r\n \"duration\": \"PT11.8275062S\",\r\n \"trackingId\": \"7ba5ba30-0ead-49d5-be21-84f1b674a7e9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:00:23.2617752Z\",\r\n \"duration\": \"PT15.281306S\",\r\n \"trackingId\": \"23af716a-5a0e-4af0-9e8a-1b06413c7638\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14865" ], "x-ms-request-id": [ - "c8b21209-2cf4-4d8f-9b30-05bd30ae64ac" + "f4730881-d0e9-4cd2-a466-2a915d411aad" ], "x-ms-correlation-request-id": [ - "c8b21209-2cf4-4d8f-9b30-05bd30ae64ac" + "f4730881-d0e9-4cd2-a466-2a915d411aad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113321Z:c8b21209-2cf4-4d8f-9b30-05bd30ae64ac" + "WESTEUROPE:20150713T130028Z:f4730881-d0e9-4cd2-a466-2a915d411aad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:21 GMT" + "Mon, 13 Jul 2015 13:00:27 GMT" ] }, "StatusCode": 200 @@ -777,10 +729,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/C9EF799E4CA2EE22\",\r\n \"operationId\": \"C9EF799E4CA2EE22\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:33:21.3343433Z\",\r\n \"duration\": \"PT8.425136S\",\r\n \"trackingId\": \"216ec54b-2b2b-4ce2-be2c-55817ad52d00\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:33:12.3626151Z\",\r\n \"duration\": \"PT11.8275062S\",\r\n \"trackingId\": \"7ba5ba30-0ead-49d5-be21-84f1b674a7e9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:00:23.2617752Z\",\r\n \"duration\": \"PT15.281306S\",\r\n \"trackingId\": \"23af716a-5a0e-4af0-9e8a-1b06413c7638\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14863" ], "x-ms-request-id": [ - "b270bd68-4826-482c-bb74-acae89cb448f" + "0c1218f8-64e8-43fe-a54a-d3874de91cf5" ], "x-ms-correlation-request-id": [ - "b270bd68-4826-482c-bb74-acae89cb448f" + "0c1218f8-64e8-43fe-a54a-d3874de91cf5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113324Z:b270bd68-4826-482c-bb74-acae89cb448f" + "WESTEUROPE:20150713T130031Z:0c1218f8-64e8-43fe-a54a-d3874de91cf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:24 GMT" + "Mon, 13 Jul 2015 13:00:30 GMT" ] }, "StatusCode": 200 @@ -825,7 +777,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/C9EF799E4CA2EE22\",\r\n \"operationId\": \"C9EF799E4CA2EE22\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:33:21.3343433Z\",\r\n \"duration\": \"PT8.425136S\",\r\n \"trackingId\": \"216ec54b-2b2b-4ce2-be2c-55817ad52d00\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:33:12.3626151Z\",\r\n \"duration\": \"PT11.8275062S\",\r\n \"trackingId\": \"7ba5ba30-0ead-49d5-be21-84f1b674a7e9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/C9EF799E4CA2EE22\",\r\n \"operationId\": \"C9EF799E4CA2EE22\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:00:32.0373045Z\",\r\n \"duration\": \"PT8.5605627S\",\r\n \"trackingId\": \"dc9e9d12-ad73-4ec8-81af-ed8edee614da\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup/operations/FDFD2123A1BE3064\",\r\n \"operationId\": \"FDFD2123A1BE3064\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:00:23.2617752Z\",\r\n \"duration\": \"PT15.281306S\",\r\n \"trackingId\": \"23af716a-5a0e-4af0-9e8a-1b06413c7638\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -840,64 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" - ], - "x-ms-request-id": [ - "767b7036-12c2-467f-9e55-d27445f00406" - ], - "x-ms-correlation-request-id": [ - "767b7036-12c2-467f-9e55-d27445f00406" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113327Z:767b7036-12c2-467f-9e55-d27445f00406" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:33:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14861" ], "x-ms-request-id": [ - "97f13789-ed0d-4395-97de-0ce3dfc0a6d6" + "bf1fde73-c6b0-44a5-a1c5-759f776bb672" ], "x-ms-correlation-request-id": [ - "97f13789-ed0d-4395-97de-0ce3dfc0a6d6" + "bf1fde73-c6b0-44a5-a1c5-759f776bb672" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113300Z:97f13789-ed0d-4395-97de-0ce3dfc0a6d6" + "WESTEUROPE:20150713T130035Z:bf1fde73-c6b0-44a5-a1c5-759f776bb672" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:00 GMT" + "Mon, 13 Jul 2015 13:00:34 GMT" ] }, "StatusCode": 200 @@ -921,7 +825,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:00:07.8193788Z\",\r\n \"duration\": \"PT2.0469178S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14876" ], "x-ms-request-id": [ - "feb58a51-f985-44d6-bfd0-0aa54a7ca421" + "83530712-0e7c-4557-a117-7fddcebd6d00" ], "x-ms-correlation-request-id": [ - "feb58a51-f985-44d6-bfd0-0aa54a7ca421" + "83530712-0e7c-4557-a117-7fddcebd6d00" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113303Z:feb58a51-f985-44d6-bfd0-0aa54a7ca421" + "WESTEUROPE:20150713T130008Z:83530712-0e7c-4557-a117-7fddcebd6d00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:02 GMT" + "Mon, 13 Jul 2015 13:00:08 GMT" ] }, "StatusCode": 200 @@ -969,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:00:07.8193788Z\",\r\n \"duration\": \"PT2.0469178S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14874" ], "x-ms-request-id": [ - "25890293-f458-4aca-ade4-6be3c96bd8f1" + "1a644728-2b1e-4de9-a558-9279781fd356" ], "x-ms-correlation-request-id": [ - "25890293-f458-4aca-ade4-6be3c96bd8f1" + "1a644728-2b1e-4de9-a558-9279781fd356" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113306Z:25890293-f458-4aca-ade4-6be3c96bd8f1" + "WESTEUROPE:20150713T130012Z:1a644728-2b1e-4de9-a558-9279781fd356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:05 GMT" + "Mon, 13 Jul 2015 13:00:11 GMT" ] }, "StatusCode": 200 @@ -1017,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:00:07.8193788Z\",\r\n \"duration\": \"PT2.0469178S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14872" ], "x-ms-request-id": [ - "e86200f3-8706-4d29-93b4-0e20ae46946a" + "cd13ff9e-7327-4e0e-ba2b-13f946a360ac" ], "x-ms-correlation-request-id": [ - "e86200f3-8706-4d29-93b4-0e20ae46946a" + "cd13ff9e-7327-4e0e-ba2b-13f946a360ac" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113309Z:e86200f3-8706-4d29-93b4-0e20ae46946a" + "WESTEUROPE:20150713T130015Z:cd13ff9e-7327-4e0e-ba2b-13f946a360ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:08 GMT" + "Mon, 13 Jul 2015 13:00:14 GMT" ] }, "StatusCode": 200 @@ -1065,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:00:07.8193788Z\",\r\n \"duration\": \"PT2.0469178S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "14870" ], "x-ms-request-id": [ - "171dac36-5112-48bf-b5d6-12621339a1f0" + "39d9a4e5-7e2b-468e-a9d8-978a37b436f4" ], "x-ms-correlation-request-id": [ - "171dac36-5112-48bf-b5d6-12621339a1f0" + "39d9a4e5-7e2b-468e-a9d8-978a37b436f4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113312Z:171dac36-5112-48bf-b5d6-12621339a1f0" + "WESTEUROPE:20150713T130018Z:39d9a4e5-7e2b-468e-a9d8-978a37b436f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:11 GMT" + "Mon, 13 Jul 2015 13:00:17 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:00:07.8193788Z\",\r\n \"duration\": \"PT2.0469178S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14868" ], "x-ms-request-id": [ - "4af2fca2-efe2-491e-875f-3b193941e67a" + "29a3fd25-c33b-4dce-99a6-e6f2f0208e60" ], "x-ms-correlation-request-id": [ - "4af2fca2-efe2-491e-875f-3b193941e67a" + "29a3fd25-c33b-4dce-99a6-e6f2f0208e60" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113315Z:4af2fca2-efe2-491e-875f-3b193941e67a" + "WESTEUROPE:20150713T130022Z:29a3fd25-c33b-4dce-99a6-e6f2f0208e60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:14 GMT" + "Mon, 13 Jul 2015 13:00:21 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:00:07.8193788Z\",\r\n \"duration\": \"PT2.0469178S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14866" ], "x-ms-request-id": [ - "7b33a978-036f-4f43-ab93-d2c4186e1210" + "fde335c4-c4b3-4818-a6e6-4955ddd0d606" ], "x-ms-correlation-request-id": [ - "7b33a978-036f-4f43-ab93-d2c4186e1210" + "fde335c4-c4b3-4818-a6e6-4955ddd0d606" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113318Z:7b33a978-036f-4f43-ab93-d2c4186e1210" + "WESTEUROPE:20150713T130025Z:fde335c4-c4b3-4818-a6e6-4955ddd0d606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:17 GMT" + "Mon, 13 Jul 2015 13:00:24 GMT" ] }, "StatusCode": 200 @@ -1209,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:00:07.8193788Z\",\r\n \"duration\": \"PT2.0469178S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1224,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14864" ], "x-ms-request-id": [ - "c7f50d5e-fc8e-40c1-95bf-8b635d5af4fa" + "e01a91e0-7f6c-46b2-bf2f-85cf497893db" ], "x-ms-correlation-request-id": [ - "c7f50d5e-fc8e-40c1-95bf-8b635d5af4fa" + "e01a91e0-7f6c-46b2-bf2f-85cf497893db" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113321Z:c7f50d5e-fc8e-40c1-95bf-8b635d5af4fa" + "WESTEUROPE:20150713T130028Z:e01a91e0-7f6c-46b2-bf2f-85cf497893db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:21 GMT" + "Mon, 13 Jul 2015 13:00:27 GMT" ] }, "StatusCode": 200 @@ -1257,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:33:00.0678195Z\",\r\n \"duration\": \"PT2.3346787S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:00:07.8193788Z\",\r\n \"duration\": \"PT2.0469178S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1272,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14862" ], "x-ms-request-id": [ - "9b240f42-ecd3-41da-89f4-4a2ba1333136" + "6bc87642-5336-4296-9c20-baef9c4c0281" ], "x-ms-correlation-request-id": [ - "9b240f42-ecd3-41da-89f4-4a2ba1333136" + "6bc87642-5336-4296-9c20-baef9c4c0281" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113324Z:9b240f42-ecd3-41da-89f4-4a2ba1333136" + "WESTEUROPE:20150713T130032Z:6bc87642-5336-4296-9c20-baef9c4c0281" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:24 GMT" + "Mon, 13 Jul 2015 13:00:31 GMT" ] }, "StatusCode": 200 @@ -1305,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:33:25.5722321Z\",\r\n \"duration\": \"PT27.8390913S\",\r\n \"correlationId\": \"50b0fbd3-d8cb-4735-a9a5-1ac19d194cc3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db202\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server202\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:00:33.9278912Z\",\r\n \"duration\": \"PT28.1554302S\",\r\n \"correlationId\": \"79940534-434b-4b25-861d-e537638f3fe5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server202/sql-audit-cmdlet-db202\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server202\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server202/databases/sql-audit-cmdlet-db202\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1320,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14860" ], "x-ms-request-id": [ - "9cd5cd29-bd27-4a73-97b3-0b6711b7bf70" + "8799d3ea-72ce-4cff-a065-a571d424fe2b" ], "x-ms-correlation-request-id": [ - "9cd5cd29-bd27-4a73-97b3-0b6711b7bf70" + "8799d3ea-72ce-4cff-a065-a571d424fe2b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113327Z:9cd5cd29-bd27-4a73-97b3-0b6711b7bf70" + "WESTEUROPE:20150713T130035Z:8799d3ea-72ce-4cff-a065-a571d424fe2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:27 GMT" + "Mon, 13 Jul 2015 13:00:34 GMT" ] }, "StatusCode": 200 @@ -1368,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" + "14859" ], "x-ms-request-id": [ - "109f559a-2616-42aa-9228-1032a38b256b" + "ffffc71c-0ed2-4dbe-bda7-49b855a620aa" ], "x-ms-correlation-request-id": [ - "109f559a-2616-42aa-9228-1032a38b256b" + "ffffc71c-0ed2-4dbe-bda7-49b855a620aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113330Z:109f559a-2616-42aa-9228-1032a38b256b" + "WESTEUROPE:20150713T130037Z:ffffc71c-0ed2-4dbe-bda7-49b855a620aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:29 GMT" + "Mon, 13 Jul 2015 13:00:36 GMT" ] }, "StatusCode": 200 @@ -1419,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:68b3e186-37e9-4edd-9200-ec38339cbed6" + "westeurope:08efedd9-fff8-421b-b217-2082f5f1684d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14896" ], "x-ms-correlation-request-id": [ - "fe37ddfe-fcb3-458a-9179-3a3018e0cfb0" + "04f4791a-0ca3-48ee-b2e5-d8938aada804" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113330Z:fe37ddfe-fcb3-458a-9179-3a3018e0cfb0" + "WESTEUROPE:20150713T130038Z:04f4791a-0ca3-48ee-b2e5-d8938aada804" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:30 GMT" + "Mon, 13 Jul 2015 13:00:38 GMT" ] }, "StatusCode": 200 @@ -1452,7 +1356,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "655cb246-94f0-4bd1-abed-9e471b491279" + "818ac8ca-1c19-4fb0-b458-6d7676e6a12b" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver202\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1464,7 +1368,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "dcc220e6-edb8-412a-bb72-d283893e5397" + "444a53e5-26e2-4192-93fe-7333bea95327" ], "X-Content-Type-Options": [ "nosniff" @@ -1473,13 +1377,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14859" ], "x-ms-correlation-request-id": [ - "5cf4c785-e006-477c-b4fc-7032552557d3" + "863f7967-208b-4a8f-8e0b-031f6fcb54e2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113332Z:5cf4c785-e006-477c-b4fc-7032552557d3" + "WESTEUROPE:20150713T130041Z:863f7967-208b-4a8f-8e0b-031f6fcb54e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1392,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:32 GMT" + "Mon, 13 Jul 2015 13:00:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1506,7 +1410,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "770e0e12-ec36-4632-b080-e865f13a708f" + "b8213030-5739-4519-a6a9-6ccf60b1136f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets202\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier202\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets202.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", @@ -1518,7 +1422,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2349e02e-bf05-4c12-a0c4-5d16a962e9a1" + "3e0a185f-e75a-4f8f-9998-9c2341fc5099" ], "X-Content-Type-Options": [ "nosniff" @@ -1527,13 +1431,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14858" ], "x-ms-correlation-request-id": [ - "6e35ece8-aafb-4211-bd73-33a9ab5d0832" + "5782d0db-465b-41b2-a139-a879c2305ce3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113338Z:6e35ece8-aafb-4211-bd73-33a9ab5d0832" + "WESTEUROPE:20150713T130046Z:5782d0db-465b-41b2-a139-a879c2305ce3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1542,7 +1446,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:38 GMT" + "Mon, 13 Jul 2015 13:00:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1560,10 +1464,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets202\",\r\n \"name\": \"auditcmdlets202\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets202\",\r\n \"name\": \"auditcmdlets202\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,16 +1479,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14845" + "14858" ], "x-ms-request-id": [ - "a2a02818-6812-4545-b5c1-70b2f4c0c7f1" + "28eb5205-978a-432f-8e56-699353e8b27e" ], "x-ms-correlation-request-id": [ - "a2a02818-6812-4545-b5c1-70b2f4c0c7f1" + "28eb5205-978a-432f-8e56-699353e8b27e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113332Z:a2a02818-6812-4545-b5c1-70b2f4c0c7f1" + "WESTEUROPE:20150713T130041Z:28eb5205-978a-432f-8e56-699353e8b27e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1593,7 +1497,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:32 GMT" + "Mon, 13 Jul 2015 13:00:41 GMT" ] }, "StatusCode": 200 @@ -1611,7 +1515,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets202\r\n auditcmdlets202\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets202.blob.core.windows.net/\r\n https://auditcmdlets202.queue.core.windows.net/\r\n https://auditcmdlets202.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T11:31:51Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets202\r\n auditcmdlets202\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets202.blob.core.windows.net/\r\n https://auditcmdlets202.queue.core.windows.net/\r\n https://auditcmdlets202.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:58:59Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1623,13 +1527,13 @@ "ussouth3" ], "x-ms-request-id": [ - "77a7ea205007b489aaad0660fc20bc29" + "c2b824f7b056cd5fa913aa5e7ca5ca76" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:33 GMT" + "Mon, 13 Jul 2015 13:00:40 GMT" ], "Server": [ "1.0.6198.243", @@ -1652,7 +1556,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"Kj2AcEyz/dsqzn2lkfnssrcKZnyV7ozp/fXzQQXtS8hIiX1XOq1jKtG225eT9DGDY1BbuvoZIeKl4T24ZqBrZw==\",\r\n \"secondaryKey\": \"FfKhcaiUnjUWXx/FnNd9+n3IRi612gsPFAF0SL+l2LcJj7yvRrNxbFiVI0QRB603I+RANKfgtbiWASmLck+WyA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"9fBJN2QufyE7IELcm9GqQIH+bYfzyJtf9GhAwnf/6AI1Q+6HWOrCNUgB/A9AcibeBmE9VL8tOXgQtf1nq5jQpA==\",\r\n \"secondaryKey\": \"5Taj0kgaOI9rLepfVidIUtVI4jtpFAbB7go3EIydq329n8VEGTm8xI8QX/wR5aWHD+VsxMktOq3UrZnr2g4xXg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1670,16 +1574,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:7b010671-c083-41fa-be5b-9c101c015809" + "southcentralus:ffaca1b7-472e-4a35-940c-a8ee2fe019b0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1196" ], "x-ms-correlation-request-id": [ - "d669128a-7b99-49a6-bf39-b1e54d7b31d6" + "ce97e7bb-e2ea-41d1-9b6d-5ead6074dc1f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113335Z:d669128a-7b99-49a6-bf39-b1e54d7b31d6" + "WESTEUROPE:20150713T130043Z:ce97e7bb-e2ea-41d1-9b6d-5ead6074dc1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,7 +1592,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:34 GMT" + "Mon, 13 Jul 2015 13:00:42 GMT" ] }, "StatusCode": 200 @@ -1697,7 +1601,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjAyL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets202\",\r\n \"storageAccountKey\": \"Kj2AcEyz/dsqzn2lkfnssrcKZnyV7ozp/fXzQQXtS8hIiX1XOq1jKtG225eT9DGDY1BbuvoZIeKl4T24ZqBrZw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets202.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier202\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets202\",\r\n \"storageAccountKey\": \"9fBJN2QufyE7IELcm9GqQIH+bYfzyJtf9GhAwnf/6AI1Q+6HWOrCNUgB/A9AcibeBmE9VL8tOXgQtf1nq5jQpA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets202.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier202\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1709,10 +1613,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "655cb246-94f0-4bd1-abed-9e471b491279" + "818ac8ca-1c19-4fb0-b458-6d7676e6a12b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets202\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier202\",\r\n \"storageAccountKey\": \"Kj2AcEyz/dsqzn2lkfnssrcKZnyV7ozp/fXzQQXtS8hIiX1XOq1jKtG225eT9DGDY1BbuvoZIeKl4T24ZqBrZw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets202.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg202/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server202/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets202\",\r\n \"auditLogsTableName\": \"retentionTableIdentifier202\",\r\n \"storageAccountKey\": \"9fBJN2QufyE7IELcm9GqQIH+bYfzyJtf9GhAwnf/6AI1Q+6HWOrCNUgB/A9AcibeBmE9VL8tOXgQtf1nq5jQpA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets202.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"10\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1009" @@ -1721,7 +1625,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1caf76ad-303f-45a7-98f0-2a1d2be00103" + "8e062802-b746-4743-b524-82e6296092f3" ], "X-Content-Type-Options": [ "nosniff" @@ -1733,13 +1637,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1195" ], "x-ms-correlation-request-id": [ - "c7328235-aaae-42d8-8a02-bcbc73c54287" + "94aa5909-ffb8-48ec-a182-d3da61299304" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113337Z:c7328235-aaae-42d8-8a02-bcbc73c54287" + "WESTEUROPE:20150713T130044Z:94aa5909-ffb8-48ec-a182-d3da61299304" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1748,7 +1652,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:36 GMT" + "Mon, 13 Jul 2015 13:00:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1778,13 +1682,13 @@ "ussouth3" ], "x-ms-request-id": [ - "9e2d4475862fb2299b1838c34bafc0e5" + "4028f4977268c4a4ad968831333acd58" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:43 GMT" + "Mon, 13 Jul 2015 13:00:49 GMT" ], "Server": [ "1.0.6198.243", @@ -1795,8 +1699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/9e2d4475862fb2299b1838c34bafc0e5", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzllMmQ0NDc1ODYyZmIyMjk5YjE4MzhjMzRiYWZjMGU1", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/4028f4977268c4a4ad968831333acd58", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQwMjhmNDk3NzI2OGM0YTRhZDk2ODgzMTMzM2FjZDU4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1807,7 +1711,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 9e2d4475-862f-b229-9b18-38c34bafc0e5\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 4028f497-7268-c4a4-ad96-8831333acd58\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1819,13 +1723,13 @@ "ussouth3" ], "x-ms-request-id": [ - "fb66dc7c2a4ab7e78690a73a8a5619df" + "8ce548947287c826ba82ae9726a685e2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:33:45 GMT" + "Mon, 13 Jul 2015 13:00:50 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithStorage.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithStorage.json index 8be1b523a0a3..cb2bde440fdb 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithStorage.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestServerUpdatePolicyWithStorage.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "48e70aef66e9bbb9a103a988d0715718" + "80f23a4c2656cdb28a800b10a5a3bd51" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:35:15 GMT" + "Mon, 13 Jul 2015 13:02:03 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets201" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/48e70aef66e9bbb9a103a988d0715718", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQ4ZTcwYWVmNjZlOWJiYjlhMTAzYTk4OGQwNzE1NzE4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/80f23a4c2656cdb28a800b10a5a3bd51", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzgwZjIzYTRjMjY1NmNkYjI4YTgwMGIxMGE1YTNiZDUx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 48e70aef-66e9-bbb9-a103-a988d0715718\r\n InProgress\r\n", + "ResponseBody": "\r\n 80f23a4c-2656-cdb2-8a80-0b10a5a3bd51\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "9bd960f0e77fbcdab45bce2df458f589" + "3d3e3228121dc2dc8c41724bb3ef19af" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:35:15 GMT" + "Mon, 13 Jul 2015 13:02:04 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/48e70aef66e9bbb9a103a988d0715718", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQ4ZTcwYWVmNjZlOWJiYjlhMTAzYTk4OGQwNzE1NzE4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/80f23a4c2656cdb28a800b10a5a3bd51", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzgwZjIzYTRjMjY1NmNkYjI4YTgwMGIxMGE1YTNiZDUx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 48e70aef-66e9-bbb9-a103-a988d0715718\r\n InProgress\r\n", + "ResponseBody": "\r\n 80f23a4c-2656-cdb2-8a80-0b10a5a3bd51\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "eb2b7e5bf056be6a9acab58b661a8344" + "85e5c45b6b3ac18383e33fe6b0c18055" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:35:46 GMT" + "Mon, 13 Jul 2015 13:02:33 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/48e70aef66e9bbb9a103a988d0715718", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzQ4ZTcwYWVmNjZlOWJiYjlhMTAzYTk4OGQwNzE1NzE4", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/80f23a4c2656cdb28a800b10a5a3bd51", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzgwZjIzYTRjMjY1NmNkYjI4YTgwMGIxMGE1YTNiZDUx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 48e70aef-66e9-bbb9-a103-a988d0715718\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 80f23a4c-2656-cdb2-8a80-0b10a5a3bd51\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "ced4fce10063b98d9941e5265d99a36f" + "3eb1bf402933ccbab3e8e79a39151af3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:16 GMT" + "Mon, 13 Jul 2015 13:03:04 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14891" ], "x-ms-request-id": [ - "60247904-0261-46fa-9785-7b21470529c9" + "f9b5b37e-312f-4f50-88b3-308e558763b5" ], "x-ms-correlation-request-id": [ - "60247904-0261-46fa-9785-7b21470529c9" + "f9b5b37e-312f-4f50-88b3-308e558763b5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113616Z:60247904-0261-46fa-9785-7b21470529c9" + "WESTEUROPE:20150713T130305Z:f9b5b37e-312f-4f50-88b3-308e558763b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:16 GMT" + "Mon, 13 Jul 2015 13:03:05 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1189" ], "x-ms-request-id": [ - "7c26438a-9858-430a-91b1-dacd3b906bc2" + "8a95d57d-c77a-4e67-9b03-2469b6a1eb34" ], "x-ms-correlation-request-id": [ - "7c26438a-9858-430a-91b1-dacd3b906bc2" + "8a95d57d-c77a-4e67-9b03-2469b6a1eb34" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113618Z:7c26438a-9858-430a-91b1-dacd3b906bc2" + "WESTEUROPE:20150713T130306Z:8a95d57d-c77a-4e67-9b03-2469b6a1eb34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:18 GMT" + "Mon, 13 Jul 2015 13:03:06 GMT" ] }, "StatusCode": 201 @@ -291,7 +291,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:36:19.6357465Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"329cfaa7-1b82-470a-bfea-8d1ab3113e5c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T13:03:07.7027313Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"2b6372b1-e098-4cb5-9bd6-d9d248f9af36\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1643" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1188" ], "x-ms-request-id": [ - "329cfaa7-1b82-470a-bfea-8d1ab3113e5c" + "2b6372b1-e098-4cb5-9bd6-d9d248f9af36" ], "x-ms-correlation-request-id": [ - "329cfaa7-1b82-470a-bfea-8d1ab3113e5c" + "2b6372b1-e098-4cb5-9bd6-d9d248f9af36" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113619Z:329cfaa7-1b82-470a-bfea-8d1ab3113e5c" + "WESTEUROPE:20150713T130307Z:2b6372b1-e098-4cb5-9bd6-d9d248f9af36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:19 GMT" + "Mon, 13 Jul 2015 13:03:07 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:36:21.702321Z\",\r\n \"duration\": \"PT1.3019872S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T13:03:09.531996Z\",\r\n \"duration\": \"PT0.9451864S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1187" ], "x-ms-request-id": [ - "796aa5ac-8028-443e-bb7a-23f497c76260" + "f21d423d-a88b-4b19-ae7f-35951fa11160" ], "x-ms-correlation-request-id": [ - "796aa5ac-8028-443e-bb7a-23f497c76260" + "f21d423d-a88b-4b19-ae7f-35951fa11160" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113622Z:796aa5ac-8028-443e-bb7a-23f497c76260" + "WESTEUROPE:20150713T130310Z:f21d423d-a88b-4b19-ae7f-35951fa11160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:22 GMT" + "Mon, 13 Jul 2015 13:03:09 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14890" ], "x-ms-request-id": [ - "3842ab12-9e3d-4625-bc8c-94a0c411293c" + "13b3efa8-7a52-4b8a-b80a-ef20799d948b" ], "x-ms-correlation-request-id": [ - "3842ab12-9e3d-4625-bc8c-94a0c411293c" + "13b3efa8-7a52-4b8a-b80a-ef20799d948b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113623Z:3842ab12-9e3d-4625-bc8c-94a0c411293c" + "WESTEUROPE:20150713T130310Z:13b3efa8-7a52-4b8a-b80a-ef20799d948b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:23 GMT" + "Mon, 13 Jul 2015 13:03:10 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14888" ], "x-ms-request-id": [ - "d9752f20-df4b-4bdd-b289-c2b29034f452" + "ba69cb20-eb30-454c-a47c-0d06bedc29c3" ], "x-ms-correlation-request-id": [ - "d9752f20-df4b-4bdd-b289-c2b29034f452" + "ba69cb20-eb30-454c-a47c-0d06bedc29c3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113626Z:d9752f20-df4b-4bdd-b289-c2b29034f452" + "WESTEUROPE:20150713T130313Z:ba69cb20-eb30-454c-a47c-0d06bedc29c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:26 GMT" + "Mon, 13 Jul 2015 13:03:13 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14886" ], "x-ms-request-id": [ - "7d7f9712-4243-4d7e-8239-2e7c69acb110" + "76c662a5-d231-4c65-8cf3-fe44cf7ca3ba" ], "x-ms-correlation-request-id": [ - "7d7f9712-4243-4d7e-8239-2e7c69acb110" + "76c662a5-d231-4c65-8cf3-fe44cf7ca3ba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113629Z:7d7f9712-4243-4d7e-8239-2e7c69acb110" + "WESTEUROPE:20150713T130317Z:76c662a5-d231-4c65-8cf3-fe44cf7ca3ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:29 GMT" + "Mon, 13 Jul 2015 13:03:16 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14884" ], "x-ms-request-id": [ - "452b54a9-d761-4fb5-bc89-daf824f3ea11" + "4f0858a3-b981-4889-8ee2-c8890248eee3" ], "x-ms-correlation-request-id": [ - "452b54a9-d761-4fb5-bc89-daf824f3ea11" + "4f0858a3-b981-4889-8ee2-c8890248eee3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113632Z:452b54a9-d761-4fb5-bc89-daf824f3ea11" + "WESTEUROPE:20150713T130320Z:4f0858a3-b981-4889-8ee2-c8890248eee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:32 GMT" + "Mon, 13 Jul 2015 13:03:19 GMT" ] }, "StatusCode": 200 @@ -585,10 +585,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:36:34.080451Z\",\r\n \"duration\": \"PT11.3295911S\",\r\n \"trackingId\": \"7e877b9f-4ae3-467c-a031-a9c2175cff9d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:03:22.8368313Z\",\r\n \"duration\": \"PT11.3691487S\",\r\n \"trackingId\": \"f84ad054-935f-4a5f-8e0d-54c8747d51f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14882" ], "x-ms-request-id": [ - "e24dcab8-d788-4de0-adf0-ac414cc488c6" + "a3bcb633-aa09-4191-8b70-3385a8505925" ], "x-ms-correlation-request-id": [ - "e24dcab8-d788-4de0-adf0-ac414cc488c6" + "a3bcb633-aa09-4191-8b70-3385a8505925" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113635Z:e24dcab8-d788-4de0-adf0-ac414cc488c6" + "WESTEUROPE:20150713T130323Z:a3bcb633-aa09-4191-8b70-3385a8505925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:34 GMT" + "Mon, 13 Jul 2015 13:03:22 GMT" ] }, "StatusCode": 200 @@ -633,10 +633,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:36:34.080451Z\",\r\n \"duration\": \"PT11.3295911S\",\r\n \"trackingId\": \"7e877b9f-4ae3-467c-a031-a9c2175cff9d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:03:22.8368313Z\",\r\n \"duration\": \"PT11.3691487S\",\r\n \"trackingId\": \"f84ad054-935f-4a5f-8e0d-54c8747d51f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,16 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14879" ], "x-ms-request-id": [ - "3d80dc72-a992-490f-b927-7d30a9655c09" + "974652e2-284c-4345-b6dd-856d1d4221e8" ], "x-ms-correlation-request-id": [ - "3d80dc72-a992-490f-b927-7d30a9655c09" + "974652e2-284c-4345-b6dd-856d1d4221e8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113638Z:3d80dc72-a992-490f-b927-7d30a9655c09" + "WESTEUROPE:20150713T130326Z:974652e2-284c-4345-b6dd-856d1d4221e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:37 GMT" + "Mon, 13 Jul 2015 13:03:25 GMT" ] }, "StatusCode": 200 @@ -681,10 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:36:34.080451Z\",\r\n \"duration\": \"PT11.3295911S\",\r\n \"trackingId\": \"7e877b9f-4ae3-467c-a031-a9c2175cff9d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:03:22.8368313Z\",\r\n \"duration\": \"PT11.3691487S\",\r\n \"trackingId\": \"f84ad054-935f-4a5f-8e0d-54c8747d51f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14877" ], "x-ms-request-id": [ - "df36afa8-f9b3-45da-bd75-bbf2362e6029" + "44e58722-f04d-4cfc-aff9-803b84618afd" ], "x-ms-correlation-request-id": [ - "df36afa8-f9b3-45da-bd75-bbf2362e6029" + "44e58722-f04d-4cfc-aff9-803b84618afd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113641Z:df36afa8-f9b3-45da-bd75-bbf2362e6029" + "WESTEUROPE:20150713T130329Z:44e58722-f04d-4cfc-aff9-803b84618afd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:40 GMT" + "Mon, 13 Jul 2015 13:03:28 GMT" ] }, "StatusCode": 200 @@ -729,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/4AE56E83ACD522CE\",\r\n \"operationId\": \"4AE56E83ACD522CE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:36:43.8992315Z\",\r\n \"duration\": \"PT9.2045048S\",\r\n \"trackingId\": \"5630e4a3-c7b8-4612-b30e-7c67e68a0d9f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:36:34.080451Z\",\r\n \"duration\": \"PT11.3295911S\",\r\n \"trackingId\": \"7e877b9f-4ae3-467c-a031-a9c2175cff9d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/4AE56E83ACD522CE\",\r\n \"operationId\": \"4AE56E83ACD522CE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:03:31.416005Z\",\r\n \"duration\": \"PT7.6618792S\",\r\n \"trackingId\": \"2379519c-64d8-446a-9b35-52dbb1ebcb4e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:03:22.8368313Z\",\r\n \"duration\": \"PT11.3691487S\",\r\n \"trackingId\": \"f84ad054-935f-4a5f-8e0d-54c8747d51f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -744,16 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14874" ], "x-ms-request-id": [ - "6cc482e7-e7f7-4514-a5e6-8c129bcc2c06" + "aafc01e5-f701-4a5e-aeb8-0f02111bf6e6" ], "x-ms-correlation-request-id": [ - "6cc482e7-e7f7-4514-a5e6-8c129bcc2c06" + "aafc01e5-f701-4a5e-aeb8-0f02111bf6e6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113644Z:6cc482e7-e7f7-4514-a5e6-8c129bcc2c06" + "WESTEUROPE:20150713T130333Z:aafc01e5-f701-4a5e-aeb8-0f02111bf6e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:44 GMT" + "Mon, 13 Jul 2015 13:03:33 GMT" ] }, "StatusCode": 200 @@ -777,7 +777,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/4AE56E83ACD522CE\",\r\n \"operationId\": \"4AE56E83ACD522CE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:36:43.8992315Z\",\r\n \"duration\": \"PT9.2045048S\",\r\n \"trackingId\": \"5630e4a3-c7b8-4612-b30e-7c67e68a0d9f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:36:34.080451Z\",\r\n \"duration\": \"PT11.3295911S\",\r\n \"trackingId\": \"7e877b9f-4ae3-467c-a031-a9c2175cff9d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/4AE56E83ACD522CE\",\r\n \"operationId\": \"4AE56E83ACD522CE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:03:31.416005Z\",\r\n \"duration\": \"PT7.6618792S\",\r\n \"trackingId\": \"2379519c-64d8-446a-9b35-52dbb1ebcb4e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup/operations/70ED637B94D3908F\",\r\n \"operationId\": \"70ED637B94D3908F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:03:22.8368313Z\",\r\n \"duration\": \"PT11.3691487S\",\r\n \"trackingId\": \"f84ad054-935f-4a5f-8e0d-54c8747d51f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -792,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14872" ], "x-ms-request-id": [ - "cb0949a8-e76a-47d5-8514-4de1bee7d683" + "1edde43f-b159-47c3-b4e9-0e27d62a5d25" ], "x-ms-correlation-request-id": [ - "cb0949a8-e76a-47d5-8514-4de1bee7d683" + "1edde43f-b159-47c3-b4e9-0e27d62a5d25" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113647Z:cb0949a8-e76a-47d5-8514-4de1bee7d683" + "WESTEUROPE:20150713T130336Z:1edde43f-b159-47c3-b4e9-0e27d62a5d25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:47 GMT" + "Mon, 13 Jul 2015 13:03:36 GMT" ] }, "StatusCode": 200 @@ -825,7 +825,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:36:22.6724682Z\",\r\n \"duration\": \"PT2.2721344S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T13:03:09.531996Z\",\r\n \"duration\": \"PT0.9451864S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -840,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14889" ], "x-ms-request-id": [ - "cb1d3700-a026-4e4f-8e6f-fa78d87c28c9" + "0bc1fba5-cf7f-4e9e-8185-38b37634c5f7" ], "x-ms-correlation-request-id": [ - "cb1d3700-a026-4e4f-8e6f-fa78d87c28c9" + "0bc1fba5-cf7f-4e9e-8185-38b37634c5f7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113623Z:cb1d3700-a026-4e4f-8e6f-fa78d87c28c9" + "WESTEUROPE:20150713T130311Z:0bc1fba5-cf7f-4e9e-8185-38b37634c5f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:23 GMT" + "Mon, 13 Jul 2015 13:03:10 GMT" ] }, "StatusCode": 200 @@ -873,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:36:22.6724682Z\",\r\n \"duration\": \"PT2.2721344S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:03:10.9807023Z\",\r\n \"duration\": \"PT2.3938927S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -888,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14887" ], "x-ms-request-id": [ - "b0e14794-735f-45b5-b862-b2d424a8ce13" + "dd3c517c-58be-4d26-91c8-1896962caacb" ], "x-ms-correlation-request-id": [ - "b0e14794-735f-45b5-b862-b2d424a8ce13" + "dd3c517c-58be-4d26-91c8-1896962caacb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113626Z:b0e14794-735f-45b5-b862-b2d424a8ce13" + "WESTEUROPE:20150713T130314Z:dd3c517c-58be-4d26-91c8-1896962caacb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:26 GMT" + "Mon, 13 Jul 2015 13:03:13 GMT" ] }, "StatusCode": 200 @@ -921,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:36:22.6724682Z\",\r\n \"duration\": \"PT2.2721344S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:03:10.9807023Z\",\r\n \"duration\": \"PT2.3938927S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -936,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14885" ], "x-ms-request-id": [ - "ee481f2b-cdea-4f92-a2e6-9dd6107fdd04" + "0abbbd9d-0d6c-4af4-a3b1-88efa0bc6ced" ], "x-ms-correlation-request-id": [ - "ee481f2b-cdea-4f92-a2e6-9dd6107fdd04" + "0abbbd9d-0d6c-4af4-a3b1-88efa0bc6ced" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113629Z:ee481f2b-cdea-4f92-a2e6-9dd6107fdd04" + "WESTEUROPE:20150713T130317Z:0abbbd9d-0d6c-4af4-a3b1-88efa0bc6ced" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:29 GMT" + "Mon, 13 Jul 2015 13:03:17 GMT" ] }, "StatusCode": 200 @@ -969,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:36:22.6724682Z\",\r\n \"duration\": \"PT2.2721344S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:03:10.9807023Z\",\r\n \"duration\": \"PT2.3938927S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -984,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14883" ], "x-ms-request-id": [ - "745f637f-7d6a-46c1-b7cb-3af1f4d43c62" + "037b89a8-7c7b-45d8-ab5e-78f03a5fb1ae" ], "x-ms-correlation-request-id": [ - "745f637f-7d6a-46c1-b7cb-3af1f4d43c62" + "037b89a8-7c7b-45d8-ab5e-78f03a5fb1ae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113632Z:745f637f-7d6a-46c1-b7cb-3af1f4d43c62" + "WESTEUROPE:20150713T130320Z:037b89a8-7c7b-45d8-ab5e-78f03a5fb1ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:32 GMT" + "Mon, 13 Jul 2015 13:03:20 GMT" ] }, "StatusCode": 200 @@ -1017,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:36:22.6724682Z\",\r\n \"duration\": \"PT2.2721344S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:03:10.9807023Z\",\r\n \"duration\": \"PT2.3938927S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1032,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14881" ], "x-ms-request-id": [ - "6ab3a68b-72db-4adb-af6e-0be0f95947c3" + "553d0aa2-20a9-435c-baa5-3ffffae58133" ], "x-ms-correlation-request-id": [ - "6ab3a68b-72db-4adb-af6e-0be0f95947c3" + "553d0aa2-20a9-435c-baa5-3ffffae58133" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113635Z:6ab3a68b-72db-4adb-af6e-0be0f95947c3" + "WESTEUROPE:20150713T130323Z:553d0aa2-20a9-435c-baa5-3ffffae58133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:35 GMT" + "Mon, 13 Jul 2015 13:03:23 GMT" ] }, "StatusCode": 200 @@ -1065,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:36:22.6724682Z\",\r\n \"duration\": \"PT2.2721344S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:03:10.9807023Z\",\r\n \"duration\": \"PT2.3938927S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1080,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14878" ], "x-ms-request-id": [ - "a2685f6c-93aa-4d62-a65e-ff09899c693a" + "0707020d-80dd-43e8-842f-fc0ce661503c" ], "x-ms-correlation-request-id": [ - "a2685f6c-93aa-4d62-a65e-ff09899c693a" + "0707020d-80dd-43e8-842f-fc0ce661503c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113638Z:a2685f6c-93aa-4d62-a65e-ff09899c693a" + "WESTEUROPE:20150713T130327Z:0707020d-80dd-43e8-842f-fc0ce661503c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:38 GMT" + "Mon, 13 Jul 2015 13:03:26 GMT" ] }, "StatusCode": 200 @@ -1113,7 +1113,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:36:22.6724682Z\",\r\n \"duration\": \"PT2.2721344S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:03:10.9807023Z\",\r\n \"duration\": \"PT2.3938927S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1128,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14875" ], "x-ms-request-id": [ - "4158a5f3-2771-497a-b11d-55c3443e78d9" + "2e096e3f-685c-4c5a-ab14-330f3d3863ab" ], "x-ms-correlation-request-id": [ - "4158a5f3-2771-497a-b11d-55c3443e78d9" + "2e096e3f-685c-4c5a-ab14-330f3d3863ab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113641Z:4158a5f3-2771-497a-b11d-55c3443e78d9" + "WESTEUROPE:20150713T130330Z:2e096e3f-685c-4c5a-ab14-330f3d3863ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:41 GMT" + "Mon, 13 Jul 2015 13:03:29 GMT" ] }, "StatusCode": 200 @@ -1161,7 +1161,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:36:22.6724682Z\",\r\n \"duration\": \"PT2.2721344S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T13:03:10.9807023Z\",\r\n \"duration\": \"PT2.3938927S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14873" ], "x-ms-request-id": [ - "cb5372bc-3c99-4515-ad8a-7b5ec1a36dc3" + "ca63740a-1d12-468b-a5fb-02e30a88c809" ], "x-ms-correlation-request-id": [ - "cb5372bc-3c99-4515-ad8a-7b5ec1a36dc3" + "ca63740a-1d12-468b-a5fb-02e30a88c809" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113644Z:cb5372bc-3c99-4515-ad8a-7b5ec1a36dc3" + "WESTEUROPE:20150713T130333Z:ca63740a-1d12-468b-a5fb-02e30a88c809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:44 GMT" + "Mon, 13 Jul 2015 13:03:33 GMT" ] }, "StatusCode": 200 @@ -1209,10 +1209,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:36:47.7254053Z\",\r\n \"duration\": \"PT27.3250715S\",\r\n \"correlationId\": \"796aa5ac-8028-443e-bb7a-23f497c76260\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db201\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server201\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T13:03:34.093185Z\",\r\n \"duration\": \"PT25.5063754S\",\r\n \"correlationId\": \"f21d423d-a88b-4b19-ae7f-35951fa11160\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server201/sql-audit-cmdlet-db201\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server201\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server201/databases/sql-audit-cmdlet-db201\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1653" + "1821" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,16 +1224,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14871" ], "x-ms-request-id": [ - "4c8de1e7-749c-4a5f-9eb6-a4e148d22b8f" + "aa59b929-a070-4a10-adea-2abcfc1d9981" ], "x-ms-correlation-request-id": [ - "4c8de1e7-749c-4a5f-9eb6-a4e148d22b8f" + "aa59b929-a070-4a10-adea-2abcfc1d9981" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113647Z:4c8de1e7-749c-4a5f-9eb6-a4e148d22b8f" + "WESTEUROPE:20150713T130336Z:aa59b929-a070-4a10-adea-2abcfc1d9981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1242,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:47 GMT" + "Mon, 13 Jul 2015 13:03:36 GMT" ] }, "StatusCode": 200 @@ -1272,16 +1272,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14870" ], "x-ms-request-id": [ - "03356325-2c76-45c4-8702-fd497beb6519" + "43c7dbdd-2bbd-41ba-851f-16699b9e1117" ], "x-ms-correlation-request-id": [ - "03356325-2c76-45c4-8702-fd497beb6519" + "43c7dbdd-2bbd-41ba-851f-16699b9e1117" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113650Z:03356325-2c76-45c4-8702-fd497beb6519" + "WESTEUROPE:20150713T130338Z:43c7dbdd-2bbd-41ba-851f-16699b9e1117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1290,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:49 GMT" + "Mon, 13 Jul 2015 13:03:38 GMT" ] }, "StatusCode": 200 @@ -1323,16 +1323,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:7ee2909a-f503-44ce-9c3f-78b104e3508a" + "westeurope:b8ac6c6a-4a56-4541-8cb2-faf7ffe80c47" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14836" ], "x-ms-correlation-request-id": [ - "e320b6b9-cde9-4035-923d-688da3da3176" + "b9217e3f-f06c-4806-b3ff-9b779db683b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113651Z:e320b6b9-cde9-4035-923d-688da3da3176" + "WESTEUROPE:20150713T130341Z:b9217e3f-f06c-4806-b3ff-9b779db683b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1341,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:50 GMT" + "Mon, 13 Jul 2015 13:03:41 GMT" ] }, "StatusCode": 200 @@ -1356,19 +1356,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d9af87e1-8c9c-402d-b7de-a14a8c2e6575" + "3c563946-6308-493c-940f-3590902ea454" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver201\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets201\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver201\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets201.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "807" + "929" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fc4e534f-2671-4469-b4d5-cc0dd1fdbcbe" + "e1e209a5-8fc4-42fb-bb0c-0ae0a28886d4" ], "X-Content-Type-Options": [ "nosniff" @@ -1377,13 +1377,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14789" ], "x-ms-correlation-request-id": [ - "1440e4f5-85b2-45e9-a58e-4709a8b28c9e" + "19fd1cba-5af1-4c2c-9582-8eeb09d4f2df" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113653Z:1440e4f5-85b2-45e9-a58e-4709a8b28c9e" + "WESTEUROPE:20150713T130342Z:19fd1cba-5af1-4c2c-9582-8eeb09d4f2df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1392,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:53 GMT" + "Mon, 13 Jul 2015 13:03:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,7 +1410,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "024555c3-4562-4035-a806-56a9c9796dea" + "a228bdfe-0a33-429d-922d-debc6666a7ac" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets201\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver201\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets201.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1422,7 +1422,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "05030b49-151e-4c43-8876-f71581912ea5" + "2d3ec08b-661b-45fc-a020-b2c92ba2d770" ], "X-Content-Type-Options": [ "nosniff" @@ -1431,13 +1431,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14788" ], "x-ms-correlation-request-id": [ - "e90ee6af-0b5a-4921-90b4-6bf671fd966b" + "b33bfd72-e019-43ef-bc98-3dcedf70486b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113658Z:e90ee6af-0b5a-4921-90b4-6bf671fd966b" + "WESTEUROPE:20150713T130347Z:b33bfd72-e019-43ef-bc98-3dcedf70486b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,98 +1446,9 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:57 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets201\",\r\n \"name\": \"auditcmdlets201\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3799" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-request-id": [ - "09b054dc-85af-418b-b9e2-8201aea0eba4" - ], - "x-ms-correlation-request-id": [ - "09b054dc-85af-418b-b9e2-8201aea0eba4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113653Z:09b054dc-85af-418b-b9e2-8201aea0eba4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:36:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets201", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMjAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets201\r\n auditcmdlets201\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets201.blob.core.windows.net/\r\n https://auditcmdlets201.queue.core.windows.net/\r\n https://auditcmdlets201.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T11:35:16Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1281" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "446d68ac077cbe3f938e9d37babc4327" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:36:54 GMT" + "Mon, 13 Jul 2015 13:03:47 GMT" ], "Server": [ - "1.0.6198.243", - "(rd_rdfe_stable.150618-1025)", "Microsoft-HTTPAPI/2.0" ] }, @@ -1556,7 +1467,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"+ect5S5jvuYq/cP52HXRMlnWm4WXD9K7DWY+PaXfeCsKXneQEt+jz+AtObj1K2kc1QgLXGjMNj4uB7nTqJUxIw==\",\r\n \"secondaryKey\": \"2lc3wC/BcNEzXrxN2Y4NVc+1HOMnlgu1cOP5UEqqeVnxNq1f3t9XO7g4ZsS2n4kot39HHoD7V2K2IKSU40NXVw==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"TDwxxHnhT/TXW/ae+KW9ROHFbL0xHQIqMMTYsvJxSLI2z2sfXMZgvXFL+kW3DnM967et3HsYdvyL/mT3cOqrOA==\",\r\n \"secondaryKey\": \"n1BD5QT90vcA7zMYHcqSnXeTjcv0X/0QOKvJ4K7OYT17e793O2J8rPbjCqG5gQAlw/BwGT5ATQF71lWQ9Omabw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1574,16 +1485,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:9713501f-5c46-4cf1-a1aa-b0d50ce7ad75" + "southcentralus:97bb6102-7d61-4cad-bebd-33f25474730d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1180" ], "x-ms-correlation-request-id": [ - "3fe7470e-75ab-4113-9def-3a67643fc084" + "ab398815-4755-49f1-a679-09a93cc8c388" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113655Z:3fe7470e-75ab-4113-9def-3a67643fc084" + "WESTEUROPE:20150713T130344Z:ab398815-4755-49f1-a679-09a93cc8c388" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1592,7 +1503,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:54 GMT" + "Mon, 13 Jul 2015 13:03:43 GMT" ] }, "StatusCode": 200 @@ -1601,7 +1512,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMjAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets201\",\r\n \"storageAccountKey\": \"+ect5S5jvuYq/cP52HXRMlnWm4WXD9K7DWY+PaXfeCsKXneQEt+jz+AtObj1K2kc1QgLXGjMNj4uB7nTqJUxIw==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets201.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver201\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets201\",\r\n \"storageAccountKey\": \"TDwxxHnhT/TXW/ae+KW9ROHFbL0xHQIqMMTYsvJxSLI2z2sfXMZgvXFL+kW3DnM967et3HsYdvyL/mT3cOqrOA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets201.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver201\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1613,10 +1524,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d9af87e1-8c9c-402d-b7de-a14a8c2e6575" + "3c563946-6308-493c-940f-3590902ea454" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets201\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver201\",\r\n \"storageAccountKey\": \"+ect5S5jvuYq/cP52HXRMlnWm4WXD9K7DWY+PaXfeCsKXneQEt+jz+AtObj1K2kc1QgLXGjMNj4uB7nTqJUxIw==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets201.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg201/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server201/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets201\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver201\",\r\n \"storageAccountKey\": \"TDwxxHnhT/TXW/ae+KW9ROHFbL0xHQIqMMTYsvJxSLI2z2sfXMZgvXFL+kW3DnM967et3HsYdvyL/mT3cOqrOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets201.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -1625,7 +1536,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "757917aa-2a28-4789-abf3-a11dc958ae6a" + "a9850512-b19e-477b-8697-7c41b2ebe042" ], "X-Content-Type-Options": [ "nosniff" @@ -1637,13 +1548,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1179" ], "x-ms-correlation-request-id": [ - "5d3baf97-0bca-4a2b-b006-b677486521aa" + "88b3f862-24a0-4b00-a07a-e719bbc719f0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113656Z:5d3baf97-0bca-4a2b-b006-b677486521aa" + "WESTEUROPE:20150713T130346Z:88b3f862-24a0-4b00-a07a-e719bbc719f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1652,7 +1563,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:36:56 GMT" + "Mon, 13 Jul 2015 13:03:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1682,13 +1593,13 @@ "ussouth3" ], "x-ms-request-id": [ - "3540466d269fbb0da3d50aadbb23f5f1" + "91d2774ff3f4cd2e845bbebaadfac930" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:37:03 GMT" + "Mon, 13 Jul 2015 13:03:51 GMT" ], "Server": [ "1.0.6198.243", @@ -1699,8 +1610,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/3540466d269fbb0da3d50aadbb23f5f1", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzM1NDA0NjZkMjY5ZmJiMGRhM2Q1MGFhZGJiMjNmNWYx", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/91d2774ff3f4cd2e845bbebaadfac930", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzkxZDI3NzRmZjNmNGNkMmU4NDViYmViYWFkZmFjOTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1711,7 +1622,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n 3540466d-269f-bb0d-a3d5-0aadbb23f5f1\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 91d2774f-f3f4-cd2e-845b-bebaadfac930\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -1723,13 +1634,13 @@ "ussouth3" ], "x-ms-request-id": [ - "9df9d0d93c25becc97ba82a59c07ff1e" + "ac0a7e064556cfcc87a51c7f0cacbfee" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:37:04 GMT" + "Mon, 13 Jul 2015 13:03:52 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestUseServerDefault.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestUseServerDefault.json index 41e35e5f0ecb..0654f738a0b6 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestUseServerDefault.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.SecurityTests/TestUseServerDefault.json @@ -28,13 +28,13 @@ "ussouth3" ], "x-ms-request-id": [ - "0c269715d9cfbe9cb1218a51d660295a" + "e0e06759240ac6588e9c92a5a2f3f1ac" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:38:23 GMT" + "Mon, 13 Jul 2015 12:25:55 GMT" ], "Location": [ "https://management.core.windows.net/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/storage/auditcmdlets141" @@ -48,8 +48,8 @@ "StatusCode": 202 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/0c269715d9cfbe9cb1218a51d660295a", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzBjMjY5NzE1ZDljZmJlOWNiMTIxOGE1MWQ2NjAyOTVh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/e0e06759240ac6588e9c92a5a2f3f1ac", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2UwZTA2NzU5MjQwYWM2NTg4ZTljOTJhNWEyZjNmMWFj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -60,7 +60,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 0c269715-d9cf-be9c-b121-8a51d660295a\r\n InProgress\r\n", + "ResponseBody": "\r\n e0e06759-240a-c658-8e9c-92a5a2f3f1ac\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -72,13 +72,13 @@ "ussouth3" ], "x-ms-request-id": [ - "6d765429f464be6784f044e05626ff3c" + "ec33e1697829c602936110e6c052ecd0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:38:23 GMT" + "Mon, 13 Jul 2015 12:25:55 GMT" ], "Server": [ "1.0.6198.243", @@ -89,8 +89,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/0c269715d9cfbe9cb1218a51d660295a", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzBjMjY5NzE1ZDljZmJlOWNiMTIxOGE1MWQ2NjAyOTVh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/e0e06759240ac6588e9c92a5a2f3f1ac", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2UwZTA2NzU5MjQwYWM2NTg4ZTljOTJhNWEyZjNmMWFj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -101,7 +101,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 0c269715-d9cf-be9c-b121-8a51d660295a\r\n InProgress\r\n", + "ResponseBody": "\r\n e0e06759-240a-c658-8e9c-92a5a2f3f1ac\r\n InProgress\r\n", "ResponseHeaders": { "Content-Length": [ "197" @@ -113,13 +113,13 @@ "ussouth3" ], "x-ms-request-id": [ - "379e90317142badaacc5a2f7141e00f0" + "3303e2d9f755cedaa1e9d241b57a1e5d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:38:53 GMT" + "Mon, 13 Jul 2015 12:26:26 GMT" ], "Server": [ "1.0.6198.243", @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/0c269715d9cfbe9cb1218a51d660295a", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzBjMjY5NzE1ZDljZmJlOWNiMTIxOGE1MWQ2NjAyOTVh", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/e0e06759240ac6588e9c92a5a2f3f1ac", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2UwZTA2NzU5MjQwYWM2NTg4ZTljOTJhNWEyZjNmMWFj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n 0c269715-d9cf-be9c-b121-8a51d660295a\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n e0e06759-240a-c658-8e9c-92a5a2f3f1ac\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -154,13 +154,13 @@ "ussouth3" ], "x-ms-request-id": [ - "a8bef236ef8fb032912fa76a0f6d587c" + "7debc910491bce91b7cc1dcef6b2eaa6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:24 GMT" + "Mon, 13 Jul 2015 12:26:57 GMT" ], "Server": [ "1.0.6198.243", @@ -198,16 +198,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14847" ], "x-ms-request-id": [ - "3f405d54-59c6-4570-905f-b9027a2ce7f3" + "086f365c-758b-4b8c-99e2-17c3f2463013" ], "x-ms-correlation-request-id": [ - "3f405d54-59c6-4570-905f-b9027a2ce7f3" + "086f365c-758b-4b8c-99e2-17c3f2463013" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113925Z:3f405d54-59c6-4570-905f-b9027a2ce7f3" + "WESTEUROPE:20150713T122657Z:086f365c-758b-4b8c-99e2-17c3f2463013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:24 GMT" + "Mon, 13 Jul 2015 12:26:57 GMT" ] }, "StatusCode": 404 @@ -252,16 +252,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1187" ], "x-ms-request-id": [ - "d409f9dc-5b5f-4b0e-b0b4-a4e606c29778" + "59a650d7-bd96-4352-b9a7-f089d49cfb74" ], "x-ms-correlation-request-id": [ - "d409f9dc-5b5f-4b0e-b0b4-a4e606c29778" + "59a650d7-bd96-4352-b9a7-f089d49cfb74" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113927Z:d409f9dc-5b5f-4b0e-b0b4-a4e606c29778" + "WESTEUROPE:20150713T122659Z:59a650d7-bd96-4352-b9a7-f089d49cfb74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:26 GMT" + "Mon, 13 Jul 2015 12:26:59 GMT" ] }, "StatusCode": 201 @@ -291,10 +291,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:39:28.41389Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"2eb99ec5-97a5-4949-a0d4-a204963ba318\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:27:00.0835547Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"b523e529-9a47-452a-8c14-a01f552c2826\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1641" + "1643" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,16 +306,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1186" ], "x-ms-request-id": [ - "2eb99ec5-97a5-4949-a0d4-a204963ba318" + "b523e529-9a47-452a-8c14-a01f552c2826" ], "x-ms-correlation-request-id": [ - "2eb99ec5-97a5-4949-a0d4-a204963ba318" + "b523e529-9a47-452a-8c14-a01f552c2826" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113928Z:2eb99ec5-97a5-4949-a0d4-a204963ba318" + "WESTEUROPE:20150713T122700Z:b523e529-9a47-452a-8c14-a01f552c2826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:27 GMT" + "Mon, 13 Jul 2015 12:27:00 GMT" ] }, "StatusCode": 200 @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:39:30.3062914Z\",\r\n \"duration\": \"PT1.1140395S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-13T12:27:01.9741993Z\",\r\n \"duration\": \"PT1.1284189S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1651" @@ -360,16 +360,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1185" ], "x-ms-request-id": [ - "c2032667-3c61-4b1f-8232-c52aa191729b" + "32c58593-690c-4c25-9b37-88a5dbb11039" ], "x-ms-correlation-request-id": [ - "c2032667-3c61-4b1f-8232-c52aa191729b" + "32c58593-690c-4c25-9b37-88a5dbb11039" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113930Z:c2032667-3c61-4b1f-8232-c52aa191729b" + "WESTEUROPE:20150713T122702Z:32c58593-690c-4c25-9b37-88a5dbb11039" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:30 GMT" + "Mon, 13 Jul 2015 12:27:02 GMT" ] }, "StatusCode": 201 @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14846" ], "x-ms-request-id": [ - "ba498212-6749-406f-bf65-0ba41ee12987" + "cbc5c5c4-5ba9-421e-8b53-6f8d044b937c" ], "x-ms-correlation-request-id": [ - "ba498212-6749-406f-bf65-0ba41ee12987" + "cbc5c5c4-5ba9-421e-8b53-6f8d044b937c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113931Z:ba498212-6749-406f-bf65-0ba41ee12987" + "WESTEUROPE:20150713T122703Z:cbc5c5c4-5ba9-421e-8b53-6f8d044b937c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:31 GMT" + "Mon, 13 Jul 2015 12:27:02 GMT" ] }, "StatusCode": 200 @@ -456,16 +456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14844" ], "x-ms-request-id": [ - "61db8a4c-5772-436f-997b-981359a70c23" + "2775ee09-1ee7-4703-a47e-606e410619d5" ], "x-ms-correlation-request-id": [ - "61db8a4c-5772-436f-997b-981359a70c23" + "2775ee09-1ee7-4703-a47e-606e410619d5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113934Z:61db8a4c-5772-436f-997b-981359a70c23" + "WESTEUROPE:20150713T122706Z:2775ee09-1ee7-4703-a47e-606e410619d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +474,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:34 GMT" + "Mon, 13 Jul 2015 12:27:05 GMT" ] }, "StatusCode": 200 @@ -504,16 +504,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14842" ], "x-ms-request-id": [ - "4a60ba7e-1e8c-4010-b1ee-64a6e4413583" + "684b477f-15df-4da3-8d5b-4539b5c67879" ], "x-ms-correlation-request-id": [ - "4a60ba7e-1e8c-4010-b1ee-64a6e4413583" + "684b477f-15df-4da3-8d5b-4539b5c67879" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113937Z:4a60ba7e-1e8c-4010-b1ee-64a6e4413583" + "WESTEUROPE:20150713T122709Z:684b477f-15df-4da3-8d5b-4539b5c67879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:37 GMT" + "Mon, 13 Jul 2015 12:27:08 GMT" ] }, "StatusCode": 200 @@ -552,16 +552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14840" ], "x-ms-request-id": [ - "770e4daa-4abb-4356-b74d-41849eea9fa5" + "fa2ece04-01c1-475d-b42f-6d15ca30b22f" ], "x-ms-correlation-request-id": [ - "770e4daa-4abb-4356-b74d-41849eea9fa5" + "fa2ece04-01c1-475d-b42f-6d15ca30b22f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113940Z:770e4daa-4abb-4356-b74d-41849eea9fa5" + "WESTEUROPE:20150713T122712Z:fa2ece04-01c1-475d-b42f-6d15ca30b22f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:40 GMT" + "Mon, 13 Jul 2015 12:27:11 GMT" ] }, "StatusCode": 200 @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14838" ], "x-ms-request-id": [ - "35dd8a44-9bac-4811-a5a6-b4a25b525363" + "cfc4601a-2ddd-4527-83e7-1e4d4b09f60c" ], "x-ms-correlation-request-id": [ - "35dd8a44-9bac-4811-a5a6-b4a25b525363" + "cfc4601a-2ddd-4527-83e7-1e4d4b09f60c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113943Z:35dd8a44-9bac-4811-a5a6-b4a25b525363" + "WESTEUROPE:20150713T122715Z:cfc4601a-2ddd-4527-83e7-1e4d4b09f60c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:43 GMT" + "Mon, 13 Jul 2015 12:27:14 GMT" ] }, "StatusCode": 200 @@ -648,160 +648,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-request-id": [ - "392d5646-f21a-4c89-87fd-5fafde929f88" - ], - "x-ms-correlation-request-id": [ - "392d5646-f21a-4c89-87fd-5fafde929f88" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113946Z:392d5646-f21a-4c89-87fd-5fafde929f88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:39:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/7BAF7DBAA77B3C08\",\r\n \"operationId\": \"7BAF7DBAA77B3C08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:39:47.8189651Z\",\r\n \"duration\": \"PT14.8171488S\",\r\n \"trackingId\": \"d6757946-40a5-4948-8341-7fbd72abb522\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-request-id": [ - "bfc77d05-1246-499c-ac02-033293bb0306" - ], - "x-ms-correlation-request-id": [ - "bfc77d05-1246-499c-ac02-033293bb0306" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113949Z:bfc77d05-1246-499c-ac02-033293bb0306" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:39:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/7BAF7DBAA77B3C08\",\r\n \"operationId\": \"7BAF7DBAA77B3C08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:39:47.8189651Z\",\r\n \"duration\": \"PT14.8171488S\",\r\n \"trackingId\": \"d6757946-40a5-4948-8341-7fbd72abb522\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" - ], - "x-ms-request-id": [ - "2484c0d8-f818-4ab5-a801-855b9352bdb6" - ], - "x-ms-correlation-request-id": [ - "2484c0d8-f818-4ab5-a801-855b9352bdb6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113952Z:2484c0d8-f818-4ab5-a801-855b9352bdb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:39:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/7BAF7DBAA77B3C08\",\r\n \"operationId\": \"7BAF7DBAA77B3C08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:39:47.8189651Z\",\r\n \"duration\": \"PT14.8171488S\",\r\n \"trackingId\": \"d6757946-40a5-4948-8341-7fbd72abb522\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14836" ], "x-ms-request-id": [ - "f2bf577c-ec2b-4512-88ce-1f461b1c7d93" + "8c7c41b3-bab8-484e-8231-ac33cd37f624" ], "x-ms-correlation-request-id": [ - "f2bf577c-ec2b-4512-88ce-1f461b1c7d93" + "8c7c41b3-bab8-484e-8231-ac33cd37f624" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113955Z:f2bf577c-ec2b-4512-88ce-1f461b1c7d93" + "WESTEUROPE:20150713T122718Z:8c7c41b3-bab8-484e-8231-ac33cd37f624" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,7 +666,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:55 GMT" + "Mon, 13 Jul 2015 12:27:17 GMT" ] }, "StatusCode": 200 @@ -825,106 +681,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/7BAF7DBAA77B3C08\",\r\n \"operationId\": \"7BAF7DBAA77B3C08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:39:47.8189651Z\",\r\n \"duration\": \"PT14.8171488S\",\r\n \"trackingId\": \"d6757946-40a5-4948-8341-7fbd72abb522\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" - ], - "x-ms-request-id": [ - "36c5491f-c355-467e-9105-645ad99e6d2b" - ], - "x-ms-correlation-request-id": [ - "36c5491f-c355-467e-9105-645ad99e6d2b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113958Z:36c5491f-c355-467e-9105-645ad99e6d2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:39:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/7BAF7DBAA77B3C08\",\r\n \"operationId\": \"7BAF7DBAA77B3C08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:39:47.8189651Z\",\r\n \"duration\": \"PT14.8171488S\",\r\n \"trackingId\": \"d6757946-40a5-4948-8341-7fbd72abb522\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" - ], - "x-ms-request-id": [ - "7e538082-7073-4674-90a6-53833fb047f2" - ], - "x-ms-correlation-request-id": [ - "7e538082-7073-4674-90a6-53833fb047f2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114001Z:7e538082-7073-4674-90a6-53833fb047f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:40:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/A5C30C6EE09ECB68\",\r\n \"operationId\": \"A5C30C6EE09ECB68\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:40:02.3006179Z\",\r\n \"duration\": \"PT14.4090838S\",\r\n \"trackingId\": \"b8eaf5b6-7081-4579-b700-4f1b9e8f9d9e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/7BAF7DBAA77B3C08\",\r\n \"operationId\": \"7BAF7DBAA77B3C08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:39:47.8189651Z\",\r\n \"duration\": \"PT14.8171488S\",\r\n \"trackingId\": \"d6757946-40a5-4948-8341-7fbd72abb522\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1391" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,16 +696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14834" ], "x-ms-request-id": [ - "03deb98f-cf45-4ba3-9778-34d24df7dd3c" + "d3691884-e819-4699-ba9d-6d2d7b7620e2" ], "x-ms-correlation-request-id": [ - "03deb98f-cf45-4ba3-9778-34d24df7dd3c" + "d3691884-e819-4699-ba9d-6d2d7b7620e2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114004Z:03deb98f-cf45-4ba3-9778-34d24df7dd3c" + "WESTEUROPE:20150713T122721Z:d3691884-e819-4699-ba9d-6d2d7b7620e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +714,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:04 GMT" + "Mon, 13 Jul 2015 12:27:20 GMT" ] }, "StatusCode": 200 @@ -969,7 +729,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/A5C30C6EE09ECB68\",\r\n \"operationId\": \"A5C30C6EE09ECB68\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:40:02.3006179Z\",\r\n \"duration\": \"PT14.4090838S\",\r\n \"trackingId\": \"b8eaf5b6-7081-4579-b700-4f1b9e8f9d9e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/7BAF7DBAA77B3C08\",\r\n \"operationId\": \"7BAF7DBAA77B3C08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:39:47.8189651Z\",\r\n \"duration\": \"PT14.8171488S\",\r\n \"trackingId\": \"d6757946-40a5-4948-8341-7fbd72abb522\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/A5C30C6EE09ECB68\",\r\n \"operationId\": \"A5C30C6EE09ECB68\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:27:39.8679189Z\",\r\n \"duration\": \"PT15.7373977S\",\r\n \"trackingId\": \"7c23ef3b-5b73-410d-8a94-5449e322f127\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup/operations/7BAF7DBAA77B3C08\",\r\n \"operationId\": \"7BAF7DBAA77B3C08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:27:24.0351187Z\",\r\n \"duration\": \"PT21.2185292S\",\r\n \"trackingId\": \"190be189-1878-4eda-8bca-fdb4fc9fa2a3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1391" @@ -984,160 +744,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-request-id": [ - "09327b6d-ef20-43e1-8f27-65a123e7328a" - ], - "x-ms-correlation-request-id": [ - "09327b6d-ef20-43e1-8f27-65a123e7328a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114007Z:09327b6d-ef20-43e1-8f27-65a123e7328a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:40:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-07-01T11:39:30.3062914Z\",\r\n \"duration\": \"PT1.1140395S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1651" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" - ], - "x-ms-request-id": [ - "745e9230-4ab4-4ad8-af59-6d8bab53d62b" - ], - "x-ms-correlation-request-id": [ - "745e9230-4ab4-4ad8-af59-6d8bab53d62b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113931Z:745e9230-4ab4-4ad8-af59-6d8bab53d62b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:39:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" - ], - "x-ms-request-id": [ - "31287baf-c9da-4aa1-b765-9ad8f714a0c9" - ], - "x-ms-correlation-request-id": [ - "31287baf-c9da-4aa1-b765-9ad8f714a0c9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113934Z:31287baf-c9da-4aa1-b765-9ad8f714a0c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:39:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14832" ], "x-ms-request-id": [ - "5f26facd-cbe4-4f09-9ad6-bb4cf34975dd" + "935fa26c-cd49-4d63-8e6b-92f5faebc589" ], "x-ms-correlation-request-id": [ - "5f26facd-cbe4-4f09-9ad6-bb4cf34975dd" + "935fa26c-cd49-4d63-8e6b-92f5faebc589" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113937Z:5f26facd-cbe4-4f09-9ad6-bb4cf34975dd" + "WESTEUROPE:20150713T122743Z:935fa26c-cd49-4d63-8e6b-92f5faebc589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +762,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:37 GMT" + "Mon, 13 Jul 2015 12:27:42 GMT" ] }, "StatusCode": 200 @@ -1161,7 +777,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:27:02.7424909Z\",\r\n \"duration\": \"PT1.8967105S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1176,16 +792,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14845" ], "x-ms-request-id": [ - "98c67858-01b8-41a8-b481-c4a77fb79cfd" + "905e56c0-894d-4da5-9bbb-3f2c6b6caae7" ], "x-ms-correlation-request-id": [ - "98c67858-01b8-41a8-b481-c4a77fb79cfd" + "905e56c0-894d-4da5-9bbb-3f2c6b6caae7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113940Z:98c67858-01b8-41a8-b481-c4a77fb79cfd" + "WESTEUROPE:20150713T122703Z:905e56c0-894d-4da5-9bbb-3f2c6b6caae7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +810,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:40 GMT" + "Mon, 13 Jul 2015 12:27:03 GMT" ] }, "StatusCode": 200 @@ -1209,7 +825,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:27:02.7424909Z\",\r\n \"duration\": \"PT1.8967105S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1224,16 +840,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14843" ], "x-ms-request-id": [ - "5220f38c-70ed-4c24-9478-ecca137caa1f" + "ef6aa46a-5d09-4b27-90a5-b9e1c94f28f7" ], "x-ms-correlation-request-id": [ - "5220f38c-70ed-4c24-9478-ecca137caa1f" + "ef6aa46a-5d09-4b27-90a5-b9e1c94f28f7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113943Z:5220f38c-70ed-4c24-9478-ecca137caa1f" + "WESTEUROPE:20150713T122706Z:ef6aa46a-5d09-4b27-90a5-b9e1c94f28f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +858,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:43 GMT" + "Mon, 13 Jul 2015 12:27:06 GMT" ] }, "StatusCode": 200 @@ -1257,7 +873,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:27:02.7424909Z\",\r\n \"duration\": \"PT1.8967105S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1272,16 +888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14841" ], "x-ms-request-id": [ - "c52b648a-377f-4a81-b555-e74135950350" + "2ea94e65-aa6e-4a62-919b-3a0aaa73d942" ], "x-ms-correlation-request-id": [ - "c52b648a-377f-4a81-b555-e74135950350" + "2ea94e65-aa6e-4a62-919b-3a0aaa73d942" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113946Z:c52b648a-377f-4a81-b555-e74135950350" + "WESTEUROPE:20150713T122709Z:2ea94e65-aa6e-4a62-919b-3a0aaa73d942" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:46 GMT" + "Mon, 13 Jul 2015 12:27:09 GMT" ] }, "StatusCode": 200 @@ -1305,7 +921,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:27:02.7424909Z\",\r\n \"duration\": \"PT1.8967105S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1320,16 +936,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14839" ], "x-ms-request-id": [ - "30eb0669-2c76-4feb-9919-d21ab60b457f" + "4bd35d0d-b421-4aa4-8064-fa4630cd2984" ], "x-ms-correlation-request-id": [ - "30eb0669-2c76-4feb-9919-d21ab60b457f" + "4bd35d0d-b421-4aa4-8064-fa4630cd2984" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113949Z:30eb0669-2c76-4feb-9919-d21ab60b457f" + "WESTEUROPE:20150713T122712Z:4bd35d0d-b421-4aa4-8064-fa4630cd2984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +954,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:49 GMT" + "Mon, 13 Jul 2015 12:27:12 GMT" ] }, "StatusCode": 200 @@ -1353,7 +969,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:27:02.7424909Z\",\r\n \"duration\": \"PT1.8967105S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1368,16 +984,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14837" ], "x-ms-request-id": [ - "6583b7b0-c969-44c1-ab48-37ed32614b60" + "28cd9641-8331-48a8-8918-001af27a911b" ], "x-ms-correlation-request-id": [ - "6583b7b0-c969-44c1-ab48-37ed32614b60" + "28cd9641-8331-48a8-8918-001af27a911b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113952Z:6583b7b0-c969-44c1-ab48-37ed32614b60" + "WESTEUROPE:20150713T122715Z:28cd9641-8331-48a8-8918-001af27a911b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:52 GMT" + "Mon, 13 Jul 2015 12:27:15 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1017,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:27:02.7424909Z\",\r\n \"duration\": \"PT1.8967105S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1416,16 +1032,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14835" ], "x-ms-request-id": [ - "b7d26878-19dc-4da3-aa95-1b62d3de24cf" + "ca7316ae-9fa3-495a-811e-4bc050837195" ], "x-ms-correlation-request-id": [ - "b7d26878-19dc-4da3-aa95-1b62d3de24cf" + "ca7316ae-9fa3-495a-811e-4bc050837195" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113955Z:b7d26878-19dc-4da3-aa95-1b62d3de24cf" + "WESTEUROPE:20150713T122718Z:ca7316ae-9fa3-495a-811e-4bc050837195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,7 +1050,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:55 GMT" + "Mon, 13 Jul 2015 12:27:18 GMT" ] }, "StatusCode": 200 @@ -1449,7 +1065,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-13T12:27:02.7424909Z\",\r\n \"duration\": \"PT1.8967105S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1650" @@ -1464,16 +1080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14833" ], "x-ms-request-id": [ - "55b3a745-aa81-482c-a7a0-c670906f0e5a" + "865214e6-ec29-45b8-b46a-43308ca2afa8" ], "x-ms-correlation-request-id": [ - "55b3a745-aa81-482c-a7a0-c670906f0e5a" + "865214e6-ec29-45b8-b46a-43308ca2afa8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T113958Z:55b3a745-aa81-482c-a7a0-c670906f0e5a" + "WESTEUROPE:20150713T122721Z:865214e6-ec29-45b8-b46a-43308ca2afa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1098,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:39:58 GMT" + "Mon, 13 Jul 2015 12:27:21 GMT" ] }, "StatusCode": 200 @@ -1497,10 +1113,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-13T12:27:41.3605309Z\",\r\n \"duration\": \"PT40.5147505S\",\r\n \"correlationId\": \"32c58593-690c-4c25-9b37-88a5dbb11039\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server141\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1512,16 +1128,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14830" ], "x-ms-request-id": [ - "2be7a9ee-ab9a-4062-8383-a73edc9165bf" + "3291f59c-5e05-49b7-b922-3532871ffc96" ], "x-ms-correlation-request-id": [ - "2be7a9ee-ab9a-4062-8383-a73edc9165bf" + "3291f59c-5e05-49b7-b922-3532871ffc96" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114001Z:2be7a9ee-ab9a-4062-8383-a73edc9165bf" + "WESTEUROPE:20150713T122743Z:3291f59c-5e05-49b7-b922-3532871ffc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,103 +1146,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-07-01T11:39:32.9323794Z\",\r\n \"duration\": \"PT3.7401275S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1650" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" - ], - "x-ms-request-id": [ - "d3bce1fc-7eef-4304-924c-040bcb658680" - ], - "x-ms-correlation-request-id": [ - "d3bce1fc-7eef-4304-924c-040bcb658680" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114004Z:d3bce1fc-7eef-4304-924c-040bcb658680" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:40:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db141\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server141\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-07-01T11:40:06.2226101Z\",\r\n \"duration\": \"PT37.0303582S\",\r\n \"correlationId\": \"c2032667-3c61-4b1f-8232-c52aa191729b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server141/sql-audit-cmdlet-db141\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1653" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" - ], - "x-ms-request-id": [ - "5cd10253-a94d-4cee-9105-02873dbde708" - ], - "x-ms-correlation-request-id": [ - "5cd10253-a94d-4cee-9105-02873dbde708" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114008Z:5cd10253-a94d-4cee-9105-02873dbde708" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Jul 2015 11:40:07 GMT" + "Mon, 13 Jul 2015 12:27:43 GMT" ] }, "StatusCode": 200 @@ -1656,16 +1176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14829" ], "x-ms-request-id": [ - "5ec9210d-63b1-4c64-9be8-0a198675489c" + "401a0ab8-5265-439a-99ed-735b5cdf76a4" ], "x-ms-correlation-request-id": [ - "5ec9210d-63b1-4c64-9be8-0a198675489c" + "401a0ab8-5265-439a-99ed-735b5cdf76a4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114010Z:5ec9210d-63b1-4c64-9be8-0a198675489c" + "WESTEUROPE:20150713T122745Z:401a0ab8-5265-439a-99ed-735b5cdf76a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,7 +1194,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:09 GMT" + "Mon, 13 Jul 2015 12:27:45 GMT" ] }, "StatusCode": 200 @@ -1707,16 +1227,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:3dd6cc50-5c78-485f-b5dc-19906de16b6c" + "westeurope:46dff8a3-1bb7-4d3c-9693-4ef989a6c510" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14861" ], "x-ms-correlation-request-id": [ - "b61ffa0c-ae14-46e5-9c40-7c7b950fb6ff" + "af117607-9307-4b68-a808-c8f629e0395b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114011Z:b61ffa0c-ae14-46e5-9c40-7c7b950fb6ff" + "WESTEUROPE:20150713T122746Z:af117607-9307-4b68-a808-c8f629e0395b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1725,7 +1245,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:10 GMT" + "Mon, 13 Jul 2015 12:27:46 GMT" ] }, "StatusCode": 200 @@ -1740,7 +1260,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "72292b9a-c8fe-4967-a1ca-4232ec169a48" + "cdc37ad5-4d2c-498d-9daa-54e940757c1a" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver141\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1752,7 +1272,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a6a6d019-5ab0-4ec4-b6da-e8368b6d78b8" + "276c2ed0-97c4-4128-816d-85a5ea4aa564" ], "X-Content-Type-Options": [ "nosniff" @@ -1761,13 +1281,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14875" ], "x-ms-correlation-request-id": [ - "28595e07-413c-471b-98dc-81924f066ed7" + "8d59de6b-8c23-4d1b-9b1b-e32cf7bd68c4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114013Z:28595e07-413c-471b-98dc-81924f066ed7" + "WESTEUROPE:20150713T122752Z:8d59de6b-8c23-4d1b-9b1b-e32cf7bd68c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1776,7 +1296,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:13 GMT" + "Mon, 13 Jul 2015 12:27:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1794,7 +1314,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "37aff251-392e-4f94-bf6f-8fb99dc2b601" + "78250721-8e8c-4699-8805-799737494ee5" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver141\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -1806,7 +1326,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b4a0564a-31fb-42ea-9932-725dd86e673d" + "18b85f76-0833-4efe-b6b7-f3f92b17dbe9" ], "X-Content-Type-Options": [ "nosniff" @@ -1815,13 +1335,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14872" ], "x-ms-correlation-request-id": [ - "602961b4-1691-40fb-b1bc-4e7e8a17cb5f" + "6d50cc41-cc36-4474-a6fb-3e4cddd68179" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114020Z:602961b4-1691-40fb-b1bc-4e7e8a17cb5f" + "WESTEUROPE:20150713T122808Z:6d50cc41-cc36-4474-a6fb-3e4cddd68179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,7 +1350,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:19 GMT" + "Mon, 13 Jul 2015 12:28:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1848,10 +1368,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/auditstoragedemo\",\r\n \"name\": \"auditstoragedemo\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavftest\",\r\n \"name\": \"yoavftest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets141\",\r\n \"name\": \"auditcmdlets141\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/cmdletssignoffgroup1/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi\",\r\n \"name\": \"yoavfpowerbi\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets141\",\r\n \"name\": \"auditcmdlets141\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3799" + "3542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1863,16 +1383,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14828" ], "x-ms-request-id": [ - "afa74a29-a856-4a50-a282-8c46fd50ca99" + "67ad2d23-dd79-47ca-b6de-08a473a29a50" ], "x-ms-correlation-request-id": [ - "afa74a29-a856-4a50-a282-8c46fd50ca99" + "67ad2d23-dd79-47ca-b6de-08a473a29a50" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114013Z:afa74a29-a856-4a50-a282-8c46fd50ca99" + "WESTEUROPE:20150713T122752Z:67ad2d23-dd79-47ca-b6de-08a473a29a50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,7 +1401,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:13 GMT" + "Mon, 13 Jul 2015 12:27:51 GMT" ] }, "StatusCode": 200 @@ -1899,7 +1419,7 @@ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" ] }, - "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets141\r\n auditcmdlets141\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets141.blob.core.windows.net/\r\n https://auditcmdlets141.queue.core.windows.net/\r\n https://auditcmdlets141.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-01T11:38:23Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseBody": "\r\n https://management.core.windows.net/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets141\r\n auditcmdlets141\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://auditcmdlets141.blob.core.windows.net/\r\n https://auditcmdlets141.queue.core.windows.net/\r\n https://auditcmdlets141.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-13T12:25:55Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "1281" @@ -1911,13 +1431,13 @@ "ussouth3" ], "x-ms-request-id": [ - "7d305bb15fdfb303a4c0471ec2b20da5" + "570769aa8024cdd28d29a21d2274695c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:14 GMT" + "Mon, 13 Jul 2015 12:27:51 GMT" ], "Server": [ "1.0.6198.243", @@ -1940,7 +1460,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"Vsz5XO3S1a19oeCKYyAHtwa2EJXyTcRn9dGtul8BUZrTt4suEkF+zMYZ5h/mG3DgWVf1A65qh751kgrKkO0bbQ==\",\r\n \"secondaryKey\": \"4ANvuoD/SjSI10+6zRrQh8ENmzLpgDhLw5N3H3+Yj9/3CWs8j5f8Y0iuPo0cdr3b7oNChwZYjzhwAjGx/vIsfA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"Ws2dHu8yOviW0EAuvPmfenJL9WfH1gReE+LCQ/UON0sdcI/12I54b4aeVkMbYsD+pQSh2BLw6jZrwF7svGqobQ==\",\r\n \"secondaryKey\": \"WYlIK9WKX3RYdhCbMrNhC40ukJARw6xK5zY5hsLKTLvZtXxaL+OrWH6IriVbk5zvqvUJHDdn1/fd0/Rx9kExFQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -1958,16 +1478,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:1cde0930-1807-4267-bd41-1a92f9a0aa74" + "southcentralus:4f651483-ada5-4aac-adef-76154536c28c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1194" ], "x-ms-correlation-request-id": [ - "27a2cb98-711d-47db-b52c-c92d62be60dc" + "088cb51c-4c86-4001-a46a-0625196214ef" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114015Z:27a2cb98-711d-47db-b52c-c92d62be60dc" + "WESTEUROPE:20150713T122803Z:088cb51c-4c86-4001-a46a-0625196214ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1976,7 +1496,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:14 GMT" + "Mon, 13 Jul 2015 12:28:03 GMT" ] }, "StatusCode": 200 @@ -1994,7 +1514,7 @@ "none" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"Vsz5XO3S1a19oeCKYyAHtwa2EJXyTcRn9dGtul8BUZrTt4suEkF+zMYZ5h/mG3DgWVf1A65qh751kgrKkO0bbQ==\",\r\n \"secondaryKey\": \"4ANvuoD/SjSI10+6zRrQh8ENmzLpgDhLw5N3H3+Yj9/3CWs8j5f8Y0iuPo0cdr3b7oNChwZYjzhwAjGx/vIsfA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"Ws2dHu8yOviW0EAuvPmfenJL9WfH1gReE+LCQ/UON0sdcI/12I54b4aeVkMbYsD+pQSh2BLw6jZrwF7svGqobQ==\",\r\n \"secondaryKey\": \"WYlIK9WKX3RYdhCbMrNhC40ukJARw6xK5zY5hsLKTLvZtXxaL+OrWH6IriVbk5zvqvUJHDdn1/fd0/Rx9kExFQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "211" @@ -2012,16 +1532,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:4531c564-9a79-4693-ba24-15c516931eaf" + "southcentralus:153f003b-9985-49fc-8d11-9420a3237bed" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1192" ], "x-ms-correlation-request-id": [ - "28615c32-4ce0-423b-a90d-d300ed582728" + "d56a23bc-2fde-4577-aa86-e64b48b1ba6d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114022Z:28615c32-4ce0-423b-a90d-d300ed582728" + "WESTEUROPE:20150713T122810Z:d56a23bc-2fde-4577-aa86-e64b48b1ba6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2030,7 +1550,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:21 GMT" + "Mon, 13 Jul 2015 12:28:10 GMT" ] }, "StatusCode": 200 @@ -2039,7 +1559,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTQxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"storageAccountKey\": \"Vsz5XO3S1a19oeCKYyAHtwa2EJXyTcRn9dGtul8BUZrTt4suEkF+zMYZ5h/mG3DgWVf1A65qh751kgrKkO0bbQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver141\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"storageAccountKey\": \"Ws2dHu8yOviW0EAuvPmfenJL9WfH1gReE+LCQ/UON0sdcI/12I54b4aeVkMbYsD+pQSh2BLw6jZrwF7svGqobQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver141\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2051,10 +1571,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "72292b9a-c8fe-4967-a1ca-4232ec169a48" + "cdc37ad5-4d2c-498d-9daa-54e940757c1a" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver141\",\r\n \"storageAccountKey\": \"Vsz5XO3S1a19oeCKYyAHtwa2EJXyTcRn9dGtul8BUZrTt4suEkF+zMYZ5h/mG3DgWVf1A65qh751kgrKkO0bbQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver141\",\r\n \"storageAccountKey\": \"Ws2dHu8yOviW0EAuvPmfenJL9WfH1gReE+LCQ/UON0sdcI/12I54b4aeVkMbYsD+pQSh2BLw6jZrwF7svGqobQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1004" @@ -2063,7 +1583,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fbda7a35-a856-47df-97a4-4166c794d46a" + "6841f067-2678-413e-a51c-5ef8fbbe80c8" ], "X-Content-Type-Options": [ "nosniff" @@ -2075,13 +1595,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1193" ], "x-ms-correlation-request-id": [ - "08dbc632-ae23-4b16-84a8-8c895222452c" + "82f324c6-9eb5-44e3-a043-6d413bdaf00c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114017Z:08dbc632-ae23-4b16-84a8-8c895222452c" + "WESTEUROPE:20150713T122805Z:82f324c6-9eb5-44e3-a043-6d413bdaf00c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2090,7 +1610,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:16 GMT" + "Mon, 13 Jul 2015 12:28:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2108,7 +1628,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "37aff251-392e-4f94-bf6f-8fb99dc2b601" + "78250721-8e8c-4699-8805-799737494ee5" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver14Sqlauditcmdletdb141\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2120,7 +1640,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6889bd46-57bc-4802-a101-40452a0ac707" + "d9a36ff4-9f71-4205-8b2d-34702e894382" ], "X-Content-Type-Options": [ "nosniff" @@ -2129,13 +1649,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14874" ], "x-ms-correlation-request-id": [ - "d97758e6-eb19-42c1-828e-c9ffb49d93c5" + "bf4f3e16-04b2-40ee-a49d-4f7a343bad36" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114018Z:d97758e6-eb19-42c1-828e-c9ffb49d93c5" + "WESTEUROPE:20150713T122806Z:bf4f3e16-04b2-40ee-a49d-4f7a343bad36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2144,7 +1664,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:18 GMT" + "Mon, 13 Jul 2015 12:28:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2162,7 +1682,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4714c2f5-1001-4891-8304-422b06389bdb" + "c3af75ac-52cb-495c-8886-cfc7daec396d" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver14Sqlauditcmdletdb141\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -2174,7 +1694,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "60923d74-5610-49fa-9dbc-94a135ef65a1" + "bf0b0b7d-372b-4da1-a0f8-5e794459aa33" ], "X-Content-Type-Options": [ "nosniff" @@ -2183,13 +1703,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14869" ], "x-ms-correlation-request-id": [ - "4d2167b1-42c4-40d3-a6b7-1a1c4ce0eb86" + "5be232ba-f3e5-4516-ac28-71a70133f62a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114024Z:4d2167b1-42c4-40d3-a6b7-1a1c4ce0eb86" + "WESTEUROPE:20150713T122813Z:5be232ba-f3e5-4516-ac28-71a70133f62a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2198,7 +1718,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:24 GMT" + "Mon, 13 Jul 2015 12:28:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2216,19 +1736,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "37aff251-392e-4f94-bf6f-8fb99dc2b601" + "78250721-8e8c-4699-8805-799737494ee5" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"name\": \"sql-audit-cmdlet-db141\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3f204ad7-c0a1-4153-98a3-40105d120c95\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-01T11:40:00.47Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-01T12:10:00.47Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141\",\r\n \"name\": \"sql-audit-cmdlet-db141\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"73b89e72-4812-452b-a390-d9616ba1050b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-07-13T12:27:36.507Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-07-13T12:57:36.507Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "815" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a7e3ead9-feca-418b-886e-687e8d6071a8" + "30b4866b-450d-4ee6-8c5a-4c01820c6c5a" ], "X-Content-Type-Options": [ "nosniff" @@ -2237,13 +1757,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14871" ], "x-ms-correlation-request-id": [ - "033e33cd-4c1f-428d-81c2-df1d60dde616" + "49f31466-b442-433e-9920-562c5540eb2c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114021Z:033e33cd-4c1f-428d-81c2-df1d60dde616" + "WESTEUROPE:20150713T122809Z:49f31466-b442-433e-9920-562c5540eb2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2252,7 +1772,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:20 GMT" + "Mon, 13 Jul 2015 12:28:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2264,7 +1784,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzE0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTQxL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTQxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"storageAccountKey\": \"Vsz5XO3S1a19oeCKYyAHtwa2EJXyTcRn9dGtul8BUZrTt4suEkF+zMYZ5h/mG3DgWVf1A65qh751kgrKkO0bbQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver14Sqlauditcmdletdb141\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"storageAccountKey\": \"Ws2dHu8yOviW0EAuvPmfenJL9WfH1gReE+LCQ/UON0sdcI/12I54b4aeVkMbYsD+pQSh2BLw6jZrwF7svGqobQ==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver14Sqlauditcmdletdb141\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2276,10 +1796,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "37aff251-392e-4f94-bf6f-8fb99dc2b601" + "78250721-8e8c-4699-8805-799737494ee5" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver14Sqlauditcmdletdb141\",\r\n \"storageAccountKey\": \"Vsz5XO3S1a19oeCKYyAHtwa2EJXyTcRn9dGtul8BUZrTt4suEkF+zMYZ5h/mG3DgWVf1A65qh751kgrKkO0bbQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg141/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server141/databases/sql-audit-cmdlet-db141/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"\",\r\n \"storageAccountName\": \"auditcmdlets141\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver14Sqlauditcmdletdb141\",\r\n \"storageAccountKey\": \"Ws2dHu8yOviW0EAuvPmfenJL9WfH1gReE+LCQ/UON0sdcI/12I54b4aeVkMbYsD+pQSh2BLw6jZrwF7svGqobQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets141.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"Default-Storage-WestUS\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "875" @@ -2288,7 +1808,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a62fa2b2-d588-4daf-acad-08d429b66a2c" + "ab636cd1-7b88-456c-961d-f9720a2972a1" ], "X-Content-Type-Options": [ "nosniff" @@ -2300,13 +1820,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1191" ], "x-ms-correlation-request-id": [ - "6f5adbf1-a18a-411d-8593-c7acfce0e1b3" + "a547b820-ed4e-43a5-9d89-3fc961feccee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20150701T114023Z:6f5adbf1-a18a-411d-8593-c7acfce0e1b3" + "WESTEUROPE:20150713T122812Z:a547b820-ed4e-43a5-9d89-3fc961feccee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2315,7 +1835,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:23 GMT" + "Mon, 13 Jul 2015 12:28:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2345,13 +1865,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c6b9ae0bd261bf468f5356891ffdab43" + "11df65904744cf02b16e93662b0ed5f4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:28 GMT" + "Mon, 13 Jul 2015 12:28:16 GMT" ], "Server": [ "1.0.6198.243", @@ -2362,8 +1882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/c6b9ae0bd261bf468f5356891ffdab43", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zL2M2YjlhZTBiZDI2MWJmNDY4ZjUzNTY4OTFmZmRhYjQz", + "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/operations/11df65904744cf02b16e93662b0ed5f4", + "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9vcGVyYXRpb25zLzExZGY2NTkwNDc0NGNmMDJiMTZlOTM2NjJiMGVkNWY0", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2374,7 +1894,7 @@ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" ] }, - "ResponseBody": "\r\n c6b9ae0b-d261-bf46-8f53-56891ffdab43\r\n Succeeded\r\n 200\r\n", + "ResponseBody": "\r\n 11df6590-4744-cf02-b16e-93662b0ed5f4\r\n Succeeded\r\n 200\r\n", "ResponseHeaders": { "Content-Length": [ "232" @@ -2386,13 +1906,13 @@ "ussouth3" ], "x-ms-request-id": [ - "c92a9d3b249ebd03961804539a35650e" + "6bfaf25cab8bca648819fb3fa02d21c9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Jul 2015 11:40:30 GMT" + "Mon, 13 Jul 2015 12:28:17 GMT" ], "Server": [ "1.0.6198.243", diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config index 5f8bafeb9706..8240e46a0367 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config @@ -8,6 +8,7 @@ + diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index 3ecff0e59868..1bcd7f418909 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -210,6 +210,9 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll + False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll diff --git a/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs index 100b4f31ec8f..1f01de82297b 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs @@ -14,6 +14,7 @@ using System; using System.Collections.Generic; +using System.Linq; using System.Net.Http; using System.Threading; using System.Threading.Tasks; @@ -27,6 +28,8 @@ using Microsoft.Azure.Management.Sql; using Microsoft.WindowsAzure.Management.Storage; using Newtonsoft.Json.Linq; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; namespace Microsoft.Azure.Commands.Sql.Common { @@ -43,7 +46,9 @@ public class AzureEndpointsCommunicator /// /// The storage management client used by this communicator /// - private static StorageManagementClient StorageClient { get; set; } + private static Microsoft.WindowsAzure.Management.Storage.StorageManagementClient StorageClient { get; set; } + + private static Microsoft.Azure.Management.Storage.StorageManagementClient StorageV2Client { get; set; } /// /// Gets or sets the Azure subscription @@ -73,6 +78,7 @@ public AzureEndpointsCommunicator(AzureProfile profile, AzureSubscription subscr Subscription = subscription; StorageClient = null; ResourcesClient = null; + StorageV2Client = null; } } @@ -97,15 +103,40 @@ public async Task> GetStorageKeysAsync(string await client.Credentials.ProcessHttpRequestAsync(httpRequest, CancellationToken.None).ConfigureAwait(false); HttpResponseMessage httpResponse = await client.HttpClient.SendAsync(httpRequest, CancellationToken.None).ConfigureAwait(false); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - JToken responseDoc = JToken.Parse(responseContent); + Dictionary result = new Dictionary(); + try + { + JToken responseDoc = JToken.Parse(responseContent); + string primaryKey = (string)responseDoc["primaryKey"]; + string secondaryKey = (string)responseDoc["secondaryKey"]; + if (string.IsNullOrEmpty(primaryKey) || string.IsNullOrEmpty(secondaryKey)) + throw new Exception(); // this is caught by the synced wrapper + result.Add(StorageKeyKind.Primary, primaryKey); + result.Add(StorageKeyKind.Secondary, secondaryKey); + return result; + } + catch + { + try + { + return GetV2Keys(resourceGroupName, storageAccountName); + } + catch + { + throw; + } + } + } + private Dictionary GetV2Keys(string resourceGroupName, string storageAccountName) + { + Microsoft.Azure.Management.Storage.StorageManagementClient storageClient = GetCurrentStorageV2Client(Profile); + var r = storageClient.StorageAccounts.ListKeys(resourceGroupName, storageAccountName); + string k1 = r.StorageAccountKeys.Key1; + string k2 = r.StorageAccountKeys.Key2; Dictionary result = new Dictionary(); - string primaryKey = (string)responseDoc["primaryKey"]; - string secondaryKey = (string)responseDoc["secondaryKey"]; - if(string.IsNullOrEmpty(primaryKey) || string.IsNullOrEmpty(secondaryKey)) - throw new Exception(); // this is caught by the synced wrapper - result.Add(StorageKeyKind.Primary, primaryKey); - result.Add(StorageKeyKind.Secondary, secondaryKey); + result.Add(StorageKeyKind.Primary, k1); + result.Add(StorageKeyKind.Secondary, k2); return result; } @@ -133,33 +164,39 @@ public Dictionary GetStorageKeys(string resourceGroupNam /// public string GetStorageResourceGroup(string storageAccountName) { - ResourceManagementClient resourcesClient = GetCurrentResourcesClient(Profile); - - ResourceListResult res = resourcesClient.Resources.List(new ResourceListParameters + ResourceManagementClient resourcesClient = GetCurrentResourcesClient(Profile); + Func getResourceGroupName = + resourceType => + { + ResourceListResult res = resourcesClient.Resources.List(new ResourceListParameters { ResourceGroupName = null, - ResourceType = "Microsoft.ClassicStorage/storageAccounts", + ResourceType = resourceType, TagName = null, TagValue = null }); - var allResources = new List(res.Resources); - - if (allResources.Count != 0) - { + var allResources = new List(res.Resources); GenericResourceExtended account = allResources.Find(r => r.Name == storageAccountName); if (account != null) { - String resId = account.Id; + String resId = account.Id; String[] segments = resId.Split('/'); - int indexOfResoureGroup = new List(segments).IndexOf("resourceGroups") +1; + int indexOfResoureGroup = new List(segments).IndexOf("resourceGroups") + 1; return segments[indexOfResoureGroup]; - } + } else { throw new Exception(string.Format(Resources.StorageAccountNotFound, storageAccountName)); } + }; + try + { + return getResourceGroupName("Microsoft.ClassicStorage/storageAccounts"); + } + catch + { + return getResourceGroupName("Microsoft.Storage/storageAccounts"); } - return null; } /// @@ -174,20 +211,37 @@ public string GetStorageTableEndpoint(AzureProfile profile, string storageAccoun } catch { - throw new Exception(string.Format(Resources.StorageAccountNotFound, storageAccountName)); + try + { + return GetCurrentStorageV2Client(profile).StorageAccounts.List().StorageAccounts.Where(a => a.Name == storageAccountName).First().PrimaryEndpoints.Table.AbsoluteUri; + } + catch + { + throw new Exception(string.Format(Resources.StorageAccountNotFound, storageAccountName)); + } } } /// /// Lazy creation of a single instance of a storage client /// - private StorageManagementClient GetCurrentStorageClient(AzureProfile profile) + private Microsoft.WindowsAzure.Management.Storage.StorageManagementClient GetCurrentStorageClient(AzureProfile profile) { if(StorageClient == null) - StorageClient = AzureSession.ClientFactory.CreateClient(profile, Subscription, AzureEnvironment.Endpoint.ServiceManagement); + StorageClient = AzureSession.ClientFactory.CreateClient(profile, Subscription, AzureEnvironment.Endpoint.ServiceManagement); return StorageClient; } + /// + /// Lazy creation of a single instance of a storage client + /// + private Microsoft.Azure.Management.Storage.StorageManagementClient GetCurrentStorageV2Client(AzureProfile profile) + { + if (StorageV2Client == null) + StorageV2Client = AzureSession.ClientFactory.CreateClient(profile, Subscription, AzureEnvironment.Endpoint.ResourceManager); + return StorageV2Client; + } + /// /// Lazy creation of a single instance of a resoures client /// diff --git a/src/ResourceManager/Sql/Commands.Sql/packages.config b/src/ResourceManager/Sql/Commands.Sql/packages.config index 7fd0f418f377..80c7fc39ce71 100644 --- a/src/ResourceManager/Sql/Commands.Sql/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql/packages.config @@ -6,6 +6,7 @@ + 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 a9fb80e4d754..aa662cc2ea54 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.4' +ModuleVersion = '0.9.5' # ID used to uniquely identify this module GUID = 'F237EAAA-BD3A-4965-AD4A-BF38598BFEF7' diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj index 142249a6ec1d..e266dbbddfc8 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj @@ -97,7 +97,7 @@ - + @@ -113,29 +113,8 @@ PreserveNewest - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always + + PreserveNewest diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/EndpointTests.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/EndpointTests.cs index 06fb63a0b4ec..f46f383f4f1c 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/EndpointTests.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/EndpointTests.cs @@ -17,20 +17,111 @@ namespace Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; - public class EndpointTests : WatmV2TestsBase + public class EndpointTests { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestAddEndpoint() { - this.RunPowerShellTest("Test-AddEndpoint"); + TestController.NewInstance.RunPowerShellTest("Test-AddEndpoint"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDeleteEndpoint() { - this.RunPowerShellTest("Test-DeleteEndpoint"); + TestController.NewInstance.RunPowerShellTest("Test-DeleteEndpoint"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEndpointCrud() + { + TestController.NewInstance.RunPowerShellTest("Test-EndpointCrud"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEndpointCrudPiping() + { + TestController.NewInstance.RunPowerShellTest("Test-EndpointCrudPiping"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateExistingEndpoint() + { + TestController.NewInstance.RunPowerShellTest("Test-CreateExistingEndpoint"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateExistingEndpointFromNonExistingProfile() + { + TestController.NewInstance.RunPowerShellTest("Test-CreateExistingEndpointFromNonExistingProfile"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveExistingEndpointFromNonExistingProfile() + { + TestController.NewInstance.RunPowerShellTest("Test-RemoveExistingEndpointFromNonExistingProfile"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetExistingEndpointFromNonExistingProfile() + { + TestController.NewInstance.RunPowerShellTest("Test-GetExistingEndpointFromNonExistingProfile"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveNonExistingEndpointFromProfile() + { + TestController.NewInstance.RunPowerShellTest("Test-RemoveNonExistingEndpointFromProfile"); + } + + [Fact(Skip = "Bug")] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEnableEndpoint() + { + TestController.NewInstance.RunPowerShellTest("Test-EnableEndpoint"); + } + + [Fact(Skip = "Bug")] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDisableEndpoint() + { + TestController.NewInstance.RunPowerShellTest("Test-DisableEndpoint"); + } + + [Fact(Skip = "Bug")] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEnableEndpointUsingPiping() + { + TestController.NewInstance.RunPowerShellTest("Test-EnableEndpointUsingPiping"); + } + + [Fact(Skip = "Bug")] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDisableEndpointUsingPiping() + { + TestController.NewInstance.RunPowerShellTest("Test-DisableEndpointUsingPiping"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEnableNonExistingEndpoint() + { + TestController.NewInstance.RunPowerShellTest("Test-EnableNonExistingEndpoint"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDisableNonExistingEndpoint() + { + TestController.NewInstance.RunPowerShellTest("Test-DisableNonExistingEndpoint"); } } } diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/EndpointTests.ps1 b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/EndpointTests.ps1 index bd0515de6f16..77b409539db2 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/EndpointTests.ps1 +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/EndpointTests.ps1 @@ -46,4 +46,293 @@ function Test-DeleteEndpoint Remove-AzureTrafficManagerEndpointConfig -EndpointName $endpointName -TrafficManagerProfile $profile Assert-AreEqual 0 $profile.Endpoints.Count +} + +<# +.SYNOPSIS +Full Endpoint CRUD +#> +function Test-EndpointCrud +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + $endpoint = New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Enabled" -EndpointLocation "North Europe" + + Assert-NotNull $endpoint + Assert-AreEqual $endpointName $endpoint.Name + Assert-AreEqual $profileName $endpoint.ProfileName + Assert-AreEqual $resourceGroup.ResourceGroupName $endpoint.ResourceGroupName + Assert-AreEqual "ExternalEndpoints" $endpoint.Type + Assert-AreEqual "www.contoso.com" $endpoint.Target + Assert-AreEqual "Enabled" $endpoint.EndpointStatus + <# Assert-AreEqual "North Europe" $endpoint.EndpointLocation #> + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-NotNull $endpoint + Assert-AreEqual $endpointName $endpoint.Name + Assert-AreEqual $profileName $endpoint.ProfileName + Assert-AreEqual $resourceGroup.ResourceGroupName $endpoint.ResourceGroupName + Assert-AreEqual "ExternalEndpoints" $endpoint.Type + Assert-AreEqual "www.contoso.com" $endpoint.Target + Assert-AreEqual "Enabled" $endpoint.EndpointStatus + <# Assert-AreEqual "North Europe" $endpoint.EndpointLocation #> + + $endpoint.EndpointStatus = "Disabled" + + $endpoint = Set-AzureTrafficManagerEndpoint -TrafficManagerEndpoint $endpoint + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-NotNull $endpoint + Assert-AreEqual $endpointName $endpoint.Name + Assert-AreEqual $profileName $endpoint.ProfileName + Assert-AreEqual $resourceGroup.ResourceGroupName $endpoint.ResourceGroupName + Assert-AreEqual "ExternalEndpoints" $endpoint.Type + Assert-AreEqual "www.contoso.com" $endpoint.Target + Assert-AreEqual "Disabled" $endpoint.EndpointStatus + <# Assert-AreEqual "North Europe" $endpoint.EndpointLocation #> + + $removed = Remove-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Force + + Assert-True { $removed } + + Assert-Throws { Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" } +} + +<# +.SYNOPSIS +Full Endpoint CRUD with piping +#> +function Test-EndpointCrudPiping +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + $endpoint = New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Enabled" -EndpointLocation "North Europe" + + Assert-NotNull $endpoint + Assert-AreEqual $endpointName $endpoint.Name + Assert-AreEqual $profileName $endpoint.ProfileName + Assert-AreEqual $resourceGroup.ResourceGroupName $endpoint.ResourceGroupName + Assert-AreEqual "ExternalEndpoints" $endpoint.Type + Assert-AreEqual "www.contoso.com" $endpoint.Target + Assert-AreEqual "Enabled" $endpoint.EndpointStatus + <# Assert-AreEqual "North Europe" $endpoint.EndpointLocation #> + + $removed = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" | Set-AzureTrafficManagerEndpoint | Remove-AzureTrafficManagerEndpoint -Force + + Assert-True { $removed } + + Assert-Throws { Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" } +} + +<# +.SYNOPSIS +Create existing endpoint +#> +function Test-CreateExistingEndpoint +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + $endpoint = New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Enabled" -EndpointLocation "North Europe" + + Assert-Throws { New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Enabled" -EndpointLocation "North Europe" } +} + +<# +.SYNOPSIS +Create endpoint non existing profile +#> +function Test-CreateExistingEndpointFromNonExistingProfile +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + Assert-Throws { New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Enabled" -EndpointLocation "North Europe" } +} + +<# +.SYNOPSIS +Remove endpoint non existing profile +#> +function Test-RemoveExistingEndpointFromNonExistingProfile +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + Assert-Throws { Remove-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" } +} + +<# +.SYNOPSIS +Get endpoint non existing profile +#> +function Test-GetExistingEndpointFromNonExistingProfile +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + Assert-Throws { Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" } +} + +<# +.SYNOPSIS +Remove non existing endpoint from profile +#> +function Test-RemoveNonExistingEndpointFromProfile +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + Assert-Throws { Remove-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" } +} + +<# +.SYNOPSIS +Enable Endpoint +#> +function Test-EnableEndpoint +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + $endpoint = New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Disabled" -EndpointLocation "North Europe" + + Assert-AreEqual "Disabled" $endpoint.EndpointStatus + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-True { Enable-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" } + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-AreEqual "Enabled" $endpoint.EndpointStatus +} + +<# +.SYNOPSIS +Disable Endpoint +#> +function Test-DisableEndpoint +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + $endpoint = New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Enabled" -EndpointLocation "North Europe" + + Assert-AreEqual "Enabled" $endpoint.EndpointStatus + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-True { Disable-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Force } + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-NotNull $endpoint + Assert-AreEqual "Disabled" $endpoint.EndpointStatus +} + +<# +.SYNOPSIS +Enable Endpoint using piping +#> +function Test-EnableEndpointUsingPiping +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + $endpoint = New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Disabled" -EndpointLocation "North Europe" + + Assert-AreEqual "Disabled" $endpoint.EndpointStatus + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-True { Enable-AzureTrafficManagerEndpoint -TrafficManagerEndpoint $endpoint } + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-AreEqual "Enabled" $endpoint.EndpointStatus +} + +<# +.SYNOPSIS +Disable Endpoint +#> +function Test-DisableEndpoint +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + $endpoint = New-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" -Target "www.contoso.com" -EndpointStatus "Enabled" -EndpointLocation "North Europe" + + Assert-AreEqual "Enabled" $endpoint.EndpointStatus + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-True { Disable-AzureTrafficManagerEndpoint -TrafficManagerEndpoint $endpoint -Force } + + $endpoint = Get-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" + + Assert-NotNull $endpoint + Assert-AreEqual "Disabled" $endpoint.EndpointStatus +} + +<# +.SYNOPSIS +Enable non existing Endpoint +#> +function Test-EnableNonExistingEndpoint +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + Assert-Throws { Enable-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" } +} + +<# +.SYNOPSIS +Disable non existing Endpoint +#> +function Test-DisableNonExistingEndpoint +{ + $endpointName = getAssetname + $profileName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + + $profile = TestSetup-CreateProfile $profileName $resourceGroup.ResourceGroupName + + Assert-Throws { Disable-AzureTrafficManagerEndpoint -Name $endpointName -ProfileName $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Type "ExternalEndpoints" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/ProfileTests.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/ProfileTests.cs index 2e2b31bcd40c..6e8df4e2cb2a 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/ProfileTests.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/ProfileTests.cs @@ -17,48 +17,104 @@ namespace Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; - public class ProfileTests : WatmV2TestsBase + public class ProfileTests { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestProfileCrud() { - WatmV2TestsBase.NewInstance.RunPowerShellTest("Test-ProfileCrud"); + TestController.NewInstance.RunPowerShellTest("Test-ProfileCrud"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestProfileCrudWithPiping() { - WatmV2TestsBase.NewInstance.RunPowerShellTest("Test-ProfileCrudWithPiping"); + TestController.NewInstance.RunPowerShellTest("Test-ProfileCrudWithPiping"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCreateDeleteUsingProfile() { - WatmV2TestsBase.NewInstance.RunPowerShellTest("Test-CreateDeleteUsingProfile"); + TestController.NewInstance.RunPowerShellTest("Test-CreateDeleteUsingProfile"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCrudWithEndpoint() { - WatmV2TestsBase.NewInstance.RunPowerShellTest("Test-CrudWithEndpoint"); + TestController.NewInstance.RunPowerShellTest("Test-CrudWithEndpoint"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestListProfilesInResourceGroup() + { + TestController.NewInstance.RunPowerShellTest("Test-ListProfilesInResourceGroup"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestListProfilesInSubscription() + { + TestController.NewInstance.RunPowerShellTest("Test-ListProfilesInSubscription"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestProfileNewAlreadyExists() { - WatmV2TestsBase.NewInstance.RunPowerShellTest("Test-ProfileNewAlreadyExists"); + TestController.NewInstance.RunPowerShellTest("Test-ProfileNewAlreadyExists"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestProfileRemoveNonExisting() { - WatmV2TestsBase.NewInstance.RunPowerShellTest("Test-ProfileRemoveNonExisting"); + TestController.NewInstance.RunPowerShellTest("Test-ProfileRemoveNonExisting"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestProfileEnable() + { + TestController.NewInstance.RunPowerShellTest("Test-ProfileEnable"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestProfileEnablePipeline() + { + TestController.NewInstance.RunPowerShellTest("Test-ProfileEnablePipeline"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestProfileEnableNonExisting() + { + TestController.NewInstance.RunPowerShellTest("Test-ProfileEnableNonExisting"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestProfileDisable() + { + TestController.NewInstance.RunPowerShellTest("Test-ProfileDisable"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestProfileDisablePipeline() + { + TestController.NewInstance.RunPowerShellTest("Test-ProfileDisablePipeline"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestProfileDisableNonExisting() + { + TestController.NewInstance.RunPowerShellTest("Test-ProfileDisableNonExisting"); } } } diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/ProfileTests.ps1 b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/ProfileTests.ps1 index e955b3135b80..52db2bc9d174 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/ProfileTests.ps1 +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/ProfileTests.ps1 @@ -47,7 +47,7 @@ function Test-ProfileCrud Assert-True { $removed } - Assert-Throws { Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName } "ResourceNotFound: Resource not found." + Assert-Throws { Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName } } <# @@ -67,7 +67,7 @@ function Test-ProfileCrudWithPiping Assert-True { $removed } - Assert-Throws { Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName } "ResourceNotFound: Resource not found." + Assert-Throws { Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName } } <# @@ -88,7 +88,7 @@ function Test-CreateDeleteUsingProfile Remove-AzureTrafficManagerProfile -TrafficManagerProfile $createdProfile -Force - Assert-Throws { Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName } "ResourceNotFound: Resource not found." + Assert-Throws { Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName } } <# @@ -109,6 +109,38 @@ function Test-CrudWithEndpoint Assert-AreEqual 1 $updatedProfile.Endpoints.Count } +<# +.SYNOPSIS +List profiles in resource group +#> +function Test-ListProfilesInResourceGroup +{ + $profileName = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + $relativeName = getAssetName + $createdProfile = New-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -RelativeDnsName $relativeName -Ttl 50 -TrafficRoutingMethod "Performance" -MonitorProtocol "HTTP" -MonitorPort 80 -MonitorPath "/testpath.asp" + + $profiles = Get-AzureTrafficManagerProfile -ResourceGroupName $resourceGroup.ResourceGroupName + + Assert-AreEqual 1 $profiles.Count +} + +<# +.SYNOPSIS +List profiles in subscription +#> +function Test-ListProfilesInSubscription +{ + $profileName = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + $relativeName = getAssetName + $createdProfile = New-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -RelativeDnsName $relativeName -Ttl 50 -TrafficRoutingMethod "Performance" -MonitorProtocol "HTTP" -MonitorPort 80 -MonitorPath "/testpath.asp" + + $profiles = Get-AzureTrafficManagerProfile + + Assert-NotNull $profiles +} + <# .SYNOPSIS Create a Profile that already exists @@ -139,4 +171,109 @@ function Test-ProfileRemoveNonExisting $removed = Remove-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Force Assert-False { $removed } +} + +<# +.SYNOPSIS +Enable existing disabled profile +#> +function Test-ProfileEnable +{ + $profileName = getAssetName + $relativeName = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + + $disabledProfile = New-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -ProfileStatus "Disabled" -RelativeDnsName $relativeName -Ttl 50 -TrafficRoutingMethod "Performance" -MonitorProtocol "HTTP" -MonitorPort 80 -MonitorPath "/testpath.asp" + Assert-AreEqual "Disabled" $disabledProfile.ProfileStatus + + Assert-True { Enable-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName } + + $updatedProfile = Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName + + Assert-AreEqual "Enabled" $updatedProfile.ProfileStatus +} + +<# +.SYNOPSIS +Enable existing disabled profile using pipeline +#> +function Test-ProfileEnablePipeline +{ + $profileName = getAssetName + $relativeName = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + + $disabledProfile = New-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -ProfileStatus "Disabled" -RelativeDnsName $relativeName -Ttl 50 -TrafficRoutingMethod "Performance" -MonitorProtocol "HTTP" -MonitorPort 80 -MonitorPath "/testpath.asp" + Assert-AreEqual "Disabled" $disabledProfile.ProfileStatus + + Assert-True { Enable-AzureTrafficManagerProfile -TrafficManagerProfile $disabledProfile } + + $updatedProfile = Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName + + Assert-AreEqual "Enabled" $updatedProfile.ProfileStatus +} + +<# +.SYNOPSIS +Enable non existing profile +#> +function Test-ProfileEnableNonExisting +{ + $profileName = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + + Assert-Throws { Enable-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName } +} + +<# +.SYNOPSIS +Disable existing disabled profile +#> +function Test-ProfileDisable +{ + $profileName = getAssetName + $relativeName = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + + $enabledProfile = New-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -ProfileStatus "Enabled" -RelativeDnsName $relativeName -Ttl 50 -TrafficRoutingMethod "Performance" -MonitorProtocol "HTTP" -MonitorPort 80 -MonitorPath "/testpath.asp" + + Assert-AreEqual "Enabled" $enabledProfile.ProfileStatus + + Assert-True { Disable-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Force } + + $updatedProfile = Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName + + Assert-AreEqual "Disabled" $updatedProfile.ProfileStatus +} + +<# +.SYNOPSIS +Disable existing disabled profile using pipeline +#> +function Test-ProfileDisablePipeline +{ + $profileName = getAssetName + $relativeName = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + + $enabledProfile = New-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -ProfileStatus "Enabled" -RelativeDnsName $relativeName -Ttl 50 -TrafficRoutingMethod "Performance" -MonitorProtocol "HTTP" -MonitorPort 80 -MonitorPath "/testpath.asp" + Assert-AreEqual "Enabled" $enabledProfile.ProfileStatus + + Assert-True { Disable-AzureTrafficManagerProfile -TrafficManagerProfile $enabledProfile -Force } + + $updatedProfile = Get-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName + + Assert-AreEqual "Disabled" $updatedProfile.ProfileStatus +} + +<# +.SYNOPSIS +Disable non existing profile +#> +function Test-ProfileDisableNonExisting +{ + $profileName = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + + Assert-Throws { Disable-AzureTrafficManagerProfile -Name $profileName -ResourceGroupName $resourceGroup.ResourceGroupName -Force } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/WatmV2TestsBase.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/TestController.cs similarity index 96% rename from src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/WatmV2TestsBase.cs rename to src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/TestController.cs index fed8c6d9cf46..69bcb69ae433 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/WatmV2TestsBase.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/TestController.cs @@ -25,11 +25,11 @@ namespace Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests using Microsoft.Azure.Test; using Microsoft.WindowsAzure.Commands.ScenarioTest; - public class WatmV2TestsBase + public class TestController { private CSMTestEnvironmentFactory csmTestFactory; - private readonly EnvironmentSetupHelper helper; + private EnvironmentSetupHelper helper; public ResourceManagementClient ResourceManagementClient { get; private set; } @@ -41,15 +41,15 @@ public class WatmV2TestsBase public TrafficManagerManagementClient TrafficManagerManagementClient { get; private set; } - public static WatmV2TestsBase NewInstance + public static TestController NewInstance { get { - return new WatmV2TestsBase(); + return new TestController(); } } - protected WatmV2TestsBase() + protected TestController() { this.helper = new EnvironmentSetupHelper(); } @@ -103,10 +103,10 @@ public void RunPsTestWorkflow( initialize(this.csmTestFactory); } - this.SetupManagementClients(); - this.helper.SetupEnvironment(AzureModule.AzureResourceManager); + this.SetupManagementClients(); + string callingClassName = callingClassType .Split(new[] { "." }, StringSplitOptions.RemoveEmptyEntries) .Last(); diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestAddEndpoint.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestAddEndpoint.json index d21989a38fb5..6fc2ce88346c 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestAddEndpoint.json +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestAddEndpoint.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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 \"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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\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 \"East US 2\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"associations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/premierOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Azure.Security\",\r\n \"namespace\": \"Azure.Security\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"default\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.AADPim\",\r\n \"namespace\": \"Microsoft.AADPim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Notifications\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"NotificationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UserToRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Roles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AuditEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\",\r\n \"2014-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\",\r\n \"2012-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupBVTD2\",\r\n \"namespace\": \"Microsoft.BackupBVTD2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupPPECurrent\",\r\n \"namespace\": \"Microsoft.BackupPPECurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CisRP\",\r\n \"namespace\": \"Microsoft.CisRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CisVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-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-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CSMBackupVaultRRP\",\r\n \"namespace\": \"Microsoft.CSMBackupVaultRRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated6\",\r\n \"adfgated5\",\r\n \"adfgated4\",\r\n \"adfgated3\",\r\n \"adfgated2\",\r\n \"adfgated1\",\r\n \"adfbqupgrade\",\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-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 \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestHub\",\r\n \"namespace\": \"Microsoft.DevTestHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool.IouriS\",\r\n \"namespace\": \"Microsoft.DevTestPool.IouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPoolIouriS\",\r\n \"namespace\": \"Microsoft.DevTestPoolIouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tlds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainsearches\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona1\",\r\n \"namespace\": \"Microsoft.Kona1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"KonaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.MS-Pim\",\r\n \"namespace\": \"Microsoft.MS-Pim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Home\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pim\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"subscriptions/locations\",\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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\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 \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/resourcepools\",\r\n \"locations\": [],\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/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\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/connectionPolicies\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupBVTD\",\r\n \"namespace\": \"Microsoft.WaBackupBVTD\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupGuru\",\r\n \"namespace\": \"Microsoft.WaBackupGuru\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupSql\",\r\n \"namespace\": \"Microsoft.WaBackupSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupTest\",\r\n \"namespace\": \"Microsoft.WaBackupTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft_AADB2C\",\r\n \"namespace\": \"Microsoft_AADB2C\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/vikashjorders\",\r\n \"namespace\": \"vikashjorders\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"order\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\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 ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"resourceType\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "44860" + "78972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14981" ], "x-ms-request-id": [ - "3e3f36dc-2818-4919-aa3d-fa9038d612ea" + "5e2471c7-5892-49d9-92f1-ffb80c8d522a" ], "x-ms-correlation-request-id": [ - "3e3f36dc-2818-4919-aa3d-fa9038d612ea" + "5e2471c7-5892-49d9-92f1-ffb80c8d522a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153937Z:3e3f36dc-2818-4919-aa3d-fa9038d612ea" + "WESTEUROPE:20150715T123250Z:5e2471c7-5892-49d9-92f1-ffb80c8d522a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:39:37 GMT" + "Wed, 15 Jul 2015 12:32:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1779?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9939?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5Mzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14980" ], "x-ms-request-id": [ - "535ef295-a353-4d0f-875c-f9d9f8b8636c" + "401690ff-4258-4b43-a0be-353adabbd6bb" ], "x-ms-correlation-request-id": [ - "535ef295-a353-4d0f-875c-f9d9f8b8636c" + "401690ff-4258-4b43-a0be-353adabbd6bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153938Z:535ef295-a353-4d0f-875c-f9d9f8b8636c" + "WESTEUROPE:20150715T123252Z:401690ff-4258-4b43-a0be-353adabbd6bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:39:37 GMT" + "Wed, 15 Jul 2015 12:32:52 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1779?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9939?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5Mzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1779\",\r\n \"name\": \"onesdk1779\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9939\",\r\n \"name\": \"onesdk9939\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1190" ], "x-ms-request-id": [ - "cfd358d8-ee5a-4128-a08c-35224f6037f0" + "2d779434-f831-4a4f-94a2-103310dd7b3a" ], "x-ms-correlation-request-id": [ - "cfd358d8-ee5a-4128-a08c-35224f6037f0" + "2d779434-f831-4a4f-94a2-103310dd7b3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153938Z:cfd358d8-ee5a-4128-a08c-35224f6037f0" + "WESTEUROPE:20150715T123253Z:2d779434-f831-4a4f-94a2-103310dd7b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:39:37 GMT" + "Wed, 15 Jul 2015 12:32:53 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1779/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9939/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14979" ], "x-ms-request-id": [ - "40fcbfdd-5b1d-4bf8-82e3-5460f8158567" + "a02bbbdb-4f67-417b-8e95-b118ae441d08" ], "x-ms-correlation-request-id": [ - "40fcbfdd-5b1d-4bf8-82e3-5460f8158567" + "a02bbbdb-4f67-417b-8e95-b118ae441d08" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153938Z:40fcbfdd-5b1d-4bf8-82e3-5460f8158567" + "WESTEUROPE:20150715T123254Z:a02bbbdb-4f67-417b-8e95-b118ae441d08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,19 +196,19 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:39:37 GMT" + "Wed, 15 Jul 2015 12:32:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1779/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9939/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MzkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:8797baf6-1ed1-4a98-be59-7950d13af8c7" + "westeurope:dbbace1f-1ca5-47f3-afcf-1da9a6ade98d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "14972" ], "x-ms-correlation-request-id": [ - "c45bccf5-a6ef-49b8-a226-b20b88e08ef0" + "b94e7aa9-15d6-475c-84d7-2d2a99e391c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153939Z:c45bccf5-a6ef-49b8-a226-b20b88e08ef0" + "WESTEUROPE:20150715T123255Z:b94e7aa9-15d6-475c-84d7-2d2a99e391c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:39:39 GMT" + "Wed, 15 Jul 2015 12:32:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1779/providers/microsoft.network/trafficmanagerprofiles/onesdk3421?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzkvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzQyMT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9939/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4272?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDI3Mj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,10 +262,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk4272' under resource group 'onesdk9939' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "d62f71e0-7b74-4b36-8d2e-8372dca2982d" + "d980df39-4330-41fa-b54d-b8ba6dbeba98" ], "x-ms-correlation-request-id": [ - "d62f71e0-7b74-4b36-8d2e-8372dca2982d" + "d980df39-4330-41fa-b54d-b8ba6dbeba98" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153939Z:d62f71e0-7b74-4b36-8d2e-8372dca2982d" + "WESTEUROPE:20150715T123256Z:d980df39-4330-41fa-b54d-b8ba6dbeba98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,31 +295,31 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:39:39 GMT" + "Wed, 15 Jul 2015 12:32:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1779/providers/microsoft.network/trafficmanagerprofiles/onesdk3421?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzkvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzQyMT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9939/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4272?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDI3Mj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk5473\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk3421\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1494\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk4272\",\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "327" + "312" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1779/providers/Microsoft.Network/trafficManagerProfiles/onesdk3421\",\r\n \"name\": \"onesdk3421\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk5473\",\r\n \"fqdn\": \"onesdk5473.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9939/providers/Microsoft.Network/trafficManagerProfiles/onesdk4272\",\r\n \"name\": \"onesdk4272\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1494\",\r\n \"fqdn\": \"onesdk1494.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -328,16 +328,16 @@ "nosniff" ], "x-ms-request-id": [ - "20ba9617-5362-4407-90e1-793f60fee652" + "e355c793-4b38-4bf9-9981-4d3c79b3f0fd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10794" + "10793" ], "x-ms-correlation-request-id": [ - "442d6a49-c647-48f2-9955-1ab9f63e1f81" + "5765a431-11f7-452a-85a3-b6a6c8e92ca5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153941Z:442d6a49-c647-48f2-9955-1ab9f63e1f81" + "WESTEUROPE:20150715T123302Z:5765a431-11f7-452a-85a3-b6a6c8e92ca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -346,7 +346,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 15:39:40 GMT" + "Wed, 15 Jul 2015 12:33:02 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -363,13 +363,13 @@ ], "Names": { "Test-AddEndpoint": [ - "onesdk8472", - "onesdk1779", - "onesdk3421", - "onesdk5473" + "onesdk3807", + "onesdk9939", + "onesdk4272", + "onesdk1494" ] }, "Variables": { - "SubscriptionId": "5ecfd42b-521f-4e3c-b4f4-47895f445068" + "SubscriptionId": "8dee4f73-2f41-405b-9485-ab9e75c63bc8" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestCreateExistingEndpoint.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestCreateExistingEndpoint.json new file mode 100644 index 000000000000..44fd7eeb45bd --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestCreateExistingEndpoint.json @@ -0,0 +1,543 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "ffe20a50-02a0-4756-a372-e16fee7554d3" + ], + "x-ms-correlation-request-id": [ + "ffe20a50-02a0-4756-a372-e16fee7554d3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151618Z:ffe20a50-02a0-4756-a372-e16fee7554d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk6551?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "2e9902e1-0b20-44eb-bf1c-d16524534829" + ], + "x-ms-correlation-request-id": [ + "2e9902e1-0b20-44eb-bf1c-d16524534829" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151619Z:2e9902e1-0b20-44eb-bf1c-d16524534829" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:18 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk6551?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551\",\r\n \"name\": \"onesdk6551\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1167" + ], + "x-ms-request-id": [ + "ae99c282-f7d4-48b1-a1bf-81bf5f392481" + ], + "x-ms-correlation-request-id": [ + "ae99c282-f7d4-48b1-a1bf-81bf5f392481" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151620Z:ae99c282-f7d4-48b1-a1bf-81bf5f392481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazY1NTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "8e3f555f-a153-4c45-9fbe-8c0ba58363d6" + ], + "x-ms-correlation-request-id": [ + "8e3f555f-a153-4c45-9fbe-8c0ba58363d6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151620Z:8e3f555f-a153-4c45-9fbe-8c0ba58363d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk6551/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:e857ca66-3973-490b-8847-7e83002dd471" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "d48dcb26-ecf6-41ab-87e3-78cbc34bef54" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151620Z:d48dcb26-ecf6-41ab-87e3-78cbc34bef54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3790?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazY1NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzc5MD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk3790' under resource group 'onesdk6551' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7ed8961c-87c5-49db-8891-414e3ee47647" + ], + "x-ms-correlation-request-id": [ + "7ed8961c-87c5-49db-8891-414e3ee47647" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151621Z:7ed8961c-87c5-49db-8891-414e3ee47647" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:20 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3790?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazY1NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzc5MD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk234\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk3790\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "311" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/providers/Microsoft.Network/trafficManagerProfiles/onesdk3790\",\r\n \"name\": \"onesdk3790\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk234\",\r\n \"fqdn\": \"onesdk234.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "541" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3f047923-6d2f-40fc-8e6d-22c546534ce6" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10792" + ], + "x-ms-correlation-request-id": [ + "1617f8fe-30f8-4629-a6ea-7174b0b1f5d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151625Z:1617f8fe-30f8-4629-a6ea-7174b0b1f5d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:24 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3790/ExternalEndpoints/onesdk5597?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazY1NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzc5MC9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs1NTk3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The endpoint 'onesdk5597' of type 'externalendpoints' does not exist in the profile 'onesdk3790'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e4eaffdb-3f9e-4e89-bd8e-5844fa65954c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "4a75720b-b2db-4cee-beda-39091c7e0e82" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151625Z:4a75720b-b2db-4cee-beda-39091c7e0e82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:25 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3790/ExternalEndpoints/onesdk5597?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazY1NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzc5MC9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs1NTk3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/providers/Microsoft.Network/trafficManagerProfiles/onesdk3790/externalEndpoints/onesdk5597\",\r\n \"name\": \"onesdk5597\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f584a440-6e32-4cba-8299-bc87cf1d88b3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "6a00a837-9223-4ac0-95d2-6247f8f57d57" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151626Z:6a00a837-9223-4ac0-95d2-6247f8f57d57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:26 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3790/ExternalEndpoints/onesdk5597?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazY1NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzc5MC9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs1NTk3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk5597\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "234" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6551/providers/Microsoft.Network/trafficManagerProfiles/onesdk3790/externalEndpoints/onesdk5597\",\r\n \"name\": \"onesdk5597\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6b0245f4-6ce3-4726-9561-87deda7f2994" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1169" + ], + "x-ms-correlation-request-id": [ + "16d9aa57-bbc6-4b50-9f0b-53a03542d8dd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151626Z:16d9aa57-bbc6-4b50-9f0b-53a03542d8dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:16:26 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-CreateExistingEndpoint": [ + "onesdk5597", + "onesdk3790", + "onesdk6551", + "onesdk234" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestCreateExistingEndpointFromNonExistingProfile.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestCreateExistingEndpointFromNonExistingProfile.json new file mode 100644 index 000000000000..ce6583334255 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestCreateExistingEndpointFromNonExistingProfile.json @@ -0,0 +1,368 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "8f3f48a9-d297-48a5-8a04-bc66a96eba5d" + ], + "x-ms-correlation-request-id": [ + "8f3f48a9-d297-48a5-8a04-bc66a96eba5d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151531Z:8f3f48a9-d297-48a5-8a04-bc66a96eba5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:15:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk4211?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "45069f58-a90e-44bd-b733-eb47edd500ca" + ], + "x-ms-correlation-request-id": [ + "45069f58-a90e-44bd-b733-eb47edd500ca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151531Z:45069f58-a90e-44bd-b733-eb47edd500ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:15:31 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk4211?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4211\",\r\n \"name\": \"onesdk4211\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-request-id": [ + "cd62d122-f805-4585-8e0a-02deba8e4746" + ], + "x-ms-correlation-request-id": [ + "cd62d122-f805-4585-8e0a-02deba8e4746" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151532Z:cd62d122-f805-4585-8e0a-02deba8e4746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:15:32 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4211/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "de21331c-54f5-4abe-bba7-781a6ef42f6b" + ], + "x-ms-correlation-request-id": [ + "de21331c-54f5-4abe-bba7-781a6ef42f6b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151532Z:de21331c-54f5-4abe-bba7-781a6ef42f6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:15:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk4211/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:2e98fd7d-25e3-44d9-b334-f9464f505640" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "c421e11e-a7e5-43bb-a17c-c74133a28985" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151532Z:c421e11e-a7e5-43bb-a17c-c74133a28985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:15:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4211/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6436/ExternalEndpoints/onesdk7654?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQzNi9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs3NjU0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk6436' under resource group 'onesdk4211' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "079482ec-6e43-4fd6-9cd4-2db7e1469b0b" + ], + "x-ms-correlation-request-id": [ + "079482ec-6e43-4fd6-9cd4-2db7e1469b0b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151532Z:079482ec-6e43-4fd6-9cd4-2db7e1469b0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:15:32 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4211/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6436/ExternalEndpoints/onesdk7654?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQzNi9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs3NjU0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk7654\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "234" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk6436' under resource group 'onesdk4211' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b32c9a91-cbc7-464e-a4a6-a979ffc83aca" + ], + "x-ms-correlation-request-id": [ + "b32c9a91-cbc7-464e-a4a6-a979ffc83aca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151533Z:b32c9a91-cbc7-464e-a4a6-a979ffc83aca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:15:32 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "Test-CreateExistingEndpointFromNonExistingProfile": [ + "onesdk7654", + "onesdk6436", + "onesdk4211" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDeleteEndpoint.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDeleteEndpoint.json index 51638a483aef..df6e97ae7bf5 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDeleteEndpoint.json +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDeleteEndpoint.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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 \"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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\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 \"East US 2\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"associations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/premierOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Azure.Security\",\r\n \"namespace\": \"Azure.Security\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"default\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.AADPim\",\r\n \"namespace\": \"Microsoft.AADPim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Notifications\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"NotificationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UserToRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Roles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AuditEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\",\r\n \"2014-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\",\r\n \"2012-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupBVTD2\",\r\n \"namespace\": \"Microsoft.BackupBVTD2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupPPECurrent\",\r\n \"namespace\": \"Microsoft.BackupPPECurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CisRP\",\r\n \"namespace\": \"Microsoft.CisRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CisVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-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-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CSMBackupVaultRRP\",\r\n \"namespace\": \"Microsoft.CSMBackupVaultRRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated6\",\r\n \"adfgated5\",\r\n \"adfgated4\",\r\n \"adfgated3\",\r\n \"adfgated2\",\r\n \"adfgated1\",\r\n \"adfbqupgrade\",\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-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 \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestHub\",\r\n \"namespace\": \"Microsoft.DevTestHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool.IouriS\",\r\n \"namespace\": \"Microsoft.DevTestPool.IouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPoolIouriS\",\r\n \"namespace\": \"Microsoft.DevTestPoolIouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tlds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainsearches\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona1\",\r\n \"namespace\": \"Microsoft.Kona1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"KonaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.MS-Pim\",\r\n \"namespace\": \"Microsoft.MS-Pim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Home\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pim\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"subscriptions/locations\",\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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\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 \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/resourcepools\",\r\n \"locations\": [],\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/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\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/connectionPolicies\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupBVTD\",\r\n \"namespace\": \"Microsoft.WaBackupBVTD\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupGuru\",\r\n \"namespace\": \"Microsoft.WaBackupGuru\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupSql\",\r\n \"namespace\": \"Microsoft.WaBackupSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupTest\",\r\n \"namespace\": \"Microsoft.WaBackupTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft_AADB2C\",\r\n \"namespace\": \"Microsoft_AADB2C\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/vikashjorders\",\r\n \"namespace\": \"vikashjorders\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"order\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\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 ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"resourceType\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "44860" + "78972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14975" ], "x-ms-request-id": [ - "73b3cdb9-0605-4eee-b959-4b866b3ce1a3" + "bceca2ef-1444-4af6-8366-4b2a362ae932" ], "x-ms-correlation-request-id": [ - "73b3cdb9-0605-4eee-b959-4b866b3ce1a3" + "bceca2ef-1444-4af6-8366-4b2a362ae932" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153848Z:73b3cdb9-0605-4eee-b959-4b866b3ce1a3" + "WESTEUROPE:20150715T123139Z:bceca2ef-1444-4af6-8366-4b2a362ae932" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:38:47 GMT" + "Wed, 15 Jul 2015 12:31:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk8475?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk4955?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14974" ], "x-ms-request-id": [ - "0b38f188-52e5-4850-8846-05f7ca5d66bd" + "0f8264b8-5cec-4498-8e47-00295c481d0f" ], "x-ms-correlation-request-id": [ - "0b38f188-52e5-4850-8846-05f7ca5d66bd" + "0f8264b8-5cec-4498-8e47-00295c481d0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153848Z:0b38f188-52e5-4850-8846-05f7ca5d66bd" + "WESTEUROPE:20150715T123141Z:0f8264b8-5cec-4498-8e47-00295c481d0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:38:48 GMT" + "Wed, 15 Jul 2015 12:31:41 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk8475?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk4955?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8475\",\r\n \"name\": \"onesdk8475\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4955\",\r\n \"name\": \"onesdk4955\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1191" ], "x-ms-request-id": [ - "a16890e4-cf8c-44c0-90bc-ac6c40de3780" + "9e81f94f-23ef-4c56-a195-f048d6387f6f" ], "x-ms-correlation-request-id": [ - "a16890e4-cf8c-44c0-90bc-ac6c40de3780" + "9e81f94f-23ef-4c56-a195-f048d6387f6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153849Z:a16890e4-cf8c-44c0-90bc-ac6c40de3780" + "WESTEUROPE:20150715T123143Z:9e81f94f-23ef-4c56-a195-f048d6387f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:38:48 GMT" + "Wed, 15 Jul 2015 12:31:43 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8475/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazg0NzUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4955/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14973" ], "x-ms-request-id": [ - "cfe3da3c-9f8a-4689-b728-409707efa89e" + "6baf3bdd-2151-4567-9379-bf2b5f7c7164" ], "x-ms-correlation-request-id": [ - "cfe3da3c-9f8a-4689-b728-409707efa89e" + "6baf3bdd-2151-4567-9379-bf2b5f7c7164" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153849Z:cfe3da3c-9f8a-4689-b728-409707efa89e" + "WESTEUROPE:20150715T123143Z:6baf3bdd-2151-4567-9379-bf2b5f7c7164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,19 +196,19 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:38:48 GMT" + "Wed, 15 Jul 2015 12:31:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk8475/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk4955/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:09dfe171-a7a1-4644-bc63-079dd65220b9" + "westeurope:7a221dae-83f8-4880-90c5-dc25cc8bcb47" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14983" ], "x-ms-correlation-request-id": [ - "5ada73d6-a607-482e-985a-9441ec4de143" + "9ead5bcf-ca6f-455b-bc1d-02f17a20a74c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153849Z:5ada73d6-a607-482e-985a-9441ec4de143" + "WESTEUROPE:20150715T123144Z:9ead5bcf-ca6f-455b-bc1d-02f17a20a74c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:38:49 GMT" + "Wed, 15 Jul 2015 12:31:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8475/providers/microsoft.network/trafficmanagerprofiles/onesdk7902?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazg0NzUvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzkwMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4955/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6370?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjM3MD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,10 +262,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk6370' under resource group 'onesdk4955' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "bc51be3c-d4e1-4ad1-9697-f0e90ab87a3a" + "f726cbb2-3fc8-4778-b29a-97aa91dc2e52" ], "x-ms-correlation-request-id": [ - "bc51be3c-d4e1-4ad1-9697-f0e90ab87a3a" + "f726cbb2-3fc8-4778-b29a-97aa91dc2e52" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153850Z:bc51be3c-d4e1-4ad1-9697-f0e90ab87a3a" + "WESTEUROPE:20150715T123146Z:f726cbb2-3fc8-4778-b29a-97aa91dc2e52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,31 +295,31 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:38:50 GMT" + "Wed, 15 Jul 2015 12:31:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8475/providers/microsoft.network/trafficmanagerprofiles/onesdk7902?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazg0NzUvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzkwMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4955/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6370?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjM3MD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9579\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk7902\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk5634\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk6370\",\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "327" + "312" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8475/providers/Microsoft.Network/trafficManagerProfiles/onesdk7902\",\r\n \"name\": \"onesdk7902\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9579\",\r\n \"fqdn\": \"onesdk9579.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4955/providers/Microsoft.Network/trafficManagerProfiles/onesdk6370\",\r\n \"name\": \"onesdk6370\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk5634\",\r\n \"fqdn\": \"onesdk5634.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -328,16 +328,16 @@ "nosniff" ], "x-ms-request-id": [ - "799134c7-8024-4908-a575-b2981285824b" + "3e7205d2-a4cb-4b40-9374-a335818e5a00" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "10794" ], "x-ms-correlation-request-id": [ - "0354faf6-326f-4410-b964-cf29352c3a54" + "0ea0bf97-895e-40f2-ab78-49910cc54c25" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153854Z:0354faf6-326f-4410-b964-cf29352c3a54" + "WESTEUROPE:20150715T123152Z:0ea0bf97-895e-40f2-ab78-49910cc54c25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -346,7 +346,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 15:38:54 GMT" + "Wed, 15 Jul 2015 12:31:52 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -363,13 +363,13 @@ ], "Names": { "Test-DeleteEndpoint": [ - "onesdk4196", - "onesdk7902", - "onesdk8475", - "onesdk9579" + "onesdk1601", + "onesdk6370", + "onesdk4955", + "onesdk5634" ] }, "Variables": { - "SubscriptionId": "5ecfd42b-521f-4e3c-b4f4-47895f445068" + "SubscriptionId": "8dee4f73-2f41-405b-9485-ab9e75c63bc8" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDisableEndpoint.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDisableEndpoint.json new file mode 100644 index 000000000000..c19cf90eb4a5 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDisableEndpoint.json @@ -0,0 +1,603 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "f9b74d7b-276d-4256-adef-e23b72d5ab15" + ], + "x-ms-correlation-request-id": [ + "f9b74d7b-276d-4256-adef-e23b72d5ab15" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144645Z:f9b74d7b-276d-4256-adef-e23b72d5ab15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9660?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk2NjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "95c61ff0-264d-432c-a936-a762c118324e" + ], + "x-ms-correlation-request-id": [ + "95c61ff0-264d-432c-a936-a762c118324e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144645Z:95c61ff0-264d-432c-a936-a762c118324e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:45 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9660?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk2NjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660\",\r\n \"name\": \"onesdk9660\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-request-id": [ + "a06f6d40-429a-43d5-970e-d8d9ea135e5d" + ], + "x-ms-correlation-request-id": [ + "a06f6d40-429a-43d5-970e-d8d9ea135e5d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144647Z:a06f6d40-429a-43d5-970e-d8d9ea135e5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NjAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "6ef049e6-5702-44f9-972a-6f2ac4b18c8e" + ], + "x-ms-correlation-request-id": [ + "6ef049e6-5702-44f9-972a-6f2ac4b18c8e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144647Z:6ef049e6-5702-44f9-972a-6f2ac4b18c8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9660/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:80de548c-4a27-48ce-b87c-2447f1cfb2a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "16c36496-39ed-4b9c-bbd6-a57ab9558e10" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144647Z:16c36496-39ed-4b9c-bbd6-a57ab9558e10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficmanagerprofiles/onesdk9272?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrOTI3Mj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk9272' under resource group 'onesdk9660' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "60d13fa5-72cc-41ac-b554-82b4e3b064a3" + ], + "x-ms-correlation-request-id": [ + "60d13fa5-72cc-41ac-b554-82b4e3b064a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144648Z:60d13fa5-72cc-41ac-b554-82b4e3b064a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:47 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficmanagerprofiles/onesdk9272?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrOTI3Mj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk2110\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk9272\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficManagerProfiles/onesdk9272\",\r\n \"name\": \"onesdk9272\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk2110\",\r\n \"fqdn\": \"onesdk2110.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bc0ae26a-c715-47a4-872b-7af317c06867" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10789" + ], + "x-ms-correlation-request-id": [ + "0f9f5daf-b986-47e7-8004-45780a857553" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144651Z:0f9f5daf-b986-47e7-8004-45780a857553" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:51 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficmanagerprofiles/onesdk9272/ExternalEndpoints/onesdk1694?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrOTI3Mi9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsxNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The endpoint 'onesdk1694' of type 'externalendpoints' does not exist in the profile 'onesdk9272'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9add4a42-5321-460b-a86e-c4d1508338da" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "1ce2e790-d06b-423d-ab27-b8c56bbfdde8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144651Z:1ce2e790-d06b-423d-ab27-b8c56bbfdde8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:51 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficmanagerprofiles/onesdk9272/ExternalEndpoints/onesdk1694?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrOTI3Mi9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsxNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficManagerProfiles/onesdk9272/externalEndpoints/onesdk1694\",\r\n \"name\": \"onesdk1694\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2c412beb-d94b-4a18-974b-c95fe81fac52" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "19c29aa6-8916-4e07-9e5c-e274be6b7725" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144652Z:19c29aa6-8916-4e07-9e5c-e274be6b7725" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:52 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficmanagerprofiles/onesdk9272/ExternalEndpoints/onesdk1694?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrOTI3Mi9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsxNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk1694\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "234" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficManagerProfiles/onesdk9272/externalEndpoints/onesdk1694\",\r\n \"name\": \"onesdk1694\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f56097ff-6b50-4744-bc68-8655f0c5c363" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-correlation-request-id": [ + "e61e934d-8755-4b3c-b9fd-6467f9062da9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144652Z:e61e934d-8755-4b3c-b9fd-6467f9062da9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:52 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9660/providers/Microsoft.Network/trafficmanagerprofiles/onesdk9272/ExternalEndpoints/onesdk1694?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrOTI3Mi9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsxNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"name\": \"onesdk1694\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The target property of endpoint 'onesdk1694' is invalid or missing. The location must be specified for endpoints of types: ExternalEndpoints, NestedEndpoints in a policy of type 'Performance'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "559aa33e-3323-497f-9c4a-3a81816cf8ea" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-correlation-request-id": [ + "27018a5f-c20f-4e00-91f6-1642ced5432f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144653Z:27018a5f-c20f-4e00-91f6-1642ced5432f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:46:52 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 400 + } + ], + "Names": { + "Test-DisableEndpoint": [ + "onesdk1694", + "onesdk9272", + "onesdk9660", + "onesdk2110" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDisableNonExistingEndpoint.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDisableNonExistingEndpoint.json new file mode 100644 index 000000000000..0995b8c8c979 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestDisableNonExistingEndpoint.json @@ -0,0 +1,375 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "abab1930-e606-45a0-aec6-44d34427a49a" + ], + "x-ms-correlation-request-id": [ + "abab1930-e606-45a0-aec6-44d34427a49a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151118Z:abab1930-e606-45a0-aec6-44d34427a49a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:11:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk8066?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-request-id": [ + "2bc15470-f703-4ed0-bf7c-11860027d68e" + ], + "x-ms-correlation-request-id": [ + "2bc15470-f703-4ed0-bf7c-11860027d68e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151119Z:2bc15470-f703-4ed0-bf7c-11860027d68e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:11:18 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk8066?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8066\",\r\n \"name\": \"onesdk8066\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-request-id": [ + "38515fdd-795e-4d66-8eea-0fb2fb389dcc" + ], + "x-ms-correlation-request-id": [ + "38515fdd-795e-4d66-8eea-0fb2fb389dcc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151120Z:38515fdd-795e-4d66-8eea-0fb2fb389dcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:11:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8066/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNjYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "e05c95ca-1a89-4c0f-a8f8-959671e8dc7d" + ], + "x-ms-correlation-request-id": [ + "e05c95ca-1a89-4c0f-a8f8-959671e8dc7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151120Z:e05c95ca-1a89-4c0f-a8f8-959671e8dc7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:11:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk8066/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:8881251d-b37e-437b-8c3f-a51edd505836" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "f3e5bb53-1184-46b0-9200-9b74fb3899af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151120Z:f3e5bb53-1184-46b0-9200-9b74fb3899af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:11:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8066/providers/Microsoft.Network/trafficmanagerprofiles/onesdk431?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDMxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk431' under resource group 'onesdk8066' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5e24cf64-6e4f-4828-98fc-bc05b9f31c32" + ], + "x-ms-correlation-request-id": [ + "5e24cf64-6e4f-4828-98fc-bc05b9f31c32" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151121Z:5e24cf64-6e4f-4828-98fc-bc05b9f31c32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:11:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8066/providers/Microsoft.Network/trafficmanagerprofiles/onesdk431?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDMxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk933\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk431\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "310" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8066/providers/Microsoft.Network/trafficManagerProfiles/onesdk431\",\r\n \"name\": \"onesdk431\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk933\",\r\n \"fqdn\": \"onesdk933.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "539" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "94d71bc6-1fc0-4bba-a38a-19cd48c25e24" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10794" + ], + "x-ms-correlation-request-id": [ + "b5234466-6fc0-493d-a64b-dee0dbbd90a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151125Z:b5234466-6fc0-493d-a64b-dee0dbbd90a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:11:24 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-DisableNonExistingEndpoint": [ + "onesdk3346", + "onesdk431", + "onesdk8066", + "onesdk933" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableEndpoint.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableEndpoint.json new file mode 100644 index 000000000000..c6f3c3a176bd --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableEndpoint.json @@ -0,0 +1,543 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "4f958f9c-4d48-49ec-9cfa-dbc511ab119a" + ], + "x-ms-correlation-request-id": [ + "4f958f9c-4d48-49ec-9cfa-dbc511ab119a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144737Z:4f958f9c-4d48-49ec-9cfa-dbc511ab119a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9725?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "f212e224-ab7a-4972-86e3-5ae34b8ef3d2" + ], + "x-ms-correlation-request-id": [ + "f212e224-ab7a-4972-86e3-5ae34b8ef3d2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144738Z:f212e224-ab7a-4972-86e3-5ae34b8ef3d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:37 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9725?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725\",\r\n \"name\": \"onesdk9725\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-request-id": [ + "b0cd929f-b13f-4b1f-a19b-9493f4103cb7" + ], + "x-ms-correlation-request-id": [ + "b0cd929f-b13f-4b1f-a19b-9493f4103cb7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144738Z:b0cd929f-b13f-4b1f-a19b-9493f4103cb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk3MjUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "b062f594-5ee8-4962-964d-27f72413b07c" + ], + "x-ms-correlation-request-id": [ + "b062f594-5ee8-4962-964d-27f72413b07c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144738Z:b062f594-5ee8-4962-964d-27f72413b07c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9725/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk3MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:53125bfe-4e25-487c-92a5-3cca09d9437b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "b58734e0-5b98-45d4-b2da-4b2ce0a11d43" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144739Z:b58734e0-5b98-45d4-b2da-4b2ce0a11d43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/providers/Microsoft.Network/trafficmanagerprofiles/onesdk1063?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk3MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMTA2Mz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk1063' under resource group 'onesdk9725' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "cd71b521-8749-4e6f-8098-9abcf88f5d97" + ], + "x-ms-correlation-request-id": [ + "cd71b521-8749-4e6f-8098-9abcf88f5d97" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144739Z:cd71b521-8749-4e6f-8098-9abcf88f5d97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:38 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/providers/Microsoft.Network/trafficmanagerprofiles/onesdk1063?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk3MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMTA2Mz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1912\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk1063\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/providers/Microsoft.Network/trafficManagerProfiles/onesdk1063\",\r\n \"name\": \"onesdk1063\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1912\",\r\n \"fqdn\": \"onesdk1912.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9fd7904d-458d-44a3-bae2-71250a554af8" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10788" + ], + "x-ms-correlation-request-id": [ + "dd39673d-0dd0-4b15-b992-a3d7089e7c00" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144741Z:dd39673d-0dd0-4b15-b992-a3d7089e7c00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:41 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/providers/Microsoft.Network/trafficmanagerprofiles/onesdk1063/ExternalEndpoints/onesdk8514?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk3MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMTA2My9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs4NTE0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The endpoint 'onesdk8514' of type 'externalendpoints' does not exist in the profile 'onesdk1063'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "76f49293-eed3-4e7c-a757-8a739134eab3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "f3751adc-63cb-4e70-a8ff-5172b921c6ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144742Z:f3751adc-63cb-4e70-a8ff-5172b921c6ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:41 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/providers/Microsoft.Network/trafficmanagerprofiles/onesdk1063/ExternalEndpoints/onesdk8514?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk3MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMTA2My9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs4NTE0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/providers/Microsoft.Network/trafficManagerProfiles/onesdk1063/externalEndpoints/onesdk8514\",\r\n \"name\": \"onesdk8514\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "434" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "be3fa133-35d1-4980-8952-ecca85f1da73" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "fcb99228-1d70-40f9-9168-0d80e2bc40ab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144743Z:fcb99228-1d70-40f9-9168-0d80e2bc40ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:43 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/providers/Microsoft.Network/trafficmanagerprofiles/onesdk1063/ExternalEndpoints/onesdk8514?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk3MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMTA2My9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs4NTE0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk8514\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "235" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9725/providers/Microsoft.Network/trafficManagerProfiles/onesdk1063/externalEndpoints/onesdk8514\",\r\n \"name\": \"onesdk8514\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "434" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2ccd70b1-5f53-4faa-9e41-a62deb641867" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1170" + ], + "x-ms-correlation-request-id": [ + "b8a0c518-50a5-4205-829d-dc78c08c4c2b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144743Z:b8a0c518-50a5-4205-829d-dc78c08c4c2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:47:43 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-EnableEndpoint": [ + "onesdk8514", + "onesdk1063", + "onesdk9725", + "onesdk1912" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableEndpointUsingPiping.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableEndpointUsingPiping.json new file mode 100644 index 000000000000..f52501a49839 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableEndpointUsingPiping.json @@ -0,0 +1,603 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "3e2cbf26-5ab0-49df-b466-c74fb4eb5a7d" + ], + "x-ms-correlation-request-id": [ + "3e2cbf26-5ab0-49df-b466-c74fb4eb5a7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144825Z:3e2cbf26-5ab0-49df-b466-c74fb4eb5a7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2076?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwNzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "48fa24d6-a091-43f5-abca-6795904527d9" + ], + "x-ms-correlation-request-id": [ + "48fa24d6-a091-43f5-abca-6795904527d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144825Z:48fa24d6-a091-43f5-abca-6795904527d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2076?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwNzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076\",\r\n \"name\": \"onesdk2076\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1169" + ], + "x-ms-request-id": [ + "3e8a9562-76ae-4fa9-8981-8fe688448226" + ], + "x-ms-correlation-request-id": [ + "3e8a9562-76ae-4fa9-8981-8fe688448226" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144826Z:3e8a9562-76ae-4fa9-8981-8fe688448226" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwNzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "bde32ef3-f5e7-4718-9298-87daedc4e306" + ], + "x-ms-correlation-request-id": [ + "bde32ef3-f5e7-4718-9298-87daedc4e306" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144826Z:bde32ef3-f5e7-4718-9298-87daedc4e306" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2076/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:54a9d744-8843-4a59-8602-13e715918f94" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "1defc824-986f-46e9-b585-bedec8381bca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144826Z:1defc824-986f-46e9-b585-bedec8381bca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7908?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzkwOD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk7908' under resource group 'onesdk2076' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "73458f1e-3a5a-496d-968e-e60927567985" + ], + "x-ms-correlation-request-id": [ + "73458f1e-3a5a-496d-968e-e60927567985" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144827Z:73458f1e-3a5a-496d-968e-e60927567985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:27 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7908?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzkwOD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7920\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk7908\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficManagerProfiles/onesdk7908\",\r\n \"name\": \"onesdk7908\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7920\",\r\n \"fqdn\": \"onesdk7920.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ed856660-572b-404f-96c4-1556a80d298a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10788" + ], + "x-ms-correlation-request-id": [ + "c26778c1-bf61-45ff-9307-1f210574d259" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144829Z:c26778c1-bf61-45ff-9307-1f210574d259" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:29 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7908/ExternalEndpoints/onesdk5421?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzkwOC9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs1NDIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The endpoint 'onesdk5421' of type 'externalendpoints' does not exist in the profile 'onesdk7908'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3ced9f88-9698-4b44-904a-775e7749ffd2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "c1af3101-e6ee-4524-8672-db3c9b003bbe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144830Z:c1af3101-e6ee-4524-8672-db3c9b003bbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:29 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7908/ExternalEndpoints/onesdk5421?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzkwOC9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs1NDIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficManagerProfiles/onesdk7908/externalEndpoints/onesdk5421\",\r\n \"name\": \"onesdk5421\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "434" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d44defb2-aa2e-4b57-873b-a972d0674ab4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "76f3f374-cf3d-4748-81ea-78c6929b458b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144831Z:76f3f374-cf3d-4748-81ea-78c6929b458b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:31 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7908/ExternalEndpoints/onesdk5421?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzkwOC9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs1NDIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk5421\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "235" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficManagerProfiles/onesdk7908/externalEndpoints/onesdk5421\",\r\n \"name\": \"onesdk5421\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "434" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f64c4fe0-b00f-407e-bb49-bd8ae9aaac07" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1168" + ], + "x-ms-correlation-request-id": [ + "f08e7f8d-66a2-48ce-8e23-3185faa59f76" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144831Z:f08e7f8d-66a2-48ce-8e23-3185faa59f76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:31 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2076/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7908/ExternalEndpoints/onesdk5421?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzkwOC9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs1NDIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"name\": \"onesdk5421\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The target property of endpoint 'onesdk5421' is invalid or missing. The location must be specified for endpoints of types: ExternalEndpoints, NestedEndpoints in a policy of type 'Performance'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bb0d9d7a-4880-4300-b174-9f1f99b40d90" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1167" + ], + "x-ms-correlation-request-id": [ + "fddb4b88-236c-4f19-bc83-481811c9e661" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T144832Z:fddb4b88-236c-4f19-bc83-481811c9e661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 14:48:31 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 400 + } + ], + "Names": { + "Test-EnableEndpointUsingPiping": [ + "onesdk5421", + "onesdk7908", + "onesdk2076", + "onesdk7920" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableNonExistingEndpoint.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableNonExistingEndpoint.json new file mode 100644 index 000000000000..a7697955089b --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEnableNonExistingEndpoint.json @@ -0,0 +1,375 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "28232340-6fe2-47c5-8396-34adb9a3f1be" + ], + "x-ms-correlation-request-id": [ + "28232340-6fe2-47c5-8396-34adb9a3f1be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150741Z:28232340-6fe2-47c5-8396-34adb9a3f1be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:07:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk998?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "c8d704de-7821-49da-9ce9-120d56321685" + ], + "x-ms-correlation-request-id": [ + "c8d704de-7821-49da-9ce9-120d56321685" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150742Z:c8d704de-7821-49da-9ce9-120d56321685" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:07:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk998?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk998\",\r\n \"name\": \"onesdk998\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-request-id": [ + "b53bf71a-7ab2-46fe-af5d-1d6a110bad02" + ], + "x-ms-correlation-request-id": [ + "b53bf71a-7ab2-46fe-af5d-1d6a110bad02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150743Z:b53bf71a-7ab2-46fe-af5d-1d6a110bad02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:07:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk998/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5OC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "29b73add-8894-4736-a004-73274dd518cf" + ], + "x-ms-correlation-request-id": [ + "29b73add-8894-4736-a004-73274dd518cf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150743Z:29b73add-8894-4736-a004-73274dd518cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:07:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk998/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:31e4aab6-07a8-4725-9221-620f66cd0dad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "c4400941-2a07-4ca6-b94c-b865f312e9b4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150744Z:c4400941-2a07-4ca6-b94c-b865f312e9b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:07:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk998/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2979?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdHJhZmZpY21hbmFnZXJwcm9maWxlcy9vbmVzZGsyOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk2979' under resource group 'onesdk998' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "146e58de-80f0-4310-84fd-93e9d92c3c51" + ], + "x-ms-correlation-request-id": [ + "146e58de-80f0-4310-84fd-93e9d92c3c51" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150744Z:146e58de-80f0-4310-84fd-93e9d92c3c51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:07:43 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk998/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2979?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdHJhZmZpY21hbmFnZXJwcm9maWxlcy9vbmVzZGsyOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk4413\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk2979\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk998/providers/Microsoft.Network/trafficManagerProfiles/onesdk2979\",\r\n \"name\": \"onesdk2979\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk4413\",\r\n \"fqdn\": \"onesdk4413.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "542" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dd3a0288-0ec7-4613-b443-5985f2b4fe4e" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10792" + ], + "x-ms-correlation-request-id": [ + "4c52494b-e4d7-4d8a-924a-614ff022c559" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150747Z:4c52494b-e4d7-4d8a-924a-614ff022c559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:07:47 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-EnableNonExistingEndpoint": [ + "onesdk1194", + "onesdk2979", + "onesdk998", + "onesdk4413" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEndpointCrud.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEndpointCrud.json new file mode 100644 index 000000000000..139e8a2de437 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEndpointCrud.json @@ -0,0 +1,762 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "9ba5f036-deb9-4330-9ac7-b7bbe1275218" + ], + "x-ms-correlation-request-id": [ + "9ba5f036-deb9-4330-9ac7-b7bbe1275218" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151212Z:9ba5f036-deb9-4330-9ac7-b7bbe1275218" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk6338?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazYzMzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "a7f707b1-116a-49b4-8d4f-fc50f80e09f1" + ], + "x-ms-correlation-request-id": [ + "a7f707b1-116a-49b4-8d4f-fc50f80e09f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151212Z:a7f707b1-116a-49b4-8d4f-fc50f80e09f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk6338?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazYzMzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338\",\r\n \"name\": \"onesdk6338\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-request-id": [ + "5c83aec6-79c5-4c16-a57c-81bb66db967f" + ], + "x-ms-correlation-request-id": [ + "5c83aec6-79c5-4c16-a57c-81bb66db967f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151213Z:5c83aec6-79c5-4c16-a57c-81bb66db967f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "5ed17bf8-579b-4858-9504-3e21b64f2fff" + ], + "x-ms-correlation-request-id": [ + "5ed17bf8-579b-4858-9504-3e21b64f2fff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151213Z:5ed17bf8-579b-4858-9504-3e21b64f2fff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk6338/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:db23f15e-dbf0-406b-9132-ab7bac23c96e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "86733162-19b2-4159-8baa-08d76201cdaf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151213Z:86733162-19b2-4159-8baa-08d76201cdaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk3323' under resource group 'onesdk6338' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "21b2ba15-5314-491f-a6e3-f910f2378f4d" + ], + "x-ms-correlation-request-id": [ + "21b2ba15-5314-491f-a6e3-f910f2378f4d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151214Z:21b2ba15-5314-491f-a6e3-f910f2378f4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:14 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9411\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk3323\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficManagerProfiles/onesdk3323\",\r\n \"name\": \"onesdk3323\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9411\",\r\n \"fqdn\": \"onesdk9411.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cb1d5233-4e4f-4d49-9e38-0edb1f2ca91c" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10793" + ], + "x-ms-correlation-request-id": [ + "44d255ed-6491-416c-b5eb-3c845a2f1fd4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151217Z:44d255ed-6491-416c-b5eb-3c845a2f1fd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:17 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323/ExternalEndpoints/onesdk6577?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMy9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs2NTc3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The endpoint 'onesdk6577' of type 'externalendpoints' does not exist in the profile 'onesdk3323'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fa9fe94a-348e-4896-b801-99b9b193e7eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "96d8700d-6851-4dff-a8b3-876b71bcc812" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151217Z:96d8700d-6851-4dff-a8b3-876b71bcc812" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:17 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323/ExternalEndpoints/onesdk6577?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMy9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs2NTc3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficManagerProfiles/onesdk3323/externalEndpoints/onesdk6577\",\r\n \"name\": \"onesdk6577\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f138f646-402c-4173-85f7-2e1ccab2ad74" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "a2469e40-bc5a-47f7-8362-017b0944c848" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151219Z:a2469e40-bc5a-47f7-8362-017b0944c848" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:18 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323/ExternalEndpoints/onesdk6577?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMy9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs2NTc3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficManagerProfiles/onesdk3323/externalEndpoints/onesdk6577\",\r\n \"name\": \"onesdk6577\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "434" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "38e00c28-62ef-492f-8166-5ddf7fe3262f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "b5279aa8-2a5b-4823-afd5-40c87416c8c7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151220Z:b5279aa8-2a5b-4823-afd5-40c87416c8c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:20 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323/ExternalEndpoints/onesdk6577?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMy9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs2NTc3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The endpoint 'onesdk6577' of type 'externalendpoints' does not exist in the profile 'onesdk3323'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "eaa00cc4-7d92-4aa7-804f-5067a8290582" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "c601a70a-61ea-4fd4-9ddb-e9dffb273887" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151221Z:c601a70a-61ea-4fd4-9ddb-e9dffb273887" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:21 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323/ExternalEndpoints/onesdk6577?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMy9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs2NTc3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk6577\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "234" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficManagerProfiles/onesdk3323/externalEndpoints/onesdk6577\",\r\n \"name\": \"onesdk6577\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e053d49a-0b02-476b-9230-1a34e281c0ed" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-correlation-request-id": [ + "911d3853-31fc-4f67-a63e-ec6ca6a6e0f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151218Z:911d3853-31fc-4f67-a63e-ec6ca6a6e0f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:18 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323/ExternalEndpoints/onesdk6577?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMy9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs2NTc3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk6577\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Disabled\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "273" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficManagerProfiles/onesdk3323/externalEndpoints/onesdk6577\",\r\n \"name\": \"onesdk6577\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "434" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "84db64e8-cc71-4876-88ed-6cdfede7bea9" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-correlation-request-id": [ + "b6edea68-fb93-40f1-8022-ca17774b7156" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151220Z:b6edea68-fb93-40f1-8022-ca17774b7156" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:20 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6338/providers/Microsoft.Network/trafficmanagerprofiles/onesdk3323/ExternalEndpoints/onesdk6577?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazYzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzMyMy9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGs2NTc3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7a818ebe-2cf7-4ec3-bfff-7b0b03cba1fb" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-correlation-request-id": [ + "d4bef380-01e5-4f10-91c4-531f0c6a9869" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151221Z:d4bef380-01e5-4f10-91c4-531f0c6a9869" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:12:21 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-EndpointCrud": [ + "onesdk6577", + "onesdk3323", + "onesdk6338", + "onesdk9411" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEndpointCrudPiping.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEndpointCrudPiping.json new file mode 100644 index 000000000000..5c814f5cce75 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestEndpointCrudPiping.json @@ -0,0 +1,708 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "48b90f0b-7958-4c56-96da-bc8a888953d5" + ], + "x-ms-correlation-request-id": [ + "48b90f0b-7958-4c56-96da-bc8a888953d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151354Z:48b90f0b-7958-4c56-96da-bc8a888953d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:13:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk3975?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "0f8f1b32-3ccd-48aa-a90d-ba8002e3fb5f" + ], + "x-ms-correlation-request-id": [ + "0f8f1b32-3ccd-48aa-a90d-ba8002e3fb5f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151354Z:0f8f1b32-3ccd-48aa-a90d-ba8002e3fb5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:13:54 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk3975?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975\",\r\n \"name\": \"onesdk3975\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1170" + ], + "x-ms-request-id": [ + "81961cbd-4231-45c1-9d4d-001297bd5b3e" + ], + "x-ms-correlation-request-id": [ + "81961cbd-4231-45c1-9d4d-001297bd5b3e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151355Z:81961cbd-4231-45c1-9d4d-001297bd5b3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:13:55 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "f8917fe0-ca38-4d28-ba24-36f903c2bcf2" + ], + "x-ms-correlation-request-id": [ + "f8917fe0-ca38-4d28-ba24-36f903c2bcf2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151355Z:f8917fe0-ca38-4d28-ba24-36f903c2bcf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:13:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk3975/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:c0883139-01e3-45ca-beb0-fe5182a5512c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "30f8b6b5-6a12-4a81-a96c-6f24650aaeac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151355Z:30f8b6b5-6a12-4a81-a96c-6f24650aaeac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:13:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6409?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQwOT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk6409' under resource group 'onesdk3975' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7074cddb-be9f-42a8-8e94-f0578e2367fd" + ], + "x-ms-correlation-request-id": [ + "7074cddb-be9f-42a8-8e94-f0578e2367fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151356Z:7074cddb-be9f-42a8-8e94-f0578e2367fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:13:56 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6409?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQwOT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7560\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk6409\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficManagerProfiles/onesdk6409\",\r\n \"name\": \"onesdk6409\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7560\",\r\n \"fqdn\": \"onesdk7560.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4ac0b622-cde1-45dc-82aa-13fcecae9417" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10791" + ], + "x-ms-correlation-request-id": [ + "b4eadadf-949f-4954-8c26-753b92862a12" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151359Z:b4eadadf-949f-4954-8c26-753b92862a12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:13:58 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6409/ExternalEndpoints/onesdk2837?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQwOS9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsyODM3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The endpoint 'onesdk2837' of type 'externalendpoints' does not exist in the profile 'onesdk6409'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "18b4dd61-042f-4ab1-8cd2-39acfe0b1e4f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "8cfaa0dc-50e7-4bd1-9110-8acf3bf4ad4e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151400Z:8cfaa0dc-50e7-4bd1-9110-8acf3bf4ad4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:00 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6409/ExternalEndpoints/onesdk2837?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQwOS9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsyODM3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficManagerProfiles/onesdk6409/externalEndpoints/onesdk2837\",\r\n \"name\": \"onesdk2837\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "eb43e59b-8368-4a55-aad9-b27b4de3ce4a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "74fb0f0d-9038-4b4d-bd3f-283e7276a8b0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151401Z:74fb0f0d-9038-4b4d-bd3f-283e7276a8b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:01 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6409/ExternalEndpoints/onesdk2837?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQwOS9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsyODM3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The endpoint 'onesdk2837' of type 'externalendpoints' does not exist in the profile 'onesdk6409'.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2bea560c-751a-4fac-92b8-372180651981" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "0b1f9c45-2f6a-4bc1-b4d8-c415bfcfae8e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151403Z:0b1f9c45-2f6a-4bc1-b4d8-c415bfcfae8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:03 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6409/ExternalEndpoints/onesdk2837?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQwOS9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsyODM3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk2837\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "234" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficManagerProfiles/onesdk6409/externalEndpoints/onesdk2837\",\r\n \"name\": \"onesdk2837\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "00087559-5206-4626-9618-bd09aafe46e8" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-correlation-request-id": [ + "00b09b94-53da-4a43-839b-353b4cbf38af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151401Z:00b09b94-53da-4a43-839b-353b4cbf38af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:01 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6409/ExternalEndpoints/onesdk2837?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQwOS9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsyODM3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk2837\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "272" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficManagerProfiles/onesdk6409/externalEndpoints/onesdk2837\",\r\n \"name\": \"onesdk2837\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e9fe6ab9-26fb-4e71-864a-e7243cb1c2e3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-correlation-request-id": [ + "36677fc3-fee1-438b-921d-f627901fe354" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151402Z:36677fc3-fee1-438b-921d-f627901fe354" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:02 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk3975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk6409/ExternalEndpoints/onesdk2837?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNjQwOS9FeHRlcm5hbEVuZHBvaW50cy9vbmVzZGsyODM3P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "77fa6384-0cea-4d61-86b0-dbfe5dfc1a69" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-correlation-request-id": [ + "bd966587-fdd3-40fa-8211-a9fc96548ecb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151403Z:bd966587-fdd3-40fa-8211-a9fc96548ecb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:02 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-EndpointCrudPiping": [ + "onesdk2837", + "onesdk6409", + "onesdk3975", + "onesdk7560" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestGetExistingEndpointFromNonExistingProfile.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestGetExistingEndpointFromNonExistingProfile.json new file mode 100644 index 000000000000..15270df67816 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestGetExistingEndpointFromNonExistingProfile.json @@ -0,0 +1,314 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "4d9269f4-49da-49fd-b9e5-44f54a6f4ad6" + ], + "x-ms-correlation-request-id": [ + "4d9269f4-49da-49fd-b9e5-44f54a6f4ad6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150915Z:4d9269f4-49da-49fd-b9e5-44f54a6f4ad6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:09:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk684?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY4ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "6505a633-af41-4859-b407-fde323a4891a" + ], + "x-ms-correlation-request-id": [ + "6505a633-af41-4859-b407-fde323a4891a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150915Z:6505a633-af41-4859-b407-fde323a4891a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:09:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk684?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY4ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk684\",\r\n \"name\": \"onesdk684\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-request-id": [ + "af1d7897-91d0-4b91-a66a-0344645fd516" + ], + "x-ms-correlation-request-id": [ + "af1d7897-91d0-4b91-a66a-0344645fd516" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150916Z:af1d7897-91d0-4b91-a66a-0344645fd516" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:09:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk684/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazY4NC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "f1f89708-e29d-49f2-9f9d-be34eadad2a2" + ], + "x-ms-correlation-request-id": [ + "f1f89708-e29d-49f2-9f9d-be34eadad2a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150916Z:f1f89708-e29d-49f2-9f9d-be34eadad2a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:09:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk684/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:ddef0e72-bf6f-4ec6-b406-2780e2ad617b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "17ded46c-5ced-4af9-935f-71a96e2dd687" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150917Z:17ded46c-5ced-4af9-935f-71a96e2dd687" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:09:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk684/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4640/ExternalEndpoints/onesdk6310?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazY4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdHJhZmZpY21hbmFnZXJwcm9maWxlcy9vbmVzZGs0NjQwL0V4dGVybmFsRW5kcG9pbnRzL29uZXNkazYzMTA/YXBpLXZlcnNpb249MjAxNS0wNC0yOC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk4640' under resource group 'onesdk684' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "523e8124-1744-41b8-9b9e-6a6136df121b" + ], + "x-ms-correlation-request-id": [ + "523e8124-1744-41b8-9b9e-6a6136df121b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150917Z:523e8124-1744-41b8-9b9e-6a6136df121b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:09:16 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "Test-GetExistingEndpointFromNonExistingProfile": [ + "onesdk6310", + "onesdk4640", + "onesdk684" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestRemoveExistingEndpointFromNonExistingProfile.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestRemoveExistingEndpointFromNonExistingProfile.json new file mode 100644 index 000000000000..75ce8eaee1e3 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestRemoveExistingEndpointFromNonExistingProfile.json @@ -0,0 +1,266 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "797d6089-a330-47ec-a7fc-a49146c13386" + ], + "x-ms-correlation-request-id": [ + "797d6089-a330-47ec-a7fc-a49146c13386" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151446Z:797d6089-a330-47ec-a7fc-a49146c13386" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9259?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazkyNTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "0dbe7f6a-2477-4046-aba8-446557cb52a1" + ], + "x-ms-correlation-request-id": [ + "0dbe7f6a-2477-4046-aba8-446557cb52a1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151447Z:0dbe7f6a-2477-4046-aba8-446557cb52a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:46 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9259?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazkyNTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9259\",\r\n \"name\": \"onesdk9259\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1169" + ], + "x-ms-request-id": [ + "bb6c889b-2613-4545-90de-9d3d61d2fb47" + ], + "x-ms-correlation-request-id": [ + "bb6c889b-2613-4545-90de-9d3d61d2fb47" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151448Z:bb6c889b-2613-4545-90de-9d3d61d2fb47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9259/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazkyNTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "8633886e-d612-4d08-b71b-77f4a92fdd44" + ], + "x-ms-correlation-request-id": [ + "8633886e-d612-4d08-b71b-77f4a92fdd44" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151448Z:8633886e-d612-4d08-b71b-77f4a92fdd44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9259/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazkyNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:2b480417-54ee-4590-b117-e7593cf6f723" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "160ad1f0-8752-4c47-8c37-8608ee36e79a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151449Z:160ad1f0-8752-4c47-8c37-8608ee36e79a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:14:48 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveExistingEndpointFromNonExistingProfile": [ + "onesdk3262", + "onesdk3361", + "onesdk9259" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestRemoveNonExistingEndpointFromProfile.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestRemoveNonExistingEndpointFromProfile.json new file mode 100644 index 000000000000..6b3da9186f70 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.EndpointTests/TestRemoveNonExistingEndpointFromProfile.json @@ -0,0 +1,375 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "fb44b08f-dc02-4cef-8364-f3f450450161" + ], + "x-ms-correlation-request-id": [ + "fb44b08f-dc02-4cef-8364-f3f450450161" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150829Z:fb44b08f-dc02-4cef-8364-f3f450450161" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:08:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2379?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIzNzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "4da5dad8-d5af-47e8-ae28-076998993c12" + ], + "x-ms-correlation-request-id": [ + "4da5dad8-d5af-47e8-ae28-076998993c12" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150829Z:4da5dad8-d5af-47e8-ae28-076998993c12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:08:29 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2379?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIzNzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2379\",\r\n \"name\": \"onesdk2379\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-request-id": [ + "47f28e4e-076c-44f5-a563-208718dee0cc" + ], + "x-ms-correlation-request-id": [ + "47f28e4e-076c-44f5-a563-208718dee0cc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150830Z:47f28e4e-076c-44f5-a563-208718dee0cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:08:30 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2379/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNzkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "d106176d-7f26-4588-8cab-f76b5f2fa5d9" + ], + "x-ms-correlation-request-id": [ + "d106176d-7f26-4588-8cab-f76b5f2fa5d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150830Z:d106176d-7f26-4588-8cab-f76b5f2fa5d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:08:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2379/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIzNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:2948e13c-c2d7-486f-b452-ae28a5cf7190" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "c8f916c5-0970-4db1-89c4-13ac31c75576" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150831Z:c8f916c5-0970-4db1-89c4-13ac31c75576" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:08:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2379/providers/Microsoft.Network/trafficmanagerprofiles/onesdk8785?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrODc4NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk8785' under resource group 'onesdk2379' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "42fded70-de74-4778-b9c2-5c94a2312425" + ], + "x-ms-correlation-request-id": [ + "42fded70-de74-4778-b9c2-5c94a2312425" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150831Z:42fded70-de74-4778-b9c2-5c94a2312425" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:08:30 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2379/providers/Microsoft.Network/trafficmanagerprofiles/onesdk8785?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrODc4NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk8838\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk8785\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2379/providers/Microsoft.Network/trafficManagerProfiles/onesdk8785\",\r\n \"name\": \"onesdk8785\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk8838\",\r\n \"fqdn\": \"onesdk8838.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5c6aa8a3-33bc-49cb-bf44-2b65bfb74b4b" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10794" + ], + "x-ms-correlation-request-id": [ + "122ade39-414c-4ce0-a432-4823832f913e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T150834Z:122ade39-414c-4ce0-a432-4823832f913e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:08:34 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-RemoveNonExistingEndpointFromProfile": [ + "onesdk7544", + "onesdk8785", + "onesdk2379", + "onesdk8838" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestCreateDeleteUsingProfile.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestCreateDeleteUsingProfile.json index 5a0c9a854577..2f4161064eea 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestCreateDeleteUsingProfile.json +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestCreateDeleteUsingProfile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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 \"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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\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 \"East US 2\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"associations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/premierOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Azure.Security\",\r\n \"namespace\": \"Azure.Security\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"default\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.AADPim\",\r\n \"namespace\": \"Microsoft.AADPim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Notifications\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"NotificationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UserToRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Roles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AuditEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\",\r\n \"2014-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\",\r\n \"2012-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupBVTD2\",\r\n \"namespace\": \"Microsoft.BackupBVTD2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupPPECurrent\",\r\n \"namespace\": \"Microsoft.BackupPPECurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CisRP\",\r\n \"namespace\": \"Microsoft.CisRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CisVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-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-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CSMBackupVaultRRP\",\r\n \"namespace\": \"Microsoft.CSMBackupVaultRRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated6\",\r\n \"adfgated5\",\r\n \"adfgated4\",\r\n \"adfgated3\",\r\n \"adfgated2\",\r\n \"adfgated1\",\r\n \"adfbqupgrade\",\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-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 \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestHub\",\r\n \"namespace\": \"Microsoft.DevTestHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool.IouriS\",\r\n \"namespace\": \"Microsoft.DevTestPool.IouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPoolIouriS\",\r\n \"namespace\": \"Microsoft.DevTestPoolIouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tlds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainsearches\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona1\",\r\n \"namespace\": \"Microsoft.Kona1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"KonaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.MS-Pim\",\r\n \"namespace\": \"Microsoft.MS-Pim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Home\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pim\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"subscriptions/locations\",\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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\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 \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/resourcepools\",\r\n \"locations\": [],\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/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\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/connectionPolicies\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupBVTD\",\r\n \"namespace\": \"Microsoft.WaBackupBVTD\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupGuru\",\r\n \"namespace\": \"Microsoft.WaBackupGuru\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupSql\",\r\n \"namespace\": \"Microsoft.WaBackupSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupTest\",\r\n \"namespace\": \"Microsoft.WaBackupTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft_AADB2C\",\r\n \"namespace\": \"Microsoft_AADB2C\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/vikashjorders\",\r\n \"namespace\": \"vikashjorders\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"order\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\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 ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"resourceType\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "44860" + "78972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14988" ], "x-ms-request-id": [ - "57f7c9ad-c48f-4880-ae12-b4353f064b49" + "6f927e6e-9df6-4724-b362-643a27fd84ae" ], "x-ms-correlation-request-id": [ - "57f7c9ad-c48f-4880-ae12-b4353f064b49" + "6f927e6e-9df6-4724-b362-643a27fd84ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153425Z:57f7c9ad-c48f-4880-ae12-b4353f064b49" + "WESTEUROPE:20150715T123027Z:6f927e6e-9df6-4724-b362-643a27fd84ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:34:24 GMT" + "Wed, 15 Jul 2015 12:30:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk4869?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9975?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14987" ], "x-ms-request-id": [ - "001ecd9a-f26c-4075-831c-2af39b87da04" + "217da14b-616a-4c43-adab-7d25df19bd46" ], "x-ms-correlation-request-id": [ - "001ecd9a-f26c-4075-831c-2af39b87da04" + "217da14b-616a-4c43-adab-7d25df19bd46" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153426Z:001ecd9a-f26c-4075-831c-2af39b87da04" + "WESTEUROPE:20150715T123029Z:217da14b-616a-4c43-adab-7d25df19bd46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:34:26 GMT" + "Wed, 15 Jul 2015 12:30:29 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk4869?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9975?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk4869\",\r\n \"name\": \"onesdk4869\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9975\",\r\n \"name\": \"onesdk9975\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1193" ], "x-ms-request-id": [ - "2c83cbf4-7313-4974-b5b6-415644146027" + "31803ee5-ae20-4897-9f78-626ec7e8af20" ], "x-ms-correlation-request-id": [ - "2c83cbf4-7313-4974-b5b6-415644146027" + "31803ee5-ae20-4897-9f78-626ec7e8af20" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153426Z:2c83cbf4-7313-4974-b5b6-415644146027" + "WESTEUROPE:20150715T123031Z:31803ee5-ae20-4897-9f78-626ec7e8af20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:34:26 GMT" + "Wed, 15 Jul 2015 12:30:31 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk4869/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NjkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9975/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk5NzUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14986" ], "x-ms-request-id": [ - "c05f5440-e935-4d08-9557-a0981c52ac4c" + "d336caea-bc84-4829-868f-a264614d809d" ], "x-ms-correlation-request-id": [ - "c05f5440-e935-4d08-9557-a0981c52ac4c" + "d336caea-bc84-4829-868f-a264614d809d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153426Z:c05f5440-e935-4d08-9557-a0981c52ac4c" + "WESTEUROPE:20150715T123031Z:d336caea-bc84-4829-868f-a264614d809d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,19 +196,19 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:34:26 GMT" + "Wed, 15 Jul 2015 12:30:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk4869/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9975/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:8e2ac48a-c2a0-418c-890e-ac528efcd190" + "westeurope:7cf627a6-76ba-49a3-a0bc-5a214f81f096" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14985" ], "x-ms-correlation-request-id": [ - "3d4db8b2-c783-4347-b9b9-c80a9216ffe7" + "e34fd57e-bcad-4327-ae44-87e45764e1cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153427Z:3d4db8b2-c783-4347-b9b9-c80a9216ffe7" + "WESTEUROPE:20150715T123032Z:e34fd57e-bcad-4327-ae44-87e45764e1cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:34:26 GMT" + "Wed, 15 Jul 2015 12:30:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk4869/providers/microsoft.network/trafficmanagerprofiles/onesdk2081?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NjkvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjA4MT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk5244?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTI0ND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,10 +262,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk5244' under resource group 'onesdk9975' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "d0f3d94f-0b81-4d32-b769-c2497a56919d" + "3070ed41-529a-4a68-ae47-047c0c0694c5" ], "x-ms-correlation-request-id": [ - "d0f3d94f-0b81-4d32-b769-c2497a56919d" + "3070ed41-529a-4a68-ae47-047c0c0694c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153428Z:d0f3d94f-0b81-4d32-b769-c2497a56919d" + "WESTEUROPE:20150715T123034Z:3070ed41-529a-4a68-ae47-047c0c0694c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:34:27 GMT" + "Wed, 15 Jul 2015 12:30:34 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk4869/providers/microsoft.network/trafficmanagerprofiles/onesdk2081?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NjkvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjA4MT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk5244?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTI0ND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,10 +310,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk5244' under resource group 'onesdk9975' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -328,13 +328,13 @@ "gateway" ], "x-ms-request-id": [ - "b14e9ce4-079a-485b-a6b0-2421429a0716" + "b54f4510-e494-471e-88ad-caa5cf9e7169" ], "x-ms-correlation-request-id": [ - "b14e9ce4-079a-485b-a6b0-2421429a0716" + "b54f4510-e494-471e-88ad-caa5cf9e7169" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153430Z:b14e9ce4-079a-485b-a6b0-2421429a0716" + "WESTEUROPE:20150715T123044Z:b54f4510-e494-471e-88ad-caa5cf9e7169" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -343,31 +343,31 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:34:30 GMT" + "Wed, 15 Jul 2015 12:30:43 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk4869/providers/microsoft.network/trafficmanagerprofiles/onesdk2081?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NjkvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjA4MT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk5244?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTI0ND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6754\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk2081\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk8045\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk5244\",\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "327" + "312" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk4869/providers/Microsoft.Network/trafficManagerProfiles/onesdk2081\",\r\n \"name\": \"onesdk2081\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6754\",\r\n \"fqdn\": \"onesdk6754.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9975/providers/Microsoft.Network/trafficManagerProfiles/onesdk5244\",\r\n \"name\": \"onesdk5244\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk8045\",\r\n \"fqdn\": \"onesdk8045.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -376,16 +376,16 @@ "nosniff" ], "x-ms-request-id": [ - "87bd4109-2045-4d14-ad93-40f683deba89" + "aed290c1-5792-4cf2-b047-f69c1b6f8fb4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "10795" ], "x-ms-correlation-request-id": [ - "48b4f911-cdaa-42ab-b252-760744f6a8a1" + "b9a9d741-d2b3-4534-96ac-9eec108a085a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153429Z:48b4f911-cdaa-42ab-b252-760744f6a8a1" + "WESTEUROPE:20150715T123040Z:b9a9d741-d2b3-4534-96ac-9eec108a085a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,7 +394,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 15:34:29 GMT" + "Wed, 15 Jul 2015 12:30:40 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -409,8 +409,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk4869/providers/microsoft.network/trafficmanagerprofiles/onesdk2081?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NjkvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjA4MT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9975/providers/Microsoft.Network/trafficmanagerprofiles/onesdk5244?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk5NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTI0ND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -427,16 +427,16 @@ "nosniff" ], "x-ms-request-id": [ - "4aceaff9-1b99-4e66-ae6b-d4dfb520d633" + "70c46e58-535d-4e91-a01b-0599168e2716" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10799" + "10798" ], "x-ms-correlation-request-id": [ - "2b8c86d2-9bbc-4bb1-b12c-ca68ef464ca3" + "33203c0c-ccb5-4eaa-9534-c6f49a6305db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153430Z:2b8c86d2-9bbc-4bb1-b12c-ca68ef464ca3" + "WESTEUROPE:20150715T123043Z:33203c0c-ccb5-4eaa-9534-c6f49a6305db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +445,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 15:34:29 GMT" + "Wed, 15 Jul 2015 12:30:43 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -462,12 +462,12 @@ ], "Names": { "Test-CreateDeleteUsingProfile": [ - "onesdk2081", - "onesdk4869", - "onesdk6754" + "onesdk5244", + "onesdk9975", + "onesdk8045" ] }, "Variables": { - "SubscriptionId": "5ecfd42b-521f-4e3c-b4f4-47895f445068" + "SubscriptionId": "8dee4f73-2f41-405b-9485-ab9e75c63bc8" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestCrudWithEndpoint.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestCrudWithEndpoint.json index babce2c16c29..db1bf2947849 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestCrudWithEndpoint.json +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestCrudWithEndpoint.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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 \"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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\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 \"East US 2\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"associations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/premierOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Azure.Security\",\r\n \"namespace\": \"Azure.Security\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"default\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.AADPim\",\r\n \"namespace\": \"Microsoft.AADPim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Notifications\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"NotificationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UserToRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Roles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AuditEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\",\r\n \"2014-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\",\r\n \"2012-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupBVTD2\",\r\n \"namespace\": \"Microsoft.BackupBVTD2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupPPECurrent\",\r\n \"namespace\": \"Microsoft.BackupPPECurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CisRP\",\r\n \"namespace\": \"Microsoft.CisRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CisVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-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-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CSMBackupVaultRRP\",\r\n \"namespace\": \"Microsoft.CSMBackupVaultRRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated6\",\r\n \"adfgated5\",\r\n \"adfgated4\",\r\n \"adfgated3\",\r\n \"adfgated2\",\r\n \"adfgated1\",\r\n \"adfbqupgrade\",\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-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 \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestHub\",\r\n \"namespace\": \"Microsoft.DevTestHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool.IouriS\",\r\n \"namespace\": \"Microsoft.DevTestPool.IouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPoolIouriS\",\r\n \"namespace\": \"Microsoft.DevTestPoolIouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tlds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainsearches\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona1\",\r\n \"namespace\": \"Microsoft.Kona1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"KonaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.MS-Pim\",\r\n \"namespace\": \"Microsoft.MS-Pim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Home\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pim\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"subscriptions/locations\",\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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\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 \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/resourcepools\",\r\n \"locations\": [],\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/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\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/connectionPolicies\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupBVTD\",\r\n \"namespace\": \"Microsoft.WaBackupBVTD\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupGuru\",\r\n \"namespace\": \"Microsoft.WaBackupGuru\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupSql\",\r\n \"namespace\": \"Microsoft.WaBackupSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupTest\",\r\n \"namespace\": \"Microsoft.WaBackupTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft_AADB2C\",\r\n \"namespace\": \"Microsoft_AADB2C\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/vikashjorders\",\r\n \"namespace\": \"vikashjorders\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"order\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\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 ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"resourceType\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "45693" + "78972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14993" ], "x-ms-request-id": [ - "3ee8bd18-0c97-4090-bc7a-99d8a88d33cb" + "270f9b0a-760a-4233-84e9-2071d6a28282" ], "x-ms-correlation-request-id": [ - "3ee8bd18-0c97-4090-bc7a-99d8a88d33cb" + "270f9b0a-760a-4233-84e9-2071d6a28282" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150417T130316Z:3ee8bd18-0c97-4090-bc7a-99d8a88d33cb" + "WESTEUROPE:20150715T122443Z:270f9b0a-760a-4233-84e9-2071d6a28282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Fri, 17 Apr 2015 13:03:15 GMT" + "Wed, 15 Jul 2015 12:24:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk8905?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5MDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk7895?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4OTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14992" ], "x-ms-request-id": [ - "5b5e4512-1138-4850-a8d2-8c643d95bc00" + "899de0de-6498-42e1-bac6-ea4c91e40986" ], "x-ms-correlation-request-id": [ - "5b5e4512-1138-4850-a8d2-8c643d95bc00" + "899de0de-6498-42e1-bac6-ea4c91e40986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150417T130317Z:5b5e4512-1138-4850-a8d2-8c643d95bc00" + "WESTEUROPE:20150715T122444Z:899de0de-6498-42e1-bac6-ea4c91e40986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Fri, 17 Apr 2015 13:03:16 GMT" + "Wed, 15 Jul 2015 12:24:44 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk8905?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5MDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk7895?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4OTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8905\",\r\n \"name\": \"onesdk8905\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk7895\",\r\n \"name\": \"onesdk7895\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -133,13 +133,13 @@ "1197" ], "x-ms-request-id": [ - "9b95da3e-7c86-4a6c-a418-766429e5a396" + "5156438c-cd6f-4e4e-9384-c3e828dce755" ], "x-ms-correlation-request-id": [ - "9b95da3e-7c86-4a6c-a418-766429e5a396" + "5156438c-cd6f-4e4e-9384-c3e828dce755" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150417T130318Z:9b95da3e-7c86-4a6c-a418-766429e5a396" + "WESTEUROPE:20150715T122446Z:5156438c-cd6f-4e4e-9384-c3e828dce755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 17 Apr 2015 13:03:17 GMT" + "Wed, 15 Jul 2015 12:24:45 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8905/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazg5MDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk7895/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14991" ], "x-ms-request-id": [ - "16b3214f-7cea-42fe-a70a-b617ac2eb047" + "226f5165-eb88-414b-8e01-8dba91baee21" ], "x-ms-correlation-request-id": [ - "16b3214f-7cea-42fe-a70a-b617ac2eb047" + "226f5165-eb88-414b-8e01-8dba91baee21" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150417T130318Z:16b3214f-7cea-42fe-a70a-b617ac2eb047" + "WESTEUROPE:20150715T122446Z:226f5165-eb88-414b-8e01-8dba91baee21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,19 +196,19 @@ "no-cache" ], "Date": [ - "Fri, 17 Apr 2015 13:03:17 GMT" + "Wed, 15 Jul 2015 12:24:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk8905/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk7895/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:5945a55a-2fd6-4c38-ba32-70449019c9d8" + "westeurope:5ea766f1-9888-42e9-85d9-f1010e7b5d81" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14995" ], "x-ms-correlation-request-id": [ - "13aa77ff-14fb-479d-ba9c-7099ddcef30b" + "ae7f5a13-dee1-494c-b786-065478ea780b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150417T130319Z:13aa77ff-14fb-479d-ba9c-7099ddcef30b" + "WESTEUROPE:20150715T122447Z:ae7f5a13-dee1-494c-b786-065478ea780b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Fri, 17 Apr 2015 13:03:18 GMT" + "Wed, 15 Jul 2015 12:24:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8905/providers/microsoft.network/trafficmanagerprofiles/onesdk574?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazg5MDUvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTc0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk7895/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4522?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDUyMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,10 +262,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk4522' under resource group 'onesdk7895' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "2756f304-240a-4e17-bb36-6d59f414cefd" + "a2add7ef-cb49-46fa-8237-8fb2bbd55aeb" ], "x-ms-correlation-request-id": [ - "2756f304-240a-4e17-bb36-6d59f414cefd" + "a2add7ef-cb49-46fa-8237-8fb2bbd55aeb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150417T130319Z:2756f304-240a-4e17-bb36-6d59f414cefd" + "WESTEUROPE:20150715T122449Z:a2add7ef-cb49-46fa-8237-8fb2bbd55aeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,31 +295,31 @@ "no-cache" ], "Date": [ - "Fri, 17 Apr 2015 13:03:19 GMT" + "Wed, 15 Jul 2015 12:24:49 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8905/providers/microsoft.network/trafficmanagerprofiles/onesdk574?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazg5MDUvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTc0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk7895/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4522?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDUyMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1548\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk574\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk473\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk4522\",\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "326" + "311" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8905/providers/Microsoft.Network/trafficManagerProfiles/onesdk574\",\r\n \"name\": \"onesdk574\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1548\",\r\n \"fqdn\": \"onesdk1548.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk7895/providers/Microsoft.Network/trafficManagerProfiles/onesdk4522\",\r\n \"name\": \"onesdk4522\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk473\",\r\n \"fqdn\": \"onesdk473.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "537" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -328,16 +328,16 @@ "nosniff" ], "x-ms-request-id": [ - "14c043b1-7352-43df-a984-05ade370891e" + "bc673980-a733-443a-8a6d-70c17e3dcf8c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10796" + "10797" ], "x-ms-correlation-request-id": [ - "9f70a21b-16d5-4014-aa23-c54347344fa2" + "4ea14f40-894c-4a4c-9319-ca36daefb9cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150417T130322Z:9f70a21b-16d5-4014-aa23-c54347344fa2" + "WESTEUROPE:20150715T122456Z:4ea14f40-894c-4a4c-9319-ca36daefb9cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -346,7 +346,7 @@ "private" ], "Date": [ - "Fri, 17 Apr 2015 13:03:22 GMT" + "Wed, 15 Jul 2015 12:24:55 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -361,25 +361,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8905/providers/microsoft.network/trafficmanagerprofiles/onesdk574?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazg5MDUvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTc0P2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk7895/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4522?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDUyMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1548\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"MyExternalEndpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk574\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk473\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"MyExternalEndpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"www.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk4522\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "707" + "740" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8905/providers/Microsoft.Network/trafficManagerProfiles/onesdk574\",\r\n \"name\": \"onesdk574\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1548\",\r\n \"fqdn\": \"onesdk1548.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk8905/providers/Microsoft.Network/trafficManagerProfiles/onesdk574/externalEndpoints/MyExternalEndpoint\",\r\n \"name\": \"MyExternalEndpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": null,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk7895/providers/Microsoft.Network/trafficManagerProfiles/onesdk4522\",\r\n \"name\": \"onesdk4522\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk473\",\r\n \"fqdn\": \"onesdk473.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk7895/providers/Microsoft.Network/trafficManagerProfiles/onesdk4522/externalEndpoints/MyExternalEndpoint\",\r\n \"name\": \"MyExternalEndpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "988" + "991" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,16 +388,16 @@ "nosniff" ], "x-ms-request-id": [ - "e2bfe53d-cd29-47fd-a52e-3fe0b79cc542" + "696818bc-ad85-437a-a360-62daf4ba69bc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10795" + "10796" ], "x-ms-correlation-request-id": [ - "eb8bd000-40c2-4bbf-984e-6775ac9c6f5f" + "ae1f2089-588c-44e7-8ad6-0a1660152f28" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150417T130323Z:eb8bd000-40c2-4bbf-984e-6775ac9c6f5f" + "WESTEUROPE:20150715T122457Z:ae1f2089-588c-44e7-8ad6-0a1660152f28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,7 +406,7 @@ "private" ], "Date": [ - "Fri, 17 Apr 2015 13:03:23 GMT" + "Wed, 15 Jul 2015 12:24:57 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -423,12 +423,12 @@ ], "Names": { "Test-CrudWithEndpoint": [ - "onesdk574", - "onesdk8905", - "onesdk1548" + "onesdk4522", + "onesdk7895", + "onesdk473" ] }, "Variables": { - "SubscriptionId": "5ecfd42b-521f-4e3c-b4f4-47895f445068" + "SubscriptionId": "8dee4f73-2f41-405b-9485-ab9e75c63bc8" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestListProfilesInResourceGroup.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestListProfilesInResourceGroup.json new file mode 100644 index 000000000000..4f269f11c7f2 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestListProfilesInResourceGroup.json @@ -0,0 +1,428 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "98cdd9b8-2228-4550-90bf-8e42362af1d7" + ], + "x-ms-correlation-request-id": [ + "98cdd9b8-2228-4550-90bf-8e42362af1d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152340Z:98cdd9b8-2228-4550-90bf-8e42362af1d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:23:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk7421?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "e4faa3bf-0538-4818-9341-3ccb4e69c3ab" + ], + "x-ms-correlation-request-id": [ + "e4faa3bf-0538-4818-9341-3ccb4e69c3ab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152341Z:e4faa3bf-0538-4818-9341-3ccb4e69c3ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:23:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk7421?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7421\",\r\n \"name\": \"onesdk7421\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1163" + ], + "x-ms-request-id": [ + "49f5ca13-a4fc-411c-ba26-ebf1e94d11f7" + ], + "x-ms-correlation-request-id": [ + "49f5ca13-a4fc-411c-ba26-ebf1e94d11f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152342Z:49f5ca13-a4fc-411c-ba26-ebf1e94d11f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:23:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7421/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MjEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "8fb519e8-fada-4152-8b7f-02a8e9d12d49" + ], + "x-ms-correlation-request-id": [ + "8fb519e8-fada-4152-8b7f-02a8e9d12d49" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152342Z:8fb519e8-fada-4152-8b7f-02a8e9d12d49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:23:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk7421/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:efc352eb-3002-4bcf-a3c2-74fbf372a803" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "77d10bd2-a0b9-4870-859e-0da4605bef9b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152343Z:77d10bd2-a0b9-4870-859e-0da4605bef9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:23:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7421/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7079?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzA3OT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk7079' under resource group 'onesdk7421' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6df812cb-7e56-4998-83b1-01ec7d263476" + ], + "x-ms-correlation-request-id": [ + "6df812cb-7e56-4998-83b1-01ec7d263476" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152343Z:6df812cb-7e56-4998-83b1-01ec7d263476" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:23:42 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7421/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7079?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzA3OT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7990\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk7079\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7421/providers/Microsoft.Network/trafficManagerProfiles/onesdk7079\",\r\n \"name\": \"onesdk7079\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7990\",\r\n \"fqdn\": \"onesdk7990.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4ae12e3d-5091-4b10-8595-3c1e7a728dc6" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10787" + ], + "x-ms-correlation-request-id": [ + "993baa92-d641-4915-8a71-5d7f27edda1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152346Z:993baa92-d641-4915-8a71-5d7f27edda1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:23:45 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7421/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXM/YXBpLXZlcnNpb249MjAxNS0wNC0yOC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7421/providers/Microsoft.Network/trafficManagerProfiles/onesdk7079\",\r\n \"name\": \"onesdk7079\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7990\",\r\n \"fqdn\": \"onesdk7990.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "556" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1992bbe7-40a0-4251-8636-4d17d87e616d" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10786" + ], + "x-ms-correlation-request-id": [ + "7a099c21-5851-41b3-8aec-c68c41e322d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152347Z:7a099c21-5851-41b3-8aec-c68c41e322d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:23:47 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ListProfilesInResourceGroup": [ + "onesdk7079", + "onesdk7421", + "onesdk7990" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestListProfilesInSubscription.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestListProfilesInSubscription.json new file mode 100644 index 000000000000..2bbe8ef0ed3d --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestListProfilesInSubscription.json @@ -0,0 +1,428 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-request-id": [ + "e1d19d20-3c01-4f01-9b6f-c03197df493c" + ], + "x-ms-correlation-request-id": [ + "e1d19d20-3c01-4f01-9b6f-c03197df493c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T153051Z:e1d19d20-3c01-4f01-9b6f-c03197df493c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:30:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk8043?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-request-id": [ + "5752c18a-bc76-45fc-8eb3-905d493ca9b9" + ], + "x-ms-correlation-request-id": [ + "5752c18a-bc76-45fc-8eb3-905d493ca9b9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T153051Z:5752c18a-bc76-45fc-8eb3-905d493ca9b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:30:51 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk8043?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8043\",\r\n \"name\": \"onesdk8043\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1156" + ], + "x-ms-request-id": [ + "7be59127-a75e-46fd-8484-61d6b57501df" + ], + "x-ms-correlation-request-id": [ + "7be59127-a75e-46fd-8484-61d6b57501df" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T153052Z:7be59127-a75e-46fd-8484-61d6b57501df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:30:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8043/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-request-id": [ + "ef2a50bb-561d-441a-850f-b575d2f8a010" + ], + "x-ms-correlation-request-id": [ + "ef2a50bb-561d-441a-850f-b575d2f8a010" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T153053Z:ef2a50bb-561d-441a-850f-b575d2f8a010" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:30:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk8043/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:a4ac9054-970d-4ff6-a03c-3d118e5a5590" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "d9c878ef-3d89-4912-977d-3bece2632610" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T153053Z:d9c878ef-3d89-4912-977d-3bece2632610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:30:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8043/providers/Microsoft.Network/trafficmanagerprofiles/onesdk1775?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMTc3NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk1775' under resource group 'onesdk8043' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d2f1cde8-c55e-42ca-b036-fa76bb5110c1" + ], + "x-ms-correlation-request-id": [ + "d2f1cde8-c55e-42ca-b036-fa76bb5110c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T153054Z:d2f1cde8-c55e-42ca-b036-fa76bb5110c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:30:53 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8043/providers/Microsoft.Network/trafficmanagerprofiles/onesdk1775?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMTc3NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk5420\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk1775\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "312" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8043/providers/Microsoft.Network/trafficManagerProfiles/onesdk1775\",\r\n \"name\": \"onesdk1775\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk5420\",\r\n \"fqdn\": \"onesdk5420.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5b7bf0e2-77c4-49b0-ba20-b391ef94c936" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10785" + ], + "x-ms-correlation-request-id": [ + "675b8c9b-88e1-4ab0-9657-86e39495b8b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T153057Z:675b8c9b-88e1-4ab0-9657-86e39495b8b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:30:56 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMjgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/albertorg1/providers/Microsoft.Network/trafficManagerProfiles/albertoProfile\",\r\n \"name\": \"albertoProfile\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"alberto2.com\",\r\n \"fqdn\": \"alberto2.com.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 30\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/albertorg1/providers/Microsoft.Network/trafficManagerProfiles/albertoProfile/externalEndpoints/albertoEndpoint\",\r\n \"name\": \"albertoEndpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"alberto.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/albertorg1/providers/Microsoft.Network/trafficManagerProfiles/albertoProfile/externalEndpoints/albertoEndpoint2\",\r\n \"name\": \"albertoEndpoint2\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"alberto.es\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/nrpwatmtestdefaultrg/providers/Microsoft.Network/trafficManagerProfiles/albertoProfile\",\r\n \"name\": \"albertoProfile\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"alberto.com\",\r\n \"fqdn\": \"alberto.com.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 30\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/\"\r\n },\r\n \"endpoints\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/nrpwatmtestdefaultrg/providers/Microsoft.Network/trafficManagerProfiles/createprofilewithvalidpublicipendpointdebug\",\r\n \"name\": \"createprofilewithvalidpublicipendpointdebug\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Priority\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"createprofilewithvalidpublicipendpointdebug\",\r\n \"fqdn\": \"createprofilewithvalidpublicipendpointdebug.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 30\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/index\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/nrpwatmtestdefaultrg/providers/Microsoft.Network/trafficManagerProfiles/createprofilewithvalidpublicipendpointdebug/azureEndpoints/createprofilewithvalidpublicipendpointdebug\",\r\n \"name\": \"createprofilewithvalidpublicipendpointdebug\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/azureEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"createprofilewithvalidpublicipendpointdebug.azure-bvt.com\",\r\n \"weight\": 1,\r\n \"priority\": 2,\r\n \"endpointLocation\": null\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/nrpwatmtestdefaultrg/providers/Microsoft.Network/trafficManagerProfiles/vladca-debug-nrpendpointsdisabled\",\r\n \"name\": \"vladca-debug-nrpendpointsdisabled\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"debugnrpvladca1\",\r\n \"fqdn\": \"debugnrpvladca1.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 100\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/index\"\r\n },\r\n \"endpoints\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/nrpwatmtestdefaultrg/providers/Microsoft.Network/trafficManagerProfiles/vladcawebsitespropagation\",\r\n \"name\": \"vladcawebsitespropagation\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"vladcawebsitespropagation\",\r\n \"fqdn\": \"vladcawebsitespropagation.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 30\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/nrpwatmtestdefaultrg/providers/Microsoft.Network/trafficManagerProfiles/vladcawebsitespropagation/azureEndpoints/vladcawebsitespropagation\",\r\n \"name\": \"vladcawebsitespropagation\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/azureEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"previewwebapp.waws-ppedf.windows-int.net\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": null\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk1076/providers/Microsoft.Network/trafficManagerProfiles/onesdk8316\",\r\n \"name\": \"onesdk8316\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1388\",\r\n \"fqdn\": \"onesdk1388.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk1076/providers/Microsoft.Network/trafficManagerProfiles/onesdk8316/externalEndpoints/onesdk6338\",\r\n \"name\": \"onesdk6338\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2056/providers/Microsoft.Network/trafficManagerProfiles/onesdk4885\",\r\n \"name\": \"onesdk4885\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1048\",\r\n \"fqdn\": \"onesdk1048.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2056/providers/Microsoft.Network/trafficManagerProfiles/onesdk4885/externalEndpoints/onesdk3496\",\r\n \"name\": \"onesdk3496\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2406/providers/Microsoft.Network/trafficManagerProfiles/onesdk4327\",\r\n \"name\": \"onesdk4327\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7124\",\r\n \"fqdn\": \"onesdk7124.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6246/providers/Microsoft.Network/trafficManagerProfiles/onesdk3387\",\r\n \"name\": \"onesdk3387\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6336\",\r\n \"fqdn\": \"onesdk6336.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk6246/providers/Microsoft.Network/trafficManagerProfiles/onesdk3387/externalEndpoints/onesdk7520\",\r\n \"name\": \"onesdk7520\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Disabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"www.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 0,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk8043/providers/Microsoft.Network/trafficManagerProfiles/onesdk1775\",\r\n \"name\": \"onesdk1775\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk5420\",\r\n \"fqdn\": \"onesdk5420.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9008" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "83143309-d382-466e-930b-83d048421987" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10784" + ], + "x-ms-correlation-request-id": [ + "8571d3a9-abe5-4940-9359-8b3b80de7d95" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T153059Z:8571d3a9-abe5-4940-9359-8b3b80de7d95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:30:59 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ListProfilesInSubscription": [ + "onesdk1775", + "onesdk8043", + "onesdk5420" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileCrud.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileCrud.json index dbc11af89d9e..e077d4242876 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileCrud.json +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileCrud.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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 \"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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\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 \"East US 2\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"associations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/premierOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Azure.Security\",\r\n \"namespace\": \"Azure.Security\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"default\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.AADPim\",\r\n \"namespace\": \"Microsoft.AADPim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Notifications\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"NotificationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UserToRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Roles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AuditEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\",\r\n \"2014-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\",\r\n \"2012-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupBVTD2\",\r\n \"namespace\": \"Microsoft.BackupBVTD2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupPPECurrent\",\r\n \"namespace\": \"Microsoft.BackupPPECurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CisRP\",\r\n \"namespace\": \"Microsoft.CisRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CisVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-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-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CSMBackupVaultRRP\",\r\n \"namespace\": \"Microsoft.CSMBackupVaultRRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated6\",\r\n \"adfgated5\",\r\n \"adfgated4\",\r\n \"adfgated3\",\r\n \"adfgated2\",\r\n \"adfgated1\",\r\n \"adfbqupgrade\",\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-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 \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestHub\",\r\n \"namespace\": \"Microsoft.DevTestHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool.IouriS\",\r\n \"namespace\": \"Microsoft.DevTestPool.IouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPoolIouriS\",\r\n \"namespace\": \"Microsoft.DevTestPoolIouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tlds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainsearches\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona1\",\r\n \"namespace\": \"Microsoft.Kona1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"KonaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.MS-Pim\",\r\n \"namespace\": \"Microsoft.MS-Pim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Home\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pim\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"subscriptions/locations\",\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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\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 \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/resourcepools\",\r\n \"locations\": [],\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/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\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/connectionPolicies\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupBVTD\",\r\n \"namespace\": \"Microsoft.WaBackupBVTD\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupGuru\",\r\n \"namespace\": \"Microsoft.WaBackupGuru\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupSql\",\r\n \"namespace\": \"Microsoft.WaBackupSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupTest\",\r\n \"namespace\": \"Microsoft.WaBackupTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft_AADB2C\",\r\n \"namespace\": \"Microsoft_AADB2C\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/vikashjorders\",\r\n \"namespace\": \"vikashjorders\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"order\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\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 ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"resourceType\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "45224" + "78972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14992" ], "x-ms-request-id": [ - "7f8329e6-58dd-482c-aee9-48fc35504ee8" + "6fa20915-c190-45da-aeaf-fcb0495ca9ed" ], "x-ms-correlation-request-id": [ - "7f8329e6-58dd-482c-aee9-48fc35504ee8" + "6fa20915-c190-45da-aeaf-fcb0495ca9ed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182248Z:7f8329e6-58dd-482c-aee9-48fc35504ee8" + "WESTEUROPE:20150715T122703Z:6fa20915-c190-45da-aeaf-fcb0495ca9ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:22:47 GMT" + "Wed, 15 Jul 2015 12:27:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk9147?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9418?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk0MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14991" ], "x-ms-request-id": [ - "f5ac17d7-99ab-4823-b89b-7a41c41856d2" + "efdaf82c-5986-4df1-8933-5fdf259b2684" ], "x-ms-correlation-request-id": [ - "f5ac17d7-99ab-4823-b89b-7a41c41856d2" + "efdaf82c-5986-4df1-8933-5fdf259b2684" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182248Z:f5ac17d7-99ab-4823-b89b-7a41c41856d2" + "WESTEUROPE:20150715T122704Z:efdaf82c-5986-4df1-8933-5fdf259b2684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:22:47 GMT" + "Wed, 15 Jul 2015 12:27:04 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk9147?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9418?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk0MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147\",\r\n \"name\": \"onesdk9147\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418\",\r\n \"name\": \"onesdk9418\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1195" ], "x-ms-request-id": [ - "4f0dcfa9-6266-40fa-b097-21cb2b1206fe" + "dbebf952-bcac-4ed5-8f0a-3806526c43c9" ], "x-ms-correlation-request-id": [ - "4f0dcfa9-6266-40fa-b097-21cb2b1206fe" + "dbebf952-bcac-4ed5-8f0a-3806526c43c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182249Z:4f0dcfa9-6266-40fa-b097-21cb2b1206fe" + "WESTEUROPE:20150715T122706Z:dbebf952-bcac-4ed5-8f0a-3806526c43c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:22:48 GMT" + "Wed, 15 Jul 2015 12:27:06 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazkxNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14990" ], "x-ms-request-id": [ - "cdaba17f-9e9b-4b9a-b5fd-db46dd3e4edc" + "ed753689-40e0-4bad-ae68-30acbca3df36" ], "x-ms-correlation-request-id": [ - "cdaba17f-9e9b-4b9a-b5fd-db46dd3e4edc" + "ed753689-40e0-4bad-ae68-30acbca3df36" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182249Z:cdaba17f-9e9b-4b9a-b5fd-db46dd3e4edc" + "WESTEUROPE:20150715T122706Z:ed753689-40e0-4bad-ae68-30acbca3df36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,19 +196,19 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:22:48 GMT" + "Wed, 15 Jul 2015 12:27:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk9147/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazkxNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk9418/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazk0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:d6abc024-5ec6-4e1e-b6aa-b225d04cf27f" + "westeurope:29e35eea-5072-40a9-9f2d-5217e9c52004" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14986" ], "x-ms-correlation-request-id": [ - "a0636cff-9000-448c-bb9d-e947e45d4200" + "0eb58cf8-0252-40cc-bba2-8a34d937034d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182249Z:a0636cff-9000-448c-bb9d-e947e45d4200" + "WESTEUROPE:20150715T122708Z:0eb58cf8-0252-40cc-bba2-8a34d937034d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:22:49 GMT" + "Wed, 15 Jul 2015 12:27:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/microsoft.network/trafficmanagerprofiles/onesdk8330?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazkxNDcvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrODMzMD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2612?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjYxMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,10 +262,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk2612' under resource group 'onesdk9418' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "303b71df-fc7b-482a-846a-4053c49c6446" + "178bcf85-04a0-45f6-87fd-e5ac30a3f4c5" ], "x-ms-correlation-request-id": [ - "303b71df-fc7b-482a-846a-4053c49c6446" + "178bcf85-04a0-45f6-87fd-e5ac30a3f4c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182250Z:303b71df-fc7b-482a-846a-4053c49c6446" + "WESTEUROPE:20150715T122709Z:178bcf85-04a0-45f6-87fd-e5ac30a3f4c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:22:49 GMT" + "Wed, 15 Jul 2015 12:27:09 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/microsoft.network/trafficmanagerprofiles/onesdk8330?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazkxNDcvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrODMzMD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2612?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjYxMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,10 +310,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/Microsoft.Network/trafficManagerProfiles/onesdk8330\",\r\n \"name\": \"onesdk8330\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6216\",\r\n \"fqdn\": \"onesdk6216.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficManagerProfiles/onesdk2612\",\r\n \"name\": \"onesdk2612\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9611\",\r\n \"fqdn\": \"onesdk9611.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,16 +322,16 @@ "nosniff" ], "x-ms-request-id": [ - "cb219685-d471-4db6-9dfc-87fa62c2a982" + "06d60e2a-0e14-489c-bb01-899359f2f698" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10794" + "10795" ], "x-ms-correlation-request-id": [ - "d7ded312-83c8-455b-8748-48cab9bb1f51" + "2c910236-817e-4a7e-a167-398b0a5979a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182251Z:d7ded312-83c8-455b-8748-48cab9bb1f51" + "WESTEUROPE:20150715T122714Z:2c910236-817e-4a7e-a167-398b0a5979a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,7 +340,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 18:22:50 GMT" + "Wed, 15 Jul 2015 12:27:13 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -355,8 +355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/microsoft.network/trafficmanagerprofiles/onesdk8330?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazkxNDcvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrODMzMD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2612?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjYxMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,10 +364,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk2612' under resource group 'onesdk9418' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -382,13 +382,13 @@ "gateway" ], "x-ms-request-id": [ - "f22ebe1f-b7d4-4974-b279-49261fd7272b" + "8b20db32-916d-442a-8c4d-29162821f584" ], "x-ms-correlation-request-id": [ - "f22ebe1f-b7d4-4974-b279-49261fd7272b" + "8b20db32-916d-442a-8c4d-29162821f584" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182253Z:f22ebe1f-b7d4-4974-b279-49261fd7272b" + "WESTEUROPE:20150715T122718Z:8b20db32-916d-442a-8c4d-29162821f584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,31 +397,31 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:22:53 GMT" + "Wed, 15 Jul 2015 12:27:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/microsoft.network/trafficmanagerprofiles/onesdk8330?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazkxNDcvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrODMzMD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2612?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjYxMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6216\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk8330\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9611\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk2612\",\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "327" + "312" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/Microsoft.Network/trafficManagerProfiles/onesdk8330\",\r\n \"name\": \"onesdk8330\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6216\",\r\n \"fqdn\": \"onesdk6216.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficManagerProfiles/onesdk2612\",\r\n \"name\": \"onesdk2612\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9611\",\r\n \"fqdn\": \"onesdk9611.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -430,16 +430,16 @@ "nosniff" ], "x-ms-request-id": [ - "b735a6e2-2da1-4049-8f12-11a8e5eb0b6a" + "6c3338d6-c947-4b2d-9c69-fecf0d295cce" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10783" + "10797" ], "x-ms-correlation-request-id": [ - "f24378af-c373-4d36-90dd-0df1136d447c" + "6d7c49ba-d016-4f24-b10b-7933c1334183" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182251Z:f24378af-c373-4d36-90dd-0df1136d447c" + "WESTEUROPE:20150715T122713Z:6d7c49ba-d016-4f24-b10b-7933c1334183" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,7 +448,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 18:22:50 GMT" + "Wed, 15 Jul 2015 12:27:13 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -463,25 +463,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/microsoft.network/trafficmanagerprofiles/onesdk8330?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazkxNDcvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrODMzMD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2612?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjYxMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Priority\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6216\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk8330\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Priority\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9611\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk2612\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "412" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/Microsoft.Network/trafficManagerProfiles/onesdk8330\",\r\n \"name\": \"onesdk8330\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Priority\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6216\",\r\n \"fqdn\": \"onesdk6216.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficManagerProfiles/onesdk2612\",\r\n \"name\": \"onesdk2612\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Priority\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9611\",\r\n \"fqdn\": \"onesdk9611.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "536" + "541" ], "Content-Type": [ "application/json; charset=utf-8" @@ -490,16 +490,16 @@ "nosniff" ], "x-ms-request-id": [ - "f2ee9897-84d4-4186-8ef8-d949ff76780a" + "a39aa776-6676-4730-b467-79be1c840e00" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10782" + "10796" ], "x-ms-correlation-request-id": [ - "ba96e872-092a-4202-93bf-41e260d4e98e" + "dc89abe4-a1ab-4978-a091-1f004befd455" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182252Z:ba96e872-092a-4202-93bf-41e260d4e98e" + "WESTEUROPE:20150715T122716Z:dc89abe4-a1ab-4978-a091-1f004befd455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,7 +508,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 18:22:52 GMT" + "Wed, 15 Jul 2015 12:27:16 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -523,8 +523,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk9147/providers/microsoft.network/trafficmanagerprofiles/onesdk8330?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazkxNDcvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrODMzMD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk9418/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2612?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjYxMj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -541,16 +541,16 @@ "nosniff" ], "x-ms-request-id": [ - "f2764f61-51b6-4b3a-942e-eb962b8ee210" + "2ae0ed86-9a91-4d70-bce4-44b744163ea5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10797" + "10798" ], "x-ms-correlation-request-id": [ - "0450966e-60ea-49a1-a180-cc3d025d18b3" + "0e4f20d8-d2dc-4951-b8ff-a47b40c129b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182253Z:0450966e-60ea-49a1-a180-cc3d025d18b3" + "WESTEUROPE:20150715T122718Z:0e4f20d8-d2dc-4951-b8ff-a47b40c129b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,7 +559,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 18:22:53 GMT" + "Wed, 15 Jul 2015 12:27:18 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -576,12 +576,12 @@ ], "Names": { "Test-ProfileCrud": [ - "onesdk8330", - "onesdk9147", - "onesdk6216" + "onesdk2612", + "onesdk9418", + "onesdk9611" ] }, "Variables": { - "SubscriptionId": "5ecfd42b-521f-4e3c-b4f4-47895f445068" + "SubscriptionId": "8dee4f73-2f41-405b-9485-ab9e75c63bc8" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileCrudWithPiping.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileCrudWithPiping.json index a4098a44f272..0cc4cc511db4 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileCrudWithPiping.json +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileCrudWithPiping.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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 \"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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\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 \"East US 2\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"associations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/premierOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Azure.Security\",\r\n \"namespace\": \"Azure.Security\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"default\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.AADPim\",\r\n \"namespace\": \"Microsoft.AADPim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Notifications\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"NotificationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UserToRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Roles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AuditEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\",\r\n \"2014-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\",\r\n \"2012-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupBVTD2\",\r\n \"namespace\": \"Microsoft.BackupBVTD2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupPPECurrent\",\r\n \"namespace\": \"Microsoft.BackupPPECurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CisRP\",\r\n \"namespace\": \"Microsoft.CisRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CisVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-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-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CSMBackupVaultRRP\",\r\n \"namespace\": \"Microsoft.CSMBackupVaultRRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated6\",\r\n \"adfgated5\",\r\n \"adfgated4\",\r\n \"adfgated3\",\r\n \"adfgated2\",\r\n \"adfgated1\",\r\n \"adfbqupgrade\",\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-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 \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestHub\",\r\n \"namespace\": \"Microsoft.DevTestHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool.IouriS\",\r\n \"namespace\": \"Microsoft.DevTestPool.IouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPoolIouriS\",\r\n \"namespace\": \"Microsoft.DevTestPoolIouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tlds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainsearches\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona1\",\r\n \"namespace\": \"Microsoft.Kona1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"KonaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.MS-Pim\",\r\n \"namespace\": \"Microsoft.MS-Pim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Home\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pim\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"subscriptions/locations\",\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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\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 \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/resourcepools\",\r\n \"locations\": [],\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/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\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/connectionPolicies\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupBVTD\",\r\n \"namespace\": \"Microsoft.WaBackupBVTD\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupGuru\",\r\n \"namespace\": \"Microsoft.WaBackupGuru\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupSql\",\r\n \"namespace\": \"Microsoft.WaBackupSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupTest\",\r\n \"namespace\": \"Microsoft.WaBackupTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft_AADB2C\",\r\n \"namespace\": \"Microsoft_AADB2C\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/vikashjorders\",\r\n \"namespace\": \"vikashjorders\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"order\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\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 ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"resourceType\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "45224" + "78972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14984" ], "x-ms-request-id": [ - "6664d5c0-9adb-4b9a-9ab9-5840942ac4aa" + "49326220-4480-4175-9bfc-e6b873bac638" ], "x-ms-correlation-request-id": [ - "6664d5c0-9adb-4b9a-9ab9-5840942ac4aa" + "49326220-4480-4175-9bfc-e6b873bac638" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182707Z:6664d5c0-9adb-4b9a-9ab9-5840942ac4aa" + "WESTEUROPE:20150715T122812Z:49326220-4480-4175-9bfc-e6b873bac638" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:27:06 GMT" + "Wed, 15 Jul 2015 12:28:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk2024?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk3696?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14983" ], "x-ms-request-id": [ - "7134c930-9750-444b-9efc-76b6b9d25aec" + "5663ffc0-a4b0-4e08-b71a-5c0ae320b6fa" ], "x-ms-correlation-request-id": [ - "7134c930-9750-444b-9efc-76b6b9d25aec" + "5663ffc0-a4b0-4e08-b71a-5c0ae320b6fa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182707Z:7134c930-9750-444b-9efc-76b6b9d25aec" + "WESTEUROPE:20150715T122814Z:5663ffc0-a4b0-4e08-b71a-5c0ae320b6fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:27:07 GMT" + "Wed, 15 Jul 2015 12:28:14 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk2024?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk3696?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024\",\r\n \"name\": \"onesdk2024\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696\",\r\n \"name\": \"onesdk3696\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1194" ], "x-ms-request-id": [ - "4f20c405-4dcd-407c-ace6-f4152fa02604" + "12a4777a-3896-4a80-9e42-c79c2c1e5f53" ], "x-ms-correlation-request-id": [ - "4f20c405-4dcd-407c-ace6-f4152fa02604" + "12a4777a-3896-4a80-9e42-c79c2c1e5f53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182708Z:4f20c405-4dcd-407c-ace6-f4152fa02604" + "WESTEUROPE:20150715T122815Z:12a4777a-3896-4a80-9e42-c79c2c1e5f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:27:07 GMT" + "Wed, 15 Jul 2015 12:28:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazIwMjQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14982" ], "x-ms-request-id": [ - "8c922986-eca4-4a42-b463-4a550b91d933" + "cc610929-a7cd-443c-8b8a-085612f10954" ], "x-ms-correlation-request-id": [ - "8c922986-eca4-4a42-b463-4a550b91d933" + "cc610929-a7cd-443c-8b8a-085612f10954" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182708Z:8c922986-eca4-4a42-b463-4a550b91d933" + "WESTEUROPE:20150715T122816Z:cc610929-a7cd-443c-8b8a-085612f10954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,19 +196,19 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:27:08 GMT" + "Wed, 15 Jul 2015 12:28:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk2024/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk3696/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:8ee925ff-fe63-4d09-b9f6-c89b2eabbc3a" + "westeurope:f8bfc89e-02e3-413a-a826-3dc6c296c2f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14981" ], "x-ms-correlation-request-id": [ - "6a478936-8aaf-4a5d-b2e7-ec8edfb6bcee" + "b214bcc4-07f1-4e86-922c-fbbcee1147e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182709Z:6a478936-8aaf-4a5d-b2e7-ec8edfb6bcee" + "WESTEUROPE:20150715T122817Z:b214bcc4-07f1-4e86-922c-fbbcee1147e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:27:09 GMT" + "Wed, 15 Jul 2015 12:28:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/microsoft.network/trafficmanagerprofiles/onesdk3137?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazIwMjQvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzEzNz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4655?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDY1NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,10 +262,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk4655' under resource group 'onesdk3696' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "6f46c615-8b2c-4951-8d00-95845827dbb9" + "98d88b29-48b4-4f5b-828c-a37440a4b3c3" ], "x-ms-correlation-request-id": [ - "6f46c615-8b2c-4951-8d00-95845827dbb9" + "98d88b29-48b4-4f5b-828c-a37440a4b3c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182709Z:6f46c615-8b2c-4951-8d00-95845827dbb9" + "WESTEUROPE:20150715T122819Z:98d88b29-48b4-4f5b-828c-a37440a4b3c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:27:09 GMT" + "Wed, 15 Jul 2015 12:28:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/microsoft.network/trafficmanagerprofiles/onesdk3137?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazIwMjQvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzEzNz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4655?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDY1NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,10 +310,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/Microsoft.Network/trafficManagerProfiles/onesdk3137\",\r\n \"name\": \"onesdk3137\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk2328\",\r\n \"fqdn\": \"onesdk2328.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficManagerProfiles/onesdk4655\",\r\n \"name\": \"onesdk4655\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6118\",\r\n \"fqdn\": \"onesdk6118.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,16 +322,16 @@ "nosniff" ], "x-ms-request-id": [ - "a367a96e-8f33-41ae-a259-42d36d0a8426" + "cebe1d6b-d1b4-4d8d-915e-5d269b0f69d3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10787" + "10792" ], "x-ms-correlation-request-id": [ - "e2e8223c-e806-4c48-9740-c286667e750b" + "fb7701a4-3d79-4927-a1fd-61cdea75cbc5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182711Z:e2e8223c-e806-4c48-9740-c286667e750b" + "WESTEUROPE:20150715T122823Z:fb7701a4-3d79-4927-a1fd-61cdea75cbc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,7 +340,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 18:27:10 GMT" + "Wed, 15 Jul 2015 12:28:23 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -355,8 +355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/microsoft.network/trafficmanagerprofiles/onesdk3137?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazIwMjQvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzEzNz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4655?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDY1NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -364,10 +364,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk4655' under resource group 'onesdk3696' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -382,13 +382,13 @@ "gateway" ], "x-ms-request-id": [ - "e223c704-078b-4448-963b-441ef7d265ba" + "c637f461-c873-4d8a-8f81-d47ddafb3489" ], "x-ms-correlation-request-id": [ - "e223c704-078b-4448-963b-441ef7d265ba" + "c637f461-c873-4d8a-8f81-d47ddafb3489" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182713Z:e223c704-078b-4448-963b-441ef7d265ba" + "WESTEUROPE:20150715T122830Z:c637f461-c873-4d8a-8f81-d47ddafb3489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,31 +397,31 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 18:27:13 GMT" + "Wed, 15 Jul 2015 12:28:29 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/microsoft.network/trafficmanagerprofiles/onesdk3137?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazIwMjQvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzEzNz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4655?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDY1NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk2328\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk3137\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6118\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk4655\",\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "327" + "312" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/Microsoft.Network/trafficManagerProfiles/onesdk3137\",\r\n \"name\": \"onesdk3137\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk2328\",\r\n \"fqdn\": \"onesdk2328.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficManagerProfiles/onesdk4655\",\r\n \"name\": \"onesdk4655\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6118\",\r\n \"fqdn\": \"onesdk6118.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -430,16 +430,16 @@ "nosniff" ], "x-ms-request-id": [ - "63e208fc-d35c-4460-aff9-a848bcb9011e" + "3f775bee-08e9-4d37-8912-46ecf42e49d3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10765" + "10795" ], "x-ms-correlation-request-id": [ - "9c717456-45f1-4f02-82df-8999615682eb" + "4ecdf2f6-ebd3-47c6-9369-a2fba8468383" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182711Z:9c717456-45f1-4f02-82df-8999615682eb" + "WESTEUROPE:20150715T122823Z:4ecdf2f6-ebd3-47c6-9369-a2fba8468383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,7 +448,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 18:27:10 GMT" + "Wed, 15 Jul 2015 12:28:23 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -463,25 +463,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/microsoft.network/trafficmanagerprofiles/onesdk3137?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazIwMjQvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzEzNz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4655?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDY1NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk2328\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk3137\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6118\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk4655\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "327" + "415" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/Microsoft.Network/trafficManagerProfiles/onesdk3137\",\r\n \"name\": \"onesdk3137\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk2328\",\r\n \"fqdn\": \"onesdk2328.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficManagerProfiles/onesdk4655\",\r\n \"name\": \"onesdk4655\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6118\",\r\n \"fqdn\": \"onesdk6118.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -490,16 +490,16 @@ "nosniff" ], "x-ms-request-id": [ - "b63a8c1a-8f1c-444c-ac87-b30a0842aed4" + "7b8d1529-9c84-475d-b8b9-4ef7276891f3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10764" + "10794" ], "x-ms-correlation-request-id": [ - "c99b32cc-6e62-40e2-a02c-14f0c5c3e893" + "00a74552-cbb4-453f-8ec2-85b69dd1db63" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182712Z:c99b32cc-6e62-40e2-a02c-14f0c5c3e893" + "WESTEUROPE:20150715T122825Z:00a74552-cbb4-453f-8ec2-85b69dd1db63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,7 +508,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 18:27:11 GMT" + "Wed, 15 Jul 2015 12:28:25 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -523,8 +523,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk2024/providers/microsoft.network/trafficmanagerprofiles/onesdk3137?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazIwMjQvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMzEzNz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk3696/providers/Microsoft.Network/trafficmanagerprofiles/onesdk4655?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDY1NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -541,16 +541,16 @@ "nosniff" ], "x-ms-request-id": [ - "c9065a6f-c90e-4eb9-a195-5dc0ae0af900" + "82f2092f-24c8-4067-a361-1b65048cb180" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10796" + "10797" ], "x-ms-correlation-request-id": [ - "051ba65c-0fbe-4113-a162-81c8b1a3eece" + "fa0e1c90-d50b-4b8e-a6e2-84ee183cfdbc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T182713Z:051ba65c-0fbe-4113-a162-81c8b1a3eece" + "WESTEUROPE:20150715T122829Z:fa0e1c90-d50b-4b8e-a6e2-84ee183cfdbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,7 +559,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 18:27:13 GMT" + "Wed, 15 Jul 2015 12:28:29 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -576,12 +576,12 @@ ], "Names": { "Test-ProfileCrudWithPiping": [ - "onesdk3137", - "onesdk2024", - "onesdk2328" + "onesdk4655", + "onesdk3696", + "onesdk6118" ] }, "Variables": { - "SubscriptionId": "5ecfd42b-521f-4e3c-b4f4-47895f445068" + "SubscriptionId": "8dee4f73-2f41-405b-9485-ab9e75c63bc8" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisable.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisable.json new file mode 100644 index 000000000000..916d75897c39 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisable.json @@ -0,0 +1,488 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "46a1f289-9067-495e-9374-f2e08dfc9b2a" + ], + "x-ms-correlation-request-id": [ + "46a1f289-9067-495e-9374-f2e08dfc9b2a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151936Z:46a1f289-9067-495e-9374-f2e08dfc9b2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9392?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "ddfb617c-157d-4abd-9ee7-9c0f041206e3" + ], + "x-ms-correlation-request-id": [ + "ddfb617c-157d-4abd-9ee7-9c0f041206e3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151937Z:ddfb617c-157d-4abd-9ee7-9c0f041206e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:36 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9392?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392\",\r\n \"name\": \"onesdk9392\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1166" + ], + "x-ms-request-id": [ + "7fda6069-2c55-46c7-b66d-0a914ac50911" + ], + "x-ms-correlation-request-id": [ + "7fda6069-2c55-46c7-b66d-0a914ac50911" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151937Z:7fda6069-2c55-46c7-b66d-0a914ac50911" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazkzOTIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-request-id": [ + "10f0ff4b-2b97-4ada-8c81-6b98cd9ef270" + ], + "x-ms-correlation-request-id": [ + "10f0ff4b-2b97-4ada-8c81-6b98cd9ef270" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151937Z:10f0ff4b-2b97-4ada-8c81-6b98cd9ef270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9392/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:7f1e96fe-e2a1-4d25-9662-2558e1ad1fbb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "3248d0f0-79b8-4844-aae6-3803f33d7d9c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151938Z:3248d0f0-79b8-4844-aae6-3803f33d7d9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2645?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazkzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjY0NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk2645' under resource group 'onesdk9392' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4506d729-d1d8-4cf9-96de-af30e393d2a7" + ], + "x-ms-correlation-request-id": [ + "4506d729-d1d8-4cf9-96de-af30e393d2a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151938Z:4506d729-d1d8-4cf9-96de-af30e393d2a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:38 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2645?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazkzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjY0NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392/providers/Microsoft.Network/trafficManagerProfiles/onesdk2645\",\r\n \"name\": \"onesdk2645\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1431\",\r\n \"fqdn\": \"onesdk1431.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c90c8329-91aa-4783-85ae-d60ba5828c8a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10785" + ], + "x-ms-correlation-request-id": [ + "e72a4099-f82e-4752-868a-62f48edfea6a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151943Z:e72a4099-f82e-4752-868a-62f48edfea6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:43 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2645?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazkzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjY0NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1431\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk2645\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "345" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392/providers/Microsoft.Network/trafficManagerProfiles/onesdk2645\",\r\n \"name\": \"onesdk2645\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1431\",\r\n \"fqdn\": \"onesdk1431.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5f8f473e-2b9e-49c6-bc14-e58c48f0141a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10786" + ], + "x-ms-correlation-request-id": [ + "dc4099cf-ddb3-4490-9569-c80cca751d7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151941Z:dc4099cf-ddb3-4490-9569-c80cca751d7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:41 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2645?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazkzOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjY0NT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\"\r\n },\r\n \"name\": \"onesdk2645\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "181" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9392/providers/Microsoft.Network/trafficManagerProfiles/onesdk2645\",\r\n \"name\": \"onesdk2645\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1431\",\r\n \"fqdn\": \"onesdk1431.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6382bc73-5288-4777-bc65-41e718982e9c" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10785" + ], + "x-ms-correlation-request-id": [ + "012b397e-70aa-492e-951e-71262cdc6c70" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151942Z:012b397e-70aa-492e-951e-71262cdc6c70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:19:42 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ProfileDisable": [ + "onesdk2645", + "onesdk1431", + "onesdk9392" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisableNonExisting.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisableNonExisting.json new file mode 100644 index 000000000000..80509d30b6e9 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisableNonExisting.json @@ -0,0 +1,319 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "72c5dc2d-1a9c-4a18-8be1-9c454715309a" + ], + "x-ms-correlation-request-id": [ + "72c5dc2d-1a9c-4a18-8be1-9c454715309a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152657Z:72c5dc2d-1a9c-4a18-8be1-9c454715309a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:26:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk1910?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "aa07d5c0-74d8-46ca-9b40-dd3faca590d3" + ], + "x-ms-correlation-request-id": [ + "aa07d5c0-74d8-46ca-9b40-dd3faca590d3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152658Z:aa07d5c0-74d8-46ca-9b40-dd3faca590d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:26:58 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk1910?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk1910\",\r\n \"name\": \"onesdk1910\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1160" + ], + "x-ms-request-id": [ + "4ed447e3-0313-49ca-8903-66f352a72495" + ], + "x-ms-correlation-request-id": [ + "4ed447e3-0313-49ca-8903-66f352a72495" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152658Z:4ed447e3-0313-49ca-8903-66f352a72495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:26:58 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk1910/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5MTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-request-id": [ + "1b2a2778-f841-4a1b-bf1b-4f99dd62c321" + ], + "x-ms-correlation-request-id": [ + "1b2a2778-f841-4a1b-bf1b-4f99dd62c321" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152658Z:1b2a2778-f841-4a1b-bf1b-4f99dd62c321" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:26:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk1910/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:8a9fc67c-d580-43b1-a12d-8ffc400b3cdb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "3ce7a31b-9098-4541-b37f-0c0a41b329ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152659Z:3ce7a31b-9098-4541-b37f-0c0a41b329ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:26:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk1910/providers/Microsoft.Network/trafficmanagerprofiles/onesdk5198?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTE5OD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\"\r\n },\r\n \"name\": \"onesdk5198\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "181" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'onesdk5198' under resource group 'onesdk1910' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6e6315f3-edbf-4414-b055-e2cf890c8b66" + ], + "x-ms-correlation-request-id": [ + "6e6315f3-edbf-4414-b055-e2cf890c8b66" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152659Z:6e6315f3-edbf-4414-b055-e2cf890c8b66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:26:59 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "Test-ProfileDisableNonExisting": [ + "onesdk5198", + "onesdk1910" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisablePipeline.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisablePipeline.json new file mode 100644 index 000000000000..9693878d4903 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileDisablePipeline.json @@ -0,0 +1,488 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "dd651267-2813-425e-81dd-89f49a0b5664" + ], + "x-ms-correlation-request-id": [ + "dd651267-2813-425e-81dd-89f49a0b5664" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152204Z:dd651267-2813-425e-81dd-89f49a0b5664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9541?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "1ba40820-b12f-4548-ba26-b5b9036f6d2b" + ], + "x-ms-correlation-request-id": [ + "1ba40820-b12f-4548-ba26-b5b9036f6d2b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152204Z:1ba40820-b12f-4548-ba26-b5b9036f6d2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:04 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9541?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541\",\r\n \"name\": \"onesdk9541\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1160" + ], + "x-ms-request-id": [ + "c3cd9fa1-53c9-4170-bd11-fc88709efc16" + ], + "x-ms-correlation-request-id": [ + "c3cd9fa1-53c9-4170-bd11-fc88709efc16" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152205Z:c3cd9fa1-53c9-4170-bd11-fc88709efc16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1NDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "e9a50d49-0c5a-4d1a-829d-45c4c8316463" + ], + "x-ms-correlation-request-id": [ + "e9a50d49-0c5a-4d1a-829d-45c4c8316463" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152205Z:e9a50d49-0c5a-4d1a-829d-45c4c8316463" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk9541/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:667eb2ee-6f38-4807-a66e-85d8b02c8d4f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "6e374916-1da1-4a48-9477-cb297ea17109" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152205Z:6e374916-1da1-4a48-9477-cb297ea17109" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7718?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzcxOD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk7718' under resource group 'onesdk9541' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "da721a69-17ed-45c3-8d48-d4020565f4a3" + ], + "x-ms-correlation-request-id": [ + "da721a69-17ed-45c3-8d48-d4020565f4a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152205Z:da721a69-17ed-45c3-8d48-d4020565f4a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7718?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzcxOD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541/providers/Microsoft.Network/trafficManagerProfiles/onesdk7718\",\r\n \"name\": \"onesdk7718\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk4569\",\r\n \"fqdn\": \"onesdk4569.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "14d92606-3611-444f-8ddb-8d7c1f62edc5" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10782" + ], + "x-ms-correlation-request-id": [ + "792d50e5-b7cf-418d-a0cc-30d9dea631e2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152210Z:792d50e5-b7cf-418d-a0cc-30d9dea631e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:10 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7718?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzcxOD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk4569\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk7718\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "345" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541/providers/Microsoft.Network/trafficManagerProfiles/onesdk7718\",\r\n \"name\": \"onesdk7718\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk4569\",\r\n \"fqdn\": \"onesdk4569.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8417a485-da1a-4805-bf62-359c21bf5141" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10783" + ], + "x-ms-correlation-request-id": [ + "26a720d9-e566-4acf-9051-375a77ca0686" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152208Z:26a720d9-e566-4acf-9051-375a77ca0686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:08 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7718?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzcxOD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\"\r\n },\r\n \"name\": \"onesdk7718\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "181" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk9541/providers/Microsoft.Network/trafficManagerProfiles/onesdk7718\",\r\n \"name\": \"onesdk7718\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk4569\",\r\n \"fqdn\": \"onesdk4569.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0d888351-6319-41bc-bd2e-a15e3ed96250" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10782" + ], + "x-ms-correlation-request-id": [ + "8bddf92c-4a39-4c1e-8e3f-444e8333f956" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152210Z:8bddf92c-4a39-4c1e-8e3f-444e8333f956" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:10 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ProfileDisablePipeline": [ + "onesdk7718", + "onesdk4569", + "onesdk9541" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnable.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnable.json new file mode 100644 index 000000000000..d1744e48adf2 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnable.json @@ -0,0 +1,488 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "7ea5bbc9-6aa2-4f7c-a376-26cac159d5e0" + ], + "x-ms-correlation-request-id": [ + "7ea5bbc9-6aa2-4f7c-a376-26cac159d5e0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151846Z:7ea5bbc9-6aa2-4f7c-a376-26cac159d5e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk7515?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1MTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "d9d1fb54-7bb8-4787-b141-166750f225cc" + ], + "x-ms-correlation-request-id": [ + "d9d1fb54-7bb8-4787-b141-166750f225cc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151847Z:d9d1fb54-7bb8-4787-b141-166750f225cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:46 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk7515?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1MTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515\",\r\n \"name\": \"onesdk7515\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1163" + ], + "x-ms-request-id": [ + "ae7a249f-2620-4e1e-b756-842d7abec876" + ], + "x-ms-correlation-request-id": [ + "ae7a249f-2620-4e1e-b756-842d7abec876" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151847Z:ae7a249f-2620-4e1e-b756-842d7abec876" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc1MTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "b6904c68-30c3-4d4d-a3c7-007243028fe8" + ], + "x-ms-correlation-request-id": [ + "b6904c68-30c3-4d4d-a3c7-007243028fe8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151847Z:b6904c68-30c3-4d4d-a3c7-007243028fe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk7515/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc1MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:9923aa99-258b-4fbb-b2e9-5d01f8ce06cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "efeece2b-dee1-4a10-a3f0-f6c481f0b6ad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151848Z:efeece2b-dee1-4a10-a3f0-f6c481f0b6ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2816?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc1MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk2816' under resource group 'onesdk7515' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "93f917cc-0e77-4c77-aac1-29db14bbf896" + ], + "x-ms-correlation-request-id": [ + "93f917cc-0e77-4c77-aac1-29db14bbf896" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151848Z:93f917cc-0e77-4c77-aac1-29db14bbf896" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:48 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2816?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc1MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515/providers/Microsoft.Network/trafficManagerProfiles/onesdk2816\",\r\n \"name\": \"onesdk2816\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6646\",\r\n \"fqdn\": \"onesdk6646.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "60c7385c-c5d0-4123-a85a-e9c42457d8fd" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10790" + ], + "x-ms-correlation-request-id": [ + "c99555e2-a55c-44be-b50c-b50972ba3c05" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151853Z:c99555e2-a55c-44be-b50c-b50972ba3c05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:53 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2816?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc1MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6646\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk2816\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515/providers/Microsoft.Network/trafficManagerProfiles/onesdk2816\",\r\n \"name\": \"onesdk2816\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6646\",\r\n \"fqdn\": \"onesdk6646.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "544" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "eb5980b8-1242-4a3b-a81b-334d09e583da" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10791" + ], + "x-ms-correlation-request-id": [ + "2332dbc2-aac0-43c6-b489-fc8b7f10f33d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151851Z:2332dbc2-aac0-43c6-b489-fc8b7f10f33d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:51 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2816?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazc1MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\"\r\n },\r\n \"name\": \"onesdk2816\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk7515/providers/Microsoft.Network/trafficManagerProfiles/onesdk2816\",\r\n \"name\": \"onesdk2816\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk6646\",\r\n \"fqdn\": \"onesdk6646.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8a0bbd24-57d1-4175-96fa-6f7423ca22bc" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10790" + ], + "x-ms-correlation-request-id": [ + "1fe28523-d7b3-427a-aa80-7940538f120f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T151853Z:1fe28523-d7b3-427a-aa80-7940538f120f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:18:53 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ProfileEnable": [ + "onesdk2816", + "onesdk6646", + "onesdk7515" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnableNonExisting.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnableNonExisting.json new file mode 100644 index 000000000000..20091f12ac36 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnableNonExisting.json @@ -0,0 +1,319 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "0fd6f4f0-c164-4ab6-b955-a2af34f99fe4" + ], + "x-ms-correlation-request-id": [ + "0fd6f4f0-c164-4ab6-b955-a2af34f99fe4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152257Z:0fd6f4f0-c164-4ab6-b955-a2af34f99fe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2334?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIzMzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-request-id": [ + "ddd26d76-2c61-4102-92bc-499c3f6a85d6" + ], + "x-ms-correlation-request-id": [ + "ddd26d76-2c61-4102-92bc-499c3f6a85d6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152257Z:ddd26d76-2c61-4102-92bc-499c3f6a85d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:57 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2334?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIzMzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2334\",\r\n \"name\": \"onesdk2334\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1159" + ], + "x-ms-request-id": [ + "622a5c81-8ae8-4ca4-82d1-6d1f977227f6" + ], + "x-ms-correlation-request-id": [ + "622a5c81-8ae8-4ca4-82d1-6d1f977227f6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152258Z:622a5c81-8ae8-4ca4-82d1-6d1f977227f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2334/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzMzQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-request-id": [ + "b80a3392-5c52-4ca7-bf09-271e513c7cd4" + ], + "x-ms-correlation-request-id": [ + "b80a3392-5c52-4ca7-bf09-271e513c7cd4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152258Z:b80a3392-5c52-4ca7-bf09-271e513c7cd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk2334/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIzMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:8932a6fd-917c-46d1-965b-944232373863" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "d98c20fa-f658-45e6-861c-cb922fb2b063" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152258Z:d98c20fa-f658-45e6-861c-cb922fb2b063" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk2334/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2428?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjQyOD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\"\r\n },\r\n \"name\": \"onesdk2428\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'onesdk2428' under resource group 'onesdk2334' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "590d808e-29d8-4e50-a901-e52591fdaaa2" + ], + "x-ms-correlation-request-id": [ + "590d808e-29d8-4e50-a901-e52591fdaaa2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152259Z:590d808e-29d8-4e50-a901-e52591fdaaa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:22:58 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "Test-ProfileEnableNonExisting": [ + "onesdk2428", + "onesdk2334" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnablePipeline.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnablePipeline.json new file mode 100644 index 000000000000..2462957ec9a6 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileEnablePipeline.json @@ -0,0 +1,488 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/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\": \"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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\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 ],\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"resourceType\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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\": \"operations\",\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "781c9e25-a145-4bc8-ac21-62e2a4472add" + ], + "x-ms-correlation-request-id": [ + "781c9e25-a145-4bc8-ac21-62e2a4472add" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152024Z:781c9e25-a145-4bc8-ac21-62e2a4472add" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk4855?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "d3d79e61-d2b4-4b86-80f1-53432a3f8e1d" + ], + "x-ms-correlation-request-id": [ + "d3d79e61-d2b4-4b86-80f1-53432a3f8e1d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152024Z:d3d79e61-d2b4-4b86-80f1-53432a3f8e1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:24 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk4855?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855\",\r\n \"name\": \"onesdk4855\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1162" + ], + "x-ms-request-id": [ + "c80c7faf-6780-42e2-8300-69ce4844a151" + ], + "x-ms-correlation-request-id": [ + "c80c7faf-6780-42e2-8300-69ce4844a151" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152025Z:c80c7faf-6780-42e2-8300-69ce4844a151" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "eae77958-04e3-454d-8973-b5f8d9fa2af1" + ], + "x-ms-correlation-request-id": [ + "eae77958-04e3-454d-8973-b5f8d9fa2af1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152025Z:eae77958-04e3-454d-8973-b5f8d9fa2af1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourcegroups/onesdk4855/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westeurope:f9214fb2-dd5a-4ddc-b205-04ca40fb032b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "29a64e49-0bb8-41bf-956a-44715e1299b6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152026Z:29a64e49-0bb8-41bf-956a-44715e1299b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7091?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzA5MT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk7091' under resource group 'onesdk4855' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bf458a17-75d9-47ca-8e1f-3184568964a1" + ], + "x-ms-correlation-request-id": [ + "bf458a17-75d9-47ca-8e1f-3184568964a1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152026Z:bf458a17-75d9-47ca-8e1f-3184568964a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7091?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzA5MT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855/providers/Microsoft.Network/trafficManagerProfiles/onesdk7091\",\r\n \"name\": \"onesdk7091\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7795\",\r\n \"fqdn\": \"onesdk7795.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b767166e-6d9e-4477-aa12-c5525badf483" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10784" + ], + "x-ms-correlation-request-id": [ + "f2165b23-19bd-4be2-b423-1d41a0a1c3f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152031Z:f2165b23-19bd-4be2-b423-1d41a0a1c3f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:30 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7091?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzA5MT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7795\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk7091\",\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855/providers/Microsoft.Network/trafficManagerProfiles/onesdk7091\",\r\n \"name\": \"onesdk7091\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Disabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7795\",\r\n \"fqdn\": \"onesdk7795.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "544" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c6ab9e3a-b15d-492d-8ffa-eb0e18583d0d" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10785" + ], + "x-ms-correlation-request-id": [ + "e44750ab-9274-47f6-b776-0f740b5823d8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152028Z:e44750ab-9274-47f6-b776-0f740b5823d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:28 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855/providers/Microsoft.Network/trafficmanagerprofiles/onesdk7091?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODJlMDZiNjQtY2U5Mi00NzFiLThlN2QtNDQ3NGFjYzZhYWE5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNzA5MT9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\"\r\n },\r\n \"name\": \"onesdk7091\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/82e06b64-ce92-471b-8e7d-4474acc6aaa9/resourceGroups/onesdk4855/providers/Microsoft.Network/trafficManagerProfiles/onesdk7091\",\r\n \"name\": \"onesdk7091\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk7795\",\r\n \"fqdn\": \"onesdk7795.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9ff8cb9b-0390-4c0b-9992-25d0496c2860" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10784" + ], + "x-ms-correlation-request-id": [ + "dfa11b3c-dd79-4d5c-974d-3f05229e8a94" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150712T152031Z:dfa11b3c-dd79-4d5c-974d-3f05229e8a94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 12 Jul 2015 15:20:30 GMT" + ], + "Server": [ + "Microsoft-IIS/7.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ProfileEnablePipeline": [ + "onesdk7091", + "onesdk7795", + "onesdk4855" + ] + }, + "Variables": { + "SubscriptionId": "82e06b64-ce92-471b-8e7d-4474acc6aaa9" + } +} \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileNewAlreadyExists.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileNewAlreadyExists.json index 436883b47c0a..35c16a512c32 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileNewAlreadyExists.json +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileNewAlreadyExists.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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 \"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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\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 \"East US 2\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"associations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/premierOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Azure.Security\",\r\n \"namespace\": \"Azure.Security\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"default\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.AADPim\",\r\n \"namespace\": \"Microsoft.AADPim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Notifications\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"NotificationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UserToRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Roles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AuditEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\",\r\n \"2014-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\",\r\n \"2012-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupBVTD2\",\r\n \"namespace\": \"Microsoft.BackupBVTD2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupPPECurrent\",\r\n \"namespace\": \"Microsoft.BackupPPECurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CisRP\",\r\n \"namespace\": \"Microsoft.CisRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CisVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-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-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CSMBackupVaultRRP\",\r\n \"namespace\": \"Microsoft.CSMBackupVaultRRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated6\",\r\n \"adfgated5\",\r\n \"adfgated4\",\r\n \"adfgated3\",\r\n \"adfgated2\",\r\n \"adfgated1\",\r\n \"adfbqupgrade\",\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-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 \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestHub\",\r\n \"namespace\": \"Microsoft.DevTestHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool.IouriS\",\r\n \"namespace\": \"Microsoft.DevTestPool.IouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPoolIouriS\",\r\n \"namespace\": \"Microsoft.DevTestPoolIouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tlds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainsearches\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona1\",\r\n \"namespace\": \"Microsoft.Kona1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"KonaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.MS-Pim\",\r\n \"namespace\": \"Microsoft.MS-Pim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Home\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pim\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"subscriptions/locations\",\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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\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 \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/resourcepools\",\r\n \"locations\": [],\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/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\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/connectionPolicies\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupBVTD\",\r\n \"namespace\": \"Microsoft.WaBackupBVTD\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupGuru\",\r\n \"namespace\": \"Microsoft.WaBackupGuru\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupSql\",\r\n \"namespace\": \"Microsoft.WaBackupSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupTest\",\r\n \"namespace\": \"Microsoft.WaBackupTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft_AADB2C\",\r\n \"namespace\": \"Microsoft_AADB2C\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/vikashjorders\",\r\n \"namespace\": \"vikashjorders\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"order\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\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 ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"resourceType\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "44860" + "78972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14990" ], "x-ms-request-id": [ - "90b1f4cb-a30f-4ef6-a95b-4109fa21c4b7" + "a82d1287-6bbb-438e-be61-82a754d50621" ], "x-ms-correlation-request-id": [ - "90b1f4cb-a30f-4ef6-a95b-4109fa21c4b7" + "a82d1287-6bbb-438e-be61-82a754d50621" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153702Z:90b1f4cb-a30f-4ef6-a95b-4109fa21c4b7" + "WESTEUROPE:20150715T122553Z:a82d1287-6bbb-438e-be61-82a754d50621" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:01 GMT" + "Wed, 15 Jul 2015 12:25:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1572?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk4160?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQxNjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14989" ], "x-ms-request-id": [ - "0822ed18-1ed5-48f4-8dfe-4ea37f6b3051" + "96e2e5b9-de70-4af3-aeac-99b69fe37ae3" ], "x-ms-correlation-request-id": [ - "0822ed18-1ed5-48f4-8dfe-4ea37f6b3051" + "96e2e5b9-de70-4af3-aeac-99b69fe37ae3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153703Z:0822ed18-1ed5-48f4-8dfe-4ea37f6b3051" + "WESTEUROPE:20150715T122555Z:96e2e5b9-de70-4af3-aeac-99b69fe37ae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:03 GMT" + "Wed, 15 Jul 2015 12:25:55 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1572?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk4160?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQxNjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1572\",\r\n \"name\": \"onesdk1572\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4160\",\r\n \"name\": \"onesdk4160\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-request-id": [ - "5db2ecde-921e-4c66-bcaa-08edfcd90195" + "32400126-cb0c-47fd-a7ef-48dd3d964f11" ], "x-ms-correlation-request-id": [ - "5db2ecde-921e-4c66-bcaa-08edfcd90195" + "32400126-cb0c-47fd-a7ef-48dd3d964f11" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153703Z:5db2ecde-921e-4c66-bcaa-08edfcd90195" + "WESTEUROPE:20150715T122556Z:32400126-cb0c-47fd-a7ef-48dd3d964f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:03 GMT" + "Wed, 15 Jul 2015 12:25:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1572/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4160/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazQxNjAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14988" ], "x-ms-request-id": [ - "e72d5201-ece5-4f28-8f47-8457b7f21a66" + "b72e472d-2c56-4cc0-8c35-329b7673fdb6" ], "x-ms-correlation-request-id": [ - "e72d5201-ece5-4f28-8f47-8457b7f21a66" + "b72e472d-2c56-4cc0-8c35-329b7673fdb6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153704Z:e72d5201-ece5-4f28-8f47-8457b7f21a66" + "WESTEUROPE:20150715T122556Z:b72e472d-2c56-4cc0-8c35-329b7673fdb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,19 +196,19 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:03 GMT" + "Wed, 15 Jul 2015 12:25:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1572/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk4160/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazQxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:9491ded2-026b-4493-858a-2368f953e085" + "westeurope:6c067ada-9841-4803-8e76-fe1bc10f9fec" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14987" ], "x-ms-correlation-request-id": [ - "acedb489-aa46-4b20-9444-c1660723811c" + "bfab63c8-4625-4973-9a77-e61f4959eb88" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153706Z:acedb489-aa46-4b20-9444-c1660723811c" + "WESTEUROPE:20150715T122557Z:bfab63c8-4625-4973-9a77-e61f4959eb88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:05 GMT" + "Wed, 15 Jul 2015 12:25:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1572/providers/microsoft.network/trafficmanagerprofiles/onesdk4348?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NzIvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDM0OD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4160/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2524?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazQxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjUyND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,10 +262,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/trafficmanagerprofiles/onesdk2524' under resource group 'onesdk4160' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "0ffa3276-6737-4b32-a533-855a6165438c" + "2db43df3-a948-4180-bed1-36b34f8f5725" ], "x-ms-correlation-request-id": [ - "0ffa3276-6737-4b32-a533-855a6165438c" + "2db43df3-a948-4180-bed1-36b34f8f5725" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153706Z:0ffa3276-6737-4b32-a533-855a6165438c" + "WESTEUROPE:20150715T122559Z:2db43df3-a948-4180-bed1-36b34f8f5725" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:06 GMT" + "Wed, 15 Jul 2015 12:25:58 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1572/providers/microsoft.network/trafficmanagerprofiles/onesdk4348?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NzIvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDM0OD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4160/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2524?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazQxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjUyND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,10 +310,10 @@ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1572/providers/Microsoft.Network/trafficManagerProfiles/onesdk4348\",\r\n \"name\": \"onesdk4348\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9049\",\r\n \"fqdn\": \"onesdk9049.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4160/providers/Microsoft.Network/trafficManagerProfiles/onesdk2524\",\r\n \"name\": \"onesdk2524\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1773\",\r\n \"fqdn\": \"onesdk1773.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,16 +322,16 @@ "nosniff" ], "x-ms-request-id": [ - "93f0ae98-7169-4f4e-8f8c-608c097b6bdf" + "b6a909d2-de53-4298-95aa-e05c25962b36" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10794" + "10797" ], "x-ms-correlation-request-id": [ - "ea5b09d9-fe49-460f-b375-f54be36f346c" + "70759bfc-3184-4d72-954c-4f4a721df61d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153708Z:ea5b09d9-fe49-460f-b375-f54be36f346c" + "WESTEUROPE:20150715T122605Z:70759bfc-3184-4d72-954c-4f4a721df61d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,7 +340,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 15:37:07 GMT" + "Wed, 15 Jul 2015 12:26:04 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -355,25 +355,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1572/providers/microsoft.network/trafficmanagerprofiles/onesdk4348?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NzIvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDM0OD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4160/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2524?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazQxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjUyND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9049\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk4348\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1773\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n }\r\n },\r\n \"name\": \"onesdk2524\",\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "327" + "312" ], "User-Agent": [ "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1572/providers/Microsoft.Network/trafficManagerProfiles/onesdk4348\",\r\n \"name\": \"onesdk4348\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk9049\",\r\n \"fqdn\": \"onesdk9049.test.trafficmgr.com\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4160/providers/Microsoft.Network/trafficManagerProfiles/onesdk2524\",\r\n \"name\": \"onesdk2524\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"onesdk1773\",\r\n \"fqdn\": \"onesdk1773.trafficmanager-stage.net\",\r\n \"ttl\": 50\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.asp\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -382,16 +382,16 @@ "nosniff" ], "x-ms-request-id": [ - "adc6f545-5215-49e6-86a3-b81aed6ca46a" + "60f00a57-3bfb-458d-87a5-4109a35a61eb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10795" + "10798" ], "x-ms-correlation-request-id": [ - "7d679fa0-8c56-4fbc-8c64-dbba60ebb240" + "f9001049-483b-4be5-8e26-b8c37b6b1e50" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153708Z:7d679fa0-8c56-4fbc-8c64-dbba60ebb240" + "WESTEUROPE:20150715T122604Z:f9001049-483b-4be5-8e26-b8c37b6b1e50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,7 +400,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 15:37:07 GMT" + "Wed, 15 Jul 2015 12:26:04 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -415,8 +415,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1572/providers/microsoft.network/trafficmanagerprofiles/onesdk4348?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NzIvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDM0OD9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk4160/providers/Microsoft.Network/trafficmanagerprofiles/onesdk2524?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazQxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrMjUyND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -433,16 +433,16 @@ "nosniff" ], "x-ms-request-id": [ - "66b4b116-7c81-44ef-afa0-d6ff619fec1d" + "040857fa-59cd-4155-a420-3a40ba23371d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10798" + "10799" ], "x-ms-correlation-request-id": [ - "1bbe0e79-4c11-4aa4-8130-72c76730e439" + "1560f63d-b460-4bac-bab3-73f4f0d1a3b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153709Z:1bbe0e79-4c11-4aa4-8130-72c76730e439" + "WESTEUROPE:20150715T122608Z:1560f63d-b460-4bac-bab3-73f4f0d1a3b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -451,7 +451,7 @@ "private" ], "Date": [ - "Thu, 16 Apr 2015 15:37:08 GMT" + "Wed, 15 Jul 2015 12:26:08 GMT" ], "Server": [ "Microsoft-IIS/7.5" @@ -468,13 +468,13 @@ ], "Names": { "Test-ProfileNewAlreadyExists": [ - "onesdk1572", - "onesdk4348", - "onesdk9049", - "onesdk5930" + "onesdk4160", + "onesdk2524", + "onesdk1773", + "onesdk6541" ] }, "Variables": { - "SubscriptionId": "5ecfd42b-521f-4e3c-b4f4-47895f445068" + "SubscriptionId": "8dee4f73-2f41-405b-9485-ab9e75c63bc8" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileRemoveNonExisting.json b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileRemoveNonExisting.json index a20dfe11674e..388cf3a3de16 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileRemoveNonExisting.json +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/SessionRecords/Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests.ProfileTests/TestProfileRemoveNonExisting.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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 \"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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\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 \"East US 2\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"associations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/premierOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\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 \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Azure.Security\",\r\n \"namespace\": \"Azure.Security\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"default\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.AADPim\",\r\n \"namespace\": \"Microsoft.AADPim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Notifications\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"NotificationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UserToRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Roles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AuditEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\",\r\n \"2014-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\",\r\n \"2012-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupBVTD2\",\r\n \"namespace\": \"Microsoft.BackupBVTD2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupPPECurrent\",\r\n \"namespace\": \"Microsoft.BackupPPECurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRP\",\r\n \"namespace\": \"Microsoft.BackupVaultRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CisRP\",\r\n \"namespace\": \"Microsoft.CisRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CisVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\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\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\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\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-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-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.CSMBackupVaultRRP\",\r\n \"namespace\": \"Microsoft.CSMBackupVaultRRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated6\",\r\n \"adfgated5\",\r\n \"adfgated4\",\r\n \"adfgated3\",\r\n \"adfgated2\",\r\n \"adfgated1\",\r\n \"adfbqupgrade\",\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-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 \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestHub\",\r\n \"namespace\": \"Microsoft.DevTestHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPool.IouriS\",\r\n \"namespace\": \"Microsoft.DevTestPool.IouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DevTestPoolIouriS\",\r\n \"namespace\": \"Microsoft.DevTestPoolIouriS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2015-04-01\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tlds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainsearches\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaaccount\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Kona1\",\r\n \"namespace\": \"Microsoft.Kona1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"KonaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Mobile\",\r\n \"namespace\": \"Microsoft.Mobile\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mobileservices\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.MS-Pim\",\r\n \"namespace\": \"Microsoft.MS-Pim\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Home\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pim\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"subscriptions/locations\",\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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\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 \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\"\r\n ],\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/resourcepools\",\r\n \"locations\": [],\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/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\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/connectionPolicies\",\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/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/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [],\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 \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WABackup\",\r\n \"namespace\": \"Microsoft.WABackup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupBVTD\",\r\n \"namespace\": \"Microsoft.WaBackupBVTD\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupGuru\",\r\n \"namespace\": \"Microsoft.WaBackupGuru\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupSql\",\r\n \"namespace\": \"Microsoft.WaBackupSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft.WaBackupTest\",\r\n \"namespace\": \"Microsoft.WaBackupTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Microsoft_AADB2C\",\r\n \"namespace\": \"Microsoft_AADB2C\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/vikashjorders\",\r\n \"namespace\": \"vikashjorders\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"order\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\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/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\": \"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 ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\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 \"West US\"\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 \"West US\"\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\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\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\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\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/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\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/usages\",\r\n \"locations\": [\r\n \"West US\"\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/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\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 \"East US\",\r\n \"Central US\"\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\": \"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\": \"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\": \"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\": \"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 \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\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-privatepreview\",\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-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\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 \"West US\"\r\n ],\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\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 ],\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"resourceType\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GameServer\",\r\n \"namespace\": \"Microsoft.GameServer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gameApps\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-beta\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 \"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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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-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-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 ]\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-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-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-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-02-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-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\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\": \"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\": \"subscriptions/locations\",\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 ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\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 \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West 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\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West 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 \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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 \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"operations\",\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\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/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\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 \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central 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\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/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 ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ListCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UpdateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "44860" + "78972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14980" ], "x-ms-request-id": [ - "1fca4c32-0e57-458a-92bb-6b1c408456db" + "098f4a8a-bdd3-4f7e-9c9d-b5506f9bfad1" ], "x-ms-correlation-request-id": [ - "1fca4c32-0e57-458a-92bb-6b1c408456db" + "098f4a8a-bdd3-4f7e-9c9d-b5506f9bfad1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153755Z:1fca4c32-0e57-458a-92bb-6b1c408456db" + "WESTEUROPE:20150715T122926Z:098f4a8a-bdd3-4f7e-9c9d-b5506f9bfad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:55 GMT" + "Wed, 15 Jul 2015 12:29:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1875?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk8838?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4Mzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14979" ], "x-ms-request-id": [ - "ae44c37c-c170-48da-a2d5-a9b3035c5d97" + "27269dc7-30ec-494c-a117-8c670231242f" ], "x-ms-correlation-request-id": [ - "ae44c37c-c170-48da-a2d5-a9b3035c5d97" + "27269dc7-30ec-494c-a117-8c670231242f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153756Z:ae44c37c-c170-48da-a2d5-a9b3035c5d97" + "WESTEUROPE:20150715T122927Z:27269dc7-30ec-494c-a117-8c670231242f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:55 GMT" + "Wed, 15 Jul 2015 12:29:27 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1875?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk8838?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4Mzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1875\",\r\n \"name\": \"onesdk1875\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk8838\",\r\n \"name\": \"onesdk8838\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1193" ], "x-ms-request-id": [ - "da730afd-4502-4d38-8b0c-1f40dab98bf6" + "511172ac-ad32-4e0e-916b-311e5a47a073" ], "x-ms-correlation-request-id": [ - "da730afd-4502-4d38-8b0c-1f40dab98bf6" + "511172ac-ad32-4e0e-916b-311e5a47a073" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153756Z:da730afd-4502-4d38-8b0c-1f40dab98bf6" + "WESTEUROPE:20150715T122929Z:511172ac-ad32-4e0e-916b-311e5a47a073" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:55 GMT" + "Wed, 15 Jul 2015 12:29:29 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1875/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE4NzUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk8838/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazg4MzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14978" ], "x-ms-request-id": [ - "ac0fd0f1-2521-4171-b0e4-e51c993a98ee" + "f2d0a187-a001-472d-a183-6d1b2a7a598d" ], "x-ms-correlation-request-id": [ - "ac0fd0f1-2521-4171-b0e4-e51c993a98ee" + "f2d0a187-a001-472d-a183-6d1b2a7a598d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153756Z:ac0fd0f1-2521-4171-b0e4-e51c993a98ee" + "WESTEUROPE:20150715T122929Z:f2d0a187-a001-472d-a183-6d1b2a7a598d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,19 +196,19 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:56 GMT" + "Wed, 15 Jul 2015 12:29:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourcegroups/onesdk1875/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourcegroups/onesdk8838/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:5e49a288-caf8-412c-ac91-18b508ecabce" + "westeurope:fd8c350a-62ad-4390-8f01-7e31dc14790c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14977" ], "x-ms-correlation-request-id": [ - "3707a4f2-f004-4e4a-ae47-4f1a3e39f451" + "622e5e91-6813-43c1-8584-5f780fb4d498" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153757Z:3707a4f2-f004-4e4a-ae47-4f1a3e39f451" + "WESTEUROPE:20150715T122930Z:622e5e91-6813-43c1-8584-5f780fb4d498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:57 GMT" + "Wed, 15 Jul 2015 12:29:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5ecfd42b-521f-4e3c-b4f4-47895f445068/resourceGroups/onesdk1875/providers/microsoft.network/trafficmanagerprofiles/onesdk4877?api-version=2015-04-28-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWVjZmQ0MmItNTIxZi00ZTNjLWI0ZjQtNDc4OTVmNDQ1MDY4L3Jlc291cmNlR3JvdXBzL29uZXNkazE4NzUvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNDg3Nz9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", + "RequestUri": "/subscriptions/8dee4f73-2f41-405b-9485-ab9e75c63bc8/resourceGroups/onesdk8838/providers/Microsoft.Network/trafficmanagerprofiles/onesdk5914?api-version=2015-04-28-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGRlZTRmNzMtMmY0MS00MDViLTk0ODUtYWI5ZTc1YzYzYmM4L3Jlc291cmNlR3JvdXBzL29uZXNkazg4MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvb25lc2RrNTkxND9hcGktdmVyc2lvbj0yMDE1LTA0LTI4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -271,16 +271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10797" + "10796" ], "x-ms-request-id": [ - "79eeaaf6-c09f-478e-918b-a83552010a68" + "40586d6d-b498-4a50-a160-db490accf621" ], "x-ms-correlation-request-id": [ - "79eeaaf6-c09f-478e-918b-a83552010a68" + "40586d6d-b498-4a50-a160-db490accf621" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150416T153757Z:79eeaaf6-c09f-478e-918b-a83552010a68" + "WESTEUROPE:20150715T122932Z:40586d6d-b498-4a50-a160-db490accf621" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Apr 2015 15:37:57 GMT" + "Wed, 15 Jul 2015 12:29:32 GMT" ] }, "StatusCode": 204 @@ -297,11 +297,11 @@ ], "Names": { "Test-ProfileRemoveNonExisting": [ - "onesdk4877", - "onesdk1875" + "onesdk5914", + "onesdk8838" ] }, "Variables": { - "SubscriptionId": "5ecfd42b-521f-4e3c-b4f4-47895f445068" + "SubscriptionId": "8dee4f73-2f41-405b-9485-ab9e75c63bc8" } } \ No newline at end of file diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/UnitTests/AddAzureTrafficManagerEndpointConfigTests.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/UnitTests/AddAzureTrafficManagerEndpointConfigTests.cs index ae1b105dc731..587d2eaaf76e 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/UnitTests/AddAzureTrafficManagerEndpointConfigTests.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/UnitTests/AddAzureTrafficManagerEndpointConfigTests.cs @@ -30,9 +30,9 @@ public void AddAzureTrafficManagerEndpointConfig_ThrowsExceptionIfAddingExisting { TrafficManagerProfile = new TrafficManagerProfile { - Endpoints = new List + Endpoints = new List { - new Endpoint + new TrafficManagerEndpoint { Name = "Name" } diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/UnitTests/RemoveAzureTrafficManagerEndpointConfigTests.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/UnitTests/RemoveAzureTrafficManagerEndpointConfigTests.cs index 787accaefdc1..becff8323faa 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/UnitTests/RemoveAzureTrafficManagerEndpointConfigTests.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/UnitTests/RemoveAzureTrafficManagerEndpointConfigTests.cs @@ -45,9 +45,9 @@ public void RemoveAzureTrafficManagerEndpointConfig_ThrowsExceptionWhenNoEndpoin { TrafficManagerProfile = new TrafficManagerProfile { - Endpoints = new List + Endpoints = new List { - new Endpoint + new TrafficManagerEndpoint { Name = "My external endpoint" } diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager2.csproj b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager2.csproj index 1e0f598f16da..29462cadbc7f 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager2.csproj +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager2.csproj @@ -56,7 +56,7 @@ ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.27-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll - ..\..\..\packages\Microsoft.Azure.Management.TrafficManager.0.9.1-preview\lib\portable-net45+sl50+wp80+win\Microsoft.Azure.Management.TrafficManager.dll + ..\..\..\packages\Microsoft.Azure.Management.TrafficManager.0.9.3-preview\lib\portable-net45+sl50+wp80+win\Microsoft.Azure.Management.TrafficManager.dll ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -67,10 +67,18 @@ + + + + + + - + + + @@ -95,6 +103,10 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common + + {2493A8F7-1949-4F29-8D53-9D459046C3B8} + Commands.Tags + diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/AddAzureTrafficManagerEndpointConfig.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/AddAzureTrafficManagerEndpointConfig.cs index e6045e38699f..9d107b1f8144 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/AddAzureTrafficManagerEndpointConfig.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/AddAzureTrafficManagerEndpointConfig.cs @@ -39,7 +39,11 @@ public class AddAzureTrafficManagerEndpointConfig : TrafficManagerBaseCmdlet [ValidateNotNullOrEmpty] public string Type { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The target of the endpoint.")] + [Parameter(Mandatory = false, HelpMessage = "The resource id of the endpoint.")] + [ValidateNotNullOrEmpty] + public string TargetResourceId { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The target of the endpoint.")] [ValidateNotNullOrEmpty] public string Target { get; set; } @@ -64,7 +68,7 @@ public override void ExecuteCmdlet() { if (this.TrafficManagerProfile.Endpoints == null) { - this.TrafficManagerProfile.Endpoints = new List(); + this.TrafficManagerProfile.Endpoints = new List(); } if (this.TrafficManagerProfile.Endpoints.Any(endpoint => string.Equals(this.EndpointName, endpoint.Name))) @@ -73,10 +77,11 @@ public override void ExecuteCmdlet() } this.TrafficManagerProfile.Endpoints.Add( - new Endpoint + new TrafficManagerEndpoint { Name = this.EndpointName, Type = this.Type, + TargetResourceId = this.TargetResourceId, Target = this.Target, EndpointStatus = this.EndpointStatus, Weight = this.Weight, diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/DisableAzureTrafficManagerEndpoint.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/DisableAzureTrafficManagerEndpoint.cs new file mode 100644 index 000000000000..1b984fce1b26 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/DisableAzureTrafficManagerEndpoint.cs @@ -0,0 +1,86 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.TrafficManager.Models; +using Microsoft.Azure.Commands.TrafficManager.Utilities; + +using ProjectResources = Microsoft.Azure.Commands.TrafficManager.Properties.Resources; + +namespace Microsoft.Azure.Commands.TrafficManager +{ + [Cmdlet(VerbsLifecycle.Disable, "AzureTrafficManagerEndpoint"), OutputType(typeof(bool))] + public class DisableAzureTrafficManagerEndpoint : TrafficManagerBaseCmdlet + { + [Parameter(Mandatory = true, HelpMessage = "The name of the endpoint.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The type of the endpoint.", ParameterSetName = "Fields")] + [ValidateSet(Constants.AzureEndpoint, Constants.ExternalEndpoint, Constants.NestedEndpoint, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string Type { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the endpoint.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ProfileName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The resource group to which the profile belongs.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "The endpoint.", ParameterSetName = "Object")] + [ValidateNotNullOrEmpty] + public TrafficManagerEndpoint TrafficManagerEndpoint { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + public override void ExecuteCmdlet() + { + var disabled = false; + TrafficManagerEndpoint endpointToDisable = null; + + if (this.ParameterSetName == "Fields") + { + endpointToDisable = new TrafficManagerEndpoint + { + Name = this.Name, + Type = this.Type, + ProfileName = this.ProfileName, + ResourceGroupName = this.ResourceGroupName + }; + } + else if (this.ParameterSetName == "Object") + { + endpointToDisable = this.TrafficManagerEndpoint; + } + + this.ConfirmAction( + this.Force.IsPresent, + string.Format(ProjectResources.Confirm_DisableEndpoint, endpointToDisable.Name, endpointToDisable.ProfileName), + ProjectResources.Progress_DisablingEndpoint, + this.Name, + () => { disabled = this.TrafficManagerClient.EnableDisableTrafficManagerEndpoint(endpointToDisable, shouldEnableEndpointStatus: false); }); + + if (disabled) + { + this.WriteVerbose(ProjectResources.Success); + this.WriteVerbose(string.Format(ProjectResources.Success_DisableEndpoint, endpointToDisable.Name, endpointToDisable.Name, endpointToDisable.ResourceGroupName)); + } + + this.WriteObject(disabled); + } + } +} diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/EnableAzureTrafficManagerEndpoint.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/EnableAzureTrafficManagerEndpoint.cs new file mode 100644 index 000000000000..4670f83c51ac --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/EnableAzureTrafficManagerEndpoint.cs @@ -0,0 +1,77 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.TrafficManager.Models; +using Microsoft.Azure.Commands.TrafficManager.Utilities; + +using ProjectResources = Microsoft.Azure.Commands.TrafficManager.Properties.Resources; + +namespace Microsoft.Azure.Commands.TrafficManager +{ + [Cmdlet(VerbsLifecycle.Enable, "AzureTrafficManagerEndpoint"), OutputType(typeof(bool))] + public class EnableAzureTrafficManagerEndpoint : TrafficManagerBaseCmdlet + { + [Parameter(Mandatory = true, HelpMessage = "The name of the endpoint.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The type of the endpoint.", ParameterSetName = "Fields")] + [ValidateSet(Constants.AzureEndpoint, Constants.ExternalEndpoint, Constants.NestedEndpoint, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string Type { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the endpoint.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ProfileName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The resource group to which the profile belongs.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "The endpoint.", ParameterSetName = "Object")] + [ValidateNotNullOrEmpty] + public TrafficManagerEndpoint TrafficManagerEndpoint { get; set; } + + public override void ExecuteCmdlet() + { + TrafficManagerEndpoint endpointToEnable = null; + + if (this.ParameterSetName == "Fields") + { + endpointToEnable = new TrafficManagerEndpoint + { + Name = this.Name, + Target = this.Type, + ProfileName = this.ProfileName, + ResourceGroupName = this.ResourceGroupName + }; + } + else if (this.ParameterSetName == "Object") + { + endpointToEnable = this.TrafficManagerEndpoint; + } + + bool enabled = this.TrafficManagerClient.EnableDisableTrafficManagerEndpoint(endpointToEnable, shouldEnableEndpointStatus: true); + + if (enabled) + { + this.WriteVerbose(ProjectResources.Success); + this.WriteVerbose(string.Format(ProjectResources.Success_EnableEndpoint, endpointToEnable.Name, endpointToEnable.ProfileName, endpointToEnable.ResourceGroupName)); + } + + this.WriteObject(enabled); + } + } +} diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/GetAzureTrafficManagerEndpoint.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/GetAzureTrafficManagerEndpoint.cs new file mode 100644 index 000000000000..061fd60faa89 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/GetAzureTrafficManagerEndpoint.cs @@ -0,0 +1,72 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.TrafficManager.Models; +using Microsoft.Azure.Commands.TrafficManager.Utilities; + +using ProjectResources = Microsoft.Azure.Commands.TrafficManager.Properties.Resources; + +namespace Microsoft.Azure.Commands.TrafficManager +{ + [Cmdlet(VerbsCommon.Get, "AzureTrafficManagerEndpoint"), OutputType(typeof(TrafficManagerEndpoint))] + public class GetAzureTrafficManagerEndpoint : TrafficManagerBaseCmdlet + { + [Parameter(Mandatory = true, HelpMessage = "The name of the endpoint.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The type of the endpoint.", ParameterSetName = "Fields")] + [ValidateSet(Constants.AzureEndpoint, Constants.ExternalEndpoint, Constants.NestedEndpoint, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string Type { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the profile.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ProfileName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The resource group to which the profile belongs.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "The endpoint.", ParameterSetName = "Object")] + [ValidateNotNullOrEmpty] + public TrafficManagerEndpoint TrafficManagerEndpoint { get; set; } + + public override void ExecuteCmdlet() + { + TrafficManagerEndpoint trafficManagerEndpoint = null; + + if (this.ParameterSetName == "Fields") + { + trafficManagerEndpoint = this.TrafficManagerClient.GetTrafficManagerEndpoint( + this.ResourceGroupName, + this.ProfileName, + this.Type, + this.Name); + } + else if (this.ParameterSetName == "Object") + { + trafficManagerEndpoint = this.TrafficManagerClient.GetTrafficManagerEndpoint( + this.TrafficManagerEndpoint.ResourceGroupName, + this.TrafficManagerEndpoint.ProfileName, + this.TrafficManagerEndpoint.Type, + this.TrafficManagerEndpoint.Name); + } + + this.WriteVerbose(ProjectResources.Success); + this.WriteObject(trafficManagerEndpoint); + } + } +} diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/NewAzureTrafficManagerEndpoint.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/NewAzureTrafficManagerEndpoint.cs new file mode 100644 index 000000000000..a44411554024 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/NewAzureTrafficManagerEndpoint.cs @@ -0,0 +1,108 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.TrafficManager.Models; +using Microsoft.Azure.Commands.TrafficManager.Utilities; + +using ProjectResources = Microsoft.Azure.Commands.TrafficManager.Properties.Resources; + +namespace Microsoft.Azure.Commands.TrafficManager +{ + using System.Net; + using Hyak.Common; + + [Cmdlet(VerbsCommon.New, "AzureTrafficManagerEndpoint"), OutputType(typeof(TrafficManagerEndpoint))] + public class NewAzureTrafficManagerEndpoint : TrafficManagerBaseCmdlet + { + [Parameter(Mandatory = true, HelpMessage = "The name of the endpoint.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the profile that contains the endpoint.")] + [ValidateNotNullOrEmpty] + public string ProfileName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The resource group to which the profile belongs.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The type of the endpoint.")] + [ValidateSet(Constants.AzureEndpoint, Constants.ExternalEndpoint, Constants.NestedEndpoint, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string Type { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The resource id of the endpoint.")] + [ValidateNotNullOrEmpty] + public string TargetResourceId { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The target of the endpoint.")] + [ValidateNotNullOrEmpty] + public string Target { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The status of the endpoint.")] + [ValidateSet(Constants.StatusEnabled, Constants.StatusDisabled, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string EndpointStatus { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The weight of the endpoint.")] + [ValidateNotNullOrEmpty] + public uint? Weight { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The priority of the endpoint.")] + [ValidateNotNullOrEmpty] + public uint? Priority { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The location of the endpoint.")] + [ValidateNotNullOrEmpty] + public string EndpointLocation { get; set; } + + public override void ExecuteCmdlet() + { + // We are not supporting etags yet, NewAzureTrafficManagerEndpoint should not overwrite any existing endpoint. + // Since our create operation is implemented using PUT, it will overwrite by default. + // Therefore, we need to check whether the Profile exists before we actually try to create it. + try + { + this.TrafficManagerClient.GetTrafficManagerEndpoint(this.ResourceGroupName, this.ProfileName, this.Type, this.Name); + + throw new PSArgumentException(string.Format(ProjectResources.Error_CreateExistingEndpoint, this.Name, this.ProfileName, this.ResourceGroupName)); + } + catch (CloudException exception) + { + if (exception.Response.StatusCode.Equals(HttpStatusCode.NotFound)) + { + TrafficManagerEndpoint trafficManagerEndpoint = this.TrafficManagerClient.CreateTrafficManagerEndpoint( + this.ResourceGroupName, + this.ProfileName, + this.Type, + this.Name, + this.TargetResourceId, + this.Target, + this.EndpointStatus, + this.Weight, + this.Priority, + this.EndpointLocation); + + this.WriteVerbose(ProjectResources.Success); + this.WriteObject(trafficManagerEndpoint); + } + else + { + throw; + } + } + } + } +} diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/RemoveAzureTrafficManagerEndpoint.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/RemoveAzureTrafficManagerEndpoint.cs new file mode 100644 index 000000000000..7c464bca8306 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/RemoveAzureTrafficManagerEndpoint.cs @@ -0,0 +1,86 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.TrafficManager.Models; +using Microsoft.Azure.Commands.TrafficManager.Utilities; + +using ProjectResources = Microsoft.Azure.Commands.TrafficManager.Properties.Resources; + +namespace Microsoft.Azure.Commands.TrafficManager +{ + [Cmdlet(VerbsCommon.Remove, "AzureTrafficManagerEndpoint"), OutputType(typeof(bool))] + public class RemoveAzureTrafficManagerEndpoint : TrafficManagerBaseCmdlet + { + [Parameter(Mandatory = true, HelpMessage = "The name of the endpoint.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The type of the endpoint.", ParameterSetName = "Fields")] + [ValidateSet(Constants.AzureEndpoint, Constants.ExternalEndpoint, Constants.NestedEndpoint, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string Type { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the profile.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ProfileName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The resource group to which the profile belongs.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "The endpoint.", ParameterSetName = "Object")] + [ValidateNotNullOrEmpty] + public TrafficManagerEndpoint TrafficManagerEndpoint { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + public override void ExecuteCmdlet() + { + var deleted = false; + TrafficManagerEndpoint trafficManagerEndpointToDelete = null; + + if (this.ParameterSetName == "Fields") + { + trafficManagerEndpointToDelete = new TrafficManagerEndpoint + { + Name = this.Name, + ProfileName = this.ProfileName, + ResourceGroupName = this.ResourceGroupName, + Type = this.Type + }; + } + else if (this.ParameterSetName == "Object") + { + trafficManagerEndpointToDelete = this.TrafficManagerEndpoint; + } + + this.ConfirmAction( + this.Force.IsPresent, + string.Format(ProjectResources.Confirm_RemoveEndpoint, trafficManagerEndpointToDelete.Name, trafficManagerEndpointToDelete.ProfileName, trafficManagerEndpointToDelete.ResourceGroupName), + ProjectResources.Progress_RemovingEndpoint, + this.Name, + () => { deleted = this.TrafficManagerClient.DeleteTrafficManagerEndpoint(trafficManagerEndpointToDelete); }); + + if (deleted) + { + this.WriteVerbose(ProjectResources.Success); + this.WriteVerbose(string.Format(ProjectResources.Success_RemoveEndpoint, trafficManagerEndpointToDelete.Name, trafficManagerEndpointToDelete.ProfileName, trafficManagerEndpointToDelete.ResourceGroupName)); + } + + this.WriteObject(deleted); + } + } +} diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/SetAzureTrafficManagerEndpoint.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/SetAzureTrafficManagerEndpoint.cs new file mode 100644 index 000000000000..546c06a0de54 --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Endpoint/SetAzureTrafficManagerEndpoint.cs @@ -0,0 +1,38 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.TrafficManager.Models; +using Microsoft.Azure.Commands.TrafficManager.Utilities; + +using ProjectResources = Microsoft.Azure.Commands.TrafficManager.Properties.Resources; + +namespace Microsoft.Azure.Commands.TrafficManager +{ + [Cmdlet(VerbsCommon.Set, "AzureTrafficManagerEndpoint"), OutputType(typeof(TrafficManagerEndpoint))] + public class SetAzureTrafficManagerEndpoint : TrafficManagerBaseCmdlet + { + [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "The endpoint.")] + [ValidateNotNullOrEmpty] + public TrafficManagerEndpoint TrafficManagerEndpoint { get; set; } + + public override void ExecuteCmdlet() + { + TrafficManagerEndpoint trafficManagerEndpoint = this.TrafficManagerClient.SetTrafficManagerEndpoint(this.TrafficManagerEndpoint); + + this.WriteVerbose(ProjectResources.Success); + this.WriteObject(trafficManagerEndpoint); + } + } +} diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/Endpoint.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/TrafficManagerEndpoint.cs similarity index 51% rename from src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/Endpoint.cs rename to src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/TrafficManagerEndpoint.cs index 73d71b1495db..1c49713a068f 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/Endpoint.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/TrafficManagerEndpoint.cs @@ -16,25 +16,19 @@ namespace Microsoft.Azure.Commands.TrafficManager.Models { using System; using Microsoft.Azure.Commands.TrafficManager.Utilities; + using Microsoft.Azure.Management.TrafficManager.Models; - public class Endpoint + public class TrafficManagerEndpoint { public string Name { get; set; } - private string type; + public string ProfileName { get; set; } - public string Type - { - get { return this.type; } + public string ResourceGroupName { get; set; } - set - { - if (!value.StartsWith(Constants.ProfileType, StringComparison.OrdinalIgnoreCase)) - { - this.type = string.Format("{0}/{1}", Constants.ProfileType, value); - } - } - } + public string Type { get; set; } + + public string TargetResourceId { get; set; } public string Target { get; set; } @@ -45,5 +39,33 @@ public string Type public uint? Priority { get; set; } public string Location { get; set; } + + public string EndpointMonitorStatus { get; set; } + + public Endpoint ToSDKEndpoint() + { + return new Endpoint + { + Name = this.Name, + Type = TrafficManagerEndpoint.ToSDKEndpointType(this.Type), + Id = this.TargetResourceId, + Properties = new EndpointProperties + { + Target = this.Target, + EndpointStatus = this.EndpointStatus, + Weight = this.Weight, + Priority = this.Priority, + EndpointLocation = this.Location + } + }; + } + + public static string ToSDKEndpointType(string type) + { + return + !type.StartsWith(Constants.ProfileType, StringComparison.OrdinalIgnoreCase) ? + string.Format("{0}/{1}", Constants.ProfileType, type) : + type; + } } } diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/TrafficManagerProfile.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/TrafficManagerProfile.cs index 2ea8778a36ff..fe8dd7bdcddf 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/TrafficManagerProfile.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Models/TrafficManagerProfile.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.Commands.TrafficManager.Models { using System.Collections.Generic; + using System.Linq; using Microsoft.Azure.Commands.TrafficManager.Utilities; using Microsoft.Azure.Management.TrafficManager.Models; @@ -28,6 +29,8 @@ public class TrafficManagerProfile public uint Ttl { get; set; } + public string ProfileStatus { get; set; } + public string TrafficRoutingMethod { get; set; } public string MonitorProtocol { get; set; } @@ -36,7 +39,7 @@ public class TrafficManagerProfile public string MonitorPath { get; set; } - public List Endpoints { get; set; } + public List Endpoints { get; set; } public Profile ToSDKProfile() { @@ -47,6 +50,7 @@ public Profile ToSDKProfile() Location = TrafficManagerClient.ProfileResourceLocation, Properties = new ProfileProperties { + ProfileStatus = this.ProfileStatus, TrafficRoutingMethod = this.TrafficRoutingMethod, DnsConfig = new DnsConfig { @@ -62,26 +66,9 @@ public Profile ToSDKProfile() } }; - if (this.Endpoints.Count > 0) + if (this.Endpoints != null && this.Endpoints.Any()) { - profile.Properties.Endpoints = new List(); - - foreach (Endpoint endpoint in this.Endpoints) - { - profile.Properties.Endpoints.Add(new Management.TrafficManager.Models.Endpoint - { - Name = endpoint.Name, - Type = endpoint.Type, - Properties = new EndpointProperties - { - Target = endpoint.Target, - EndpointStatus = endpoint.EndpointStatus, - Weight = endpoint.Weight, - Priority = endpoint.Priority, - EndpointLocation = endpoint.Location - } - }); - } + profile.Properties.Endpoints = this.Endpoints.Select(endpoint => endpoint.ToSDKEndpoint()).ToList(); } return profile; diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/DisableAzureTrafficManagerProfile.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/DisableAzureTrafficManagerProfile.cs new file mode 100644 index 000000000000..a08d75c43daa --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/DisableAzureTrafficManagerProfile.cs @@ -0,0 +1,75 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.TrafficManager.Models; +using Microsoft.Azure.Commands.TrafficManager.Utilities; + +using ProjectResources = Microsoft.Azure.Commands.TrafficManager.Properties.Resources; + +namespace Microsoft.Azure.Commands.TrafficManager +{ + [Cmdlet(VerbsLifecycle.Disable, "AzureTrafficManagerProfile"), OutputType(typeof(bool))] + public class DisableAzureTrafficManagerProfile : TrafficManagerBaseCmdlet + { + [Parameter(Mandatory = true, HelpMessage = "The name of the profile.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The resource group to which the profile belongs.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "The profile.", ParameterSetName = "Object")] + [ValidateNotNullOrEmpty] + public TrafficManagerProfile TrafficManagerProfile { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + public override void ExecuteCmdlet() + { + var disabled = false; + TrafficManagerProfile profileToDisable = null; + + if (this.ParameterSetName == "Fields") + { + profileToDisable = new TrafficManagerProfile + { + Name = this.Name, + ResourceGroupName = this.ResourceGroupName + }; + } + else if (this.ParameterSetName == "Object") + { + profileToDisable = this.TrafficManagerProfile; + } + + this.ConfirmAction( + this.Force.IsPresent, + string.Format(ProjectResources.Confirm_DisableProfile, profileToDisable.Name), + ProjectResources.Progress_DisablingProfile, + profileToDisable.Name, + () => { disabled = this.TrafficManagerClient.EnableDisableTrafficManagerProfile(profileToDisable, shouldEnableProfileStatus: false); }); + + if (disabled) + { + this.WriteVerbose(ProjectResources.Success); + this.WriteVerbose(string.Format(ProjectResources.Success_DisableProfile, profileToDisable.Name, profileToDisable.ResourceGroupName)); + } + + this.WriteObject(disabled); + } + } +} diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/EnableAzureTrafficManagerProfile.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/EnableAzureTrafficManagerProfile.cs new file mode 100644 index 000000000000..aa117f4b0c4b --- /dev/null +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/EnableAzureTrafficManagerProfile.cs @@ -0,0 +1,66 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.TrafficManager.Models; +using Microsoft.Azure.Commands.TrafficManager.Utilities; + +using ProjectResources = Microsoft.Azure.Commands.TrafficManager.Properties.Resources; + +namespace Microsoft.Azure.Commands.TrafficManager +{ + [Cmdlet(VerbsLifecycle.Enable, "AzureTrafficManagerProfile"), OutputType(typeof(bool))] + public class EnableAzureTrafficManagerProfile : TrafficManagerBaseCmdlet + { + [Parameter(Mandatory = true, HelpMessage = "The name of the profile.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The resource group to which the profile belongs.", ParameterSetName = "Fields")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "The profile.", ParameterSetName = "Object")] + [ValidateNotNullOrEmpty] + public TrafficManagerProfile TrafficManagerProfile { get; set; } + + public override void ExecuteCmdlet() + { + TrafficManagerProfile profileToEnable = null; + + if (this.ParameterSetName == "Fields") + { + profileToEnable = new TrafficManagerProfile + { + Name = this.Name, + ResourceGroupName = this.ResourceGroupName + }; + } + else if (this.ParameterSetName == "Object") + { + profileToEnable = this.TrafficManagerProfile; + } + + bool enabled = this.TrafficManagerClient.EnableDisableTrafficManagerProfile(profileToEnable, shouldEnableProfileStatus: true); + + if (enabled) + { + this.WriteVerbose(ProjectResources.Success); + this.WriteVerbose(string.Format(ProjectResources.Success_EnableProfile, profileToEnable.Name, profileToEnable.ResourceGroupName)); + } + + this.WriteObject(enabled); + } + } +} diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/GetAzureTrafficManagerProfile.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/GetAzureTrafficManagerProfile.cs index 390d67d0c6de..5dc3f164a763 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/GetAzureTrafficManagerProfile.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/GetAzureTrafficManagerProfile.cs @@ -23,20 +23,34 @@ namespace Microsoft.Azure.Commands.TrafficManager [Cmdlet(VerbsCommon.Get, "AzureTrafficManagerProfile"), OutputType(typeof(TrafficManagerProfile))] public class GetAzureTrafficManagerProfile : TrafficManagerBaseCmdlet { - [Parameter(Mandatory = true, HelpMessage = "The name of the profile.")] + [Parameter(Mandatory = false, HelpMessage = "The name of the profile.")] [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The resource group to which the profile belongs.")] + [Parameter(Mandatory = false, HelpMessage = "The resource group to which the profile belongs.")] [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } public override void ExecuteCmdlet() { - TrafficManagerProfile profile = this.TrafficManagerClient.GetTrafficManagerProfile(this.ResourceGroupName, this.Name); + if (this.ResourceGroupName == null && this.Name != null) + { + // Throw an error + } + else if (this.ResourceGroupName != null && this.Name != null) + { + TrafficManagerProfile profile = this.TrafficManagerClient.GetTrafficManagerProfile(this.ResourceGroupName, this.Name); - this.WriteVerbose(ProjectResources.Success); - this.WriteObject(profile); + this.WriteVerbose(ProjectResources.Success); + this.WriteObject(profile); + } + else + { + TrafficManagerProfile[] profiles = this.TrafficManagerClient.ListTrafficManagerProfiles(this.ResourceGroupName); + + this.WriteVerbose(ProjectResources.Success); + this.WriteObject(profiles); + } } } } diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/NewAzureTrafficManagerProfile.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/NewAzureTrafficManagerProfile.cs index 7ee94eea9fd5..dc2a2eb85be4 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/NewAzureTrafficManagerProfile.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/NewAzureTrafficManagerProfile.cs @@ -20,6 +20,7 @@ namespace Microsoft.Azure.Commands.TrafficManager { + using System.Collections; using System.Net; using Hyak.Common; @@ -34,6 +35,11 @@ public class NewAzureTrafficManagerProfile : TrafficManagerBaseCmdlet [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } + [Parameter(Mandatory = false, HelpMessage = "The status of the profile.")] + [ValidateSet(Constants.StatusEnabled, Constants.StatusDisabled, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string ProfileStatus { get; set; } + [Parameter(Mandatory = true, HelpMessage = "The relative name of the profile.")] [ValidateNotNullOrEmpty] public string RelativeDnsName { get; set; } @@ -60,6 +66,10 @@ public class NewAzureTrafficManagerProfile : TrafficManagerBaseCmdlet [ValidateNotNullOrEmpty] public string MonitorPath { get; set; } + [Alias("Tags")] + [Parameter(Mandatory = false, HelpMessage = "A hash table which represents resource tags.")] + public Hashtable[] Tag { get; set; } + public override void ExecuteCmdlet() { // We are not supporting etags yet, NewAzureTrafficManagerProfile should not overwrite any existing profile. @@ -78,12 +88,14 @@ public override void ExecuteCmdlet() TrafficManagerProfile profile = this.TrafficManagerClient.CreateTrafficManagerProfile( this.ResourceGroupName, this.Name, + this.ProfileStatus, this.TrafficRoutingMethod, this.RelativeDnsName, this.Ttl, this.MonitorProtocol, this.MonitorPort, - this.MonitorPath); + this.MonitorPath, + this.Tag); this.WriteVerbose(ProjectResources.Success); this.WriteObject(profile); diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/RemoveAzureTrafficManagerProfile.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/RemoveAzureTrafficManagerProfile.cs index 816cb76f6b76..b325e9d77b02 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/RemoveAzureTrafficManagerProfile.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Profile/RemoveAzureTrafficManagerProfile.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.TrafficManager { - [Cmdlet(VerbsCommon.Remove, "AzureTrafficManagerProfile"), OutputType(typeof(TrafficManagerProfile))] + [Cmdlet(VerbsCommon.Remove, "AzureTrafficManagerProfile"), OutputType(typeof(bool))] public class RemoveAzureTrafficManagerProfile : TrafficManagerBaseCmdlet { [Parameter(Mandatory = true, HelpMessage = "The name of the profile.", ParameterSetName = "Fields")] diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Properties/Resources.Designer.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Properties/Resources.Designer.cs index be24337be352..5e6079bf5898 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Properties/Resources.Designer.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Properties/Resources.Designer.cs @@ -60,6 +60,33 @@ internal Resources() { } } + /// + /// Looks up a localized string similar to Are you sure you want to disable endpoint '{0}' of Profile '{1}'?. + /// + internal static string Confirm_DisableEndpoint { + get { + return ResourceManager.GetString("Confirm_DisableEndpoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to disable profile '{0}'?. + /// + internal static string Confirm_DisableProfile { + get { + return ResourceManager.GetString("Confirm_DisableProfile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to permanently remove endpoint '{0}' from profile '{1}' in resource group '{2}'?. + /// + internal static string Confirm_RemoveEndpoint { + get { + return ResourceManager.GetString("Confirm_RemoveEndpoint", resourceCulture); + } + } + /// /// Looks up a localized string similar to Are you sure you want to permanently remove profile '{0}'?. /// @@ -78,6 +105,15 @@ internal static string Error_AddExistingEndpoint { } } + /// + /// Looks up a localized string similar to There is already an existing endpoint with name '{0}' in the profile '{1}' and resource group '{2}'. + /// + internal static string Error_CreateExistingEndpoint { + get { + return ResourceManager.GetString("Error_CreateExistingEndpoint", resourceCulture); + } + } + /// /// Looks up a localized string similar to There is already an existing profile with name '{0}' in the resource group '{1}'. /// @@ -96,6 +132,33 @@ internal static string Error_EndpointNotFound { } } + /// + /// Looks up a localized string similar to Disabling endpoint .... + /// + internal static string Progress_DisablingEndpoint { + get { + return ResourceManager.GetString("Progress_DisablingEndpoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disabling profile .... + /// + internal static string Progress_DisablingProfile { + get { + return ResourceManager.GetString("Progress_DisablingProfile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing endpoint .... + /// + internal static string Progress_RemovingEndpoint { + get { + return ResourceManager.GetString("Progress_RemovingEndpoint", resourceCulture); + } + } + /// /// Looks up a localized string similar to Removing profile .... /// @@ -114,6 +177,51 @@ internal static string Success { } } + /// + /// Looks up a localized string similar to Endpoint '{0}' of Profile '{1}' from resource group '{2}' was disabled successfully.. + /// + internal static string Success_DisableEndpoint { + get { + return ResourceManager.GetString("Success_DisableEndpoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Profile '{0}' from resource group '{1}' was disabled successfully.. + /// + internal static string Success_DisableProfile { + get { + return ResourceManager.GetString("Success_DisableProfile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Endpoint '{0}' of Profile '{1}' from resource group '{2}' was enabled successfully.. + /// + internal static string Success_EnableEndpoint { + get { + return ResourceManager.GetString("Success_EnableEndpoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Profile '{0}' from resource group '{1}' was enabled successfully.. + /// + internal static string Success_EnableProfile { + get { + return ResourceManager.GetString("Success_EnableProfile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Endpoint '{0}' was removed from profile '{1}' in resource group '{2}'.. + /// + internal static string Success_RemoveEndpoint { + get { + return ResourceManager.GetString("Success_RemoveEndpoint", resourceCulture); + } + } + /// /// Looks up a localized string similar to Profile '{0}' was removed from resource group '{1}'.. /// diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Properties/Resources.resx b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Properties/Resources.resx index 9452b6323521..0bb4943d9aee 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Properties/Resources.resx +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Properties/Resources.resx @@ -117,24 +117,60 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Are you sure you want to disable endpoint '{0}' of Profile '{1}'? + + + Are you sure you want to disable profile '{0}'? + + + Are you sure you want to permanently remove endpoint '{0}' from profile '{1}' in resource group '{2}'? + Are you sure you want to permanently remove profile '{0}'? There is already an existing endpoint with name '{0}'. + + There is already an existing endpoint with name '{0}' in the profile '{1}' and resource group '{2}' + There is already an existing profile with name '{0}' in the resource group '{1}' The profile provided does not have any endpoints with name '{0}'. + + Disabling endpoint ... + + + Disabling profile ... + + + Removing endpoint ... + Removing profile ... Success! + + Endpoint '{0}' of Profile '{1}' from resource group '{2}' was disabled successfully. + + + Profile '{0}' from resource group '{1}' was disabled successfully. + + + Endpoint '{0}' of Profile '{1}' from resource group '{2}' was enabled successfully. + + + Profile '{0}' from resource group '{1}' was enabled successfully. + + + Endpoint '{0}' was removed from profile '{1}' in resource group '{2}'. + Profile '{0}' was removed from resource group '{1}'. diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Utilities/TrafficManagerBaseCmdlet.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Utilities/TrafficManagerBaseCmdlet.cs index 9c78289e6b1c..ec9cb7ae0a0f 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Utilities/TrafficManagerBaseCmdlet.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Utilities/TrafficManagerBaseCmdlet.cs @@ -26,8 +26,13 @@ public TrafficManagerClient TrafficManagerClient { if (this.trafficManagerClient == null) { - this.trafficManagerClient = new TrafficManagerClient(this.Profile); + this.trafficManagerClient = new TrafficManagerClient(Profile.Context) + { + VerboseLogger = WriteVerboseWithTimestamp, + ErrorLogger = WriteErrorWithTimestamp + }; } + return this.trafficManagerClient; } diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Utilities/TrafficManagerClient.cs b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Utilities/TrafficManagerClient.cs index 3d2d2da8350e..87a220c5bd3a 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Utilities/TrafficManagerClient.cs +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Utilities/TrafficManagerClient.cs @@ -14,21 +14,28 @@ namespace Microsoft.Azure.Commands.TrafficManager.Utilities { + using System; + using System.Collections; using System.Collections.Generic; + using System.Linq; using System.Net; + using Microsoft.Azure.Commands.Tags.Model; using Microsoft.Azure.Commands.TrafficManager.Models; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.Azure.Management.TrafficManager; using Microsoft.Azure.Management.TrafficManager.Models; - using Endpoint = Microsoft.Azure.Management.TrafficManager.Models.Endpoint; public class TrafficManagerClient { public const string ProfileResourceLocation = "global"; - public TrafficManagerClient(AzureProfile profile) - : this(AzureSession.ClientFactory.CreateClient(profile, AzureEnvironment.Endpoint.ResourceManager)) + public Action VerboseLogger { get; set; } + + public Action ErrorLogger { get; set; } + + public TrafficManagerClient(AzureContext context) + : this(AzureSession.ClientFactory.CreateClient(context, AzureEnvironment.Endpoint.ResourceManager)) { } @@ -39,7 +46,7 @@ public TrafficManagerClient(ITrafficManagerManagementClient client) public ITrafficManagerManagementClient TrafficManagerManagementClient { get; set; } - public TrafficManagerProfile CreateTrafficManagerProfile(string resourceGroupName, string profileName, string trafficRoutingMethod, string relativeDnsName, uint ttl, string monitorProtocol, uint monitorPort, string monitorPath) + public TrafficManagerProfile CreateTrafficManagerProfile(string resourceGroupName, string profileName, string profileStatus, string trafficRoutingMethod, string relativeDnsName, uint ttl, string monitorProtocol, uint monitorPort, string monitorPath, Hashtable[] tag) { ProfileCreateOrUpdateResponse response = this.TrafficManagerManagementClient.Profiles.CreateOrUpdate( resourceGroupName, @@ -52,6 +59,7 @@ public TrafficManagerProfile CreateTrafficManagerProfile(string resourceGroupNam Location = TrafficManagerClient.ProfileResourceLocation, Properties = new ProfileProperties { + ProfileStatus = profileStatus, TrafficRoutingMethod = trafficRoutingMethod, DnsConfig = new DnsConfig { @@ -64,13 +72,42 @@ public TrafficManagerProfile CreateTrafficManagerProfile(string resourceGroupNam Port = monitorPort, Path = monitorPath } - } + }, + Tags = TagsConversionHelper.CreateTagDictionary(tag, validate: true), } }); return TrafficManagerClient.GetPowershellTrafficManagerProfile(resourceGroupName, profileName, response.Profile.Properties); } + public TrafficManagerEndpoint CreateTrafficManagerEndpoint(string resourceGroupName, string profileName, string endpointType, string endpointName, string targetResourceId, string target, string endpointStatus, uint? weight, uint? priority, string endpointLocation) + { + EndpointCreateOrUpdateResponse response = this.TrafficManagerManagementClient.Endpoints.CreateOrUpdate( + resourceGroupName, + profileName, + endpointType, + endpointName, + new EndpointCreateOrUpdateParameters + { + Endpoint = new Endpoint + { + Name = endpointName, + Type = TrafficManagerEndpoint.ToSDKEndpointType(endpointType), + Properties = new EndpointProperties + { + TargetResourceId = targetResourceId, + Target = target, + EndpointStatus = endpointStatus, + Weight = weight, + Priority = priority, + EndpointLocation = endpointLocation + } + } + }); + + return TrafficManagerClient.GetPowershellTrafficManagerEndpoint(resourceGroupName, profileName, endpointType, endpointName, response.Endpoint.Properties); + } + public TrafficManagerProfile GetTrafficManagerProfile(string resourceGroupName, string profileName) { ProfileGetResponse response = this.TrafficManagerManagementClient.Profiles.Get(resourceGroupName, profileName); @@ -78,9 +115,34 @@ public TrafficManagerProfile GetTrafficManagerProfile(string resourceGroupName, return TrafficManagerClient.GetPowershellTrafficManagerProfile(resourceGroupName, profileName, response.Profile.Properties); } + public TrafficManagerEndpoint GetTrafficManagerEndpoint(string resourceGroupName, string profileName, string endpointType, string endpointName) + { + EndpointGetResponse response = this.TrafficManagerManagementClient.Endpoints.Get(resourceGroupName, profileName, endpointType, endpointName); + + return TrafficManagerClient.GetPowershellTrafficManagerEndpoint( + resourceGroupName, + profileName, + endpointType, + endpointName, + response.Endpoint.Properties); + } + + public TrafficManagerProfile[] ListTrafficManagerProfiles(string resourceGroupName = null) + { + ProfileListResponse response = + resourceGroupName == null ? + this.TrafficManagerManagementClient.Profiles.ListAll() : + this.TrafficManagerManagementClient.Profiles.ListAllInResourceGroup(resourceGroupName); + + return response.Profiles.Select(profile => TrafficManagerClient.GetPowershellTrafficManagerProfile( + resourceGroupName ?? TrafficManagerClient.ExtractResourceGroupFromId(profile.Id), + profile.Name, + profile.Properties)).ToArray(); + } + public TrafficManagerProfile SetTrafficManagerProfile(TrafficManagerProfile profile) { - var parameteres = new ProfileCreateOrUpdateParameters + var parameters = new ProfileCreateOrUpdateParameters { Profile = profile.ToSDKProfile() }; @@ -88,12 +150,34 @@ public TrafficManagerProfile SetTrafficManagerProfile(TrafficManagerProfile prof ProfileCreateOrUpdateResponse response = this.TrafficManagerManagementClient.Profiles.CreateOrUpdate( profile.ResourceGroupName, profile.Name, - parameteres + parameters ); return TrafficManagerClient.GetPowershellTrafficManagerProfile(profile.ResourceGroupName, profile.Name, response.Profile.Properties); } + public TrafficManagerEndpoint SetTrafficManagerEndpoint(TrafficManagerEndpoint endpoint) + { + var parameters = new EndpointCreateOrUpdateParameters + { + Endpoint = endpoint.ToSDKEndpoint() + }; + + EndpointCreateOrUpdateResponse response = this.TrafficManagerManagementClient.Endpoints.CreateOrUpdate( + endpoint.ResourceGroupName, + endpoint.ProfileName, + endpoint.Type, + endpoint.Name, + parameters); + + return TrafficManagerClient.GetPowershellTrafficManagerEndpoint( + endpoint.ResourceGroupName, + endpoint.ProfileName, + endpoint.Type, + endpoint.Name, + response.Endpoint.Properties); + } + public bool DeleteTrafficManagerProfile(TrafficManagerProfile profile) { AzureOperationResponse response = this.TrafficManagerManagementClient.Profiles.Delete(profile.ResourceGroupName, profile.Name); @@ -101,12 +185,71 @@ public bool DeleteTrafficManagerProfile(TrafficManagerProfile profile) return response.StatusCode.Equals(HttpStatusCode.OK); } + public bool DeleteTrafficManagerEndpoint(TrafficManagerEndpoint trafficManagerEndpoint) + { + AzureOperationResponse response = this.TrafficManagerManagementClient.Endpoints.Delete( + trafficManagerEndpoint.ResourceGroupName, + trafficManagerEndpoint.ProfileName, + trafficManagerEndpoint.Type, + trafficManagerEndpoint.Name); + + return response.StatusCode.Equals(HttpStatusCode.OK); + } + + public bool EnableDisableTrafficManagerProfile(TrafficManagerProfile profile, bool shouldEnableProfileStatus) + { + profile.ProfileStatus = shouldEnableProfileStatus ? Constants.StatusEnabled : Constants.StatusDisabled; + + Profile sdkProfile = profile.ToSDKProfile(); + sdkProfile.Properties.DnsConfig = null; + sdkProfile.Properties.Endpoints = null; + sdkProfile.Properties.TrafficRoutingMethod = null; + sdkProfile.Properties.MonitorConfig = null; + + var parameters = new ProfileUpdateParameters + { + Profile = sdkProfile + }; + + AzureOperationResponse response = this.TrafficManagerManagementClient.Profiles.Update(profile.ResourceGroupName, profile.Name, parameters); + + return response.StatusCode.Equals(HttpStatusCode.OK); + } + + public bool EnableDisableTrafficManagerEndpoint(TrafficManagerEndpoint endpoint, bool shouldEnableEndpointStatus) + { + endpoint.EndpointStatus = shouldEnableEndpointStatus ? Constants.StatusEnabled : Constants.StatusDisabled; + + Endpoint sdkEndpoint = endpoint.ToSDKEndpoint(); + sdkEndpoint.Properties.EndpointLocation = null; + sdkEndpoint.Properties.EndpointMonitorStatus = null; + sdkEndpoint.Properties.Priority = null; + sdkEndpoint.Properties.Weight = null; + sdkEndpoint.Properties.Target = null; + sdkEndpoint.Properties.TargetResourceId = null; + + var parameters = new EndpointUpdateParameters + { + Endpoint = sdkEndpoint + }; + + AzureOperationResponse response = this.TrafficManagerManagementClient.Endpoints.Update( + endpoint.ResourceGroupName, + endpoint.ProfileName, + endpoint.Type, + endpoint.Name, + parameters); + + return response.StatusCode.Equals(HttpStatusCode.Created); + } + private static TrafficManagerProfile GetPowershellTrafficManagerProfile(string resourceGroupName, string profileName, ProfileProperties mamlProfileProperties) { var profile = new TrafficManagerProfile { Name = profileName, ResourceGroupName = resourceGroupName, + ProfileStatus = mamlProfileProperties.ProfileStatus, RelativeDnsName = mamlProfileProperties.DnsConfig.RelativeName, Ttl = mamlProfileProperties.DnsConfig.Ttl, TrafficRoutingMethod = mamlProfileProperties.TrafficRoutingMethod, @@ -117,11 +260,11 @@ private static TrafficManagerProfile GetPowershellTrafficManagerProfile(string r if (mamlProfileProperties.Endpoints != null) { - profile.Endpoints = new List(); + profile.Endpoints = new List(); foreach (Endpoint endpoint in mamlProfileProperties.Endpoints) { - profile.Endpoints.Add(new Models.Endpoint + profile.Endpoints.Add(new TrafficManagerEndpoint { Name = endpoint.Name, Type = endpoint.Type, @@ -136,5 +279,28 @@ private static TrafficManagerProfile GetPowershellTrafficManagerProfile(string r return profile; } + + private static string ExtractResourceGroupFromId(string id) + { + return id.Split('/')[4]; + } + + private static TrafficManagerEndpoint GetPowershellTrafficManagerEndpoint(string resourceGroupName, string profileName, string endpointType, string endpointName, EndpointProperties mamlEndpointProperties) + { + return new TrafficManagerEndpoint + { + ResourceGroupName = resourceGroupName, + ProfileName = profileName, + Name = endpointName, + Type = endpointType, + TargetResourceId = mamlEndpointProperties.TargetResourceId, + Target = mamlEndpointProperties.Target, + EndpointStatus = mamlEndpointProperties.EndpointStatus, + Location = mamlEndpointProperties.EndpointLocation, + Priority = mamlEndpointProperties.Priority, + Weight = mamlEndpointProperties.Weight, + EndpointMonitorStatus = mamlEndpointProperties.EndpointMonitorStatus + }; + } } } diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config index 3a9d266dca3d..ed3c3ce521bc 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config @@ -5,7 +5,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/PIR.psd1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/PIR.psd1 index beb5361f0d0b..536ff2e9f1ca 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.4' +ModuleVersion = '0.9.5' # 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 a7ae3eae8b33..b6f2a6a9257c 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.4' +ModuleVersion = '0.9.5' # ID used to uniquely identify this module GUID = '1C72E555-E83F-45E4-AED2-AF3278828DCD' diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj index 2942e213343e..3466e34fa27a 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj @@ -116,7 +116,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.0\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.3\lib\net40\Microsoft.WindowsAzure.Management.Network.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config index b723d3a5e1f0..613371a84f8d 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config @@ -17,7 +17,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj index af5e40ebf12d..3b8b4230fa04 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj @@ -110,7 +110,7 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.2.0-preview\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll - ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.0\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.3\lib\net40\Microsoft.WindowsAzure.Management.Network.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs index e4902afca353..8c052ce0f80c 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs @@ -294,7 +294,9 @@ public static void SetTestSettings() protected void StartTest(string testname, DateTime testStartTime) { - Console.WriteLine("{0} test starts at {1}", testname, testStartTime); + string subId = defaultAzureSubscription.SubscriptionId; + string endPoint = defaultAzureSubscription.ServiceEndpoint; + Console.WriteLine("{0} test starts at {1} for subscription {2} and endpoint {3}", testname, testStartTime, subId, endPoint); } private static void Retry(string cmdlet, string message, int maxTry = 1, int intervalSecond = 10) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config index 4be38e7694ba..4f5fff2343ef 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config @@ -17,7 +17,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj index 14addad5ffe0..2751f356c1af 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj @@ -118,7 +118,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.0\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.3\lib\net40\Microsoft.WindowsAzure.Management.Network.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/RemoveAzureVMDscExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/RemoveAzureVMDscExtension.cs index 5d184f447f0f..af8f535d74f1 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/RemoveAzureVMDscExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/RemoveAzureVMDscExtension.cs @@ -30,7 +30,9 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions /// $vm = Get-AzureVM -ServiceName service -Name VM-name /// Remove-AzureVMDscExtension -VM $vm | Update-AzureVM -Verbose /// - [Cmdlet(VerbsCommon.Remove, VirtualMachineDscExtensionCmdletNoun), + [Cmdlet(VerbsCommon.Remove, + VirtualMachineDscExtensionCmdletNoun, + SupportsShouldProcess = true), OutputType(typeof(IPersistentVM))] public class RemoveAzureVMDscExtensionCommand : VirtualMachineDscExtensionCmdletBase { @@ -41,10 +43,13 @@ internal void ExecuteCommand() this.Uninstall = true; this.Version = DefaultExtensionVersion; - RemovePredicateExtensions(); - AddResourceExtension(); - - WriteObject(VM); + if (ShouldProcess(Resources.DscExtensionRemovalConfirmation, + Resources.DscExtensionRemovalCaption)) + { + RemovePredicateExtensions(); + AddResourceExtension(); + WriteObject(VM); + } } protected override void ProcessRecord() diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/SetAzureVMDscExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/SetAzureVMDscExtension.cs index f755015a1bb9..cc21d434495d 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/SetAzureVMDscExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/SetAzureVMDscExtension.cs @@ -32,7 +32,7 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions [Cmdlet(VerbsCommon.Set, VirtualMachineDscExtensionCmdletNoun, SupportsShouldProcess = true)] [OutputType(typeof(IPersistentVM))] - public class SetAzureVMDscExtensionCommand : VirtualMachineDscExtensionCmdletBase + public class SetAzureVMDscExtension : VirtualMachineDscExtensionCmdletBase { /// /// The Extension Reference Name diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/AddAzureVirtualIP.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/AddAzureVirtualIP.cs index 4021175d95d9..7c8bf49bd17f 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/AddAzureVirtualIP.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/AddAzureVirtualIP.cs @@ -24,6 +24,14 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Network [Cmdlet(VerbsCommon.Add, "AzureVirtualIP"), OutputType(typeof(ManagementOperationContext))] public class AddAzureVirtualIP : ServiceManagementBaseCmdlet { + public AddAzureVirtualIP() + { + } + + public AddAzureVirtualIP(IClientProvider provider) : base(provider) + { + } + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = false)] [ValidateNotNullOrEmpty] public string ServiceName { get; set; } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/NewAzureReservedIP.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/NewAzureReservedIP.cs index 3e356eab30b8..903e9cda7125 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/NewAzureReservedIP.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/NewAzureReservedIP.cs @@ -26,9 +26,17 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS [Cmdlet(VerbsCommon.New, ReservedIPConstants.CmdletNoun, DefaultParameterSetName = ReserveNewIPParamSet), OutputType(typeof(ManagementOperationContext))] public class NewAzureReservedIPCmdlet : ServiceManagementBaseCmdlet { - protected const string ReserveNewIPParamSet = "CreateNewReservedIP"; - protected const string ReserveInUseIPUsingSlotParamSet = "CreateInUseReservedIPUsingSlot"; - protected const string ReserveInUseIPParamSet = "CreateInUseReservedIP"; + public const string ReserveNewIPParamSet = "CreateNewReservedIP"; + public const string ReserveInUseIPUsingSlotParamSet = "CreateInUseReservedIPUsingSlot"; + public const string ReserveInUseIPParamSet = "CreateInUseReservedIP"; + + public NewAzureReservedIPCmdlet() + { + } + + public NewAzureReservedIPCmdlet(IClientProvider provider) : base(provider) + { + } [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ReserveNewIPParamSet, HelpMessage = "Reserved IP Name.")] [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ReserveInUseIPUsingSlotParamSet, HelpMessage = "Reserved IP Name.")] @@ -85,7 +93,7 @@ public string Slot set; } - protected override void OnProcessRecord() + public override void ExecuteCmdlet() { ServiceManagementProfile.Initialize(); string deploymentName = string.Empty; diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/RemoveAzureReservedIP.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/RemoveAzureReservedIP.cs index 26d431957428..9e914d6b3f96 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/RemoveAzureReservedIP.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/RemoveAzureReservedIP.cs @@ -23,6 +23,15 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS [Cmdlet(VerbsCommon.Remove, ReservedIPConstants.CmdletNoun, DefaultParameterSetName = RemoveReservedIPParamSet), OutputType(typeof(ManagementOperationContext))] public class RemoveAzureReservedIPCmdlet : ServiceManagementBaseCmdlet { + public RemoveAzureReservedIPCmdlet() + { + } + + public RemoveAzureReservedIPCmdlet(IClientProvider provider) + : base(provider) + { + } + protected const string RemoveReservedIPParamSet = "RemoveReservedIP"; [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, HelpMessage = "Reserved IP Name.")] @@ -32,7 +41,7 @@ public class RemoveAzureReservedIPCmdlet : ServiceManagementBaseCmdlet [Parameter(Position = 1, HelpMessage = "Do not confirm deletion of deployment")] public SwitchParameter Force { get; set; } - protected override void OnProcessRecord() + public override void ExecuteCmdlet() { ServiceManagementProfile.Initialize(); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/RemoveAzureVirtualIP.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/RemoveAzureVirtualIP.cs index 93750eec752b..eb8d024764e7 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/RemoveAzureVirtualIP.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/RemoveAzureVirtualIP.cs @@ -23,6 +23,14 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS [Cmdlet(VerbsCommon.Remove, "AzureVirtualIP"), OutputType(typeof(ManagementOperationContext))] public class RemoveAzureVirtualIP : ServiceManagementBaseCmdlet { + public RemoveAzureVirtualIP() + { + } + + public RemoveAzureVirtualIP(IClientProvider provider) : base(provider) + { + } + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = false)] [ValidateNotNullOrEmpty] public string ServiceName { get; set; } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/SetAzureReservedIPAssociation.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/SetAzureReservedIPAssociation.cs index 891b7c47ffd0..2f5653487b63 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/SetAzureReservedIPAssociation.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/SetAzureReservedIPAssociation.cs @@ -26,6 +26,15 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS [Cmdlet(VerbsCommon.Set, ReservedIPConstants.AssociationCmdletNoun), OutputType(typeof(ManagementOperationContext))] public class SetAzureReservedIPAssociationCmdlet : ServiceManagementBaseCmdlet { + public SetAzureReservedIPAssociationCmdlet() + { + } + + public SetAzureReservedIPAssociationCmdlet(IClientProvider provider) + : base(provider) + { + } + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, HelpMessage = "Reserved IP Name.")] [ValidateNotNullOrEmpty] public string ReservedIPName @@ -58,7 +67,7 @@ public string Slot set; } - protected override void OnProcessRecord() + public override void ExecuteCmdlet() { ServiceManagementProfile.Initialize(); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StartAzureVM.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StartAzureVM.cs index 26d230f046a9..9fae01146150 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StartAzureVM.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StartAzureVM.cs @@ -34,7 +34,7 @@ public class StartAzureVMCommand : IaaSDeploymentManagementCmdletBase [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Virtual Machine to restart.", ParameterSetName = "Input")] [ValidateNotNullOrEmpty] [Alias("InputObject")] - public PersistentVM[] VM { get; set; } + public IPersistentVM[] VM { get; set; } protected override void ExecuteCommand() { @@ -47,7 +47,7 @@ protected override void ExecuteCommand() return; } - string[] inputRoleNames = (this.ParameterSetName == "ByName") ? this.Name : this.VM.Select(vm => vm.RoleName).ToArray(); + string[] inputRoleNames = (this.ParameterSetName == "ByName") ? this.Name : this.VM.Select(vm => vm.GetInstance().RoleName).ToArray(); // Generate a list of role names matching wildcard patterns or // the exact name specified in the -Name parameter. diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StopAzureVM.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StopAzureVM.cs index 22d043d0ffac..19f4e84bd473 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StopAzureVM.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StopAzureVM.cs @@ -36,7 +36,7 @@ public class StopAzureVMCommand : IaaSDeploymentManagementCmdletBase [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Virtual Machine to restart.", ParameterSetName = "Input")] [ValidateNotNullOrEmpty] [Alias("InputObject")] - public Model.PersistentVM[] VM { get; set; } + public Model.IPersistentVM[] VM { get; set; } [Parameter(Position = 2, HelpMessage = "Keeps the VM provisioned")] public SwitchParameter StayProvisioned { get; set; } @@ -54,7 +54,7 @@ protected override void ExecuteCommand() return; } - string[] inputRoleNames = (this.ParameterSetName == "ByName") ? this.Name : this.VM.Select(vm => vm.RoleName).ToArray(); + string[] inputRoleNames = (this.ParameterSetName == "ByName") ? this.Name : this.VM.Select(vm => vm.GetInstance().RoleName).ToArray(); // Generate a list of role names matching regular expressions or // the exact name specified in the -Name parameter. diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.Designer.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.Designer.cs index 56f8393aac32..0d0566b13cfb 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.Designer.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.Designer.cs @@ -529,6 +529,24 @@ public static string DiagnosticsStorageAccountNotFound { } } + /// + /// Looks up a localized string similar to Remove Extension. + /// + public static string DscExtensionRemovalCaption { + get { + return ResourceManager.GetString("DscExtensionRemovalCaption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0}. + /// + public static string DscExtensionRemovalConfirmation { + get { + return ResourceManager.GetString("DscExtensionRemovalConfirmation", resourceCulture); + } + } + /// /// Looks up a localized string similar to Duplicate names '{0}' found in both VM and OS images. Please delete one of them, using other method such as Portal or Invoke-RestMethod call, and try again.. /// diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.resx b/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.resx index b75e916c631f..0c7541325275 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.resx +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.resx @@ -817,4 +817,10 @@ The file needs to be a PowerShell script (.ps1 or .psm1). Remove Virtual IP from service + + Remove Extension + + + {0} + \ No newline at end of file diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config index b723d3a5e1f0..613371a84f8d 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config @@ -17,7 +17,7 @@ - + diff --git a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/ExpressRoute.psd1 b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/ExpressRoute.psd1 index cf5245b583d9..c26105df820e 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.4' +ModuleVersion = '0.9.5' # ID used to uniquely identify this module GUID = 'e5b10573-30da-456a-9319-4c0a5f8bed4a' diff --git a/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj b/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj index a954e6f4fe18..18d5d6943a8b 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj +++ b/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj @@ -99,8 +99,11 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.2.0-preview\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.3\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.2\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll False @@ -145,10 +148,12 @@ + + @@ -159,9 +164,12 @@ + + + @@ -169,6 +177,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest @@ -187,6 +198,10 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common + + {c60342b1-47d3-4a0e-8081-9b97ce60b7af} + Commands.Profile + {C1BDA476-A5CC-4394-914D-48B0EC31A710} Commands.ScenarioTests.Common @@ -203,12 +218,31 @@ {E1CA72BA-8374-45F6-904D-FD34ECDF5B6F} Commands.ServiceManagement + + {4900ec4e-8deb-4412-9108-0bc52f81d457} + Commands.Utilities + {40fee0bb-fd45-4efc-85bc-0d602a6892c4} Commands.ServiceManagement.Network + + PreserveNewest + + + Always + + + Always + + + Always + + + Always + Always @@ -236,6 +270,21 @@ Always + + Always + + + Always + + + Always + + + Always + + + Always + PreserveNewest diff --git a/src/ServiceManagement/Network/Commands.Network.Test/Multivip/MultivipTests.cs b/src/ServiceManagement/Network/Commands.Network.Test/Multivip/MultivipTests.cs new file mode 100644 index 000000000000..970b7a7d8d63 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/Multivip/MultivipTests.cs @@ -0,0 +1,161 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.Multivip +{ + using Microsoft.Azure; + using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS; + using Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Network; + using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.TestInterfaces; + using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Microsoft.WindowsAzure.Management; + using Microsoft.WindowsAzure.Management.Compute; + using Microsoft.WindowsAzure.Management.Compute.Models; + using Microsoft.WindowsAzure.Management.Network; + using Microsoft.WindowsAzure.Management.Storage; + using Moq; + using System.Threading; + using System.Threading.Tasks; + using Xunit; + using Assert = Xunit.Assert; + + public class MultivipTests + { + private Mock networkingClientMock; + private Mock computeClientMock; + private Mock managementClientMock; + private Mock storageClientMock; + private IClientProvider testClientProvider; + private MockCommandRuntime mockCommandRuntime; + public const string ServiceName = "ServiceName"; + public const string DeploymentName = "DeploymentName"; + public const string VipName = "VipName"; + + public MultivipTests() + { + this.networkingClientMock = new Mock(); + this.computeClientMock = new Mock(); + this.managementClientMock = new Mock(); + this.storageClientMock = new Mock(); + this.mockCommandRuntime = new MockCommandRuntime(); + testClientProvider = new TestClientProvider(this.managementClientMock.Object, this.computeClientMock.Object, + this.storageClientMock.Object, this.networkingClientMock.Object); + + testClientProvider = new TestClientProvider(this.managementClientMock.Object, + this.computeClientMock.Object, this.storageClientMock.Object, this.networkingClientMock.Object); + + this.computeClientMock + .Setup(c => c.Deployments.GetBySlotAsync(ServiceName, DeploymentSlot.Production, It.IsAny())) + .Returns(Task.Factory.StartNew(() => new DeploymentGetResponse() + { + Name = DeploymentName + })); + + this.networkingClientMock + .Setup(c => c.VirtualIPs.AddAsync( + ServiceName, + DeploymentName, + VipName, + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new OperationStatusResponse() + { + Status = OperationStatus.Succeeded + })); + + + this.networkingClientMock + .Setup(c => c.VirtualIPs.RemoveAsync( + ServiceName, + DeploymentName, + VipName, + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new OperationStatusResponse() + { + Status = OperationStatus.Succeeded + })); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void AddAzureVirtualIP() + { + AddAzureVirtualIP cmdlet = new AddAzureVirtualIP(testClientProvider) + { + ServiceName = ServiceName, + VirtualIPName = VipName, + CommandRuntime = mockCommandRuntime, + }; + + // Action + cmdlet.ExecuteCmdlet(); + + // Assert + computeClientMock.Verify( + c => c.Deployments.GetBySlotAsync( + ServiceName, + DeploymentSlot.Production, + It.IsAny()), + Times.Once); + + networkingClientMock.Verify( + c => c.VirtualIPs.AddAsync( + ServiceName, + DeploymentName, + VipName, + It.IsAny()), + Times.Once()); + + Assert.Equal(1, mockCommandRuntime.OutputPipeline.Count); + Assert.Equal("Succeeded", ((ManagementOperationContext)mockCommandRuntime.OutputPipeline[0]).OperationStatus); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RemoveAzureVirtualIP() + { + RemoveAzureVirtualIP cmdlet = new RemoveAzureVirtualIP(testClientProvider) + { + ServiceName = ServiceName, + VirtualIPName = VipName, + CommandRuntime = mockCommandRuntime, + }; + + // Action + cmdlet.ExecuteCmdlet(); + + // Assert + computeClientMock.Verify( + c => c.Deployments.GetBySlotAsync( + ServiceName, + DeploymentSlot.Production, + It.IsAny()), + Times.Once); + + networkingClientMock.Verify( + c => c.VirtualIPs.RemoveAsync( + ServiceName, + DeploymentName, + VipName, + It.IsAny()), + Times.Once()); + + Assert.Equal(1, mockCommandRuntime.OutputPipeline.Count); + Assert.Equal("Succeeded", ((ManagementOperationContext)mockCommandRuntime.OutputPipeline[0]).OperationStatus); + } + } +} diff --git a/src/ServiceManagement/Network/Commands.Network.Test/ReservedIP/ReservedIPTest.cs b/src/ServiceManagement/Network/Commands.Network.Test/ReservedIP/ReservedIPTest.cs new file mode 100644 index 000000000000..d70e07e762b1 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/ReservedIP/ReservedIPTest.cs @@ -0,0 +1,405 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ReservedIP +{ + using Microsoft.Azure; + using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS; + using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.TestInterfaces; + using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Microsoft.WindowsAzure.Management; + using Microsoft.WindowsAzure.Management.Compute; + using Microsoft.WindowsAzure.Management.Compute.Models; + using Microsoft.WindowsAzure.Management.Network; + using Microsoft.WindowsAzure.Management.Network.Models; + using Microsoft.WindowsAzure.Management.Storage; + using Moq; + using System.Threading; + using System.Threading.Tasks; + using Xunit; + using Assert = Xunit.Assert; + + public class ReservedIPTest + { + private MockCommandRuntime mockCommandRuntime; + + public const string ServiceName = "ServiceName"; + public const string DeploymentName = "DeploymentName"; + public const string ReservedIPName = "ReservedIPName"; + public const string ReservedIPLocation = "West US"; + public const string ReservedIPLabel = "SomeLabel"; + public const string VipName = "VipName"; + private Mock networkingClientMock; + private Mock computeClientMock; + private Mock managementClientMock; + private Mock storageClientMock; + private IClientProvider testClientProvider; + + + public ReservedIPTest() + { + this.networkingClientMock = new Mock(); + this.computeClientMock = new Mock(); + this.managementClientMock = new Mock(); + this.storageClientMock = new Mock(); + this.mockCommandRuntime = new MockCommandRuntime(); + + testClientProvider = new TestClientProvider(this.managementClientMock.Object, + this.computeClientMock.Object, this.storageClientMock.Object, this.networkingClientMock.Object); + + this.computeClientMock + .Setup(c => c.Deployments.GetBySlotAsync(ServiceName, DeploymentSlot.Production, It.IsAny())) + .Returns(Task.Factory.StartNew(() => new DeploymentGetResponse() + { + Name = DeploymentName + })); + + this.computeClientMock + .Setup( + c => + c.Deployments.GetBySlotAsync(ServiceName, DeploymentSlot.Staging, + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new DeploymentGetResponse() + { + Name = DeploymentName + })); + + // Reserve IP simple + this.networkingClientMock + .Setup(c => c.ReservedIPs.CreateAsync( + It.Is( + p => + string.Equals(p.Name, ReservedIPName) && string.IsNullOrEmpty(p.ServiceName) && + string.IsNullOrEmpty(p.VirtualIPName) && string.IsNullOrEmpty(p.DeploymentName)), + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new OperationStatusResponse() + { + Status = OperationStatus.Succeeded + })); + + // Reserve in use IP single vip + this.networkingClientMock + .Setup(c => c.ReservedIPs.CreateAsync( + It.Is( + p => + string.Equals(p.Name, ReservedIPName) && string.Equals(p.ServiceName, ServiceName) && + string.IsNullOrEmpty(p.VirtualIPName) && string.Equals(p.DeploymentName, DeploymentName)), + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new OperationStatusResponse() + { + Status = OperationStatus.Succeeded + })); + + // Reserve in use IP named vip + this.networkingClientMock + .Setup(c => c.ReservedIPs.CreateAsync( + It.Is( + p => + string.Equals(p.Name, ReservedIPName) && string.Equals(p.ServiceName, ServiceName) && + string.Equals(p.VirtualIPName, VipName) && string.Equals(p.DeploymentName, DeploymentName)), + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new OperationStatusResponse() + { + Status = OperationStatus.Succeeded + })); + + // Associate a reserved IP with a deployment + this.networkingClientMock + .Setup(c => c.ReservedIPs.AssociateAsync( + ReservedIPName, + It.Is( + p => string.Equals(p.ServiceName, ServiceName) && + string.IsNullOrEmpty(p.VirtualIPName) && string.Equals(p.DeploymentName, DeploymentName)), + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new OperationStatusResponse() + { + Status = OperationStatus.Succeeded + })); + + + // Associate a reserved IP with a vip + this.networkingClientMock + .Setup(c => c.ReservedIPs.AssociateAsync( + ReservedIPName, + It.Is( + p => string.Equals(p.ServiceName, ServiceName) && + string.Equals(p.VirtualIPName, VipName) && string.Equals(p.DeploymentName, DeploymentName)), + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new OperationStatusResponse() + { + Status = OperationStatus.Succeeded + })); + + + // Remove Azure Reserved IP + this.networkingClientMock + .Setup(c => c.ReservedIPs.DeleteAsync( + ReservedIPName, + It.IsAny())) + .Returns(Task.Factory.StartNew(() => new OperationStatusResponse() + { + Status = OperationStatus.Succeeded + })); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureReservedIPSimple() + { + NewAzureReservedIPCmdlet cmdlet = new NewAzureReservedIPCmdlet(testClientProvider) + { + ReservedIPName = ReservedIPName, + Location = "WestUS", + Label = ReservedIPLabel, + CommandRuntime = mockCommandRuntime, + }; + + cmdlet.SetParameterSet(NewAzureReservedIPCmdlet.ReserveNewIPParamSet); + + // Action + cmdlet.ExecuteCmdlet(); + + // Assert + computeClientMock.Verify( + c => c.Deployments.GetBySlotAsync( + ServiceName, + DeploymentSlot.Production, + It.IsAny()), + Times.Never); + + networkingClientMock.Verify( + c => c.ReservedIPs.CreateAsync( + It.Is( + p => + string.Equals(p.Name, ReservedIPName) && string.IsNullOrEmpty(p.ServiceName) && + string.IsNullOrEmpty(p.VirtualIPName) && string.IsNullOrEmpty(p.DeploymentName)), + It.IsAny()), + Times.Once()); + + Assert.Equal(1, mockCommandRuntime.OutputPipeline.Count); + Assert.Equal("Succeeded", ((ManagementOperationContext)mockCommandRuntime.OutputPipeline[0]).OperationStatus); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ReservedExistingIPSingleVip() + { + ReserveExistingDeploymentIPBySlot(DeploymentSlot.Production); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ReservedExistingIPSingleVipStaging() + { + ReserveExistingDeploymentIPBySlot(DeploymentSlot.Staging); + } + + private void ReserveExistingDeploymentIPBySlot(DeploymentSlot slot) + { + NewAzureReservedIPCmdlet cmdlet = new NewAzureReservedIPCmdlet(testClientProvider) + { + ReservedIPName = ReservedIPName, + Location = "WestUS", + ServiceName = ServiceName, + Label = ReservedIPLabel, + Slot = slot.ToString(), + CommandRuntime = mockCommandRuntime, + }; + + cmdlet.SetParameterSet(NewAzureReservedIPCmdlet.ReserveInUseIPParamSet); + + // Action + cmdlet.ExecuteCmdlet(); + + // Assert + computeClientMock.Verify( + c => c.Deployments.GetBySlotAsync( + ServiceName, + slot, + It.IsAny()), + Times.Once); + + networkingClientMock.Verify( + c => c.ReservedIPs.CreateAsync( + It.Is( + p => + string.Equals(p.Name, ReservedIPName) && string.Equals(p.ServiceName, ServiceName) && + string.IsNullOrEmpty(p.VirtualIPName) && string.Equals(p.DeploymentName, DeploymentName)), + It.IsAny()), + Times.Once()); + + Assert.Equal(1, mockCommandRuntime.OutputPipeline.Count); + Assert.Equal("Succeeded", ((ManagementOperationContext) mockCommandRuntime.OutputPipeline[0]).OperationStatus); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RemoveAzureReservedIP() + { + RemoveAzureReservedIPCmdlet removeCmdlet = new RemoveAzureReservedIPCmdlet(testClientProvider) + { + ReservedIPName = ReservedIPName, + Force = true, + CommandRuntime = mockCommandRuntime, + }; + + // Action + removeCmdlet.ExecuteCmdlet(); + + networkingClientMock.Verify( + c => c.ReservedIPs.DeleteAsync( + ReservedIPName, + It.IsAny()), + Times.Once()); + + Assert.Equal(1, mockCommandRuntime.OutputPipeline.Count); + Assert.Equal("Succeeded", ((ManagementOperationContext)mockCommandRuntime.OutputPipeline[0]).OperationStatus); + } + + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ReserveExistingIPNamedVip() + { + NewAzureReservedIPCmdlet cmdlet = new NewAzureReservedIPCmdlet(testClientProvider) + { + ReservedIPName = ReservedIPName, + Location = "WestUS", + ServiceName = ServiceName, + Label = ReservedIPLabel, + VirtualIPName = VipName, + CommandRuntime = mockCommandRuntime, + }; + + cmdlet.SetParameterSet(NewAzureReservedIPCmdlet.ReserveInUseIPParamSet); + + // Action + cmdlet.ExecuteCmdlet(); + + // Assert + computeClientMock.Verify( + c => c.Deployments.GetBySlotAsync( + ServiceName, + DeploymentSlot.Production, + It.IsAny()), + Times.Once); + + networkingClientMock.Verify( + c => c.ReservedIPs.CreateAsync( + It.Is( + p => + string.Equals(p.Name, ReservedIPName) && string.Equals(p.ServiceName, ServiceName) && + string.Equals(p.VirtualIPName, VipName) && string.Equals(p.DeploymentName, DeploymentName)), + It.IsAny()), + Times.Once()); + + Assert.Equal(1, mockCommandRuntime.OutputPipeline.Count); + Assert.Equal("Succeeded", ((ManagementOperationContext)mockCommandRuntime.OutputPipeline[0]).OperationStatus); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void SetAzureReservedIPAssociationSimple() + { + SetAzureReservedIPAssociationSimpleBySlot(DeploymentSlot.Production); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void SetAzureReservedIPAssociationSimpleStaging() + { + SetAzureReservedIPAssociationSimpleBySlot(DeploymentSlot.Staging); + } + + private void SetAzureReservedIPAssociationSimpleBySlot(DeploymentSlot slot) + { + SetAzureReservedIPAssociationCmdlet setassociation = new SetAzureReservedIPAssociationCmdlet(testClientProvider) + { + ReservedIPName = ReservedIPName, + ServiceName = ServiceName, + Slot = slot.ToString(), + CommandRuntime = mockCommandRuntime, + }; + + // Action + setassociation.ExecuteCmdlet(); + + // Assert + computeClientMock.Verify( + c => c.Deployments.GetBySlotAsync( + ServiceName, + slot, + It.IsAny()), + Times.Once); + + networkingClientMock.Verify( + c => c.ReservedIPs.AssociateAsync( + ReservedIPName, + It.Is( + p => + string.Equals(p.ServiceName, ServiceName) && + string.IsNullOrEmpty(p.VirtualIPName) && string.Equals(p.DeploymentName, DeploymentName)), + It.IsAny()), + Times.Once()); + Assert.Equal(1, mockCommandRuntime.OutputPipeline.Count); + Assert.Equal("Succeeded", ((ManagementOperationContext) mockCommandRuntime.OutputPipeline[0]).OperationStatus); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void SetAzureReservedIPAssociationMultivip() + { + SetAzureReservedIPAssociationCmdlet setassociation = new SetAzureReservedIPAssociationCmdlet(testClientProvider) + { + ReservedIPName = ReservedIPName, + ServiceName = ServiceName, + VirtualIPName = VipName, + CommandRuntime = mockCommandRuntime, + }; + + setassociation.ExecuteCmdlet(); + + // Assert + computeClientMock.Verify( + c => c.Deployments.GetBySlotAsync( + ServiceName, + DeploymentSlot.Production, + It.IsAny()), + Times.Once); + + networkingClientMock.Verify( + c => c.ReservedIPs.AssociateAsync( + ReservedIPName, + It.Is( + p => + string.Equals(p.ServiceName, ServiceName) && + string.Equals(p.VirtualIPName, VipName) && string.Equals(p.DeploymentName, DeploymentName)), + It.IsAny()), + Times.Once()); + + Assert.Equal(1, mockCommandRuntime.OutputPipeline.Count); + Assert.Equal("Succeeded", ((ManagementOperationContext)mockCommandRuntime.OutputPipeline[0]).OperationStatus); + } + } +} diff --git a/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVip.cs b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVip.cs new file mode 100644 index 000000000000..d62de0f1ba0b --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVip.cs @@ -0,0 +1,97 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests +{ + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Test; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Management; + using Microsoft.WindowsAzure.Management.Compute; + using Microsoft.WindowsAzure.Management.Network; + using Microsoft.WindowsAzure.Management.Storage; + using System.Collections.Generic; + using System.IO; + using System.Linq; + using Xunit; + + public class MultiVip + { + private readonly EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ExtraVipLifecycle() + { + RunPowerShellTest("Test-AdditionalVipLifecycle"); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ExtraVipMobility() + { + RunPowerShellTest("Test-AdditionalVipMobility"); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ReserveMultivipDepIP() + { + RunPowerShellTest("Test-ReserveExistingDeploymentIPMultivip"); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void SetLbEpMultivipDep() + { + RunPowerShellTest("Test-SetLBEndpoint"); + } + + #region Test setup + + protected void SetupManagementClients() + { + var client = TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + var client2 = TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + var client3 = TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + var client4 = TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + helper.SetupManagementClients(client, client2, client3, client4); + } + + protected void RunPowerShellTest(params string[] scripts) + { + using (UndoContext context = UndoContext.Current) + { + context.Start(TestUtilities.GetCallingClass(2), TestUtilities.GetCurrentMethodName(2)); + + List modules = Directory.GetFiles("ScenarioTests\\MultiVip", "*.ps1").ToList(); + modules.AddRange(Directory.GetFiles("ScenarioTests", "*.ps1")); + modules.Add("Common.ps1"); + + SetupManagementClients(); + + helper.SetupEnvironment(AzureModule.AzureServiceManagement); + helper.SetupModules(AzureModule.AzureServiceManagement, modules.ToArray()); + + helper.RunPowerShellTest(scripts); + } + } + #endregion + } +} diff --git a/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVipTests.ps1 b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVipTests.ps1 new file mode 100644 index 000000000000..a9efc529ff10 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVipTests.ps1 @@ -0,0 +1,263 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +########################################################################### IP Forwarding and VM cmdlets Scenario Tests ################################################################### + +<# +.SYNOPSIS + Adds a new Vip, adds endpoint, removes endpoint and removes vip +#> + +function Test-AdditionalVipLifecycle +{ + # Setup + + $vmname = getAssetName + $vipName = getAssetName + $serviceName = getAssetName + $storageAccountName = getAssetName + $location="West US" + $endpoint = getAssetName + + $subscription = Get-AzureSubscription -Current + New-AzureStorageAccount -StorageAccountName $storageAccountName -Location $location + Set-AzureSubscription -SubscriptionId $subscription.SubscriptionId -CurrentStorageAccountName $storageAccountName + + $image = get-azurevmimage | Where-Object {$_.OS -eq 'Windows'} | Select-Object -First 1 -ExpandProperty ImageName + + New-AzureVMConfig -ImageName $image -Name $vmname -InstanceSize "Small" | + Add-AzureProvisioningConfig -Windows -AdminUsername azuretest -Password "Pa@!!w0rd" | + New-AzureVM -ServiceName $serviceName -Location $location + + #Test + + $deployment = Get-AzureDeployment -ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs.Count "1" + + #add vip + + Add-AzureVirtualIP -ServiceName $serviceName -VirtualIPName $vipName + $deployment = Get-AzureDeployment -ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs.Count "2" + + Assert-True { [string]::IsNullOrWhiteSpace($deployment.VirtualIPs[1].Address) } + + # add endpoint + + Get-AzureVM -ServiceName $serviceName| Add-AzureEndpoint -Name $endpoint -Protocol tcp -LocalPort 1001 -PublicPort 444 -VirtualIPName $vipName | Update-AzureVM + $deployment = Get-AzureDeployment -ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs.Count "2" + + Assert-False { [string]::IsNullOrWhiteSpace($deployment.VirtualIPs[1].Address) } + + #remove Endpoint + + Get-AzureVM -ServiceName $serviceName| Remove-AzureEndpoint -Name $endpoint | Update-AzureVM + $deployment = Get-AzureDeployment -ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs.Count "2" + + Assert-True { [string]::IsNullOrWhiteSpace($deployment.VirtualIPs[1].Address) } + + #remove Vip + + Remove-AzureVirtualIP -ServiceName $serviceName -VirtualIPName $vipName -Force + $deployment = Get-AzureDeployment -ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs.Count "1" + + #cleanup + + Remove-AzureService -ServiceName $serviceName -Force -DeleteAll + #sleep so that the service & deployments are removed + #Start-Sleep -Seconds 120 + Remove-AzureStorageAccount -StorageAccountName $storageAccountName +} + +function CreateMultivipDeployment($vmname, $vipName, $serviceName, $storageAccountName, $location, $endpoint) +{ + $subscription = Get-AzureSubscription -Current + New-AzureStorageAccount -StorageAccountName $storageAccountName -Location $location + Set-AzureSubscription -SubscriptionId $subscription.SubscriptionId -CurrentStorageAccountName $storageAccountName + + $image = get-azurevmimage | Where-Object {$_.OS -eq 'Windows'} | Select-Object -First 1 -ExpandProperty ImageName + + New-AzureVMConfig -ImageName $image -Name $vmname -InstanceSize "Small" | + Add-AzureProvisioningConfig -Windows -AdminUsername azuretest -Password "Pa@!!w0rd" | + New-AzureVM -ServiceName $serviceName -Location $location + + #add vip + + Add-AzureVirtualIP -ServiceName $serviceName -VirtualIPName $vipName + $deployment = Get-AzureDeployment -ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs.Count "2" + + Assert-True { [string]::IsNullOrWhiteSpace($deployment.VirtualIPs[1].Address) } + + # add endpoint + + Get-AzureVM -ServiceName $serviceName| Add-AzureEndpoint -Name $endpoint -Protocol tcp -LocalPort 1001 -PublicPort 444 -VirtualIPName $vipName | Update-AzureVM + $deployment = Get-AzureDeployment -ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs.Count "2" + + Assert-False { [string]::IsNullOrWhiteSpace($deployment.VirtualIPs[1].Address) } +} + +<# +.SYNOPSIS + Test Multivip VipMobility +#> +function Test-AdditionalVipMobility +{ + # Setup + + $vmname = getAssetName + $vipName = getAssetName + $serviceName = getAssetName + $storageAccountName = getAssetName + $location="West US" + $endpoint = getAssetName + $reservedIPName = getAssetName + $label = "New Reserved IP" + + New-AzureReservedIP -ReservedIPName $reservedIPName -Label $label -Location $location + + CreateMultivipDeployment $vmname $vipName $serviceName $storageAccountName $location $endpoint + + #Test + + Set-AzureReservedIPAssociation -ReservedIPName $reservedIPName -ServiceName $serviceName -VirtualIPName $vipName + + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + $deployment = Get-AzureDeployment -ServiceName $serviceName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-AreEqual $reservedIP.VirtualIPName $vipName + Assert-True { $reservedIP.InUse } + Assert-AreEqual $reservedIP.ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs[1].Address $reservedIP.Address + Assert-AreEqual $deployment.VirtualIPs[1].ReservedIPName $reservedIPName + + Remove-AzureReservedIPAssociation -ReservedIPName $reservedIPName -ServiceName $serviceName -VirtualIPName $vipName -Force + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + $deployment = Get-AzureDeployment -ServiceName $serviceName + Assert-False { $reservedIP.InUse } + Assert-True { [string]::IsNullOrWhiteSpace($deployment.VirtualIPs[1].ReservedIPName) } + Assert-True { [string]::IsNullOrWhiteSpace($reservedIP.VirtualIPName) } + Assert-True { [string]::IsNullOrWhiteSpace($reservedIP.ServiceName) } + Assert-True { [string]::IsNullOrWhiteSpace($reservedIP.DeploymentName) } + + #cleanup + + Remove-AzureService -ServiceName $serviceName -Force -DeleteAll + Remove-AzureReservedIP -ReservedIPName $reservedIPName -Force + + #sleep so that the service & deployments are removed + #Start-Sleep -Seconds 120 + + Remove-AzureStorageAccount -StorageAccountName $storageAccountName +} + +<# +.SYNOPSIS + Reserve Existing deployment IP in Multivip deployment +#> +function Test-ReserveExistingDeploymentIPMultivip +{ + # Setup + + $vmname = getAssetName + $vipName = getAssetName + $serviceName = getAssetName + $storageAccountName = getAssetName + $location="West US" + $endpoint = getAssetName + $reservedIPName = getAssetName + $label = "New Reserved IP" + + CreateMultivipDeployment $vmname $vipName $serviceName $storageAccountName $location $endpoint + + #test + New-AzureReservedIP -ReservedIPName $reservedIPName -Label $label -Location $location -ServiceName $serviceName -VirtualIPName $vipName + + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + $deployment = Get-AzureDeployment -ServiceName $serviceName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-AreEqual $reservedIP.VirtualIPName $vipName + Assert-True { $reservedIP.InUse } + Assert-AreEqual $reservedIP.ServiceName $serviceName + Assert-AreEqual $deployment.VirtualIPs[1].Address $reservedIP.Address + Assert-AreEqual $deployment.VirtualIPs[1].ReservedIPName $reservedIPName + + #cleanup + + Remove-AzureService -ServiceName $serviceName -Force -DeleteAll + Remove-AzureReservedIP -ReservedIPName $reservedIPName -Force + + #sleep to ensure deployments are cleaned + #Start-Sleep -Seconds 120 + Remove-AzureStorageAccount -StorageAccountName $storageAccountName +} + +function Test-SetLBEndpoint +{ + # Setup + + $vmname = getAssetName + $vipName = getAssetName + $serviceName = getAssetName + $storageAccountName = getAssetName + $location="West US" + $endpoint = getAssetName + $lbendpoint1 = getAssetName + $lbendpoint2 = getAssetName + $secondvmname = getAssetName + $lbsetName = getAssetName + + CreateMultivipDeployment $vmname $vipName $serviceName $storageAccountName $location $endpoint + + #add the second VM + + $image = get-azurevmimage | Where-Object {$_.OS -eq 'Windows'} | Select-Object -First 1 -ExpandProperty ImageName + + New-AzureVMConfig -ImageName $image -Name $secondvmname -InstanceSize "Small" | + Add-AzureProvisioningConfig -Windows -AdminUsername azuretest -Password "Pa@!!w0rd" | + New-AzureVM -ServiceName $serviceName -Location $location + + Get-AzureVM -ServiceName $serviceName -Name $vmname | Add-AzureEndpoint -Name $lbendpoint1 -Protocol tcp -LocalPort 1100 -PublicPort 448 -VirtualIPName $vipName -LBSetName $lbsetName -ProbePort 1000 -ProbeProtocol tcp| Update-AzureVM + Get-AzureVM -ServiceName $serviceName -Name $secondvmname | Add-AzureEndpoint -Name $lbendpoint2 -Protocol tcp -LocalPort 1100 -PublicPort 448 -VirtualIPName $vipName -LBSetName $lbsetName -ProbePort 1000 -ProbeProtocol tcp| Update-AzureVM + $deployment = Get-AzureDeployment -ServiceName $serviceName + $updatedVip = $deployment.VirtualIPs[0].Name + + #set LB endpoint + Set-AzureLoadBalancedEndpoint -LBSetName $lbSetName -VirtualIPName $updatedVip -ServiceName $serviceName + + #get endpoint + $updatedEP1 = Get-AzureVM -ServiceName $serviceName -Name $vmname | Get-AzureEndpoint -Name $lbendpoint1 + Assert-AreEqual $updatedEP1.VirtualIPName $updatedVip + + $updatedEP2 = Get-AzureVM -ServiceName $serviceName -Name $secondvmname | Get-AzureEndpoint -Name $lbendpoint2 + Assert-AreEqual $updatedEP1.VirtualIPName $updatedVip + + #cleanup + Remove-AzureService -ServiceName $serviceName -Force -DeleteAll + + #Start-Sleep -Seconds 120 + Remove-AzureStorageAccount -StorageAccountName $storageAccountName +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIP.cs b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIP.cs new file mode 100644 index 000000000000..a22c9c3cd10c --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIP.cs @@ -0,0 +1,104 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Management.Compute; +using Microsoft.WindowsAzure.Management.Storage; + +namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests +{ + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Test; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Management; + using Microsoft.WindowsAzure.Management.Network; + using System.Collections.Generic; + using System.IO; + using System.Linq; + using Xunit; + + public class ReservedIP + { + private readonly EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void AzureReservedIPSimpleOps() + { + RunPowerShellTest("Test-AzureReservedIPSimpleOperations"); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void CreateVMWithReservedIP() + { + RunPowerShellTest("Test-CreateVMWithReservedIP"); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void SetReservedIPAssocSimple() + { + RunPowerShellTest("Test-SetAzureReservedIPAssociationSingleVip"); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RemoveReservedIPAssocSimple() + { + RunPowerShellTest("Test-RemoveAzureReservedIPAssociationSingleVip"); + } + + [Fact] + [Trait(Category.Service, Category.Network)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ReserveExistingDepIP() + { + RunPowerShellTest("Test-ReserveExistingDeploymentIP"); + } + + #region Test setup + protected void SetupManagementClients() + { + var client = TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + var client2 = TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + var client3 = TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + var client4 = TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + helper.SetupManagementClients(client, client2, client3, client4); + } + + protected void RunPowerShellTest(params string[] scripts) + { + using (UndoContext context = UndoContext.Current) + { + context.Start(TestUtilities.GetCallingClass(2), TestUtilities.GetCurrentMethodName(2)); + + List modules = Directory.GetFiles("ScenarioTests\\ReservedIPs", "*.ps1").ToList(); + modules.AddRange(Directory.GetFiles("ScenarioTests", "*.ps1")); + modules.Add("Common.ps1"); + + SetupManagementClients(); + + helper.SetupEnvironment(AzureModule.AzureServiceManagement); + helper.SetupModules(AzureModule.AzureServiceManagement, modules.ToArray()); + + helper.RunPowerShellTest(scripts); + } + } + #endregion + } +} diff --git a/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIPTests.ps1 b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIPTests.ps1 new file mode 100644 index 000000000000..1d659dce5819 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIPTests.ps1 @@ -0,0 +1,247 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +########################################################################### IP Forwarding and VM cmdlets Scenario Tests ################################################################### + +<# +.SYNOPSIS +Creates a new Azure reserved IP and deletes it +#> + +function Test-AzureReservedIPSimpleOperations +{ + # Setup + $name = getAssetName + $label = "New Reserved IP" + $location = "West US" + + # Test Create Reserved IP + New-AzureReservedIP -ReservedIPName $name -Label $label -Location $location + $reservedIP = Get-AzureReservedIP -ReservedIPName $name + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + + #Test Remove reserved IP + $removeReservedIP = Remove-AzureReservedIP -ReservedIPName $name -Force + Assert-AreEqual $removeReservedIP.OperationStatus "Succeeded" +} + +<# +.SYNOPSIS + Brings up a new Azure VM with a Reserved IP +#> + +function Test-CreateVMWithReservedIP +{ + # Setup + + $vmname = getAssetName + $serviceName = getAssetName + $storageAccountName = getAssetName + $reservedIPName = getAssetName + $label = "New Reserved IP" + $location="West US" + + New-AzureReservedIP -ReservedIPName $reservedIPName -Label $label -Location $location + $subscription = Get-AzureSubscription -Current + New-AzureStorageAccount -StorageAccountName $storageAccountName -Location $location + Set-AzureSubscription -SubscriptionId $subscription.SubscriptionId -CurrentStorageAccountName $storageAccountName + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + + $image = get-azurevmimage | Where-Object {$_.OS -eq 'Windows'} | Select-Object -First 1 -ExpandProperty ImageName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-False { $reservedIP.InUse } + + # Test + New-AzureVMConfig -ImageName $image -Name $vmname -InstanceSize "Small" | + Add-AzureProvisioningConfig -Windows -AdminUsername azuretest -Password "Pa@!!w0rd" | + New-AzureVM -ServiceName $serviceName -Location $location -ReservedIPName $reservedIPName + + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-True { $reservedIP.InUse } + Assert-AreEqual $reservedIP.ServiceName $serviceName + + Remove-AzureService -ServiceName $serviceName -Force -DeleteAll + Remove-AzureReservedIP -ReservedIPName $reservedIPName -Force + + #Start-Sleep -Seconds 120 + Remove-AzureStorageAccount -StorageAccountName $storageAccountName +} + +<# +.SYNOPSIS + Reserve existing deployment IP +#> + +function Test-ReserveExistingDeploymentIP +{ + # Setup + + $vmname = getAssetName + $serviceName = getAssetName + $storageAccountName = getAssetName + $reservedIPName = getAssetName + $label = "New Reserved IP" + $location="West US" + + $subscription = Get-AzureSubscription -Current + New-AzureStorageAccount -StorageAccountName $storageAccountName -Location $location + Set-AzureSubscription -SubscriptionId $subscription.SubscriptionId -CurrentStorageAccountName $storageAccountName + $image = get-azurevmimage | Where-Object {$_.OS -eq 'Windows'} | Select-Object -First 1 -ExpandProperty ImageName + + # Test + New-AzureVMConfig -ImageName $image -Name $vmname -InstanceSize "Small" | + Add-AzureProvisioningConfig -Windows -AdminUsername azuretest -Password "Pa@!!w0rd" | + New-AzureVM -ServiceName $serviceName -Location $location + New-AzureReservedIP -ReservedIPName $reservedIPName -ServiceName $serviceName -Location $location -Label $label + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-True { $reservedIP.InUse } + Assert-AreEqual $reservedIP.ServiceName $serviceName + + Remove-AzureService -ServiceName $serviceName -Force -DeleteAll + Remove-AzureReservedIP -ReservedIPName $reservedIPName -Force + + #Start-Sleep -Seconds 120 + Remove-AzureStorageAccount -StorageAccountName $storageAccountName +} + +<# +.SYNOPSIS + Create a VM and associate a reserved IP with it +#> +function Test-SetAzureReservedIPAssociationSingleVip +{ + # Setup + + $vmname = getAssetName + $serviceName = getAssetName + $storageAccountName = getAssetName + $reservedIPName = getAssetName + $label = "New Reserved IP" + $location="West US" + + New-AzureReservedIP -ReservedIPName $reservedIPName -Label $label -Location $location + $subscription = Get-AzureSubscription -Current + New-AzureStorageAccount -StorageAccountName $storageAccountName -Location $location + Set-AzureSubscription -SubscriptionId $subscription.SubscriptionId -CurrentStorageAccountName $storageAccountName + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + + $image = get-azurevmimage | Where-Object {$_.OS -eq 'Windows'} | Select-Object -First 1 -ExpandProperty ImageName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-False { $reservedIP.InUse } + + # Test + New-AzureVMConfig -ImageName $image -Name $vmname -InstanceSize "Small" | + Add-AzureProvisioningConfig -Windows -AdminUsername azuretest -Password "Pa@!!w0rd" | + New-AzureVM -ServiceName $serviceName -Location $location + + Set-AzureReservedIPAssociation -ReservedIPName $reservedIPName -ServiceName $serviceName + + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-True { $reservedIP.InUse } + Assert-AreEqual $reservedIP.ServiceName $serviceName + + Remove-AzureService -ServiceName $serviceName -Force -DeleteAll + Remove-AzureReservedIP -ReservedIPName $reservedIPName -Force + + #Start-Sleep -Seconds 120 + Remove-AzureStorageAccount -StorageAccountName $storageAccountName +} + +<# +.SYNOPSIS + Create a VM with reserved IP and disassociate the reserved IP +#> + +function Test-RemoveAzureReservedIPAssociationSingleVip +{ + # Setup + + $vmname = getAssetName + $serviceName = getAssetName + $storageAccountName = getAssetName + $reservedIPName = getAssetName + $label = "New Reserved IP" + $location="West US" + + New-AzureReservedIP -ReservedIPName $reservedIPName -Label $label -Location $location + $subscription = Get-AzureSubscription -Current + New-AzureStorageAccount -StorageAccountName $storageAccountName -Location $location + Set-AzureSubscription -SubscriptionId $subscription.SubscriptionId -CurrentStorageAccountName $storageAccountName + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + + $image = get-azurevmimage | Where-Object {$_.OS -eq 'Windows'} | Select-Object -First 1 -ExpandProperty ImageName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-False { $reservedIP.InUse } + + # Test + New-AzureVMConfig -ImageName $image -Name $vmname -InstanceSize "Small" | + Add-AzureProvisioningConfig -Windows -AdminUsername azuretest -Password "Pa@!!w0rd" | + New-AzureVM -ServiceName $serviceName -Location $location -ReservedIPName $reservedIPName + + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-True { $reservedIP.InUse } + Assert-AreEqual $reservedIP.ServiceName $serviceName + + Remove-AzureReservedIPAssociation -ReservedIPName $reservedIPName -ServiceName $serviceName -Force + + $reservedIP = Get-AzureReservedIP -ReservedIPName $reservedIPName + # Assert + Assert-NotNull($reservedIP) + Assert-AreEqual $reservedIP.Location $location + Assert-AreEqual $reservedIP.Label $label + Assert-False { $reservedIP.InUse } + + Remove-AzureService -ServiceName $serviceName -Force -DeleteAll + Remove-AzureReservedIP -ReservedIPName $reservedIPName -Force + + #sleep to ensure deployments are cleaned + #Start-Sleep -Seconds 120 + Remove-AzureStorageAccount -StorageAccountName $storageAccountName +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ExtraVipLifecycle.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ExtraVipLifecycle.json new file mode 100644 index 000000000000..1e9cde36e024 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ExtraVipLifecycle.json @@ -0,0 +1,2869 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "cbb1db29b7c0ba8780c56f19459006fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/cbb1db29b7c0ba8780c56f19459006fe", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2NiYjFkYjI5YjdjMGJhODc4MGM1NmYxOTQ1OTAwNmZl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n cbb1db29-b7c0-ba87-80c5-6f19459006fe\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f91c840b8897b268b3f722cf3266dcbb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk9157\r\n \r\n \r\n West US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "344" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "5a5ff578eb23b3c9a32df068ef06fe12" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:12 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/storage/onesdk9157" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5a5ff578eb23b3c9a32df068ef06fe12", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVhNWZmNTc4ZWIyM2IzYzlhMzJkZjA2OGVmMDZmZTEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 5a5ff578-eb23-b3c9-a32d-f068ef06fe12\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "8b73d0f66fe3b421a2562b5033827383" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5a5ff578eb23b3c9a32df068ef06fe12", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVhNWZmNTc4ZWIyM2IzYzlhMzJkZjA2OGVmMDZmZTEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 5a5ff578-eb23-b3c9-a32d-f068ef06fe12\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9b2966d07498b1a48754c56c7508dce4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:42 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678786" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7b5b74f29debb541a43040282db0acd3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/7b5b74f29debb541a43040282db0acd3", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzdiNWI3NGYyOWRlYmI1NDFhNDMwNDAyODJkYjBhY2Qz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 7b5b74f2-9deb-b541-a430-40282db0acd3\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "8aaf88e291c7ba7db5f1d96bd364e723" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:46 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "99f5648ffcc8b5bc97f6ff70703fb526" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7329b6db5618b1318e5a73c48c72df36" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b4b195a0bb45b5049ee461666f104a66" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:53 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3b3441316a05b542a0090a0c49242d47" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:53 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:30:11Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:30:10Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4208" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "02f1bf5f3482b7daba18f35bff7ba2bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:30:29 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:30:11Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:30:10Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4208" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad23ae187a5fb9c6b2daabeee62c07d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:30:32 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:31:04Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:31:04Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n \r\n onesdk5488\r\n true\r\n \r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4241" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "55f5660532afb5a6873248770f86fe39" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:04 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:31:04Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:31:04Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n \r\n onesdk5488\r\n true\r\n \r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4241" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1fd765325a0fb609ab471eae61face1e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:05 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:31:04Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:31:04Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n \r\n onesdk5488\r\n true\r\n \r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4241" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d242a670bd9b8ea90d32a633fb1e464" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk9820\r\n 23.99.57.203\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:31:52Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk9820\r\n 444\r\n tcp\r\n 23.99.57.203\r\n false\r\n onesdk5488\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:31:52Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n \r\n
23.99.57.203
\r\n onesdk5488\r\n true\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4840" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d22c47a4867b7e8a32991a3e006e821" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk9820\r\n 23.99.57.203\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:31:52Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk9820\r\n 444\r\n tcp\r\n 23.99.57.203\r\n false\r\n onesdk5488\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:31:52Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n \r\n
23.99.57.203
\r\n onesdk5488\r\n true\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4840" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c6530abd5a5db9e0978c372398ef0850" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk9820\r\n 23.99.57.203\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:31:52Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk9820\r\n 444\r\n tcp\r\n 23.99.57.203\r\n false\r\n onesdk5488\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:31:52Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n \r\n
23.99.57.203
\r\n onesdk5488\r\n true\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4840" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d980fbb3b4fb168a22e07d20105115b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:33:26Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:33:26Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n \r\n onesdk5488\r\n true\r\n \r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4499" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f89ee985169eb2638d9a4af0313c4af5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:33:48 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:33:26Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:33:26Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n \r\n onesdk5488\r\n true\r\n \r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4499" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c88eec9d792b60485040b5bf364c185" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:33:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:34:04Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:34:04Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4416" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85bf7e53ea12b53c9b7ca1b8e573ac7e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:22 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:34:04Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:34:04Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4416" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b828732468d3b9c58e8aec5a13c4198e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:23 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk9157", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrOTE1Nw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk9157\r\n onesdk9157\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk9157.blob.core.windows.net/\r\n https://onesdk9157.queue.core.windows.net/\r\n https://onesdk9157.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T05:28:12Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "0f39da0c7444b6dfbea1e3182682c420" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk9157/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrOTE1Ny9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk9157\r\n \r\n 6Y5/B21uxcEmijyay6qarWuhiPxu0y4X12UoR90kAj+6SLn5j+5hBbpi25jwnY6HySTP9zfx0DAGbtD0WFL16w==\r\n BCOIgXWBG9H59BRGlx/YDcQC2gc4CuQFMH7dX9dsLOCRRwL/axzEIXA0cPiQiBPc5IUGFV4jmsQLLLbsUZ+moQ==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "31435af2c008b123b14dad09d4d6b756" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk1020\r\n \r\n Implicitly created hosted service2015-07-10 05:28\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "283" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "13ccb4bd788bbef69b39616e23864fd7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:55 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/compute/onesdk1020" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deployments", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk1020\r\n Production\r\n \r\n \r\n \r\n onesdk1844\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk1844\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n \r\n \r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2515" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8d2f1d31a40eb4b994043bc97039f140" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8d2f1d31a40eb4b994043bc97039f140", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhkMmYxZDMxYTQwZWI0Yjk5NDA0M2JjOTcwMzlmMTQw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 8d2f1d31-a40e-b4b9-9404-3bc97039f140\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7f0dc6d91fb2ba3a97e70500b8736ef5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8d2f1d31a40eb4b994043bc97039f140", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhkMmYxZDMxYTQwZWI0Yjk5NDA0M2JjOTcwMzlmMTQw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 8d2f1d31-a40e-b4b9-9404-3bc97039f140\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bcf9c6abf312b787a73cc5b6abff856c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:29:28 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8d2f1d31a40eb4b994043bc97039f140", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhkMmYxZDMxYTQwZWI0Yjk5NDA0M2JjOTcwMzlmMTQw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 8d2f1d31-a40e-b4b9-9404-3bc97039f140\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8f2a7e05efebb7a2932985d894389899" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:29:59 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8d2f1d31a40eb4b994043bc97039f140", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhkMmYxZDMxYTQwZWI0Yjk5NDA0M2JjOTcwMzlmMTQw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 8d2f1d31-a40e-b4b9-9404-3bc97039f140\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0343e95f1594b9818065cb8fede62ee5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:30:28 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/02f1bf5f3482b7daba18f35bff7ba2bd", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzAyZjFiZjVmMzQ4MmI3ZGFiYTE4ZjM1YmZmN2JhMmJk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 02f1bf5f-3482-b7da-ba18-f35bff7ba2bd\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "56adc5ff5755be25a45a4f42773d57ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:30:30 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deployments/onesdk1020/onesdk5488", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzL29uZXNkazEwMjAvb25lc2RrNTQ4OA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "534a15e18132bb2c88ccab9f471d552e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:30:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/534a15e18132bb2c88ccab9f471d552e", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzUzNGExNWUxODEzMmJiMmM4OGNjYWI5ZjQ3MWQ1NTJl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 534a15e1-8132-bb2c-88cc-ab9f471d552e\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "71f033308445b47f80fb428036d74d13" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:30:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/534a15e18132bb2c88ccab9f471d552e", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzUzNGExNWUxODEzMmJiMmM4OGNjYWI5ZjQ3MWQ1NTJl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 534a15e1-8132-bb2c-88cc-ab9f471d552e\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e376c45a1388bbde9beb4fd7d5c7ee30" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/55f5660532afb5a6873248770f86fe39", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzU1ZjU2NjA1MzJhZmI1YTY4NzMyNDg3NzBmODZmZTM5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 55f56605-32af-b5a6-8732-48770f86fe39\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "82ecac93cb21b5308acf11789c42285f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:04 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/1fd765325a0fb609ab471eae61face1e", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzFmZDc2NTMyNWEwZmI2MDlhYjQ3MWVhZTYxZmFjZTFl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 1fd76532-5a0f-b609-ab47-1eae61face1e\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "61a4febac41eb23997d217c0824c9d10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:06 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0d242a670bd9b8ea90d32a633fb1e464", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBkMjQyYTY3MGJkOWI4ZWE5MGQzMmE2MzNmYjFlNDY0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 0d242a67-0bd9-b8ea-90d3-2a633fb1e464\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "7990d812fc7cbd33a5bc9a62cd1f2512" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deployments/onesdk1020/roles/onesdk1844", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzL29uZXNkazEwMjAvcm9sZXMvb25lc2RrMTg0NA==", + "RequestMethod": "PUT", + "RequestBody": "\r\n onesdk1844\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n false\r\n \r\n \r\n 1001\r\n onesdk9820\r\n 444\r\n tcp\r\n onesdk5488\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n \r\n Small\r\n true\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2151" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4e59332c9ee0b344a1308ec0aa5b10e1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deployments/onesdk1020/roles/onesdk1844", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzL29uZXNkazEwMjAvcm9sZXMvb25lc2RrMTg0NA==", + "RequestMethod": "PUT", + "RequestBody": "\r\n onesdk1844\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n \r\n Small\r\n true\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2121" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e7830237b18b7c9b700f942c9d06899" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4e59332c9ee0b344a1308ec0aa5b10e1", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRlNTkzMzJjOWVlMGIzNDRhMTMwOGVjMGFhNWIxMGUx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 4e59332c-9ee0-b344-a130-8ec0aa5b10e1\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a10469e67f3db63189726653bf4b6223" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4e59332c9ee0b344a1308ec0aa5b10e1", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRlNTkzMzJjOWVlMGIzNDRhMTMwOGVjMGFhNWIxMGUx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 4e59332c-9ee0-b344-a130-8ec0aa5b10e1\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "422324df1908ba408a9c6343ae149d54" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:31:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4e59332c9ee0b344a1308ec0aa5b10e1", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRlNTkzMzJjOWVlMGIzNDRhMTMwOGVjMGFhNWIxMGUx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 4e59332c-9ee0-b344-a130-8ec0aa5b10e1\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4a27a7c200d0b5e196010a23f044fcd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/7d22c47a4867b7e8a32991a3e006e821", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzdkMjJjNDdhNDg2N2I3ZThhMzI5OTFhM2UwMDZlODIx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 7d22c47a-4867-b7e8-a329-91a3e006e821\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4d373392311dbfd7be2ba8d89230bec6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/c6530abd5a5db9e0978c372398ef0850", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2M2NTMwYWJkNWE1ZGI5ZTA5NzhjMzcyMzk4ZWYwODUw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n c6530abd-5a5d-b9e0-978c-372398ef0850\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9ba9f5d91b20b11e9ea81a65b2bc6d2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9d980fbb3b4fb168a22e07d20105115b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzlkOTgwZmJiM2I0ZmIxNjhhMjJlMDdkMjAxMDUxMTVi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 9d980fbb-3b4f-b168-a22e-07d20105115b\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4b90f72b1d3eb776b8557e9a37c13821" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0e7830237b18b7c9b700f942c9d06899", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBlNzgzMDIzN2IxOGI3YzliNzAwZjk0MmM5ZDA2ODk5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 0e783023-7b18-b7c9-b700-f942c9d06899\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "961c5230c2eabfd18c391a108b1f7294" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0e7830237b18b7c9b700f942c9d06899", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBlNzgzMDIzN2IxOGI3YzliNzAwZjk0MmM5ZDA2ODk5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 0e783023-7b18-b7c9-b700-f942c9d06899\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b42c6220d3babf339646fda68267106c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:32:47 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0e7830237b18b7c9b700f942c9d06899", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBlNzgzMDIzN2IxOGI3YzliNzAwZjk0MmM5ZDA2ODk5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 0e783023-7b18-b7c9-b700-f942c9d06899\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1db8d6924db9b822a3115d99b898bf3f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:33:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0e7830237b18b7c9b700f942c9d06899", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBlNzgzMDIzN2IxOGI3YzliNzAwZjk0MmM5ZDA2ODk5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 0e783023-7b18-b7c9-b700-f942c9d06899\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7b5b1dbaf12b93695d1fa99106d74f8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:33:48 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/f89ee985169eb2638d9a4af0313c4af5", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Y4OWVlOTg1MTY5ZWIyNjM4ZDlhNGFmMDMxM2M0YWY1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n f89ee985-169e-b263-8d9a-4af0313c4af5\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "cd7ec757f4beb34ca3c9f0e670f93920" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:33:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deployments/onesdk1020/virtualIPs/onesdk5488", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzL29uZXNkazEwMjAvdmlydHVhbElQcy9vbmVzZGs1NDg4", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "90d533d23297b96583a29a32378699a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:33:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/90d533d23297b96583a29a32378699a8", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkwZDUzM2QyMzI5N2I5NjU4M2EyOWEzMjM3ODY5OWE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 90d533d2-3297-b965-83a2-9a32378699a8\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "840bd0093ae0b1f4b26af6c3cb28d51c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:33:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/90d533d23297b96583a29a32378699a8", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkwZDUzM2QyMzI5N2I5NjU4M2EyOWEzMjM3ODY5OWE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 90d533d2-3297-b965-83a2-9a32378699a8\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7577ba6a4411ba7db494d7b276061e8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/85bf7e53ea12b53c9b7ca1b8e573ac7e", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzg1YmY3ZTUzZWExMmI1M2M5YjdjYTFiOGU1NzNhYzdl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 85bf7e53-ea12-b53c-9b7c-a1b8e573ac7e\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "c903359f6e9ab579b289c89cdd3f2d7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:22 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020\r\n onesdk1020\r\n \r\n Implicitly created hosted service2015-07-10 05:28\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:28:55Z\r\n 2015-07-10T05:29:37Z\r\n \r\n \r\n ResourceGroup\r\n onesdk1020\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:34:04Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:34:04Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5271" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "17f7cf1eec5dbe4185591998faaa86cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:23 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020\r\n onesdk1020\r\n \r\n Implicitly created hosted service2015-07-10 05:28\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:28:55Z\r\n 2015-07-10T05:29:37Z\r\n \r\n \r\n ResourceGroup\r\n onesdk1020\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk1020\r\n Production\r\n 475007aa72fc4bc78eb327c4744a662b\r\n Running\r\n \r\n http://onesdk1020.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxODQ0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1844\r\n onesdk1844\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.115.248.120\r\n \r\n \r\n PowerShell\r\n 138.91.197.185\r\n 54121\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.197.185\r\n 51784\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:34:04Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1844.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1844\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 54121\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 51784\r\n tcp\r\n 138.91.197.185\r\n false\r\n onesdk1020ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk1020-onesdk1844-0-201507100529080028\r\n https://onesdk9157.blob.core.windows.net/vhds/onesdk1020-onesdk1844-2015-7-9-22-28-55-838-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:28:58Z\r\n 2015-07-10T05:34:04Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.197.185
\r\n true\r\n onesdk1020ContractContract\r\n
\r\n
\r\n onesdk1020.d8.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5271" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a56224b53850b0d08d88c082775dc5ae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:23 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020\r\n onesdk1020\r\n \r\n Implicitly created hosted service2015-07-10 05:28\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:28:55Z\r\n 2015-07-10T05:29:37Z\r\n \r\n \r\n ResourceGroup\r\n onesdk1020\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n 3A3D639D12D7CE1BDDA777F6BAC43F62B60A164D\r\n", + "ResponseHeaders": { + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c14ef6f7294bba1bfe246f1740687b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020/deployments/onesdk1020?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwL2RlcGxveW1lbnRzL29uZXNkazEwMjA/Y29tcD1tZWRpYQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8de80a4d2ecb9998d3efcb506b9117b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:24 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/f8de80a4d2ecb9998d3efcb506b9117b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Y4ZGU4MGE0ZDJlY2I5OTk4ZDNlZmNiNTA2YjkxMTdi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n f8de80a4-d2ec-b999-8d3e-fcb506b9117b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a029389387aeb331a7f4384c6f688f48" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:24 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/f8de80a4d2ecb9998d3efcb506b9117b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Y4ZGU4MGE0ZDJlY2I5OTk4ZDNlZmNiNTA2YjkxMTdi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n f8de80a4-d2ec-b999-8d3e-fcb506b9117b\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d2507dd5466ab57fa272345c6adbcd10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk1020?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxMDIwP2NvbXA9bWVkaWE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "17705c22c30eb86ebe93a2a91ec226dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:56 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/17705c22c30eb86ebe93a2a91ec226dd", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzE3NzA1YzIyYzMwZWI4NmViZTkzYTJhOTFlYzIyNmRk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 17705c22-c30e-b86e-be93-a2a91ec226dd\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc781a54deebbecaacb55c20e752e4f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:34:57 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/17705c22c30eb86ebe93a2a91ec226dd", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzE3NzA1YzIyYzMwZWI4NmViZTkzYTJhOTFlYzIyNmRk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 17705c22-c30e-b86e-be93-a2a91ec226dd\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3bf05a9f2c0eb6deb9510a7fad93f273" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:35:27 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk9157", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrOTE1Nw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "ab824792dc63b63ea786b528e046efa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:37:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/ab824792dc63b63ea786b528e046efa7", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2FiODI0NzkyZGM2M2I2M2VhNzg2YjUyOGUwNDZlZmE3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n ab824792-dc63-b63e-a786-b528e046efa7\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "7195446b57eeb27f8c9ef3e84b5764d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:37:32 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AdditionalVipLifecycle": [ + "onesdk1844", + "onesdk5488", + "onesdk1020", + "onesdk9157", + "onesdk9820" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ExtraVipMobility.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ExtraVipMobility.json new file mode 100644 index 000000000000..f20d49061baa --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ExtraVipMobility.json @@ -0,0 +1,3099 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "304f84387194ba1398cef6ef717ad87c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:07:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/304f84387194ba1398cef6ef717ad87c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMwNGY4NDM4NzE5NGJhMTM5OGNlZjZlZjcxN2FkODdj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 304f8438-7194-ba13-98ce-f6ef717ad87c\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4973bedcb9f0bd989fb88026dcc37d61" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:07:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2777\r\n \r\n \r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "207" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "659985044931b7168b5f490ecd44e2df" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:07:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/659985044931b7168b5f490ecd44e2df", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzY1OTk4NTA0NDkzMWI3MTY4YjVmNDkwZWNkNDRlMmRm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 65998504-4931-b716-8b5f-490ecd44e2df\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3dc133f2087bf86a0b21b9216aaec56" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:07:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/659985044931b7168b5f490ecd44e2df", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzY1OTk4NTA0NDkzMWI3MTY4YjVmNDkwZWNkNDRlMmRm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 65998504-4931-b716-8b5f-490ecd44e2df\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2998dfbf7a94b5dd9dd1fb5abdde58de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:07:32 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk5078\r\n \r\n \r\n West US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "344" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "23018c678bc5b5beae215154bbca0212" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:07:34 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/storage/onesdk5078" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/23018c678bc5b5beae215154bbca0212", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzIzMDE4YzY3OGJjNWI1YmVhZTIxNTE1NGJiY2EwMjEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 23018c67-8bc5-b5be-ae21-5154bbca0212\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "49733b297772b7569c3cf168dffde141" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:07:34 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/23018c678bc5b5beae215154bbca0212", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzIzMDE4YzY3OGJjNWI1YmVhZTIxNTE1NGJiY2EwMjEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 23018c67-8bc5-b5be-ae21-5154bbca0212\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "a38574231024b950bd1d64dc576af63b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:05 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678786" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bc7ed43c0d36bc6eb3974abebe4ce9ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/bc7ed43c0d36bc6eb3974abebe4ce9ad", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2JjN2VkNDNjMGQzNmJjNmViMzk3NGFiZWJlNGNlOWFk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n bc7ed43c-0d36-bc6e-b397-4abebe4ce9ad\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4251514108e1b6b59a3ffbcb0ea4820e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dfbdaffa6be4b2f3b004fd153bad29c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "29a614762f25b37893c744630bec04a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "416d8f1ccf84b83e82a5ed4fe5a6f906" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "07e9678dfd1dbffd81e9bd285387ca7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:09:15Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:09:15Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4206" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0466b3496349b33da94e87349d2246c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:20 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:09:53Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:09:53Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n onesdk7724\r\n true\r\n \r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4233" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0ed22c7c75e1be2885e6fb89203fbd59" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:53 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:09:53Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:09:53Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n onesdk7724\r\n true\r\n \r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4233" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b11323c3db66b29da89088d28833d43f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:09:53Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:09:53Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n onesdk7724\r\n true\r\n \r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4233" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d09bc8a52f0cbb28ad6ce373fa627af3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk1686\r\n 23.99.5.134\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:10:22Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n 23.99.5.134\r\n false\r\n onesdk7724\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:10:22Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n
23.99.5.134
\r\n onesdk7724\r\n true\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4835" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4eb6b469c1b5b310ae9ac8009b5f04b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:10:28 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk1686\r\n 23.99.5.134\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:10:22Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n 23.99.5.134\r\n false\r\n onesdk7724\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:10:22Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n
23.99.5.134
\r\n onesdk7724\r\n true\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4835" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5814e3d8f599bfb0bb352af01a294e08" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:10:30 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk1686\r\n 138.91.246.206\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:11:34Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n 138.91.246.206\r\n false\r\n onesdk7724\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:11:33Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n
138.91.246.206
\r\n onesdk7724\r\n true\r\n onesdk2777\r\n true\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5011" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e6617dd0966db040bc498ffa0ad4f03b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:33 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk1686\r\n 138.91.246.206\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:11:34Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n 138.91.246.206\r\n false\r\n onesdk7724\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:11:33Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n
138.91.246.206
\r\n onesdk7724\r\n true\r\n onesdk2777\r\n true\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5011" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "804b1c2ad8e1b8adb9b594e04c6c740e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:34 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk1686\r\n 104.42.140.147\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk6505\r\n 7E2F38806148282F0A22AB09B05DF0A57512B0E8\r\n \r\n 1.0\r\n 2015-07-10T05:13:40Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n 104.42.140.147\r\n false\r\n onesdk7724\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:13:39Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n
104.42.140.147
\r\n onesdk7724\r\n true\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4979" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8cbb37bc823cb328b845d29b6512c496" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk1686\r\n 104.42.140.147\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk6505\r\n 7E2F38806148282F0A22AB09B05DF0A57512B0E8\r\n \r\n 1.0\r\n 2015-07-10T05:13:40Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n 104.42.140.147\r\n false\r\n onesdk7724\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:13:39Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n
104.42.140.147
\r\n onesdk7724\r\n true\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4979" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "327e7a4c5533bdbda59c236a8f58725c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk5078", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNTA3OA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk5078\r\n onesdk5078\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk5078.blob.core.windows.net/\r\n https://onesdk5078.queue.core.windows.net/\r\n https://onesdk5078.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T05:07:34Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9dc3d36322b4b5f89eb554ad9552d568" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk5078/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNTA3OC9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk5078\r\n \r\n yHMkIJvtTR+RgHhtK7ip0WnZ7nItZ+wfrvjEZIR0QLUlSixY8Ea+qQ+/LP8zStO+mMHx7dmB+MANVMQ4tYeM4g==\r\n aoohDRJIKXfRsRxsF4vX4XRNFG5mDRoQkce050djBk5qxxOFWq9DOHWsd+F6i04jeEcnnNN0Ghz3osxdLEd61w==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9bdc4c8f6dc7bfdfbd14949b76726e1b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk3244\r\n \r\n Implicitly created hosted service2015-07-10 05:08\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "283" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "517ce0762dc9b8c183896bad0b45ba31" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:17 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/compute/onesdk3244" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deployments", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk3244\r\n Production\r\n \r\n \r\n \r\n onesdk6505\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk6505\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n \r\n \r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2514" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44e67d136e51bdbea862b0019db17a58" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/44e67d136e51bdbea862b0019db17a58", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzQ0ZTY3ZDEzNmU1MWJkYmVhODYyYjAwMTlkYjE3YTU4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 44e67d13-6e51-bdbe-a862-b0019db17a58\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "11cedc49e115b8c191daebafb001c9b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/44e67d136e51bdbea862b0019db17a58", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzQ0ZTY3ZDEzNmU1MWJkYmVhODYyYjAwMTlkYjE3YTU4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 44e67d13-6e51-bdbe-a862-b0019db17a58\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd56f2e5edebb3c1a871d92181b5ed16" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:08:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/44e67d136e51bdbea862b0019db17a58", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzQ0ZTY3ZDEzNmU1MWJkYmVhODYyYjAwMTlkYjE3YTU4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 44e67d13-6e51-bdbe-a862-b0019db17a58\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46dd499b32c7b32f8ff7a51f303c3073" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:20 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deployments/onesdk3244/onesdk7724", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzL29uZXNkazMyNDQvb25lc2RrNzcyNA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5ed753883933bad387762f2e509f808a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5ed753883933bad387762f2e509f808a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVlZDc1Mzg4MzkzM2JhZDM4Nzc2MmYyZTUwOWY4MDhh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 5ed75388-3933-bad3-8776-2f2e509f808a\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1df8f427949eb7ffb5a0d19f5d6024d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5ed753883933bad387762f2e509f808a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVlZDc1Mzg4MzkzM2JhZDM4Nzc2MmYyZTUwOWY4MDhh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 5ed75388-3933-bad3-8776-2f2e509f808a\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc00c9e4b19cb845a0edcac9e45db704" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0ed22c7c75e1be2885e6fb89203fbd59", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBlZDIyYzdjNzVlMWJlMjg4NWU2ZmI4OTIwM2ZiZDU5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 0ed22c7c-75e1-be28-85e6-fb89203fbd59\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "19c26819739bb961a9849d2d9913d89b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/b11323c3db66b29da89088d28833d43f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2IxMTMyM2MzZGI2NmIyOWRhODkwODhkMjg4MzNkNDNm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n b11323c3-db66-b29d-a890-88d28833d43f\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "c3eee0905aedb325b2a703b630709a28" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/d09bc8a52f0cbb28ad6ce373fa627af3", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2QwOWJjOGE1MmYwY2JiMjhhZDZjZTM3M2ZhNjI3YWYz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n d09bc8a5-2f0c-bb28-ad6c-e373fa627af3\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f85945176562b3f4a46758fda3fa4e6f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deployments/onesdk3244/roles/onesdk6505", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzL29uZXNkazMyNDQvcm9sZXMvb25lc2RrNjUwNQ==", + "RequestMethod": "PUT", + "RequestBody": "\r\n onesdk6505\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n false\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n onesdk7724\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n \r\n Small\r\n true\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2150" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f54ef1291660bef29129e45da0ccad8c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/f54ef1291660bef29129e45da0ccad8c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Y1NGVmMTI5MTY2MGJlZjI5MTI5ZTQ1ZGEwY2NhZDhj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n f54ef129-1660-bef2-9129-e45da0ccad8c\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "42196f93e75db3598503a8cd55c65622" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:09:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/f54ef1291660bef29129e45da0ccad8c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Y1NGVmMTI5MTY2MGJlZjI5MTI5ZTQ1ZGEwY2NhZDhj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n f54ef129-1660-bef2-9129-e45da0ccad8c\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4fca4d9ccb64b9fcbb9f81e2077d473c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:10:28 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4eb6b469c1b5b310ae9ac8009b5f04b7", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRlYjZiNDY5YzFiNWIzMTBhZTlhYzgwMDliNWYwNGI3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 4eb6b469-c1b5-b310-ae9a-c8009b5f04b7\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9b6c21c99633bbb18c891df5b6a757d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:10:29 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk2777/operations/associate", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazI3Nzcvb3BlcmF0aW9ucy9hc3NvY2lhdGU=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk3244\r\n onesdk3244\r\n onesdk7724\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "232" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "549a108e70f6b0d5878099b2a2c61d3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:10:30 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/549a108e70f6b0d5878099b2a2c61d3a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzU0OWExMDhlNzBmNmIwZDU4NzgwOTliMmEyYzYxZDNh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 549a108e-70f6-b0d5-8780-99b2a2c61d3a\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dfba675ddbbebf5e89a48e23e5b1199b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:10:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/549a108e70f6b0d5878099b2a2c61d3a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzU0OWExMDhlNzBmNmIwZDU4NzgwOTliMmEyYzYxZDNh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 549a108e-70f6-b0d5-8780-99b2a2c61d3a\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e2b2f013ac86b78eaa59a17ecd116ab0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/549a108e70f6b0d5878099b2a2c61d3a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzU0OWExMDhlNzBmNmIwZDU4NzgwOTliMmEyYzYxZDNh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 549a108e-70f6-b0d5-8780-99b2a2c61d3a\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "707e43216c80beb1b0708f17510a9ba5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:30 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk2777", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazI3Nzc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2777\r\n
138.91.246.206
\r\n 7b2e58c0-d5a8-468f-a42c-9f6ed8e83740\r\n \r\n Created\r\n true\r\n onesdk3244\r\n onesdk3244\r\n West US\r\n onesdk7724\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "90d5875a8e3bbea389838378bafc65b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk2777", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazI3Nzc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2777\r\n
138.91.246.206
\r\n 7b2e58c0-d5a8-468f-a42c-9f6ed8e83740\r\n \r\n Created\r\n West US\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d47d465e4d82b7a09e02e4cf08fe945a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/90d5875a8e3bbea389838378bafc65b8", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkwZDU4NzVhOGUzYmJlYTM4OTgzODM3OGJhZmM2NWI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 90d5875a-8e3b-bea3-8983-8378bafc65b8\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "0f6c364684ddbd8980371dbdd164673a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/e6617dd0966db040bc498ffa0ad4f03b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2U2NjE3ZGQwOTY2ZGIwNDBiYzQ5OGZmYTBhZDRmMDNi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n e6617dd0-966d-b040-bc49-8ffa0ad4f03b\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "7db27f49ded6bb2cb88f57b72bdca225" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:33 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk2777/operations/disassociate", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazI3Nzcvb3BlcmF0aW9ucy9kaXNhc3NvY2lhdGU=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk3244\r\n onesdk3244\r\n onesdk7724\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "232" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2852bf12e59aba03bb0413f33171ad28" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:35 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/2852bf12e59aba03bb0413f33171ad28", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzI4NTJiZjEyZTU5YWJhMDNiYjA0MTNmMzMxNzFhZDI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 2852bf12-e59a-ba03-bb04-13f33171ad28\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec9f1862a10fbfc5b5c34f63a3e5c4f9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:11:35 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/2852bf12e59aba03bb0413f33171ad28", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzI4NTJiZjEyZTU5YWJhMDNiYjA0MTNmMzMxNzFhZDI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 2852bf12-e59a-ba03-bb04-13f33171ad28\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "73f657e572a8b8ed97ab076c228b112f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:12:05 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/2852bf12e59aba03bb0413f33171ad28", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzI4NTJiZjEyZTU5YWJhMDNiYjA0MTNmMzMxNzFhZDI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 2852bf12-e59a-ba03-bb04-13f33171ad28\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c8f6a21df9d9bdaf8e336dd8b70809d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:12:35 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/2852bf12e59aba03bb0413f33171ad28", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzI4NTJiZjEyZTU5YWJhMDNiYjA0MTNmMzMxNzFhZDI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 2852bf12-e59a-ba03-bb04-13f33171ad28\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8fc088bb4c7cb22ea82ce27979f3230e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:05 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/2852bf12e59aba03bb0413f33171ad28", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzI4NTJiZjEyZTU5YWJhMDNiYjA0MTNmMzMxNzFhZDI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 2852bf12-e59a-ba03-bb04-13f33171ad28\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "29b0bb6874efb13788ce82ee3980da79" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/d47d465e4d82b7a09e02e4cf08fe945a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Q0N2Q0NjVlNGQ4MmI3YTA5ZTAyZTRjZjA4ZmU5NDVh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n d47d465e-4d82-b7a0-9e02-e4cf08fe945a\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "996d92377b20b287af1e29f9cd82fac3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:38 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8cbb37bc823cb328b845d29b6512c496", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhjYmIzN2JjODIzY2IzMjhiODQ1ZDI5YjY1MTJjNDk2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 8cbb37bc-823c-b328-b845-d29b6512c496\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "6b7c6ff94224bd159346f40aa16a4943" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244\r\n onesdk3244\r\n \r\n Implicitly created hosted service2015-07-10 05:08\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:08:16Z\r\n 2015-07-10T05:08:50Z\r\n \r\n \r\n ResourceGroup\r\n onesdk3244\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk1686\r\n 104.42.140.147\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk6505\r\n 7E2F38806148282F0A22AB09B05DF0A57512B0E8\r\n \r\n 1.0\r\n 2015-07-10T05:13:40Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n 104.42.140.147\r\n false\r\n onesdk7724\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:13:39Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n
104.42.140.147
\r\n onesdk7724\r\n true\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5834" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "997a15ef91c8b535a4688f24b5a9477e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244\r\n onesdk3244\r\n \r\n Implicitly created hosted service2015-07-10 05:08\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:08:16Z\r\n 2015-07-10T05:08:50Z\r\n \r\n \r\n ResourceGroup\r\n onesdk3244\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk3244\r\n Production\r\n d8f9f3a4159f41c397763934fdc5197e\r\n Running\r\n \r\n http://onesdk3244.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs2NTA1Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk6505\r\n onesdk6505\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.210.60\r\n \r\n \r\n PowerShell\r\n 138.91.242.240\r\n 56493\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.242.240\r\n 54058\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk1686\r\n 104.42.140.147\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk6505\r\n 7E2F38806148282F0A22AB09B05DF0A57512B0E8\r\n \r\n 1.0\r\n 2015-07-10T05:13:40Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk6505.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk6505\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk1686\r\n 444\r\n tcp\r\n 104.42.140.147\r\n false\r\n onesdk7724\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56493\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 54058\r\n tcp\r\n 138.91.242.240\r\n false\r\n onesdk3244ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk3244-onesdk6505-0-201507100508220520\r\n https://onesdk5078.blob.core.windows.net/vhds/onesdk3244-onesdk6505-2015-7-9-22-8-17-496-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:08:19Z\r\n 2015-07-10T05:13:39Z\r\n \r\n \r\n 2015-07-09T08:40:13Z\r\n 2015-07-16T08:40:13Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.242.240
\r\n true\r\n onesdk3244ContractContract\r\n
\r\n \r\n
104.42.140.147
\r\n onesdk7724\r\n true\r\n
\r\n
\r\n onesdk3244.d2.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5834" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6c3fbd4eef7b0569fa428dfc57e60fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244\r\n onesdk3244\r\n \r\n Implicitly created hosted service2015-07-10 05:08\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:08:16Z\r\n 2015-07-10T05:08:50Z\r\n \r\n \r\n ResourceGroup\r\n onesdk3244\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n 340076ABD999C1557C257C0615559DBCA303AACE\r\n", + "ResponseHeaders": { + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f1864e5e3e2cb6d88a75a04bfb902df7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:14:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244/deployments/onesdk3244?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0L2RlcGxveW1lbnRzL29uZXNkazMyNDQ/Y29tcD1tZWRpYQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "198ddd36fc48bf4e821cb31992fd3378" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/198ddd36fc48bf4e821cb31992fd3378", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzE5OGRkZDM2ZmM0OGJmNGU4MjFjYjMxOTkyZmQzMzc4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 198ddd36-fc48-bf4e-821c-b31992fd3378\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d989b32f6018b878a8ca93cb09c6cdaa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:13:42 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/198ddd36fc48bf4e821cb31992fd3378", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzE5OGRkZDM2ZmM0OGJmNGU4MjFjYjMxOTkyZmQzMzc4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 198ddd36-fc48-bf4e-821c-b31992fd3378\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "97dbbadc52d3bbeda81d122f40767dfb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:14:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk3244?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMjQ0P2NvbXA9bWVkaWE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f632426b72c0bafcb18dcab29ac0f6bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:14:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/f632426b72c0bafcb18dcab29ac0f6bb", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Y2MzI0MjZiNzJjMGJhZmNiMThkY2FiMjlhYzBmNmJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n f632426b-72c0-bafc-b18d-cab29ac0f6bb\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b99d4d36bd10b5bfb773c18c3793a9ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:14:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/f632426b72c0bafcb18dcab29ac0f6bb", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Y2MzI0MjZiNzJjMGJhZmNiMThkY2FiMjlhYzBmNmJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n f632426b-72c0-bafc-b18d-cab29ac0f6bb\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "100837ca3decb556bb55ab2c1df66c3b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:14:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk2777", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazI3Nzc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5eefecf47951b4b5899bf3dbd43ce66c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:14:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5eefecf47951b4b5899bf3dbd43ce66c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVlZWZlY2Y0Nzk1MWI0YjU4OTliZjNkYmQ0M2NlNjZj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 5eefecf4-7951-b4b5-899b-f3dbd43ce66c\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "247be250f65fbdd8923122f4bc743c90" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:14:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5eefecf47951b4b5899bf3dbd43ce66c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVlZWZlY2Y0Nzk1MWI0YjU4OTliZjNkYmQ0M2NlNjZj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 5eefecf4-7951-b4b5-899b-f3dbd43ce66c\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "39557cf8cc5db78abd9613b8c75feab0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:15:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk5078", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNTA3OA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "fd1c882658eabec2a918320ecb4f14f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:18 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/fd1c882658eabec2a918320ecb4f14f2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZkMWM4ODI2NThlYWJlYzJhOTE4MzIwZWNiNGYxNGYy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n fd1c8826-58ea-bec2-a918-320ecb4f14f2\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "b3e580bb1919b344a4ff50cbaea07a20" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AdditionalVipMobility": [ + "onesdk6505", + "onesdk7724", + "onesdk3244", + "onesdk5078", + "onesdk1686", + "onesdk2777" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ReserveMultivipDepIP.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ReserveMultivipDepIP.json new file mode 100644 index 000000000000..aa7d0bb93f10 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/ReserveMultivipDepIP.json @@ -0,0 +1,2571 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4b086dd5d3acb65dad46f7545b4d3546" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:57:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4b086dd5d3acb65dad46f7545b4d3546", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRiMDg2ZGQ1ZDNhY2I2NWRhZDQ2Zjc1NDViNGQzNTQ2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 4b086dd5-d3ac-b65d-ad46-f7545b4d3546\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "5183fb6eea4eb196b6a6378ed9781b9b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:03 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2611\r\n \r\n \r\n West US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "344" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "98efd8ba2ebfb80b96f67a9071a0094f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:06 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/storage/onesdk2611" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/98efd8ba2ebfb80b96f67a9071a0094f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzk4ZWZkOGJhMmViZmI4MGI5NmY2N2E5MDcxYTAwOTRm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 98efd8ba-2ebf-b80b-96f6-7a9071a0094f\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "324606e2d7baba608ffdeef1bdef18a7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:06 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/98efd8ba2ebfb80b96f67a9071a0094f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzk4ZWZkOGJhMmViZmI4MGI5NmY2N2E5MDcxYTAwOTRm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 98efd8ba-2ebf-b80b-96f6-7a9071a0094f\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f56116740d73b74d8db5a3d549429391" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678786" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c43a104d6d0bbc3ca137024dfb09f547" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/c43a104d6d0bbc3ca137024dfb09f547", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2M0M2ExMDRkNmQwYmJjM2NhMTM3MDI0ZGZiMDlmNTQ3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n c43a104d-6d0b-bc3c-a137-024dfb09f547\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "996421beadfcb7d4b2ba9b4a05c268b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8da64da1e0dbca8b0a8306a1a4a7370" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "12b2766f699abfa5ba944108d4daad80" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a8701ed5089bb53cb9f52c043f0d94bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:46 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c0fafb7e2cbbd0986fd9a0f7b7c0bde" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:47 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:00:24Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n 23.99.53.167\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n 23.99.53.167\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:00:23Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4198" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb972a179b3cb4f59c05743a1faa2a4b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:00:34 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n StartingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:01:08Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:07Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n onesdk166\r\n true\r\n \r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4228" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cfe8624eb33ab934ae3d2cfd4dc4e9ac" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n StartingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:01:08Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:07Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n onesdk166\r\n true\r\n \r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4228" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5148a751e90cbbba9e4168f6cfbe68a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n StartingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:01:08Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:07Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n onesdk166\r\n true\r\n \r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4228" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9343a5ad9e9dbb1bb56bbdf2a9224391" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk2214\r\n 23.99.51.71\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:01:43Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk2214\r\n 444\r\n tcp\r\n 23.99.51.71\r\n false\r\n onesdk166\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:43Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n
23.99.51.71
\r\n onesdk166\r\n true\r\n
\r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4825" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fa510e4e47fab520a2dd526ad19cd69a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk2214\r\n 23.99.51.71\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:01:43Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk2214\r\n 444\r\n tcp\r\n 23.99.51.71\r\n false\r\n onesdk166\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:43Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n
23.99.51.71
\r\n onesdk166\r\n true\r\n
\r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4825" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6ac19a47ebefb93684d01cc90207a962" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk2214\r\n 23.99.51.71\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:01:51Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk2214\r\n 444\r\n tcp\r\n 23.99.51.71\r\n false\r\n onesdk166\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:50Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n
23.99.51.71
\r\n onesdk166\r\n true\r\n onesdk6504\r\n true\r\n
\r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4893" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a4f605d80303b996b3f7b8196666f4ac" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk2214\r\n 23.99.51.71\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:01:51Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk2214\r\n 444\r\n tcp\r\n 23.99.51.71\r\n false\r\n onesdk166\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:50Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n
23.99.51.71
\r\n onesdk166\r\n true\r\n onesdk6504\r\n true\r\n
\r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4893" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d33215ff5b0cb7c5841fab478085fe59" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2611", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMjYxMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2611\r\n onesdk2611\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk2611.blob.core.windows.net/\r\n https://onesdk2611.queue.core.windows.net/\r\n https://onesdk2611.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T04:58:05Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "a48edeea0687b84eae9c006b960852f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:47 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2611/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMjYxMS9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2611\r\n \r\n wzwi58Ajt0rj3469/tllHTwya9/yN5MgNSQ3iZb7nzua2c53AH7N/zg9qBDM4KKHtKGtPobc62Ec2iwaoSdwzA==\r\n jAY51f38L+oBm8xW20nsgZG1aYjMLbouViMAmjcesDDBKRf3sWvJpICS4KWvVkaML7gClpbAlsFAJJ+EuNqh+w==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "5c9d9b213471bc6197e67ea33c304b59" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk8842\r\n \r\n Implicitly created hosted service2015-07-10 04:58\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "283" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "59b89b82f88abaf08215db806b683195" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:49 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/compute/onesdk8842" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deployments", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk8842\r\n Production\r\n \r\n \r\n \r\n onesdk4756\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk4756\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n \r\n \r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2515" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3872788a9d01b4619babc1503468fbce" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:58:52 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3872788a9d01b4619babc1503468fbce", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzM4NzI3ODhhOWQwMWI0NjE5YmFiYzE1MDM0NjhmYmNl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 3872788a-9d01-b461-9bab-c1503468fbce\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "25b1b372bd48bfe0b3e20ab850fd7aa9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:59:01 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3872788a9d01b4619babc1503468fbce", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzM4NzI3ODhhOWQwMWI0NjE5YmFiYzE1MDM0NjhmYmNl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 3872788a-9d01-b461-9bab-c1503468fbce\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3442b10c201fbd1eaedac00943669807" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 04:59:32 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3872788a9d01b4619babc1503468fbce", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzM4NzI3ODhhOWQwMWI0NjE5YmFiYzE1MDM0NjhmYmNl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 3872788a-9d01-b461-9bab-c1503468fbce\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30935225c07dbd2082ccae84c5cba8c8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:00:01 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3872788a9d01b4619babc1503468fbce", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzM4NzI3ODhhOWQwMWI0NjE5YmFiYzE1MDM0NjhmYmNl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 3872788a-9d01-b461-9bab-c1503468fbce\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "167328f10d65bb34ae3f8fa4c61d0c4d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:00:34 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deployments/onesdk8842/onesdk166", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzL29uZXNkazg4NDIvb25lc2RrMTY2", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dee3b8418d8bbe109728110db393cebe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:00:35 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/dee3b8418d8bbe109728110db393cebe", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2RlZTNiODQxOGQ4YmJlMTA5NzI4MTEwZGIzOTNjZWJl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n dee3b841-8d8b-be10-9728-110db393cebe\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b60b526bc4bbc189d7016e5f574dd0e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:00:35 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/dee3b8418d8bbe109728110db393cebe", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2RlZTNiODQxOGQ4YmJlMTA5NzI4MTEwZGIzOTNjZWJl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n dee3b841-8d8b-be10-9728-110db393cebe\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "030e05c53f1db2299538602c74d962f9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:05 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/cfe8624eb33ab934ae3d2cfd4dc4e9ac", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2NmZTg2MjRlYjMzYWI5MzRhZTNkMmNmZDRkYzRlOWFj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n cfe8624e-b33a-b934-ae3d-2cfd4dc4e9ac\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f0e381e5a917bb3894faf8935cf599f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:08 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5148a751e90cbbba9e4168f6cfbe68a4", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzUxNDhhNzUxZTkwY2JiYmE5ZTQxNjhmNmNmYmU2OGE0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 5148a751-e90c-bbba-9e41-68f6cfbe68a4\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "3cd374e62783b9b78caf2a7b091d4cda" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9343a5ad9e9dbb1bb56bbdf2a9224391", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkzNDNhNWFkOWU5ZGJiMWJiNTZiYmRmMmE5MjI0Mzkx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 9343a5ad-9e9d-bb1b-b56b-bdf2a9224391\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "fdcea6463c6bb18eb46f10ed890abfc2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deployments/onesdk8842/roles/onesdk4756", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzL29uZXNkazg4NDIvcm9sZXMvb25lc2RrNDc1Ng==", + "RequestMethod": "PUT", + "RequestBody": "\r\n onesdk4756\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n false\r\n \r\n \r\n 1001\r\n onesdk2214\r\n 444\r\n tcp\r\n onesdk166\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n \r\n Small\r\n true\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2150" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd7e2472e0afb47ba2b03b0054eee2b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/cd7e2472e0afb47ba2b03b0054eee2b7", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2NkN2UyNDcyZTBhZmI0N2JhMmIwM2IwMDU0ZWVlMmI3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n cd7e2472-e0af-b47b-a2b0-3b0054eee2b7\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c60495a514d5b18a8b96459f1ac12481" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/cd7e2472e0afb47ba2b03b0054eee2b7", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2NkN2UyNDcyZTBhZmI0N2JhMmIwM2IwMDU0ZWVlMmI3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n cd7e2472-e0af-b47b-a2b0-3b0054eee2b7\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d3ff51513baba96a074b3b638f3cba4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/fa510e4e47fab520a2dd526ad19cd69a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZhNTEwZTRlNDdmYWI1MjBhMmRkNTI2YWQxOWNkNjlh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n fa510e4e-47fa-b520-a2dd-526ad19cd69a\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "fa25a77ec17ebb79a74ecc8067a872ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk6504\r\n \r\n onesdk8842\r\n onesdk8842\r\n West US\r\n onesdk166\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "302" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7ba79f05e63abb639b91ee79e7bb5fbc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:46 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/7ba79f05e63abb639b91ee79e7bb5fbc", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzdiYTc5ZjA1ZTYzYWJiNjM5YjkxZWU3OWU3YmI1ZmJj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 7ba79f05-e63a-bb63-9b91-ee79e7bb5fbc\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b3458478828b7529c6f8195a8ad6876" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:01:46 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/7ba79f05e63abb639b91ee79e7bb5fbc", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzdiYTc5ZjA1ZTYzYWJiNjM5YjkxZWU3OWU3YmI1ZmJj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 7ba79f05-e63a-bb63-9b91-ee79e7bb5fbc\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9ae4a802b896b8f6b159d31bb90bc8f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk6504", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazY1MDQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk6504\r\n
23.99.51.71
\r\n 24d62211-0e91-4311-9826-f66bdb6cda55\r\n \r\n Created\r\n true\r\n onesdk8842\r\n onesdk8842\r\n West US\r\n onesdk166\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "444" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "77e3785a7f18b25db5abeb96dbfb5226" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/77e3785a7f18b25db5abeb96dbfb5226", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzc3ZTM3ODVhN2YxOGIyNWRiNWFiZWI5NmRiZmI1MjI2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 77e3785a-7f18-b25d-b5ab-eb96dbfb5226\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "dba9194d65a2bca395d5a548475430ac" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/a4f605d80303b996b3f7b8196666f4ac", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2E0ZjYwNWQ4MDMwM2I5OTZiM2Y3YjgxOTY2NjZmNGFj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n a4f605d8-0303-b996-b3f7-b8196666f4ac\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "11fcb5ace1e6bc90b4df46008046a8b0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:18 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842\r\n onesdk8842\r\n \r\n Implicitly created hosted service2015-07-10 04:58\r\n West US\r\n \r\n Created\r\n 2015-07-10T04:58:49Z\r\n 2015-07-10T04:59:24Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8842\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk2214\r\n 23.99.51.71\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:01:51Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk2214\r\n 444\r\n tcp\r\n 23.99.51.71\r\n false\r\n onesdk166\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:50Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n
23.99.51.71
\r\n onesdk166\r\n true\r\n onesdk6504\r\n true\r\n
\r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
\r\n
\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5748" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87637c47b238be149da13838b0fd9cbb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842\r\n onesdk8842\r\n \r\n Implicitly created hosted service2015-07-10 04:58\r\n West US\r\n \r\n Created\r\n 2015-07-10T04:58:49Z\r\n 2015-07-10T04:59:24Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8842\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk8842\r\n Production\r\n 1c593610ab7b43a89d5a021fc8c4ae6e\r\n Running\r\n \r\n http://onesdk8842.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs0NzU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk4756\r\n onesdk4756\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.55\r\n \r\n \r\n PowerShell\r\n 23.99.53.167\r\n 64478\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.53.167\r\n 64142\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk2214\r\n 23.99.51.71\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:01:51Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk4756.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk4756\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk2214\r\n 444\r\n tcp\r\n 23.99.51.71\r\n false\r\n onesdk166\r\n \r\n \r\n 5986\r\n PowerShell\r\n 64478\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 64142\r\n tcp\r\n 23.99.53.167\r\n false\r\n onesdk8842ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8842-onesdk4756-0-201507100458580491\r\n https://onesdk2611.blob.core.windows.net/vhds/onesdk8842-onesdk4756-2015-7-9-21-58-50-371-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T04:58:52Z\r\n 2015-07-10T05:01:50Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.53.167
\r\n true\r\n onesdk8842ContractContract\r\n
\r\n \r\n
23.99.51.71
\r\n onesdk166\r\n true\r\n onesdk6504\r\n true\r\n
\r\n
\r\n onesdk8842.d10.internal.cloudapp.net\r\n \r\n
\r\n
\r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5748" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87d3da688ef7bb0394c3beb6ea732899" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842\r\n onesdk8842\r\n \r\n Implicitly created hosted service2015-07-10 04:58\r\n West US\r\n \r\n Created\r\n 2015-07-10T04:58:49Z\r\n 2015-07-10T04:59:24Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8842\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n C229B2C2FA20B03C47547C238778A37AF72CC42C\r\n", + "ResponseHeaders": { + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d4cb47bfb74fb66f9733d38757e31349" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:03:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842/deployments/onesdk8842?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyL2RlcGxveW1lbnRzL29uZXNkazg4NDI/Y29tcD1tZWRpYQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c20a155de34b0a88062a0e74887a8ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8c20a155de34b0a88062a0e74887a8ed", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhjMjBhMTU1ZGUzNGIwYTg4MDYyYTBlNzQ4ODdhOGVk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 8c20a155-de34-b0a8-8062-a0e74887a8ed\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "160d2928272bb77095777d844eaf193e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8c20a155de34b0a88062a0e74887a8ed", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhjMjBhMTU1ZGUzNGIwYTg4MDYyYTBlNzQ4ODdhOGVk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 8c20a155-de34-b0a8-8062-a0e74887a8ed\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3992684a66d2b6d68bf266b11df83980" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:02:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8c20a155de34b0a88062a0e74887a8ed", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhjMjBhMTU1ZGUzNGIwYTg4MDYyYTBlNzQ4ODdhOGVk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 8c20a155-de34-b0a8-8062-a0e74887a8ed\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fe2dabce77ddb401a1ac48ce5c8905b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:03:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8c20a155de34b0a88062a0e74887a8ed", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhjMjBhMTU1ZGUzNGIwYTg4MDYyYTBlNzQ4ODdhOGVk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 8c20a155-de34-b0a8-8062-a0e74887a8ed\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06f62badd443b163b70d4e87ae3258a1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:03:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8842?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4ODQyP2NvbXA9bWVkaWE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1f0a8797ade0b3a2b4d7f1695b92661a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:03:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/1f0a8797ade0b3a2b4d7f1695b92661a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzFmMGE4Nzk3YWRlMGIzYTJiNGQ3ZjE2OTViOTI2NjFh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 1f0a8797-ade0-b3a2-b4d7-f1695b92661a\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1619b03199fcbb82b2f86650b4571e91" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:03:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/1f0a8797ade0b3a2b4d7f1695b92661a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzFmMGE4Nzk3YWRlMGIzYTJiNGQ3ZjE2OTViOTI2NjFh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 1f0a8797-ade0-b3a2-b4d7-f1695b92661a\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ef1f268de548b9cab5f653c3e1d7fcaf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:04:22 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk6504", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazY1MDQ=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "316aee2628cbbdd4a0ab32a6f072194c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:04:23 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/316aee2628cbbdd4a0ab32a6f072194c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMxNmFlZTI2MjhjYmJkZDRhMGFiMzJhNmYwNzIxOTRj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 316aee26-28cb-bdd4-a0ab-32a6f072194c\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e0e1794362f0bad781903667a7bccc8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:04:24 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/316aee2628cbbdd4a0ab32a6f072194c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMxNmFlZTI2MjhjYmJkZDRhMGFiMzJhNmYwNzIxOTRj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 316aee26-28cb-bdd4-a0ab-32a6f072194c\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "212abf49298fb7fbb482c003ec59aa80" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:04:53 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2611", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMjYxMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "57103185c988b99aaffc00a531726e4e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:06:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/57103185c988b99aaffc00a531726e4e", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzU3MTAzMTg1Yzk4OGI5OWFhZmZjMDBhNTMxNzI2ZTRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 57103185-c988-b99a-affc-00a531726e4e\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "3f911cde4eb4b09bb5e91f7cab1c3303" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:06:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ReserveExistingDeploymentIPMultivip": [ + "onesdk4756", + "onesdk166", + "onesdk8842", + "onesdk2611", + "onesdk2214", + "onesdk6504" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/SetLbEpMultivipDep.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/SetLbEpMultivipDep.json new file mode 100644 index 000000000000..b10c5dcb1ba5 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.MultiVip/SetLbEpMultivipDep.json @@ -0,0 +1,3838 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "0a879787d5ebb84bac66d44c43ac6d33" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0a879787d5ebb84bac66d44c43ac6d33", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBhODc5Nzg3ZDVlYmI4NGJhYzY2ZDQ0YzQzYWM2ZDMz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 0a879787-d5eb-b84b-ac66-d44c43ac6d33\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "3920a110c104b664adaf8ad14ca30bd1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk4625\r\n \r\n \r\n West US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "344" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "09f83d69f210bc848b9e226c45383ac8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:23 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/storage/onesdk4625" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/09f83d69f210bc848b9e226c45383ac8", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA5ZjgzZDY5ZjIxMGJjODQ4YjllMjI2YzQ1MzgzYWM4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 09f83d69-f210-bc84-8b9e-226c45383ac8\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "6ad39f4a1828b40ca19b0b896c88d95f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:23 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/09f83d69f210bc848b9e226c45383ac8", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA5ZjgzZDY5ZjIxMGJjODQ4YjllMjI2YzQ1MzgzYWM4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 09f83d69-f210-bc84-8b9e-226c45383ac8\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "294522b28a7ebba9afbfd1dbf856f0fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678786" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c84749ffee49bda59d61a54d20f0cc9a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:56 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678786" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "73604ec3cbd3b3dfa29c03c55177e419" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/c84749ffee49bda59d61a54d20f0cc9a", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2M4NDc0OWZmZWU0OWJkYTU5ZDYxYTU0ZDIwZjBjYzlh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n c84749ff-ee49-bda5-9d61-a54d20f0cc9a\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "7f0ed3b384f6bb788934cfb92ab31b0f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:17:57 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ebdf0c6c7b7bbe54a50b51a1b674f2c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8fabe300fc05b2e481c276e9387173d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:57 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "092fd12bc638b188b1d930425413f70f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bea8827d2db5bb8f951db620490c3ae0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3c1d7cc31068bdbcbb7a151203f4c4e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:03 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33bd398c461abb75b4271ea14c845632" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e0d6b4e06d29b97a929734d4ee5323ba" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:04 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4NzE4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:19:15Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:19:15Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4189" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8f4f305a4a9b39cb2bba70d1492dc69" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:19:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4NzE4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:20:15Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:20:15Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n onesdk6119\r\n true\r\n \r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4227" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5777bfd3d2ccb8e5ad3f39ddfff2b51e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4NzE4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:20:15Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:20:15Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n onesdk6119\r\n true\r\n \r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4227" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "584b1cec3e4ab73e8c42bca3657108b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:16 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4NzE4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:20:15Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:20:15Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n onesdk6119\r\n true\r\n \r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4227" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1a9bf7e852ebb890a2dd9e486254621c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4NzE4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:20:48Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:20:48Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4824" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d5c12c70c079ba37842e7fc8437c38fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4NzE4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:20:48Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:20:48Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4824" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fd476b5b5544beb1a97f37c32ba5f21c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.39\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:21:55Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:21:55Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:21:55Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "7753" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1baab6bc6373be3e90f590aef0607096" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:22:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.39\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T05:21:55Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:21:55Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:21:55Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "7753" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6ec99d68ab2ebcd4951db699d545b0b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:22:08 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.39\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:22:44Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk5250\r\n 138.91.252.21\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:22:45Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:22:44Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "8388" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44b193ae3aaebff58342652f8830f1b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:23:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.39\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T05:22:44Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk5250\r\n 138.91.252.21\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:22:45Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:22:44Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "8388" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f0a62834d6e5bbbd873fb3ceac970850" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:23:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.39\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk3206\r\n 138.91.252.21\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:23:58Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk5250\r\n 138.91.252.21\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk8718\r\n \r\n 1.0\r\n 2015-07-10T05:23:58Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:23:58Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "9051" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b0a6b832e67db4dbb99dbf325a24b9f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.39\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk3206\r\n 138.91.252.21\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:23:58Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk5250\r\n 138.91.252.21\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk8718\r\n \r\n 1.0\r\n 2015-07-10T05:23:58Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:23:58Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "9051" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fda3c7d1d3e5b541918b637e5e52b1a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:20 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.39\r\n \r\n \r\n onesdk3206\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:24:54Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n onesdk5250\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk8718\r\n 3F5D8B77B30FB341191B1017E830512F4535EC70\r\n \r\n 1.0\r\n 2015-07-10T05:24:54Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:24:54Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "9183" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9176c2300102b4318b2e8114de8706f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.39\r\n \r\n \r\n onesdk3206\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:24:54Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n onesdk5250\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk8718\r\n 3F5D8B77B30FB341191B1017E830512F4535EC70\r\n \r\n 1.0\r\n 2015-07-10T05:24:54Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:24:54Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "9183" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8363358b9b83bfb394d7be1643e37488" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:56 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.74.108.39\r\n \r\n \r\n onesdk3206\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:24:58Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n onesdk5250\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk8718\r\n 3F5D8B77B30FB341191B1017E830512F4535EC70\r\n \r\n 1.0\r\n 2015-07-10T05:24:59Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:24:58Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "9252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "768e0ac528a0b255b303eedaf4a53ac0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:59 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNDYyNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625\r\n onesdk4625\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk4625.blob.core.windows.net/\r\n https://onesdk4625.queue.core.windows.net/\r\n https://onesdk4625.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T05:17:23Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "52765f33f6f6bbf880d16626a38fdf46" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:04 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNDYyNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625\r\n onesdk4625\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk4625.blob.core.windows.net/\r\n https://onesdk4625.queue.core.windows.net/\r\n https://onesdk4625.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T05:17:23Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4a75c4334efdbe8cae0f4c803bf92467" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:01 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNDYyNS9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625\r\n \r\n hJTL2CCVKndf5ehgt7tBY35h4FjEJ9w5ShgRvLIdVolxFJZ2vWQqKxcRu18w35nAM3WoR0WNlTRTPTyVs0+RMQ==\r\n u4FAImyTwlgpbqA3Y1jgbFJH2oomvzR/y7yoPvfeygVs4ekNBwfi1FBCfkjSLdj3VmViNKUFkvA72BYYfT8CUw==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "0442d0d4e1e9b1efb2d3321f7349b845" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:05 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNDYyNS9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625\r\n \r\n hJTL2CCVKndf5ehgt7tBY35h4FjEJ9w5ShgRvLIdVolxFJZ2vWQqKxcRu18w35nAM3WoR0WNlTRTPTyVs0+RMQ==\r\n u4FAImyTwlgpbqA3Y1jgbFJH2oomvzR/y7yoPvfeygVs4ekNBwfi1FBCfkjSLdj3VmViNKUFkvA72BYYfT8CUw==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "64d4f774c23fb4b38526552ce8f91780" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:01 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2879\r\n \r\n Implicitly created hosted service2015-07-10 05:18\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "283" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "39cc923664e0b63dbab7099341319da5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:07 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/compute/onesdk2879" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2879\r\n \r\n Implicitly created hosted service2015-07-10 05:21\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "283" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ConflictError\r\n The specified DNS name is already taken.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c68e61cba6eb8d9b0b203ff815ad6f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deployments", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2879\r\n Production\r\n \r\n \r\n \r\n onesdk8718\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk8718\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n \r\n \r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2513" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "113a31e09570b505ac10ad41ef635664" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/113a31e09570b505ac10ad41ef635664", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzExM2EzMWUwOTU3MGI1MDVhYzEwYWQ0MWVmNjM1NjY0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 113a31e0-9570-b505-ac10-ad41ef635664\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e91f71eecb61b34eb0890816c9658d45" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/113a31e09570b505ac10ad41ef635664", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzExM2EzMWUwOTU3MGI1MDVhYzEwYWQ0MWVmNjM1NjY0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 113a31e0-9570-b505-ac10-ad41ef635664\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2e8e6ac598dbe1ab26aab67ffff171f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:18:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/113a31e09570b505ac10ad41ef635664", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzExM2EzMWUwOTU3MGI1MDVhYzEwYWQ0MWVmNjM1NjY0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 113a31e0-9570-b505-ac10-ad41ef635664\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d8f5bb95e678b2b986ce5f9701ea6a92" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:19:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/113a31e09570b505ac10ad41ef635664", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzExM2EzMWUwOTU3MGI1MDVhYzEwYWQ0MWVmNjM1NjY0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 113a31e0-9570-b505-ac10-ad41ef635664\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "218e9a139263b55f8913f1474dd921f9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:19:42 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deployments/onesdk2879/onesdk6119", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzL29uZXNkazI4Nzkvb25lc2RrNjExOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c8f12bf2c9bb202a1664e4c945275fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:19:42 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5c8f12bf2c9bb202a1664e4c945275fa", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVjOGYxMmJmMmM5YmIyMDJhMTY2NGU0Yzk0NTI3NWZh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 5c8f12bf-2c9b-b202-a166-4e4c945275fa\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6263fcf9ada0b9de8dd0885754b7c889" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:19:42 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5c8f12bf2c9bb202a1664e4c945275fa", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVjOGYxMmJmMmM5YmIyMDJhMTY2NGU0Yzk0NTI3NWZh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 5c8f12bf-2c9b-b202-a166-4e4c945275fa\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a30fd7d8978bcd0b9648ee5420a103f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5777bfd3d2ccb8e5ad3f39ddfff2b51e", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzU3NzdiZmQzZDJjY2I4ZTVhZDNmMzlkZGZmZjJiNTFl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 5777bfd3-d2cc-b8e5-ad3f-39ddfff2b51e\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "3454789f2968bf12a89980c02eb65f95" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/584b1cec3e4ab73e8c42bca3657108b5", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzU4NGIxY2VjM2U0YWI3M2U4YzQyYmNhMzY1NzEwOGI1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 584b1cec-3e4a-b73e-8c42-bca3657108b5\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "88a457a302d1b5378d74c6d7080901c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:16 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/1a9bf7e852ebb890a2dd9e486254621c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzFhOWJmN2U4NTJlYmI4OTBhMmRkOWU0ODYyNTQ2MjFj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 1a9bf7e8-52eb-b890-a2dd-9e486254621c\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "8765d2fb8f94b560b8cbb114683d1f6f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deployments/onesdk2879/roles/onesdk8718", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzL29uZXNkazI4Nzkvcm9sZXMvb25lc2RrODcxOA==", + "RequestMethod": "PUT", + "RequestBody": "\r\n onesdk8718\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n false\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n onesdk6119\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n \r\n Small\r\n true\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2149" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d95c629d51cb29595b3485ca85c87b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deployments/onesdk2879/roles/onesdk8718", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzL29uZXNkazI4Nzkvcm9sZXMvb25lc2RrODcxOA==", + "RequestMethod": "PUT", + "RequestBody": "\r\n onesdk8718\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n \r\n tcp\r\n onesdk6119\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n \r\n Small\r\n true\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2916" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2cf1427e7e29baa1b4600d4dbf386a81" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:22:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9d95c629d51cb29595b3485ca85c87b2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzlkOTVjNjI5ZDUxY2IyOTU5NWIzNDg1Y2E4NWM4N2Iy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 9d95c629-d51c-b295-95b3-485ca85c87b2\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5e708e421c0fb6a8b4dd892d1ae25345" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9d95c629d51cb29595b3485ca85c87b2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzlkOTVjNjI5ZDUxY2IyOTU5NWIzNDg1Y2E4NWM4N2Iy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 9d95c629-d51c-b295-95b3-485ca85c87b2\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "98bdd5ed6d0db25e8c46c57708140902" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/d5c12c70c079ba37842e7fc8437c38fb", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Q1YzEyYzcwYzA3OWJhMzc4NDJlN2ZjODQzN2MzOGZi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n d5c12c70-c079-ba37-842e-7fc8437c38fb\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "8de544179f11ba498eea048b7b799cfa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/73604ec3cbd3b3dfa29c03c55177e419", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzczNjA0ZWMzY2JkM2IzZGZhMjljMDNjNTUxNzdlNDE5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 73604ec3-cbd3-b3df-a29c-03c55177e419\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "adcf16dbfd53b58cbf107c906ceaf4aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:20:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/fd476b5b5544beb1a97f37c32ba5f21c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZkNDc2YjViNTU0NGJlYjFhOTdmMzdjMzJiYTVmMjFj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n fd476b5b-5544-beb1-a97f-37c32ba5f21c\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f28c3c9dd263b7c78325fe637cbbc4b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879\r\n onesdk2879\r\n \r\n Implicitly created hosted service2015-07-10 05:18\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:18:07Z\r\n 2015-07-10T05:18:47Z\r\n \r\n \r\n ResourceGroup\r\n onesdk2879\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n", + "ResponseHeaders": { + "Content-Length": [ + "930" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "65caec390ca4be5e9bc5144ca61b855d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:03 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deployments/onesdk2879/roles", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzL29uZXNkazI4Nzkvcm9sZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk3948\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk3948\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2120" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fd38ddca707db40fa18decf15bdbe02b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:04 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/fd38ddca707db40fa18decf15bdbe02b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZkMzhkZGNhNzA3ZGI0MGZhMThkZWNmMTViZGJlMDJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n fd38ddca-707d-b40f-a18d-ecf15bdbe02b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7bcd3e97280bff2a889696728da7d95" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:05 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/fd38ddca707db40fa18decf15bdbe02b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZkMzhkZGNhNzA3ZGI0MGZhMThkZWNmMTViZGJlMDJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n fd38ddca-707d-b40f-a18d-ecf15bdbe02b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8ef82bcef034b3eba922c2da67d2757e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:21:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/fd38ddca707db40fa18decf15bdbe02b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZkMzhkZGNhNzA3ZGI0MGZhMThkZWNmMTViZGJlMDJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n fd38ddca-707d-b40f-a18d-ecf15bdbe02b\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0c5fdd88aecbb5af9201977067fb274b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:22:05 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/1baab6bc6373be3e90f590aef0607096", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzFiYWFiNmJjNjM3M2JlM2U5MGY1OTBhZWYwNjA3MDk2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 1baab6bc-6373-be3e-90f5-90aef0607096\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "c946631439eabbdb97cbe933038f5f47" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:22:06 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/6ec99d68ab2ebcd4951db699d545b0b3", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzZlYzk5ZDY4YWIyZWJjZDQ5NTFkYjY5OWQ1NDViMGIz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 6ec99d68-ab2e-bcd4-951d-b699d545b0b3\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f6161911cd71ba1584ae2405f9eeb347" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:22:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/2cf1427e7e29baa1b4600d4dbf386a81", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzJjZjE0MjdlN2UyOWJhYTFiNDYwMGQ0ZGJmMzg2YTgx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 2cf1427e-7e29-baa1-b460-0d4dbf386a81\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f518c0c7e9d8b1be80dd1037165bbbfe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:22:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/2cf1427e7e29baa1b4600d4dbf386a81", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzJjZjE0MjdlN2UyOWJhYTFiNDYwMGQ0ZGJmMzg2YTgx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 2cf1427e-7e29-baa1-b460-0d4dbf386a81\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5cbce9e3d0a7bfa686e32a3ed14e09de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:22:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/2cf1427e7e29baa1b4600d4dbf386a81", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzJjZjE0MjdlN2UyOWJhYTFiNDYwMGQ0ZGJmMzg2YTgx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 2cf1427e-7e29-baa1-b460-0d4dbf386a81\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "28edd240c8e3b77db4444940247561c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:23:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/44b193ae3aaebff58342652f8830f1b7", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzQ0YjE5M2FlM2FhZWJmZjU4MzQyNjUyZjg4MzBmMWI3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 44b193ae-3aae-bff5-8342-652f8830f1b7\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "df3fd708d648b1d5a40a697aefb8472a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:23:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/f0a62834d6e5bbbd873fb3ceac970850", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2YwYTYyODM0ZDZlNWJiYmQ4NzNmYjNjZWFjOTcwODUw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n f0a62834-d6e5-bbbd-873f-b3ceac970850\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "5f41bf9910acb936961fceea33c2db1e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:23:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deployments/onesdk2879/roles/onesdk3948", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzL29uZXNkazI4Nzkvcm9sZXMvb25lc2RrMzk0OA==", + "RequestMethod": "PUT", + "RequestBody": "\r\n onesdk3948\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n \r\n tcp\r\n onesdk6119\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n \r\n Small\r\n true\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2569" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06507674049eb97bbde3d31dadd6b075" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:23:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/06507674049eb97bbde3d31dadd6b075", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA2NTA3Njc0MDQ5ZWI5N2JiZGUzZDMxZGFkZDZiMDc1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 06507674-049e-b97b-bde3-d31dadd6b075\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "510fbf83ccbdba2cbdabc8c4bfb56952" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:23:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/06507674049eb97bbde3d31dadd6b075", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA2NTA3Njc0MDQ5ZWI5N2JiZGUzZDMxZGFkZDZiMDc1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 06507674-049e-b97b-bde3-d31dadd6b075\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7b250317e765b882ab935bf6eb3647e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:23:48 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/06507674049eb97bbde3d31dadd6b075", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA2NTA3Njc0MDQ5ZWI5N2JiZGUzZDMxZGFkZDZiMDc1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 06507674-049e-b97b-bde3-d31dadd6b075\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "53b451030f73b3e0a241f3326fde3e80" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:18 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/b0a6b832e67db4dbb99dbf325a24b9f7", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2IwYTZiODMyZTY3ZGI0ZGJiOTlkYmYzMjVhMjRiOWY3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n b0a6b832-e67d-b4db-b99d-bf325a24b9f7\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "ffe3efc056f0b6b78b48c5b12a888811" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:20 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/fda3c7d1d3e5b541918b637e5e52b1a9", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZkYTNjN2QxZDNlNWI1NDE5MThiNjM3ZTVlNTJiMWE5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n fda3c7d1-d3e5-b541-918b-637e5e52b1a9\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "062df5925d83b3ecaf5b5e14e7ad1ddb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:20 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deployments/onesdk2879?comp=UpdateLbSet", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzL29uZXNkazI4Nzk/Y29tcD1VcGRhdGVMYlNldA==", + "RequestMethod": "POST", + "RequestBody": "\r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 138.91.252.21\r\n false\r\n \r\n onesdk2879ContractContract\r\n \r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "715" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e6a34c28994bb8afb4fef47265fae2cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/e6a34c28994bb8afb4fef47265fae2cd", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2U2YTM0YzI4OTk0YmI4YWZiNGZlZjQ3MjY1ZmFlMmNk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n e6a34c28-994b-b8af-b4fe-f47265fae2cd\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5106f6f97cc3b264ab56d40d080a202d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/e6a34c28994bb8afb4fef47265fae2cd", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2U2YTM0YzI4OTk0YmI4YWZiNGZlZjQ3MjY1ZmFlMmNk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n e6a34c28-994b-b8af-b4fe-f47265fae2cd\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d2e9783f02eb9e0be06b4eabff27f11" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:52 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9176c2300102b4318b2e8114de8706f0", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkxNzZjMjMwMDEwMmI0MzE4YjJlODExNGRlODcwNmYw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 9176c230-0102-b431-8b2e-8114de8706f0\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "00da52a51ce5bbac8d799e3466e7f51e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8363358b9b83bfb394d7be1643e37488", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzgzNjMzNThiOWI4M2JmYjM5NGQ3YmUxNjQzZTM3NDg4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 8363358b-9b83-bfb3-94d7-be1643e37488\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "20437e03c7ecbe5b9b097d101993e541" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879\r\n onesdk2879\r\n \r\n Implicitly created hosted service2015-07-10 05:18\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:18:07Z\r\n 2015-07-10T05:18:47Z\r\n \r\n \r\n ResourceGroup\r\n onesdk2879\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.74.108.39\r\n \r\n \r\n onesdk3206\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:24:58Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n onesdk5250\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk8718\r\n 3F5D8B77B30FB341191B1017E830512F4535EC70\r\n \r\n 1.0\r\n 2015-07-10T05:24:59Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:24:58Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "10107" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f4f72bde0ee6bb408e8aae8a0bf581d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:59 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879\r\n onesdk2879\r\n \r\n Implicitly created hosted service2015-07-10 05:18\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:18:07Z\r\n 2015-07-10T05:18:47Z\r\n \r\n \r\n ResourceGroup\r\n onesdk2879\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk2879\r\n Production\r\n d3e64b04168d4a29a2db413d13eb9958\r\n Running\r\n \r\n http://onesdk2879.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGszOTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQogIDxSb2xlIG5hbWU9Im9uZXNkazg3MTgiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n onesdk3948\r\n onesdk3948\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n Windows is preparing your computer for first use...\r\n 100.74.108.39\r\n \r\n \r\n onesdk3206\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 61189\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 65029\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n tfsq4\r\n \r\n 1.0\r\n 2015-07-10T05:24:58Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk3948.\r\n \r\n \r\n \r\n \r\n onesdk8718\r\n onesdk8718\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.74.108.43\r\n \r\n \r\n onesdk5250\r\n 23.99.85.49\r\n 448\r\n 1100\r\n tcp\r\n \r\n \r\n PowerShell\r\n 23.99.85.49\r\n 49728\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.85.49\r\n 63638\r\n 3389\r\n tcp\r\n \r\n \r\n onesdk7756\r\n 138.91.252.21\r\n 444\r\n 1001\r\n tcp\r\n \r\n \r\n Started\r\n onesdk8718\r\n 3F5D8B77B30FB341191B1017E830512F4535EC70\r\n \r\n 1.0\r\n 2015-07-10T05:24:59Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8718.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk3948\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk3206\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 5986\r\n PowerShell\r\n 61189\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 65029\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk3948-0-201507100521080320\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk3948-2015-7-9-22-21-3-354-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n onesdk8718\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n onesdk4939\r\n 1100\r\n onesdk5250\r\n 448\r\n \r\n 1000\r\n tcp\r\n 15\r\n 31\r\n \r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 1001\r\n onesdk7756\r\n 444\r\n tcp\r\n 138.91.252.21\r\n false\r\n onesdk6119\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49728\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 63638\r\n tcp\r\n 23.99.85.49\r\n false\r\n onesdk2879ContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2879-onesdk8718-0-201507100518140894\r\n https://onesdk4625.blob.core.windows.net/vhds/onesdk2879-onesdk8718-2015-7-9-22-18-7-36-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T05:18:10Z\r\n 2015-07-10T05:24:58Z\r\n \r\n \r\n 2015-07-08T05:20:04Z\r\n 2015-07-15T05:20:04Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.85.49
\r\n true\r\n onesdk2879ContractContract\r\n
\r\n \r\n
138.91.252.21
\r\n onesdk6119\r\n true\r\n
\r\n
\r\n onesdk2879.d5.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "10107" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb44cad01675bb058be7160f4b457c0d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:24:59 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879\r\n onesdk2879\r\n \r\n Implicitly created hosted service2015-07-10 05:18\r\n West US\r\n \r\n Created\r\n 2015-07-10T05:18:07Z\r\n 2015-07-10T05:18:47Z\r\n \r\n \r\n ResourceGroup\r\n onesdk2879\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n 00070F01D764A764B286AFC5A5017ACAC9483DDF\r\n", + "ResponseHeaders": { + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "945c46efc81dba21a270e5c4c079fd1f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:25:29 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879/deployments/onesdk2879?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5L2RlcGxveW1lbnRzL29uZXNkazI4Nzk/Y29tcD1tZWRpYQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5a4e105ed450b156b223227dbe995167" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:25:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5a4e105ed450b156b223227dbe995167", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVhNGUxMDVlZDQ1MGIxNTZiMjIzMjI3ZGJlOTk1MTY3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 5a4e105e-d450-b156-b223-227dbe995167\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ef2859d79636b63fa985e31becf34e57" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:25:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/5a4e105ed450b156b223227dbe995167", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzVhNGUxMDVlZDQ1MGIxNTZiMjIzMjI3ZGJlOTk1MTY3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 5a4e105e-d450-b156-b223-227dbe995167\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "387aa59afeb0b11aa73f5e42781c98e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:25:29 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2879?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyODc5P2NvbXA9bWVkaWE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04f8a2064e5fbc4687cd1ff67b9c4f00" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:25:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/04f8a2064e5fbc4687cd1ff67b9c4f00", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0ZjhhMjA2NGU1ZmJjNDY4N2NkMWZmNjdiOWM0ZjAw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 04f8a206-4e5f-bc46-87cd-1ff67b9c4f00\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d7227d3f460beeeaf84fad5b8455226" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:25:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/04f8a2064e5fbc4687cd1ff67b9c4f00", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0ZjhhMjA2NGU1ZmJjNDY4N2NkMWZmNjdiOWM0ZjAw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 04f8a206-4e5f-bc46-87cd-1ff67b9c4f00\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "31bc2b7d6b91b8109fc4eb579d5d0acb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:26:01 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4625", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNDYyNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "7db8871e37c3bc0fac35cd3c2e7bc1c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:06 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/7db8871e37c3bc0fac35cd3c2e7bc1c4", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzdkYjg4NzFlMzdjM2JjMGZhYzM1Y2QzYzJlN2JjMWM0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 7db8871e-37c3-bc0f-ac35-cd3c2e7bc1c4\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f52f6c49ba13b6a5b603cd49b775b458" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 05:28:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-SetLBEndpoint": [ + "onesdk8718", + "onesdk6119", + "onesdk2879", + "onesdk4625", + "onesdk7756", + "onesdk5250", + "onesdk3206", + "onesdk3948", + "onesdk4939" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/AzureReservedIPSimpleOps.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/AzureReservedIPSimpleOps.json new file mode 100644 index 000000000000..797d6e3009fc --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/AzureReservedIPSimpleOps.json @@ -0,0 +1,443 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "d614c8977b7cb420b3df253900404918" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/d614c8977b7cb420b3df253900404918", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2Q2MTRjODk3N2I3Y2I0MjBiM2RmMjUzOTAwNDA0OTE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n d614c897-7b7c-b420-b3df-253900404918\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "36dca83372e1b047968642d97af224de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk1672\r\n \r\n \r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "207" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3c074efa36bebc3e92311a76b4070e09" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3c074efa36bebc3e92311a76b4070e09", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzNjMDc0ZWZhMzZiZWJjM2U5MjMxMWE3NmI0MDcwZTA5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 3c074efa-36be-bc3e-9231-1a76b4070e09\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9382271ba46b7e68fce74571c7d6a1e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3c074efa36bebc3e92311a76b4070e09", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzNjMDc0ZWZhMzZiZWJjM2U5MjMxMWE3NmI0MDcwZTA5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 3c074efa-36be-bc3e-9231-1a76b4070e09\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d1072593d509b537b225e8dac37fea89" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk1672", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazE2NzI=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1672\r\n
23.99.16.151
\r\n a44f9a78-e78a-4233-8c0f-954830bf5991\r\n \r\n Created\r\n West US\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "306" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d380404510ab6b3b803e4f3acf35ab8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0d380404510ab6b3b803e4f3acf35ab8", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBkMzgwNDA0NTEwYWI2YjNiODAzZTRmM2FjZjM1YWI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 0d380404-510a-b6b3-b803-e4f3acf35ab8\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "fe95619bfc11b21b985660e621281275" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk1672", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazE2NzI=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c3d9cfaa971b400b2fbc7244dba1763" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/7c3d9cfaa971b400b2fbc7244dba1763", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzdjM2Q5Y2ZhYTk3MWI0MDBiMmZiYzcyNDRkYmExNzYz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 7c3d9cfa-a971-b400-b2fb-c7244dba1763\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "850aae67e7bebf0285190f0fb8f39e6d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/7c3d9cfaa971b400b2fbc7244dba1763", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzdjM2Q5Y2ZhYTk3MWI0MDBiMmZiYzcyNDRkYmExNzYz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 7c3d9cfa-a971-b400-b2fb-c7244dba1763\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "896a6e7e9b53b7c9ab25a3138b4b3df4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:50:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AzureReservedIPSimpleOperations": [ + "onesdk1672" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/CreateVMWithReservedIP.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/CreateVMWithReservedIP.json new file mode 100644 index 000000000000..d8f68f56b9ff --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/CreateVMWithReservedIP.json @@ -0,0 +1,2141 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "10bdfbd6ce7bb167bb9436d11f18f302" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:50:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/10bdfbd6ce7bb167bb9436d11f18f302", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzEwYmRmYmQ2Y2U3YmIxNjdiYjk0MzZkMTFmMThmMzAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 10bdfbd6-ce7b-b167-bb94-36d11f18f302\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "b6445110231cb92a804d860913175cbb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:50:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2350\r\n \r\n \r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "207" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "99fbe0853edab2d998e84a34891efa93" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:50:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/99fbe0853edab2d998e84a34891efa93", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzk5ZmJlMDg1M2VkYWIyZDk5OGU4NGEzNDg5MWVmYTkz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 99fbe085-3eda-b2d9-98e8-4a34891efa93\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0202f63619c8b174b84e5d81fa157fe1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:50:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/99fbe0853edab2d998e84a34891efa93", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzk5ZmJlMDg1M2VkYWIyZDk5OGU4NGEzNDg5MWVmYTkz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 99fbe085-3eda-b2d9-98e8-4a34891efa93\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f858fa62946cb16fbd8c2d5c5971c464" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:50:48 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk7591\r\n \r\n \r\n West US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "344" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "ae50ec3bd637ba44a3f05669bc51f825" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:50:50 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/storage/onesdk7591" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/ae50ec3bd637ba44a3f05669bc51f825", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2FlNTBlYzNiZDYzN2JhNDRhM2YwNTY2OWJjNTFmODI1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n ae50ec3b-d637-ba44-a3f0-5669bc51f825\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "5e81a8563238b413b8ebc5a900d75820" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:50:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/ae50ec3bd637ba44a3f05669bc51f825", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2FlNTBlYzNiZDYzN2JhNDRhM2YwNTY2OWJjNTFmODI1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n ae50ec3b-d637-ba44-a3f0-5669bc51f825\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "22cd1585b344b1c0b86cc1cbb409a0f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk2350", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazIzNTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2350\r\n
65.52.125.50
\r\n a34aff85-9a3f-4bc7-acf3-32c1c5d225d9\r\n \r\n Created\r\n West US\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "306" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0772f798c8bbb45ea87994fd62eca482" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk2350", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazIzNTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2350\r\n
65.52.125.50
\r\n a34aff85-9a3f-4bc7-acf3-32c1c5d225d9\r\n \r\n Created\r\n true\r\n onesdk2988\r\n onesdk2988\r\n West US\r\n onesdk2350\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "116b8a8665bdb3fb804eebc1cf5fc051" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:39 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0772f798c8bbb45ea87994fd62eca482", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA3NzJmNzk4YzhiYmI0NWVhODc5OTRmZDYyZWNhNDgy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 0772f798-c8bb-b45e-a879-94fd62eca482\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "c4fb5bb47aadb138b4a72f1c73a99dec" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678786" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d62a4000e4ebc04b9118101b70e6ffc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:25 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3d62a4000e4ebc04b9118101b70e6ffc", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzNkNjJhNDAwMGU0ZWJjMDRiOTExODEwMWI3MGU2ZmZj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 3d62a400-0e4e-bc04-b911-8101b70e6ffc\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "964571f99fb1bd3a83e08b5e6e891ddf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:25 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c3362310281b763a2e357b400c2fbca" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:28 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "064fa17181acba7a81d42b342aaba4b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:29 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9cb9698d2230bc0e8e8a2a27f4b8ca40" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:30 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyOTg4L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6c5f3b835c26bc6ead77c4c3e2496722" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:30 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyOTg4L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk2988\r\n Production\r\n f95dcf8012684a7ca8091eb4ca459414\r\n Running\r\n \r\n http://onesdk2988.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4MTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8148\r\n onesdk8148\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.220.115\r\n \r\n \r\n PowerShell\r\n 65.52.125.50\r\n 63687\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 65.52.125.50\r\n 57687\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T02:55:07Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8148.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8148\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 63687\r\n tcp\r\n 65.52.125.50\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 57687\r\n tcp\r\n 65.52.125.50\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2988-onesdk8148-0-201507100251470853\r\n https://onesdk7591.blob.core.windows.net/vhds/onesdk2988-onesdk8148-2015-7-9-19-51-34-627-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n A6008E22F36CBE848644A7A92B4E51A17E303486\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:51:36Z\r\n 2015-07-10T02:55:06Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
65.52.125.50
\r\n true\r\n onesdk2350\r\n true\r\n onesdk2350\r\n
\r\n
\r\n onesdk2350\r\n onesdk2988.d4.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4291" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c67c75b1a8bb6f0b0e9d22c3b513bda" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk7591", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNzU5MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk7591\r\n onesdk7591\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk7591.blob.core.windows.net/\r\n https://onesdk7591.queue.core.windows.net/\r\n https://onesdk7591.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T02:50:50Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "17c6f1bf5c17b877ab38d2c32c78f65c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:32 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk7591/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNzU5MS9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk7591\r\n \r\n 3ywhy9GOgkBXOWhKKe2vT5f6v7NU+lpU7RZiuC+osfZMj+84hjMAdDhgvEdsg8apk2mYKV89K2S06Tnjoije9g==\r\n ZlLixk83t6gdeFY4hwIwdLazaAQgu0RHenjYZ1QeD3B4MGKLOj3wrp+xYGSE+Gwsh4tPofURzaph7PwBUF84Fg==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "c0b36d8aa8e0b38a875a80ee224b5c60" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:32 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2988\r\n \r\n Implicitly created hosted service2015-07-10 02:51\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "283" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd73b7ae8b14b146ac582e621f699424" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:33 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/compute/onesdk2988" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988/deployments", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyOTg4L2RlcGxveW1lbnRz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2988\r\n Production\r\n \r\n \r\n \r\n onesdk8148\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk8148\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk7591.blob.core.windows.net/vhds/onesdk2988-onesdk8148-2015-7-9-19-51-34-627-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n \r\n \r\n onesdk2350\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2562" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "047488bf670ebd11a883ce686c49b38b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:37 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6f30eec5e222b8a7ba221bba4710dde4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:51:37 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6c9238be8cbb6ab8222670ddc02c9b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:52:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e23e824a4bcb72594616ebf5efd4190" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:52:37 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e43d61d8d071bc46aa8edd4cc40be3d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:53:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "feb5cabbb3b7bb64bd8782358e79803e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:53:37 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "76aac02abd6db28c8ebfd14e9e9e211c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:54:08 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2a7cf7f0f2dfba1c84b8406f00ff42f8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:54:38 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "faaa06cf8014bdb7aab3ab36ddefc5b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/047488bf670ebd11a883ce686c49b38b", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA0NzQ4OGJmNjcwZWJkMTFhODgzY2U2ODZjNDliMzhi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 047488bf-670e-bd11-a883-ce686c49b38b\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a2f1c2cae36b94d8629189069586302" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:39 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/116b8a8665bdb3fb804eebc1cf5fc051", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzExNmI4YTg2NjViZGIzZmI4MDRlZWJjMWNmNWZjMDUx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 116b8a86-65bd-b3fb-804e-ebc1cf5fc051\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "28141a53b635b7bdbba9af5b2970b805" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyOTg4P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988\r\n onesdk2988\r\n \r\n Implicitly created hosted service2015-07-10 02:51\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:51:33Z\r\n 2015-07-10T02:54:15Z\r\n \r\n \r\n ResourceGroup\r\n onesdk2988\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk2988\r\n Production\r\n f95dcf8012684a7ca8091eb4ca459414\r\n Running\r\n \r\n http://onesdk2988.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4MTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8148\r\n onesdk8148\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.220.115\r\n \r\n \r\n PowerShell\r\n 65.52.125.50\r\n 63687\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 65.52.125.50\r\n 57687\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T02:55:07Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8148.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8148\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 63687\r\n tcp\r\n 65.52.125.50\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 57687\r\n tcp\r\n 65.52.125.50\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2988-onesdk8148-0-201507100251470853\r\n https://onesdk7591.blob.core.windows.net/vhds/onesdk2988-onesdk8148-2015-7-9-19-51-34-627-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n A6008E22F36CBE848644A7A92B4E51A17E303486\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:51:36Z\r\n 2015-07-10T02:55:06Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
65.52.125.50
\r\n true\r\n onesdk2350\r\n true\r\n onesdk2350\r\n
\r\n
\r\n onesdk2350\r\n onesdk2988.d4.internal.cloudapp.net\r\n \r\n
\r\n
\r\n A6008E22F36CBE848644A7A92B4E51A17E303486\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5146" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b78466df6e66b90d95e59fad22f7c540" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyOTg4P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988\r\n onesdk2988\r\n \r\n Implicitly created hosted service2015-07-10 02:51\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:51:33Z\r\n 2015-07-10T02:54:15Z\r\n \r\n \r\n ResourceGroup\r\n onesdk2988\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk2988\r\n Production\r\n f95dcf8012684a7ca8091eb4ca459414\r\n Running\r\n \r\n http://onesdk2988.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGs4MTQ4Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk8148\r\n onesdk8148\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.220.115\r\n \r\n \r\n PowerShell\r\n 65.52.125.50\r\n 63687\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 65.52.125.50\r\n 57687\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T02:55:07Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk8148.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk8148\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 63687\r\n tcp\r\n 65.52.125.50\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 57687\r\n tcp\r\n 65.52.125.50\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk2988-onesdk8148-0-201507100251470853\r\n https://onesdk7591.blob.core.windows.net/vhds/onesdk2988-onesdk8148-2015-7-9-19-51-34-627-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n A6008E22F36CBE848644A7A92B4E51A17E303486\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:51:36Z\r\n 2015-07-10T02:55:06Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
65.52.125.50
\r\n true\r\n onesdk2350\r\n true\r\n onesdk2350\r\n
\r\n
\r\n onesdk2350\r\n onesdk2988.d4.internal.cloudapp.net\r\n \r\n
\r\n
\r\n A6008E22F36CBE848644A7A92B4E51A17E303486\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5146" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6741ac4104abf5b9db568771978b8bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:40 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyOTg4P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988\r\n onesdk2988\r\n \r\n Implicitly created hosted service2015-07-10 02:51\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:51:33Z\r\n 2015-07-10T02:54:15Z\r\n \r\n \r\n ResourceGroup\r\n onesdk2988\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n A6008E22F36CBE848644A7A92B4E51A17E303486\r\n", + "ResponseHeaders": { + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "167548f16d2ab9ec9113e95882f4267c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:57:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988/deployments/onesdk2988?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyOTg4L2RlcGxveW1lbnRzL29uZXNkazI5ODg/Y29tcD1tZWRpYQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30e7dfae6d39b65e98590ef69c707f1f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/30e7dfae6d39b65e98590ef69c707f1f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMwZTdkZmFlNmQzOWI2NWU5ODU5MGVmNjljNzA3ZjFm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 30e7dfae-6d39-b65e-9859-0ef69c707f1f\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dcde562a368ebeb3ae50d68f576b90b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:55:42 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/30e7dfae6d39b65e98590ef69c707f1f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMwZTdkZmFlNmQzOWI2NWU5ODU5MGVmNjljNzA3ZjFm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 30e7dfae-6d39-b65e-9859-0ef69c707f1f\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6aa186c25ba5b57fa92fb3c0cfb7d8f6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:56:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/30e7dfae6d39b65e98590ef69c707f1f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMwZTdkZmFlNmQzOWI2NWU5ODU5MGVmNjljNzA3ZjFm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 30e7dfae-6d39-b65e-9859-0ef69c707f1f\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "29d783030913b486885fe5a33b80d376" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:56:42 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/30e7dfae6d39b65e98590ef69c707f1f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMwZTdkZmFlNmQzOWI2NWU5ODU5MGVmNjljNzA3ZjFm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 30e7dfae-6d39-b65e-9859-0ef69c707f1f\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d48839cdf8aab22bbc4b17518ef660b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:57:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/30e7dfae6d39b65e98590ef69c707f1f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMwZTdkZmFlNmQzOWI2NWU5ODU5MGVmNjljNzA3ZjFm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 30e7dfae-6d39-b65e-9859-0ef69c707f1f\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d622d3fcb7d5b412943324d098e13241" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:57:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk2988?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyOTg4P2NvbXA9bWVkaWE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d1537843e82fb7d681dc239b639523ff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:57:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/d1537843e82fb7d681dc239b639523ff", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2QxNTM3ODQzZTgyZmI3ZDY4MWRjMjM5YjYzOTUyM2Zm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n d1537843-e82f-b7d6-81dc-239b639523ff\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "154eb6d99983bc4ca60855d1969c3d5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:57:43 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/d1537843e82fb7d681dc239b639523ff", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2QxNTM3ODQzZTgyZmI3ZDY4MWRjMjM5YjYzOTUyM2Zm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n d1537843-e82f-b7d6-81dc-239b639523ff\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d1ac4f230653b23982005e18e44f74aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:58:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk2350", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazIzNTA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "845bc45a1a1fb29f914b9234edce1dc3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:58:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/845bc45a1a1fb29f914b9234edce1dc3", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzg0NWJjNDVhMWExZmIyOWY5MTRiOTIzNGVkY2UxZGMz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 845bc45a-1a1f-b29f-914b-9234edce1dc3\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d019a6f307b9b1148fa957769c311b5f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:58:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/845bc45a1a1fb29f914b9234edce1dc3", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzg0NWJjNDVhMWExZmIyOWY5MTRiOTIzNGVkY2UxZGMz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 845bc45a-1a1f-b29f-914b-9234edce1dc3\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b00c3bd236f7b313908232a125af94c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:58:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk7591", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNzU5MQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "a59ace4bb2b4b17589af84692f593012" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:00:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/a59ace4bb2b4b17589af84692f593012", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2E1OWFjZTRiYjJiNGIxNzU4OWFmODQ2OTJmNTkzMDEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n a59ace4b-b2b4-b175-89af-84692f593012\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "40b5033878b2b3389f6f2cd43196731c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:00:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateVMWithReservedIP": [ + "onesdk8148", + "onesdk2988", + "onesdk7591", + "onesdk2350" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/RemoveReservedIPAssocSimple.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/RemoveReservedIPAssocSimple.json new file mode 100644 index 000000000000..6a649f97e8be --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/RemoveReservedIPAssocSimple.json @@ -0,0 +1,2053 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "093ea5e77a3cb40d87e7eca8e60785c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:00:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/093ea5e77a3cb40d87e7eca8e60785c5", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA5M2VhNWU3N2EzY2I0MGQ4N2U3ZWNhOGU2MDc4NWM1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 093ea5e7-7a3c-b40d-87e7-eca8e60785c5\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9c8671bf9b45b0039739f36f8c38bfaa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:00:51 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk6115\r\n \r\n \r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "207" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "52fc6d5b9b61bb47afe2f3e8e6ae1838" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:00:52 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/52fc6d5b9b61bb47afe2f3e8e6ae1838", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzUyZmM2ZDViOWI2MWJiNDdhZmUyZjNlOGU2YWUxODM4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 52fc6d5b-9b61-bb47-afe2-f3e8e6ae1838\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "54323bd996c0b115bd245d7edcd81bc1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:00:52 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/52fc6d5b9b61bb47afe2f3e8e6ae1838", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzUyZmM2ZDViOWI2MWJiNDdhZmUyZjNlOGU2YWUxODM4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 52fc6d5b-9b61-bb47-afe2-f3e8e6ae1838\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0194fcfa4722bcb1801e2356885c8eb7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:01:22 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2424\r\n \r\n \r\n West US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "344" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "ffc6d3fe3b6db973bf66b6055a7aec87" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:01:25 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/storage/onesdk2424" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/ffc6d3fe3b6db973bf66b6055a7aec87", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZmYzZkM2ZlM2I2ZGI5NzNiZjY2YjYwNTVhN2FlYzg3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n ffc6d3fe-3b6d-b973-bf66-b6055a7aec87\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f30cd3bcd9ddb31cbe67a0ccf32db06c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:01:25 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/ffc6d3fe3b6db973bf66b6055a7aec87", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2ZmYzZkM2ZlM2I2ZGI5NzNiZjY2YjYwNTVhN2FlYzg3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n ffc6d3fe-3b6d-b973-bf66-b6055a7aec87\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9c5e88534f6fb74eacc54bc26c3f3384" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:01:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk6115", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazYxMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk6115\r\n
138.91.245.166
\r\n a0431386-450f-4591-9c4d-73a43bac159d\r\n \r\n Created\r\n West US\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "24dbd89d193db264aa058cef6bd2ffc1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:01:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk6115", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazYxMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk6115\r\n
138.91.245.166
\r\n a0431386-450f-4591-9c4d-73a43bac159d\r\n \r\n Created\r\n true\r\n onesdk5305\r\n onesdk5305\r\n West US\r\n onesdk6115\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8e1b8be48469b7b68e83dc4ce093bafa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:03:16 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk6115", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazYxMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk6115\r\n
138.91.245.166
\r\n a0431386-450f-4591-9c4d-73a43bac159d\r\n \r\n Created\r\n West US\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca67b3fa7a69b4cf8fa042ac256deaa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:18 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/24dbd89d193db264aa058cef6bd2ffc1", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzI0ZGJkODlkMTkzZGIyNjRhYTA1OGNlZjZiZDJmZmMx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 24dbd89d-193d-b264-aa05-8cef6bd2ffc1\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "5e658dffb8cdbc81b22bd48a0fd8c4e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:01:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678786" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "af1845e3c411b829b7b2b6ed618eb1d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:01:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/af1845e3c411b829b7b2b6ed618eb1d6", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2FmMTg0NWUzYzQxMWI4MjliN2IyYjZlZDYxOGViMWQ2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n af1845e3-c411-b829-b7b2-b6ed618eb1d6\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "d0bf7eeb4c64b319a978ba09997dd899" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:01:59 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "69af0e571caabf2bb9dc4a2328698bd7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:06 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d4c5a0ac8695bbae83fa4ce84150afd7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c81d79810775bacc9523fb1c14186712" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b9e555a4a5f1b51f9546da918ad75d03" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk5305\r\n Production\r\n 8ee7a0fc1e604339a65d4fa895d34d12\r\n Running\r\n \r\n http://onesdk5305.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsyNjU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk2656\r\n onesdk2656\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.73.218.118\r\n \r\n \r\n PowerShell\r\n 138.91.245.166\r\n 55758\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.245.166\r\n 61519\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T03:03:09Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk2656.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk2656\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 55758\r\n tcp\r\n 138.91.245.166\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 61519\r\n tcp\r\n 138.91.245.166\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk5305-onesdk2656-0-201507100302190235\r\n https://onesdk2424.blob.core.windows.net/vhds/onesdk5305-onesdk2656-2015-7-9-20-2-13-225-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 840BA3A08A9B54F5B80B3433BC6C9DE34DEADC3F\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T03:02:15Z\r\n 2015-07-10T03:03:09Z\r\n \r\n \r\n 2015-07-08T00:47:31Z\r\n 2015-07-15T00:47:31Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.245.166
\r\n true\r\n onesdk6115\r\n true\r\n onesdk6115\r\n
\r\n
\r\n onesdk6115\r\n onesdk5305.d4.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4305" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "73f87933872bbf85b189d8edbf8c70ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:03:18 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk5305\r\n Production\r\n 8ee7a0fc1e604339a65d4fa895d34d12\r\n Running\r\n \r\n http://onesdk5305.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsyNjU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk2656\r\n onesdk2656\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.73.218.118\r\n \r\n \r\n PowerShell\r\n 104.40.57.58\r\n 55758\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.40.57.58\r\n 61519\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T03:04:21Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk2656.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk2656\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 55758\r\n tcp\r\n 104.40.57.58\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 61519\r\n tcp\r\n 104.40.57.58\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk5305-onesdk2656-0-201507100302190235\r\n https://onesdk2424.blob.core.windows.net/vhds/onesdk5305-onesdk2656-2015-7-9-20-2-13-225-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 840BA3A08A9B54F5B80B3433BC6C9DE34DEADC3F\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T03:02:15Z\r\n 2015-07-10T03:04:20Z\r\n \r\n \r\n 2015-07-08T00:47:31Z\r\n 2015-07-15T00:47:31Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
104.40.57.58
\r\n true\r\n onesdk6115\r\n
\r\n
\r\n onesdk5305.d4.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4175" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "291f7bb976a6b35fbd6fbe8aff35dfde" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2424", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMjQyNA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2424\r\n onesdk2424\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk2424.blob.core.windows.net/\r\n https://onesdk2424.queue.core.windows.net/\r\n https://onesdk2424.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T03:01:25Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "d9142246a5dbbaef8a62781682f00f25" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2424/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMjQyNC9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2424\r\n \r\n TMfdh0mXCtqzePvB/3SCqutCXJmIc2pc0Bi3paxbjFXCJPwYKCqBGrxEQFFPPiYmUpl+5XveiLMjmcwdjGxF9Q==\r\n eGtr40XSvV29BQu2uqN/VXNrei1ZZNKrZwgNjlBnQjFMORNKBQ/NXTxwlQ5M9mdRfGRTZt2EcQCgwRwAGyYnBQ==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "a8212315161bbbdca31fdee0bcaee20c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:12 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk5305\r\n \r\n Implicitly created hosted service2015-07-10 03:02\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "283" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "20616e1eb752bd47abd8ad235381dcb2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:11 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/compute/onesdk5305" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305/deployments", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1L2RlcGxveW1lbnRz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk5305\r\n Production\r\n \r\n \r\n \r\n onesdk2656\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk2656\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk2424.blob.core.windows.net/vhds/onesdk5305-onesdk2656-2015-7-9-20-2-13-225-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n \r\n \r\n onesdk6115\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2561" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d7e88d9303dbba69cae6360539e4e49" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9d7e88d9303dbba69cae6360539e4e49", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzlkN2U4OGQ5MzAzZGJiYTY5Y2FlNjM2MDUzOWU0ZTQ5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 9d7e88d9-303d-bba6-9cae-6360539e4e49\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f1f2c39dabdcb17288535d3f71fe0cce" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:15 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9d7e88d9303dbba69cae6360539e4e49", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzlkN2U4OGQ5MzAzZGJiYTY5Y2FlNjM2MDUzOWU0ZTQ5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 9d7e88d9-303d-bba6-9cae-6360539e4e49\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4d6c565b6ad9b665afaeebf8746fc991" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:02:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9d7e88d9303dbba69cae6360539e4e49", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzlkN2U4OGQ5MzAzZGJiYTY5Y2FlNjM2MDUzOWU0ZTQ5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 9d7e88d9-303d-bba6-9cae-6360539e4e49\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "07b116cca8e8b987a3f7acf0ffe61208" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:03:16 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/8e1b8be48469b7b68e83dc4ce093bafa", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzhlMWI4YmU0ODQ2OWI3YjY4ZTgzZGM0Y2UwOTNiYWZh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 8e1b8be4-8469-b7b6-8e83-dc4ce093bafa\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f522ce16f9efb3849f782e64e19db327" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:03:16 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk6115/operations/disassociate", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazYxMTUvb3BlcmF0aW9ucy9kaXNhc3NvY2lhdGU=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk5305\r\n onesdk5305\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "187" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a5eab28df5c9b336b0d90740da0c66de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:03:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/a5eab28df5c9b336b0d90740da0c66de", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2E1ZWFiMjhkZjVjOWIzMzZiMGQ5MDc0MGRhMGM2NmRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n a5eab28d-f5c9-b336-b0d9-0740da0c66de\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5f708728b5f0bce78a49c5b513dd92c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:03:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/a5eab28df5c9b336b0d90740da0c66de", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2E1ZWFiMjhkZjVjOWIzMzZiMGQ5MDc0MGRhMGM2NmRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n a5eab28d-f5c9-b336-b0d9-0740da0c66de\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "427d94657762b3c792dbcc12224244ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:03:48 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/a5eab28df5c9b336b0d90740da0c66de", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2E1ZWFiMjhkZjVjOWIzMzZiMGQ5MDc0MGRhMGM2NmRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n a5eab28d-f5c9-b336-b0d9-0740da0c66de\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "64667b99a4fdb52fbda93cdec4c7930a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/ca67b3fa7a69b4cf8fa042ac256deaa7", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2NhNjdiM2ZhN2E2OWI0Y2Y4ZmEwNDJhYzI1NmRlYWE3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n ca67b3fa-7a69-b4cf-8fa0-42ac256deaa7\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f5005a7750a4ba449cbafdb77ac39505" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:18 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305\r\n onesdk5305\r\n \r\n Implicitly created hosted service2015-07-10 03:02\r\n West US\r\n \r\n Created\r\n 2015-07-10T03:02:12Z\r\n 2015-07-10T03:02:43Z\r\n \r\n \r\n ResourceGroup\r\n onesdk5305\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk5305\r\n Production\r\n 8ee7a0fc1e604339a65d4fa895d34d12\r\n Running\r\n \r\n http://onesdk5305.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsyNjU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk2656\r\n onesdk2656\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.73.218.118\r\n \r\n \r\n PowerShell\r\n 104.40.57.58\r\n 55758\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.40.57.58\r\n 61519\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T03:04:21Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk2656.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk2656\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 55758\r\n tcp\r\n 104.40.57.58\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 61519\r\n tcp\r\n 104.40.57.58\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk5305-onesdk2656-0-201507100302190235\r\n https://onesdk2424.blob.core.windows.net/vhds/onesdk5305-onesdk2656-2015-7-9-20-2-13-225-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 840BA3A08A9B54F5B80B3433BC6C9DE34DEADC3F\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T03:02:15Z\r\n 2015-07-10T03:04:20Z\r\n \r\n \r\n 2015-07-08T00:47:31Z\r\n 2015-07-15T00:47:31Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
104.40.57.58
\r\n true\r\n onesdk6115\r\n
\r\n
\r\n onesdk5305.d4.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 840BA3A08A9B54F5B80B3433BC6C9DE34DEADC3F\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5030" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7b49f763677eb01a83f57e524b27f68a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305\r\n onesdk5305\r\n \r\n Implicitly created hosted service2015-07-10 03:02\r\n West US\r\n \r\n Created\r\n 2015-07-10T03:02:12Z\r\n 2015-07-10T03:02:43Z\r\n \r\n \r\n ResourceGroup\r\n onesdk5305\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk5305\r\n Production\r\n 8ee7a0fc1e604339a65d4fa895d34d12\r\n Running\r\n \r\n http://onesdk5305.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsyNjU2Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk2656\r\n onesdk2656\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.73.218.118\r\n \r\n \r\n PowerShell\r\n 104.40.57.58\r\n 55758\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.40.57.58\r\n 61519\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T03:04:21Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk2656.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk2656\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 55758\r\n tcp\r\n 104.40.57.58\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 61519\r\n tcp\r\n 104.40.57.58\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk5305-onesdk2656-0-201507100302190235\r\n https://onesdk2424.blob.core.windows.net/vhds/onesdk5305-onesdk2656-2015-7-9-20-2-13-225-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 840BA3A08A9B54F5B80B3433BC6C9DE34DEADC3F\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T03:02:15Z\r\n 2015-07-10T03:04:20Z\r\n \r\n \r\n 2015-07-08T00:47:31Z\r\n 2015-07-15T00:47:31Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
104.40.57.58
\r\n true\r\n onesdk6115\r\n
\r\n
\r\n onesdk5305.d4.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 840BA3A08A9B54F5B80B3433BC6C9DE34DEADC3F\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5030" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c8306d3ddc92b0198eb854bc72ab434a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305\r\n onesdk5305\r\n \r\n Implicitly created hosted service2015-07-10 03:02\r\n West US\r\n \r\n Created\r\n 2015-07-10T03:02:12Z\r\n 2015-07-10T03:02:43Z\r\n \r\n \r\n ResourceGroup\r\n onesdk5305\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n 840BA3A08A9B54F5B80B3433BC6C9DE34DEADC3F\r\n", + "ResponseHeaders": { + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9d1adc9e631bb82ab1b270589f30903" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:52 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305/deployments/onesdk5305?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1L2RlcGxveW1lbnRzL29uZXNkazUzMDU/Y29tcD1tZWRpYQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d169d5fdc775bf139b7c0ac317d1bc60" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:22 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/d169d5fdc775bf139b7c0ac317d1bc60", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2QxNjlkNWZkYzc3NWJmMTM5YjdjMGFjMzE3ZDFiYzYw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n d169d5fd-c775-bf13-9b7c-0ac317d1bc60\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8d7a64673381b75e98712ab305d21d8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:22 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/d169d5fdc775bf139b7c0ac317d1bc60", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2QxNjlkNWZkYzc3NWJmMTM5YjdjMGFjMzE3ZDFiYzYw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n d169d5fd-c775-bf13-9b7c-0ac317d1bc60\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8d9b29930cd0beaaa731195f159a2c09" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:52 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk5305?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1MzA1P2NvbXA9bWVkaWE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "69ce2c9e089ebe94b39c21e3bf0f1b41" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:53 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/69ce2c9e089ebe94b39c21e3bf0f1b41", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzY5Y2UyYzllMDg5ZWJlOTRiMzljMjFlM2JmMGYxYjQx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 69ce2c9e-089e-be94-b39c-21e3bf0f1b41\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1cdbfa0b1d29bcbe8957f9a906e82ea9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:04:53 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/69ce2c9e089ebe94b39c21e3bf0f1b41", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzY5Y2UyYzllMDg5ZWJlOTRiMzljMjFlM2JmMGYxYjQx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 69ce2c9e-089e-be94-b39c-21e3bf0f1b41\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "22c30e69f6b5bd89860a14fb949aed17" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:05:24 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk6115", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazYxMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "add4d2f77854b44fa8d994657f685c17" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:05:23 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/add4d2f77854b44fa8d994657f685c17", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2FkZDRkMmY3Nzg1NGI0NGZhOGQ5OTQ2NTdmNjg1YzE3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n add4d2f7-7854-b44f-a8d9-94657f685c17\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7c7e6cf5352b48da09366f21e07451c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:05:25 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/add4d2f77854b44fa8d994657f685c17", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2FkZDRkMmY3Nzg1NGI0NGZhOGQ5OTQ2NTdmNjg1YzE3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n add4d2f7-7854-b44f-a8d9-94657f685c17\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f1068188e5e5b9da8abeee21a2f0e407" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:05:54 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk2424", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMjQyNA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "14a93b8633debcaf903b952cbb54b896" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:07:59 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/14a93b8633debcaf903b952cbb54b896", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzE0YTkzYjg2MzNkZWJjYWY5MDNiOTUyY2JiNTRiODk2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 14a93b86-33de-bcaf-903b-952cbb54b896\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "bc67d91bdd1eb8a38bdc891605dffe5a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 03:08:00 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveAzureReservedIPAssociationSingleVip": [ + "onesdk2656", + "onesdk5305", + "onesdk2424", + "onesdk6115" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/ReserveExistingDepIP.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/ReserveExistingDepIP.json new file mode 100644 index 000000000000..20a6944ab7a1 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/ReserveExistingDepIP.json @@ -0,0 +1,1880 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "06bd411e5346be0ca19d6a306bfbc177" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:32:30 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/06bd411e5346be0ca19d6a306bfbc177", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzA2YmQ0MTFlNTM0NmJlMGNhMTlkNmEzMDZiZmJjMTc3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 06bd411e-5346-be0c-a19d-6a306bfbc177\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "c02d8705a5b0b6d5b8399f0e0a5f28de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:32:31 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk4296\r\n \r\n \r\n West US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "344" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "ae306aef2354b5bebcebb8d0d0f5e18e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:32:34 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/storage/onesdk4296" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/ae306aef2354b5bebcebb8d0d0f5e18e", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2FlMzA2YWVmMjM1NGI1YmViY2ViYjhkMGQwZjVlMThl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n ae306aef-2354-b5be-bceb-b8d0d0f5e18e\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "1a6bed998911b776ad70d1aa5de96907" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:32:34 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/ae306aef2354b5bebcebb8d0d0f5e18e", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2FlMzA2YWVmMjM1NGI1YmViY2ViYjhkMGQwZjVlMThl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n ae306aef-2354-b5be-bceb-b8d0d0f5e18e\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "07507d5a70f8b02c973a5f756395fed7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:04 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678633" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "66daa28e245dbec483fcc784c59b5a13" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/66daa28e245dbec483fcc784c59b5a13", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzY2ZGFhMjhlMjQ1ZGJlYzQ4M2ZjYzc4NGM1OWI1YTEz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 66daa28e-245d-bec4-83fc-c784c59b5a13\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "212a088095b0ba7ca201b00931f08941" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c206c21465ab36ab457c61d94ad995d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:09 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "147291cfe026b57db9db0c9ae8a8f16f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8f242619161eb615bc283ed4168492d5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Ny9kZXBsb3ltZW50c2xvdHMvUHJvZHVjdGlvbg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "58f0dd723b47bf32807e349254df7064" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:13 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Ny9kZXBsb3ltZW50c2xvdHMvUHJvZHVjdGlvbg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk57\r\n Production\r\n 86d3a92bac994094b04842dd7d055006\r\n Running\r\n \r\n http://onesdk57.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxNTE0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1514\r\n onesdk1514\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.88\r\n \r\n \r\n PowerShell\r\n 104.209.41.6\r\n 57794\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.209.41.6\r\n 53388\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T02:34:17Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1514.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1514\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 57794\r\n tcp\r\n 104.209.41.6\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 53388\r\n tcp\r\n 104.209.41.6\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk57-onesdk1514-0-201507100233210882\r\n https://onesdk4296.blob.core.windows.net/vhds/onesdk57-onesdk1514-2015-7-9-19-33-15-666-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n D81A6C7A115AEC00AA7C9936C5D50FBB36DB932C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:33:17Z\r\n 2015-07-10T02:34:17Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
104.209.41.6
\r\n true\r\n onesdk57ContractContract\r\n
\r\n
\r\n onesdk57.d4.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4181" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c643e84624eb6c1a4d77ea4ee7eac2a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:34:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Ny9kZXBsb3ltZW50c2xvdHMvUHJvZHVjdGlvbg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk57\r\n Production\r\n 86d3a92bac994094b04842dd7d055006\r\n Running\r\n \r\n http://onesdk57.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxNTE0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1514\r\n onesdk1514\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.88\r\n \r\n \r\n PowerShell\r\n 104.209.41.6\r\n 57794\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.209.41.6\r\n 53388\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T02:34:54Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1514.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1514\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 57794\r\n tcp\r\n 104.209.41.6\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 53388\r\n tcp\r\n 104.209.41.6\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk57-onesdk1514-0-201507100233210882\r\n https://onesdk4296.blob.core.windows.net/vhds/onesdk57-onesdk1514-2015-7-9-19-33-15-666-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n D81A6C7A115AEC00AA7C9936C5D50FBB36DB932C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:33:17Z\r\n 2015-07-10T02:34:54Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
104.209.41.6
\r\n true\r\n onesdk57ContractContract\r\n true\r\n onesdk1172\r\n
\r\n
\r\n onesdk1172\r\n onesdk57.d4.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4290" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63a39ceb57babd7c8a62390d84539295" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:23 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4296", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNDI5Ng==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4296\r\n onesdk4296\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk4296.blob.core.windows.net/\r\n https://onesdk4296.queue.core.windows.net/\r\n https://onesdk4296.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T02:32:34Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "d0d65e6c1004b0dd8b26255a02e0f4d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4296/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNDI5Ni9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4296\r\n \r\n t5HXgoYH6efXQ1BcaIQxPatwp17KWs8wCL+f6D02LarZv0CUZ14B9fPc4lrdzjEEv1EzaMNKkjcJgCoFWloKCg==\r\n pWRQiWQnHayWJ6CCWXdbbIxkp47sfs2/A63IayyISmBq/WUa9vfNEdifRw2NbGuLEGPmlGsDflJunYawRnqxAg==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "1c7892869feabe8abfe108bc8bf5dc2b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:14 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk57\r\n \r\n Implicitly created hosted service2015-07-10 02:33\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "277" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0fe1c56546f7bd2aa813f53a1d74abeb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:15 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/compute/onesdk57" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57/deployments", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Ny9kZXBsb3ltZW50cw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk57\r\n Production\r\n \r\n \r\n \r\n onesdk1514\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk1514\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk4296.blob.core.windows.net/vhds/onesdk57-onesdk1514-2015-7-9-19-33-15-666-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n \r\n \r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2509" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6f95a8b9173cbd87b1adc4ca0670f128" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/6f95a8b9173cbd87b1adc4ca0670f128", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzZmOTVhOGI5MTczY2JkODdiMWFkYzRjYTA2NzBmMTI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 6f95a8b9-173c-bd87-b1ad-c4ca0670f128\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0ec0c57e2286bcc7b17294bbd389c9b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:17 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/6f95a8b9173cbd87b1adc4ca0670f128", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzZmOTVhOGI5MTczY2JkODdiMWFkYzRjYTA2NzBmMTI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 6f95a8b9-173c-bd87-b1ad-c4ca0670f128\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "947638464c0db4a081d20e8bc460cee1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:33:48 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/6f95a8b9173cbd87b1adc4ca0670f128", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzZmOTVhOGI5MTczY2JkODdiMWFkYzRjYTA2NzBmMTI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 6f95a8b9-173c-bd87-b1ad-c4ca0670f128\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b63d497780c2ba52b775ca32733e6abe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:34:19 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/6f95a8b9173cbd87b1adc4ca0670f128", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzZmOTVhOGI5MTczY2JkODdiMWFkYzRjYTA2NzBmMTI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 6f95a8b9-173c-bd87-b1ad-c4ca0670f128\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d9eca52145b1bcd18e13353587035e35" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:34:48 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk1172\r\n \r\n onesdk57\r\n onesdk57\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "254" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "66e0952e7e00bbf2946c17563a7a3a26" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:34:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/66e0952e7e00bbf2946c17563a7a3a26", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzY2ZTA5NTJlN2UwMGJiZjI5NDZjMTc1NjNhN2EzYTI2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 66e0952e-7e00-bbf2-946c-17563a7a3a26\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2212f5e8884cb37398287cc05907d4c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:34:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/66e0952e7e00bbf2946c17563a7a3a26", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzY2ZTA5NTJlN2UwMGJiZjI5NDZjMTc1NjNhN2EzYTI2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 66e0952e-7e00-bbf2-946c-17563a7a3a26\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ce5a821e7830bcdd800fbe0a19f2d0de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:20 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk1172", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazExNzI=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk1172\r\n
104.209.41.6
\r\n a27071a5-c5df-4b4d-91c1-abc7b2317cd8\r\n \r\n Created\r\n true\r\n onesdk57\r\n onesdk57\r\n West US\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "401" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b592cf5bd04ebaa5956268cf9b612d13" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:20 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/b592cf5bd04ebaa5956268cf9b612d13", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2I1OTJjZjViZDA0ZWJhYTU5NTYyNjhjZjliNjEyZDEz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n b592cf5b-d04e-baa5-9562-68cf9b612d13\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "a264d40de1a7b597970c22ae8450215e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:21 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Nz9lbWJlZC1kZXRhaWw9dHJ1ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57\r\n onesdk57\r\n \r\n Implicitly created hosted service2015-07-10 02:33\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:33:14Z\r\n 2015-07-10T02:33:48Z\r\n \r\n \r\n \r\n \r\n onesdk57\r\n Production\r\n 86d3a92bac994094b04842dd7d055006\r\n Running\r\n \r\n http://onesdk57.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxNTE0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1514\r\n onesdk1514\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.88\r\n \r\n \r\n PowerShell\r\n 104.209.41.6\r\n 57794\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.209.41.6\r\n 53388\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T02:34:54Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1514.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1514\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 57794\r\n tcp\r\n 104.209.41.6\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 53388\r\n tcp\r\n 104.209.41.6\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk57-onesdk1514-0-201507100233210882\r\n https://onesdk4296.blob.core.windows.net/vhds/onesdk57-onesdk1514-2015-7-9-19-33-15-666-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n D81A6C7A115AEC00AA7C9936C5D50FBB36DB932C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:33:17Z\r\n 2015-07-10T02:34:54Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
104.209.41.6
\r\n true\r\n onesdk57ContractContract\r\n true\r\n onesdk1172\r\n
\r\n
\r\n onesdk1172\r\n onesdk57.d4.internal.cloudapp.net\r\n \r\n
\r\n
\r\n D81A6C7A115AEC00AA7C9936C5D50FBB36DB932C\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4941" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ef2498863efdbff58ceb2e90efb59270" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:22 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Nz9lbWJlZC1kZXRhaWw9dHJ1ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57\r\n onesdk57\r\n \r\n Implicitly created hosted service2015-07-10 02:33\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:33:14Z\r\n 2015-07-10T02:33:48Z\r\n \r\n \r\n \r\n \r\n onesdk57\r\n Production\r\n 86d3a92bac994094b04842dd7d055006\r\n Running\r\n \r\n http://onesdk57.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsxNTE0Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk1514\r\n onesdk1514\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.248.88\r\n \r\n \r\n PowerShell\r\n 104.209.41.6\r\n 57794\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.209.41.6\r\n 53388\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T02:34:54Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk1514.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk1514\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 57794\r\n tcp\r\n 104.209.41.6\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 53388\r\n tcp\r\n 104.209.41.6\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk57-onesdk1514-0-201507100233210882\r\n https://onesdk4296.blob.core.windows.net/vhds/onesdk57-onesdk1514-2015-7-9-19-33-15-666-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n D81A6C7A115AEC00AA7C9936C5D50FBB36DB932C\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:33:17Z\r\n 2015-07-10T02:34:54Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
104.209.41.6
\r\n true\r\n onesdk57ContractContract\r\n true\r\n onesdk1172\r\n
\r\n
\r\n onesdk1172\r\n onesdk57.d4.internal.cloudapp.net\r\n \r\n
\r\n
\r\n D81A6C7A115AEC00AA7C9936C5D50FBB36DB932C\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4941" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "688d2ffbb6aeb46198917694ef6948ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:22 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Nz9lbWJlZC1kZXRhaWw9dHJ1ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57\r\n onesdk57\r\n \r\n Implicitly created hosted service2015-07-10 02:33\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:33:14Z\r\n 2015-07-10T02:33:48Z\r\n \r\n \r\n \r\n D81A6C7A115AEC00AA7C9936C5D50FBB36DB932C\r\n", + "ResponseHeaders": { + "Content-Length": [ + "740" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fdaf08048bdab65d9a03f0ce50c81b73" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:37:25 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57/deployments/onesdk57?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Ny9kZXBsb3ltZW50cy9vbmVzZGs1Nz9jb21wPW1lZGlh", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "03454dff712ebf6cbcccaf829236e502" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:24 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/03454dff712ebf6cbcccaf829236e502", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzAzNDU0ZGZmNzEyZWJmNmNiY2NjYWY4MjkyMzZlNTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 03454dff-712e-bf6c-bccc-af829236e502\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f1d62241d262b739b2b6f7fff5bd0246" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:24 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/03454dff712ebf6cbcccaf829236e502", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzAzNDU0ZGZmNzEyZWJmNmNiY2NjYWY4MjkyMzZlNTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 03454dff-712e-bf6c-bccc-af829236e502\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c78ca3f0c6e8b7f0871bb77f60ab3b23" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:35:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/03454dff712ebf6cbcccaf829236e502", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzAzNDU0ZGZmNzEyZWJmNmNiY2NjYWY4MjkyMzZlNTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 03454dff-712e-bf6c-bccc-af829236e502\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3008d9eb5db7bc24a0c65f0eb43fd5d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:36:25 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/03454dff712ebf6cbcccaf829236e502", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzAzNDU0ZGZmNzEyZWJmNmNiY2NjYWY4MjkyMzZlNTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 03454dff-712e-bf6c-bccc-af829236e502\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1211753be7a5bb3aa1b9d2c2f3ddaf0c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:36:56 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/03454dff712ebf6cbcccaf829236e502", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzAzNDU0ZGZmNzEyZWJmNmNiY2NjYWY4MjkyMzZlNTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 03454dff-712e-bf6c-bccc-af829236e502\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fdbdbbf7fcc7b605a6c9f610942b1723" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:37:25 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk57?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1Nz9jb21wPW1lZGlh", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd3fd3deb9c9befb9016311c9b342315" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:37:26 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/bd3fd3deb9c9befb9016311c9b342315", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2JkM2ZkM2RlYjljOWJlZmI5MDE2MzExYzliMzQyMzE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n bd3fd3de-b9c9-befb-9016-311c9b342315\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "058c51fed545ba25bbf31fb73ce7f47f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:37:26 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/bd3fd3deb9c9befb9016311c9b342315", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2JkM2ZkM2RlYjljOWJlZmI5MDE2MzExYzliMzQyMzE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n bd3fd3de-b9c9-befb-9016-311c9b342315\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "66cf2d3f2307b1e9beb7504c57729d03" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:37:57 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk1172", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazExNzI=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4e00b07740a1bef1a263136f252852fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:37:57 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4e00b07740a1bef1a263136f252852fe", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRlMDBiMDc3NDBhMWJlZjFhMjYzMTM2ZjI1Mjg1MmZl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 4e00b077-40a1-bef1-a263-136f252852fe\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "680fbd7a425fb05a8332818370b79026" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:37:57 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4e00b07740a1bef1a263136f252852fe", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRlMDBiMDc3NDBhMWJlZjFhMjYzMTM2ZjI1Mjg1MmZl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 4e00b077-40a1-bef1-a263-136f252852fe\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d4c90f267172ba8a9336f87a10fb21af" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:38:29 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk4296", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrNDI5Ng==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "92400c5b3e3abbf88a3742fadee0fa56" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:40:33 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/92400c5b3e3abbf88a3742fadee0fa56", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkyNDAwYzViM2UzYWJiZjg4YTM3NDJmYWRlZTBmYTU2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 92400c5b-3e3a-bbf8-8a37-42fadee0fa56\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "035aadd6531bbf32974231ce9395ece3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:40:34 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-ReserveExistingDeploymentIP": [ + "onesdk1514", + "onesdk57", + "onesdk4296", + "onesdk1172" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/SetReservedIPAssocSimple.json b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/SetReservedIPAssocSimple.json new file mode 100644 index 000000000000..472b85306846 --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/SessionRecords/Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests.ReservedIP/SetReservedIPAssocSimple.json @@ -0,0 +1,2100 @@ +{ + "Entries": [ + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/locations", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Japan West\r\n Japan West\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Japan East\r\n Japan East\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n Basic_D1\r\n Basic_D11\r\n Basic_D12\r\n Basic_D13\r\n Basic_D2\r\n Basic_D3\r\n Basic_D4\r\n Basic_D5\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "25898" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "61270cb4fd04b551828a0670f239bb84" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:40:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/61270cb4fd04b551828a0670f239bb84", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzYxMjcwY2I0ZmQwNGI1NTE4MjhhMDY3MGYyMzliYjg0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 61270cb4-fd04-b551-828a-0670f239bb84\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "8574fd8fb2aab86bb232ba6d5ea334c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:40:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk689\r\n \r\n \r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "206" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a4ca9842882b227b854168a2f5c8ffc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:40:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0a4ca9842882b227b854168a2f5c8ffc", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBhNGNhOTg0Mjg4MmIyMjdiODU0MTY4YTJmNWM4ZmZj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 0a4ca984-2882-b227-b854-168a2f5c8ffc\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15388ce6db6ab8c4a7c152822f2008ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:40:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/0a4ca9842882b227b854168a2f5c8ffc", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzBhNGNhOTg0Mjg4MmIyMjdiODU0MTY4YTJmNWM4ZmZj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 0a4ca984-2882-b227-b854-168a2f5c8ffc\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "827f8d8c3707bf028c178385d297c2f9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:07 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk1457\r\n \r\n \r\n West US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "344" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "85e5298836acbf94af361a2e41b40f89" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:11 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/storage/onesdk1457" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/85e5298836acbf94af361a2e41b40f89", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzg1ZTUyOTg4MzZhY2JmOTRhZjM2MWEyZTQxYjQwZjg5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 85e52988-36ac-bf94-af36-1a2e41b40f89\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "cdeb1c5f544ebf998a03bd989dd7bc8a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/85e5298836acbf94af361a2e41b40f89", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzg1ZTUyOTg4MzZhY2JmOTRhZjM2MWEyZTQxYjQwZjg5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 85e52988-36ac-bf94-af36-1a2e41b40f89\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "05180780e15db2e68668efadb210b2da" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk689", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazY4OQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk689\r\n
138.91.241.249
\r\n b0311977-0433-40e5-adf0-d27cdd541cbc\r\n \r\n Created\r\n West US\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "307" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4b4316c88aa9b47cbe05aabfa1ad31fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:42 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk689", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazY4OQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk689\r\n
138.91.241.249
\r\n b0311977-0433-40e5-adf0-d27cdd541cbc\r\n \r\n Created\r\n true\r\n onesdk8152\r\n onesdk8152\r\n West US\r\n onesdk8152ContractContract\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "463" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "26aa2243e28cba96970344da3416a9b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:43:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4b4316c88aa9b47cbe05aabfa1ad31fc", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRiNDMxNmM4OGFhOWI0N2NiZTA1YWFiZmExYWQzMWZj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 4b4316c8-8aa9-b47c-be05-aabfa1ad31fc\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "429413d84377bde6a53d2fe1f0174550" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:41 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140916-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140916) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141020-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141020) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.2) for Windows Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-16. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150416-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150416) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150509-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150509) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150521-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150521) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-05-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150601-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150601) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150612) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150620) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150708) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150615 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150616-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150619 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150622-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150622 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150629-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150629 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-06-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150702 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150620-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150620 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150623-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150623 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150611 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150612-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150612 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150616.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150618-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150618 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150621-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150621 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150624 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150625-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150625 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150626-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150626 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150627-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150627 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150628-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150628 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150703-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150703 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150704-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150704 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150705-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150705 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central India;South India;West India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150706 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;South India;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 R2 Datacenter\r\n 2015-01-20T08:00:00Z\r\n false\r\n Standard_D12\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS2015Ent-RC-Az2.6-Win10Tools-Win10Prev-10074-201506.01\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n This image contains Windows 10 Enterprise Insider Preview (x64) with Visual Studio 2015 RC and Universal Windows App Development Tools. It allows you to quickly setup environment in Azure to develop and test applications targeting Universal Windows Platform.\r\n Visual Studio Enterprise 2015 RC with Universal Windows Tools on Windows 10 Enterprise Insider Preview Build 10074 (x64)\r\n 2015-06-01T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Premium 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Premium 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Premium 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Premium-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Premium Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Premium 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Professional-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Professional 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Professional 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Professional 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.5-Win8.1-x64-201502.23\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information.\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise (x64)\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-WS2012-201505.26\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Visual Studio Ultimate 2013 Update 4 developer desktop is an offering exclusive to MSDN subscribers. The image includes Visual Studio Ultimate 2013 Update 4, SharePoint 2013 Trial, SQL Server 2012 Developer edition and configuration scripts to quickly create a development environment for Web, SQL and SharePoint 2013 development. To learn how to configure any development environment you can follow the links on the desktop. We recommend a Standard A3 VM size for SQL and Web development and Standard A4 VM size for SharePoint development. Please see [http://go.microsoft.com/fwlink/?LinkID=329862|http://go.microsoft.com/fwlink/?LinkID=329862] for a detailed description of the image. Privacy note: This image has been preconfigured for Microsoft Azure, including enabling the Visual Studio Experience Improvement Program for Visual Studio, which can be disabled.\r\n Visual Studio Ultimate 2013 Update 4 on Windows Server 2012\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Ultimate-Update4-AzureSDK-2.6-Win8.1-N-x64\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n This image contains Windows 8.1 Enterprise N x64 and Visual Studio 2013 Ultimate Update 4 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up a development environment in Azure to develop and test applications targeting Windows 8.1. Please see [http://go.microsoft.com/fwlink/?linkid=398176|http://go.microsoft.com/fwlink/?linkid=398176] for more information. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Visual Studio Ultimate 2013 Update 4 on Windows 8.1 Enterprise N (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7. For more information in Windows 7 N edition see [here|http://windows.microsoft.com/en-US/windows7/products/What-is-Windows-7-N-edition].\r\n Windows 7 Enterprise N SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-7-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 7 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 7.\r\n Windows 7 Enterprise SP1 (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n WindowsServer2008R2_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-N-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise N x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1. For more information on Windows 8.1 N edition see [here|http://windows.microsoft.com/en-gb/windows-8/n-editions].\r\n Windows 8.1 Enterprise N (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows-8.1-Enterprise-x64-en.us-201504.29\r\n Windows\r\n This image contains Windows 8.1 Enterprise x64 and is exclusively available to MSDN subscribers. It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 8.1.\r\n Windows 8.1 Enterprise (x64)\r\n 2015-04-29T07:00:00Z\r\n false\r\n Windows8_45.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Windows10-Enterprise-10074\r\n Windows\r\n For more information about this product, please visit https://insider.windows.com. Join the Windows Insider Program (https://insider.windows.com/) to receive more frequent, incremental builds of Windows. This image contains the Windows 10 Enterprise Insider Preview (x64) and is exclusively available to MSDN subscribers.  It allows you to easily and quickly set up an environment in Azure to develop and test applications targeting Windows 10.\r\n Windows 10 Enterprise Insider Preview (x64)\r\n 2015-05-15T07:00:00Z\r\n false\r\n Windows8_100.png\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n Windows8_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Developer-May-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 Developer Edition (64-bit) on Windows Server 2012. This image contains the Developer edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-Developer\r\n 2014-05-14T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 Developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. The image also contains configuration scripts for installing Microsoft Dynamics GP Web Client and Web Services for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 Developer on Windows Server 2012 R2\r\n 2014-03-03T11:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2013R2Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2013 R2 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2013 R2. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2013 R2 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2013 R2 on Windows Server 2012 R2\r\n 2014-08-04T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n MSDN\r\n \r\n Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 2dd70fc524ff4e7e88725b069228c4ac__DynGP2015Dev\r\n Windows\r\n http://msdn.microsoft.com/subscriptions/eula\r\n The Microsoft Dynamics GP 2015 developer image is an offering exclusive to MSDN subscribers. The image includes a pre-configured environment for building integrations and customizations for Microsoft Dynamics GP 2015. The image includes the same software as the Visual Studio Premium 2013 gallery image. In addition, it has the Microsoft Dynamics GP 2015 software components, including Microsoft Dynamics GP, Microsoft Dynamics GP Web Client, Web Services for Microsoft Dynamics GP, Microsoft Dynamics GP SDK, Dexterity for Microsoft Dynamics GP, and Visual Studio Tools for Microsoft Dynamics GP. Refer to the \"Getting started with the Microsoft Dynamics GP Developer Image\" link on the desktop for additional information.\r\n Microsoft Dynamics GP 2015 on Windows Server 2012\r\n 2015-01-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://www.microsoft.com/products/ceip/EN-US/default.mspx\r\n Medium\r\n Microsoft Dynamics GP Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "678633" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b1ee4089e915b80ba72d944f67fd4211" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:44 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/b1ee4089e915b80ba72d944f67fd4211", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zL2IxZWU0MDg5ZTkxNWI4MGJhNzJkOTQ0ZjY3ZmQ0MjEx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n b1ee4089-e915-b80b-a72d-944f67fd4211\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "529315095e42bd659c26b4ff0a5b6769" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:45 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4729308bf542b9a59221ba42b39cf574" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:48 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "80746a77edccb476a48f302dce19b9dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:49 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/vmimages", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;Australia East;Australia Southeast;North Europe;West Europe;Japan East;Japan West;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "139071" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "696abc8edda7bda68af108889ff8a240" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1c90e7df88aeb17ba493342ceb22e02d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:50 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8152\r\n Production\r\n 29b6ecd33c1c452db2ba321d3159bdb7\r\n Running\r\n \r\n http://onesdk8152.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsyMzU5Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk2359\r\n onesdk2359\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.220.115\r\n \r\n \r\n PowerShell\r\n 23.99.10.36\r\n 56459\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 23.99.10.36\r\n 58179\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-07-10T02:42:53Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk2359.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk2359\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56459\r\n tcp\r\n 23.99.10.36\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 58179\r\n tcp\r\n 23.99.10.36\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8152-onesdk2359-0-201507100242000228\r\n https://onesdk1457.blob.core.windows.net/vhds/onesdk8152-onesdk2359-2015-7-9-19-41-53-387-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n E6EADE74A1CD486302C03BEE79FD864C0CECD8B7\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:41:55Z\r\n 2015-07-10T02:42:53Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
23.99.10.36
\r\n true\r\n onesdk8152ContractContract\r\n
\r\n
\r\n onesdk8152.d4.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4193" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1a5d5583ef74b450a85fd9f0533a1c32" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:42:56 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152/deploymentslots/Production", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8152\r\n Production\r\n 29b6ecd33c1c452db2ba321d3159bdb7\r\n Running\r\n \r\n http://onesdk8152.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsyMzU5Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk2359\r\n onesdk2359\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.220.115\r\n \r\n \r\n PowerShell\r\n 138.91.241.249\r\n 56459\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.241.249\r\n 58179\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T02:44:02Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk2359.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk2359\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56459\r\n tcp\r\n 138.91.241.249\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 58179\r\n tcp\r\n 138.91.241.249\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8152-onesdk2359-0-201507100242000228\r\n https://onesdk1457.blob.core.windows.net/vhds/onesdk8152-onesdk2359-2015-7-9-19-41-53-387-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n E6EADE74A1CD486302C03BEE79FD864C0CECD8B7\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:41:55Z\r\n 2015-07-10T02:44:01Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.241.249
\r\n true\r\n onesdk8152ContractContract\r\n true\r\n onesdk689\r\n
\r\n
\r\n onesdk689\r\n onesdk8152.d4.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4316" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "817bc9b564bbb738acb69995f49d9f31" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:44:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk1457", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMTQ1Nw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk1457\r\n onesdk1457\r\n \r\n \r\n West US\r\n \r\n Created\r\n \r\n https://onesdk1457.blob.core.windows.net/\r\n https://onesdk1457.queue.core.windows.net/\r\n https://onesdk1457.table.core.windows.net/\r\n \r\n West US\r\n Available\r\n East US\r\n Available\r\n 2015-07-10T02:41:10Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-WestUS\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "c77b5cffe387bb41826d243e1deec062" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:52 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk1457/keys", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMTQ1Ny9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk1457\r\n \r\n Ogsq328QSNVsiMd4pzObgLcTFuZni5mrnzzX3QCyWr0DkyX3iDFNrwki2tunp8OEPv0S7JDo5ulmPhtE56M6Qw==\r\n 5ybAtDC1dSQT1u7mAc9dthrbM9qlu7lJ3X6jMDYBsgOuv++83K4i/eZ6IEVqNG8bWbCp6l3TiBg3Gk2K271Cvw==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "ce5ae263417eb8bca510dc054adbf3ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:52 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk8152\r\n \r\n Implicitly created hosted service2015-07-10 02:41\r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "283" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f201f23a7a1bbfe8aa0c671ae2cab0c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:52 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/6e66bcd0-07ac-47a4-9128-d576f625046f/compute/onesdk8152" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152/deployments", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyL2RlcGxveW1lbnRz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk8152\r\n Production\r\n \r\n \r\n \r\n onesdk2359\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n onesdk2359\r\n Pa@!!w0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n azuretest\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk1457.blob.core.windows.net/vhds/onesdk8152-onesdk2359-2015-7-9-19-41-53-387-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n Small\r\n true\r\n \r\n \r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2515" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9069dc16088fb1be9b827bfb99643648" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9069dc16088fb1be9b827bfb99643648", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkwNjlkYzE2MDg4ZmIxYmU5YjgyN2JmYjk5NjQzNjQ4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 9069dc16-088f-b1be-9b82-7bfb99643648\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f967a890461ab31b809db6a19bcd06ae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:41:55 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9069dc16088fb1be9b827bfb99643648", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkwNjlkYzE2MDg4ZmIxYmU5YjgyN2JmYjk5NjQzNjQ4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 9069dc16-088f-b1be-9b82-7bfb99643648\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6813710eeb0cb828b6fd4f1684447515" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:42:26 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9069dc16088fb1be9b827bfb99643648", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzkwNjlkYzE2MDg4ZmIxYmU5YjgyN2JmYjk5NjQzNjQ4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 9069dc16-088f-b1be-9b82-7bfb99643648\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e8ff3fb4c5a9b0af8a2045b23546a77a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:42:56 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk689/operations/associate", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazY4OS9vcGVyYXRpb25zL2Fzc29jaWF0ZQ==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk8152\r\n onesdk8152\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "187" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4ba912ee6590b0f2a103829737c5124f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:42:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4ba912ee6590b0f2a103829737c5124f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRiYTkxMmVlNjU5MGIwZjJhMTAzODI5NzM3YzUxMjRm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 4ba912ee-6590-b0f2-a103-829737c5124f\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "671456ae01cebba5887f1888f93f47ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:42:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4ba912ee6590b0f2a103829737c5124f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRiYTkxMmVlNjU5MGIwZjJhMTAzODI5NzM3YzUxMjRm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 4ba912ee-6590-b0f2-a103-829737c5124f\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a96380cceb3bb947a1862ab8e8900be3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:43:27 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/4ba912ee6590b0f2a103829737c5124f", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzRiYTkxMmVlNjU5MGIwZjJhMTAzODI5NzM3YzUxMjRm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 4ba912ee-6590-b0f2-a103-829737c5124f\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "172a4f3b0d5ab0a4aa991d29b63a24df" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:43:58 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/26aa2243e28cba96970344da3416a9b3", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzI2YWEyMjQzZTI4Y2JhOTY5NzAzNDRkYTM0MTZhOWIz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 26aa2243-e28c-ba96-9703-44da3416a9b3\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "0ece8253d83ebc51b68fbbd094a54272" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:43:59 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152\r\n onesdk8152\r\n \r\n Implicitly created hosted service2015-07-10 02:41\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:41:52Z\r\n 2015-07-10T02:42:28Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8152\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk8152\r\n Production\r\n 29b6ecd33c1c452db2ba321d3159bdb7\r\n Running\r\n \r\n http://onesdk8152.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsyMzU5Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk2359\r\n onesdk2359\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.220.115\r\n \r\n \r\n PowerShell\r\n 138.91.241.249\r\n 56459\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.241.249\r\n 58179\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T02:44:02Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk2359.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk2359\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56459\r\n tcp\r\n 138.91.241.249\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 58179\r\n tcp\r\n 138.91.241.249\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8152-onesdk2359-0-201507100242000228\r\n https://onesdk1457.blob.core.windows.net/vhds/onesdk8152-onesdk2359-2015-7-9-19-41-53-387-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n E6EADE74A1CD486302C03BEE79FD864C0CECD8B7\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:41:55Z\r\n 2015-07-10T02:44:01Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.241.249
\r\n true\r\n onesdk8152ContractContract\r\n true\r\n onesdk689\r\n
\r\n
\r\n onesdk689\r\n onesdk8152.d4.internal.cloudapp.net\r\n \r\n
\r\n
\r\n E6EADE74A1CD486302C03BEE79FD864C0CECD8B7\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5171" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d782d948b196b26b85e11c4464e74cf4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:44:01 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152\r\n onesdk8152\r\n \r\n Implicitly created hosted service2015-07-10 02:41\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:41:52Z\r\n 2015-07-10T02:42:28Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8152\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n \r\n onesdk8152\r\n Production\r\n 29b6ecd33c1c452db2ba321d3159bdb7\r\n Running\r\n \r\n http://onesdk8152.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJvbmVzZGsyMzU5Ij4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIxIiAvPg0KICA8L1JvbGU+DQo8L1NlcnZpY2VDb25maWd1cmF0aW9uPg==\r\n \r\n \r\n onesdk2359\r\n onesdk2359\r\n Provisioning\r\n 0\r\n 0\r\n Small\r\n \r\n 100.115.220.115\r\n \r\n \r\n PowerShell\r\n 138.91.241.249\r\n 56459\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 138.91.241.249\r\n 58179\r\n 3389\r\n tcp\r\n \r\n \r\n Started\r\n \r\n 1.0\r\n 2015-07-10T02:44:02Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role onesdk2359.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n onesdk2359\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 56459\r\n tcp\r\n 138.91.241.249\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 58179\r\n tcp\r\n 138.91.241.249\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8152-onesdk2359-0-201507100242000228\r\n https://onesdk1457.blob.core.windows.net/vhds/onesdk8152-onesdk2359-2015-7-9-19-41-53-387-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n E6EADE74A1CD486302C03BEE79FD864C0CECD8B7\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 2015-07-10T02:41:55Z\r\n 2015-07-10T02:44:01Z\r\n \r\n \r\n 2015-07-09T02:18:38Z\r\n 2015-07-16T02:18:38Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n
138.91.241.249
\r\n true\r\n onesdk8152ContractContract\r\n true\r\n onesdk689\r\n
\r\n
\r\n onesdk689\r\n onesdk8152.d4.internal.cloudapp.net\r\n \r\n
\r\n
\r\n E6EADE74A1CD486302C03BEE79FD864C0CECD8B7\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "5171" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "11788403ec92b3289bc2bb2271497bec" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:44:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152?embed-detail=true", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152\r\n onesdk8152\r\n \r\n Implicitly created hosted service2015-07-10 02:41\r\n West US\r\n \r\n Created\r\n 2015-07-10T02:41:52Z\r\n 2015-07-10T02:42:28Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8152\r\n \r\n \r\n ResourceLocation\r\n West US\r\n \r\n \r\n \r\n \r\n E6EADE74A1CD486302C03BEE79FD864C0CECD8B7\r\n", + "ResponseHeaders": { + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ed3e2b66943ba50b51590a9f8134254" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:46:03 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152/deployments/onesdk8152?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyL2RlcGxveW1lbnRzL29uZXNkazgxNTI/Y29tcD1tZWRpYQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "80c25ce84fa2bd948adbd13309ec6cd5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:44:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/80c25ce84fa2bd948adbd13309ec6cd5", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzgwYzI1Y2U4NGZhMmJkOTQ4YWRiZDEzMzA5ZWM2Y2Q1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 80c25ce8-4fa2-bd94-8adb-d13309ec6cd5\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "99c34a2d1da7b690852021aba23abab6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:44:02 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/80c25ce84fa2bd948adbd13309ec6cd5", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzgwYzI1Y2U4NGZhMmJkOTQ4YWRiZDEzMzA5ZWM2Y2Q1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 80c25ce8-4fa2-bd94-8adb-d13309ec6cd5\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec901391e3fdb860ae63ec2455c35ba6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:44:33 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/80c25ce84fa2bd948adbd13309ec6cd5", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzgwYzI1Y2U4NGZhMmJkOTQ4YWRiZDEzMzA5ZWM2Y2Q1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 80c25ce8-4fa2-bd94-8adb-d13309ec6cd5\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bc6a49740f51ba62be7a886b99d57c3c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:45:03 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/80c25ce84fa2bd948adbd13309ec6cd5", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzgwYzI1Y2U4NGZhMmJkOTQ4YWRiZDEzMzA5ZWM2Y2Q1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 80c25ce8-4fa2-bd94-8adb-d13309ec6cd5\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "488fba6fc20ab590b897053da29c68d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:45:33 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/80c25ce84fa2bd948adbd13309ec6cd5", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzgwYzI1Y2U4NGZhMmJkOTQ4YWRiZDEzMzA5ZWM2Y2Q1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 80c25ce8-4fa2-bd94-8adb-d13309ec6cd5\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "56a58ff97189b3d39cfac4c1aecd2dec" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:46:03 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/hostedservices/onesdk8152?comp=media", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4MTUyP2NvbXA9bWVkaWE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3225889b54f6bbf68138b44aedf4d82c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:46:04 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3225889b54f6bbf68138b44aedf4d82c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMyMjU4ODliNTRmNmJiZjY4MTM4YjQ0YWVkZjRkODJj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 3225889b-54f6-bbf6-8138-b44aedf4d82c\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f412e3d8be4beb88ff3296607402afd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:46:04 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/3225889b54f6bbf68138b44aedf4d82c", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzMyMjU4ODliNTRmNmJiZjY4MTM4YjQ0YWVkZjRkODJj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n 3225889b-54f6-bbf6-8138-b44aedf4d82c\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fd7bfcbb008eb378a63f0092ee489c8f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:46:35 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/networking/reservedips/onesdk689", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9uZXR3b3JraW5nL3Jlc2VydmVkaXBzL29uZXNkazY4OQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9672a7b367e3bd7c8611d3d26233e9d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:46:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9672a7b367e3bd7c8611d3d26233e9d0", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzk2NzJhN2IzNjdlM2JkN2M4NjExZDNkMjYyMzNlOWQw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 9672a7b3-67e3-bd7c-8611-d3d26233e9d0\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d8649bb4f2e7b0bea2d43e4dc18cff90" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:46:36 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/9672a7b367e3bd7c8611d3d26233e9d0", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzk2NzJhN2IzNjdlM2JkN2M4NjExZDNkMjYyMzNlOWQw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Network.NetworkManagementClient/7.0.0.0" + ] + }, + "ResponseBody": "\r\n 9672a7b3-67e3-bd7c-8611-d3d26233e9d0\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee7c96f6b296b7f0b3f9f1fcd85dec62" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:47:06 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/services/storageservices/onesdk1457", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrMTQ1Nw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "1cc77f3e94f4bbfa888c08b95ab15328" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:10 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/6e66bcd0-07ac-47a4-9128-d576f625046f/operations/1cc77f3e94f4bbfa888c08b95ab15328", + "EncodedRequestUri": "LzZlNjZiY2QwLTA3YWMtNDdhNC05MTI4LWQ1NzZmNjI1MDQ2Zi9vcGVyYXRpb25zLzFjYzc3ZjNlOTRmNGJiZmE4ODhjMDhiOTVhYjE1MzI4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 1cc77f3e-94f4-bbfa-888c-08b95ab15328\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "038630c05f1bb351937e42b8f1ef9b6e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 10 Jul 2015 02:49:11 GMT" + ], + "Server": [ + "1.0.6198.243", + "(rd_rdfe_stable.150618-1025)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-SetAzureReservedIPAssociationSingleVip": [ + "onesdk2359", + "onesdk8152", + "onesdk1457", + "onesdk689" + ] + }, + "Variables": { + "SubscriptionId": "6e66bcd0-07ac-47a4-9128-d576f625046f" + } +} \ No newline at end of file diff --git a/src/ServiceManagement/Network/Commands.Network.Test/TestInterfaces/TestClientProvider.cs b/src/ServiceManagement/Network/Commands.Network.Test/TestInterfaces/TestClientProvider.cs new file mode 100644 index 000000000000..71fc6455f8de --- /dev/null +++ b/src/ServiceManagement/Network/Commands.Network.Test/TestInterfaces/TestClientProvider.cs @@ -0,0 +1,63 @@ +using System; +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Management; +using Microsoft.WindowsAzure.Management.Compute; +using Microsoft.WindowsAzure.Management.Network; +using Microsoft.WindowsAzure.Management.Storage; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.TestInterfaces +{ + public class TestClientProvider : IClientProvider + { + private readonly ManagementClient managementClient; + + private readonly ComputeManagementClient computeManagementClient; + + private readonly StorageManagementClient storageManagementClient; + + private readonly NetworkManagementClient networkManagementClient; + + public TestClientProvider(ManagementClient mgmtClient, ComputeManagementClient computeClient, + StorageManagementClient storageClient, NetworkManagementClient networkClient) + { + this.managementClient = mgmtClient; + this.computeManagementClient = computeClient; + this.storageManagementClient = storageClient; + this.networkManagementClient = networkClient; + } + + public ManagementClient CreateClient() + { + return managementClient; + } + + public ComputeManagementClient CreateComputeClient() + { + return computeManagementClient; + } + + public StorageManagementClient CreateStorageClient() + { + return storageManagementClient; + } + + public NetworkManagementClient CreateNetworkClient() + { + return networkManagementClient; + } + } +} diff --git a/src/ServiceManagement/Network/Commands.Network.Test/packages.config b/src/ServiceManagement/Network/Commands.Network.Test/packages.config index ed90e78862ce..369d820ddc15 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/packages.config +++ b/src/ServiceManagement/Network/Commands.Network.Test/packages.config @@ -17,7 +17,8 @@ - + + diff --git a/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj b/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj index 4ec05c9ac0b5..09fa5301d0d6 100644 --- a/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj +++ b/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj @@ -83,9 +83,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.2.0-preview\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.2\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.3\lib\net40\Microsoft.WindowsAzure.Management.Network.dll False @@ -274,6 +274,7 @@ Designer
+ diff --git a/src/ServiceManagement/Network/Commands.Network/packages.config b/src/ServiceManagement/Network/Commands.Network/packages.config index bab9acf3061d..95f317745e7a 100644 --- a/src/ServiceManagement/Network/Commands.Network/packages.config +++ b/src/ServiceManagement/Network/Commands.Network/packages.config @@ -17,7 +17,7 @@ - + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj index 72b0fa4a6080..7b0f295529b9 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj @@ -106,7 +106,7 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.2.0-preview\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll
- ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.0\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.3\lib\net40\Microsoft.WindowsAzure.Management.Network.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.RemoteApp.2.0.0\lib\net40\Microsoft.WindowsAzure.Management.RemoteApp.dll diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config index 815607bd3396..ee823ae6bf3d 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config @@ -15,7 +15,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Test/Profile/ProfileClientHelper.cs b/src/ServiceManagement/Services/Commands.Test/Profile/ProfileClientHelper.cs index 992cd8d0a09a..2442738b6673 100644 --- a/src/ServiceManagement/Services/Commands.Test/Profile/ProfileClientHelper.cs +++ b/src/ServiceManagement/Services/Commands.Test/Profile/ProfileClientHelper.cs @@ -16,7 +16,10 @@ using System; using System.Collections.Generic; using System.Net; +using System.Net.Http; using System.Threading.Tasks; +using Hyak.Common; +using Microsoft.Azure.Subscriptions.Rdfe; namespace Microsoft.WindowsAzure.Commands.Test.Profile { @@ -31,6 +34,16 @@ public IList ReturnedSubscriptions set { this._subscriptions = value; } } + protected override SubscriptionClient WithHandler(ServiceClient newClient, DelegatingHandler handler) + { + return newClient as SubscriptionClient; + } + + public override SubscriptionClient WithHandler(DelegatingHandler handler) + { + return this; + } + public override Microsoft.Azure.Subscriptions.Rdfe.ISubscriptionOperations Subscriptions { get { return MockRdfeSubscriptionOperations.Create(this.ReturnedSubscriptions, this.Tenant); } @@ -128,6 +141,11 @@ public override Azure.Subscriptions.Csm.ITenantOperations Tenants return MockCsmTenantOperations.Create(this.ReturnedTenants); } } + + public override Azure.Subscriptions.Csm.SubscriptionClient WithHandler(DelegatingHandler handler) + { + return this; + } } public class MockCsmTenantOperations : Microsoft.Azure.Subscriptions.Csm.ITenantOperations diff --git a/src/ServiceManagement/Services/Commands.Test/Websites/GetAzureWebSiteMetricsTests.cs b/src/ServiceManagement/Services/Commands.Test/Websites/GetAzureWebSiteMetricsTests.cs index 3a6e1fbf742a..e87390a02123 100644 --- a/src/ServiceManagement/Services/Commands.Test/Websites/GetAzureWebSiteMetricsTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/Websites/GetAzureWebSiteMetricsTests.cs @@ -29,7 +29,8 @@ namespace Microsoft.WindowsAzure.Commands.Test.Websites { - + using System.Globalization; + public class GetAzureWebsiteMetricsTests : WebsitesTestBase { [Fact] @@ -49,13 +50,13 @@ public void GetWebsiteMetricsBasicTest() Data = new MetricSet() { Name = "CPU Time", - StartTime = DateTime.Parse("7/28/2014 1:00:00 AM"), - EndTime = DateTime.Parse("7/28/2014 2:00:00 AM"), + StartTime = DateTime.Parse("7/28/2014 1:00:00 AM", new CultureInfo("en-US")), + EndTime = DateTime.Parse("7/28/2014 2:00:00 AM", new CultureInfo("en-US")), Values = new List { new MetricSample { - TimeCreated = DateTime.Parse("7/28/2014 1:00:00 AM"), + TimeCreated = DateTime.Parse("7/28/2014 1:00:00 AM", new CultureInfo("en-US")), Total = 201, } } diff --git a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 index e6411276d957..c91800393bc9 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.4' +ModuleVersion = '0.9.5' # ID used to uniquely identify this module GUID = 'D48CF693-4125-4D2D-8790-1514F44CE325' diff --git a/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj b/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj index 192cd61facac..16d13dc072a3 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj +++ b/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj @@ -126,7 +126,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.0\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.3\lib\net40\Microsoft.WindowsAzure.Management.Network.dll False @@ -213,6 +213,7 @@ + @@ -222,6 +223,7 @@ + diff --git a/src/ServiceManagement/Services/Commands.Utilities/Common/AzureTools/AzureSdkVersionInfo.cs b/src/ServiceManagement/Services/Commands.Utilities/Common/AzureTools/AzureSdkVersionInfo.cs index 1fd5fd054552..d227e8578c36 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Common/AzureTools/AzureSdkVersionInfo.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/Common/AzureTools/AzureSdkVersionInfo.cs @@ -18,7 +18,6 @@ internal class AzureSdkVersionInfo { //When intergrate with new Azure SDK, please update the versions here. //If you find there are other version strings to update, please move them to here. - public const string SupportAzureSdkVersionRegKey = "v2.5"; - public const string SupportAzureSdkVersion = "2.5.0"; + public const string DefaultAzureSdkVersionRegKey = "v2.7"; } } diff --git a/src/ServiceManagement/Services/Commands.Utilities/Common/AzureTools/AzureTool.cs b/src/ServiceManagement/Services/Commands.Utilities/Common/AzureTools/AzureTool.cs index c0554ab1db43..1c28a8b8a569 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Common/AzureTools/AzureTool.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/Common/AzureTools/AzureTool.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.Utilities.CloudService.AzureTools { public class AzureTool { - public const string SupportAzureSdkVersion = "2.5.0"; + public const string SupportAzureSdkVersion = "2.7.0"; public static void Validate() { @@ -94,13 +94,11 @@ private static string GetSdkVersionRegistryValue() { throw new InvalidOperationException(Resources.AzureToolsNotInstalledMessage); } - version = key.GetSubKeyNames().FirstOrDefault(n => n == AzureSdkVersionInfo.SupportAzureSdkVersionRegKey); - if (string.IsNullOrEmpty(version) && key.GetSubKeyNames().Length > 0) - { - throw new InvalidOperationException(string.Format(Resources.AzureSdkVersionNotSupported, AzureSdkVersionInfo.SupportAzureSdkVersionRegKey)); - } - else if (string.IsNullOrEmpty(version) && key.GetSubKeyNames().Length == 0) + // select the latest version of SDK installed on the machine. + version = key.GetSubKeyNames().LastOrDefault(); + + if (string.IsNullOrWhiteSpace(version) && key.GetSubKeyNames().Length == 0) { throw new InvalidOperationException(Resources.AzureToolsNotInstalledMessage); } @@ -110,7 +108,7 @@ private static string GetSdkVersionRegistryValue() { if (IgnoreMissingSDKError) { - version = AzureSdkVersionInfo.SupportAzureSdkVersionRegKey; + version = AzureSdkVersionInfo.DefaultAzureSdkVersionRegKey; } else { diff --git a/src/ServiceManagement/Services/Commands.Utilities/Common/ClientProvider.cs b/src/ServiceManagement/Services/Commands.Utilities/Common/ClientProvider.cs new file mode 100644 index 000000000000..922d8f7700f1 --- /dev/null +++ b/src/ServiceManagement/Services/Commands.Utilities/Common/ClientProvider.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Utilities.Common +{ + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Common.Authentication.Models; + using Microsoft.WindowsAzure.Management; + using Microsoft.WindowsAzure.Management.Compute; + using Microsoft.WindowsAzure.Management.Network; + using Microsoft.WindowsAzure.Management.Storage; + + public class ClientProvider : IClientProvider + { + private readonly ServiceManagementBaseCmdlet svcMgmtBaseCmdlet; + + public ClientProvider(ServiceManagementBaseCmdlet baseCmdlet) + { + this.svcMgmtBaseCmdlet = baseCmdlet; + } + + ManagementClient IClientProvider.CreateClient() + { + return AzureSession.ClientFactory.CreateClient(this.svcMgmtBaseCmdlet.Profile.Context, + AzureEnvironment.Endpoint.ServiceManagement); + } + + ComputeManagementClient IClientProvider.CreateComputeClient() + { + return AzureSession.ClientFactory.CreateClient(this.svcMgmtBaseCmdlet.Profile, + this.svcMgmtBaseCmdlet.Profile.Context.Subscription, AzureEnvironment.Endpoint.ServiceManagement); + } + + StorageManagementClient IClientProvider.CreateStorageClient() + { + return AzureSession.ClientFactory.CreateClient(this.svcMgmtBaseCmdlet.Profile, + this.svcMgmtBaseCmdlet.Profile.Context.Subscription, AzureEnvironment.Endpoint.ServiceManagement); + } + + NetworkManagementClient IClientProvider.CreateNetworkClient() + { + return AzureSession.ClientFactory.CreateClient(this.svcMgmtBaseCmdlet.Profile, + this.svcMgmtBaseCmdlet.Profile.Context.Subscription, AzureEnvironment.Endpoint.ServiceManagement); + } + } +} diff --git a/src/ServiceManagement/Services/Commands.Utilities/Common/IClientProvider.cs b/src/ServiceManagement/Services/Commands.Utilities/Common/IClientProvider.cs new file mode 100644 index 000000000000..742b44447b08 --- /dev/null +++ b/src/ServiceManagement/Services/Commands.Utilities/Common/IClientProvider.cs @@ -0,0 +1,34 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + + +namespace Microsoft.WindowsAzure.Commands.Utilities.Common +{ + using Microsoft.WindowsAzure.Management; + using Microsoft.WindowsAzure.Management.Compute; + using Microsoft.WindowsAzure.Management.Network; + using Microsoft.WindowsAzure.Management.Storage; + + public interface IClientProvider + { + ManagementClient CreateClient(); + + ComputeManagementClient CreateComputeClient(); + + StorageManagementClient CreateStorageClient(); + + NetworkManagementClient CreateNetworkClient(); + } +} diff --git a/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceConfigurationSchema.cs b/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceConfigurationSchema.cs index 07f097075884..f350772b4d47 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceConfigurationSchema.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceConfigurationSchema.cs @@ -8,1306 +8,1108 @@ // //------------------------------------------------------------------------------ -// This source code was auto-generated by xsd, Version=4.0.30319.34014 using command: -// xsd.exe "C:\Program Files\Microsoft SDKs\Azure\.NET SDK\v2.5\schemas\ServiceConfigurationSchema.xsd" -// /c /namespace:Microsoft.Azure.Common.Authentication.XmlSchema.ServiceConfigurationSchema -// /language:cs +// +// This source code was auto-generated by xsd, Version=4.0.30319.33440. +// +// xsd.exe "C:\Program Files\Microsoft SDKs\Azure\.NET SDK\v2.7\schemas\ServiceConfigurationSchema.xsd" /c /namespace:Microsoft.Azure.Common.Authentication.XmlSchema.ServiceConfigurationSchema /language:cs + namespace Microsoft.WindowsAzure.Commands.Utilities.Common.XmlSchema.ServiceConfigurationSchema { using System.Xml.Serialization; - - + + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - [System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration", IsNullable = false)] - public partial class ServiceConfiguration - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + [System.Xml.Serialization.XmlRootAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration", IsNullable=false)] + public partial class ServiceConfiguration { + private RoleSettings[] roleField; - + private NetworkConfigurationElement networkConfigurationField; - + private GuestAgentSettingsElement guestAgentSettingsField; - + private string serviceNameField; - + private string osFamilyField; - + private string osVersionField; - + private SchemaVersion schemaVersionField; - - public ServiceConfiguration() - { + + public ServiceConfiguration() { this.schemaVersionField = SchemaVersion.unspecified; } - + /// [System.Xml.Serialization.XmlElementAttribute("Role")] - public RoleSettings[] Role - { - get - { + public RoleSettings[] Role { + get { return this.roleField; } - set - { + set { this.roleField = value; } } - + /// - public NetworkConfigurationElement NetworkConfiguration - { - get - { + public NetworkConfigurationElement NetworkConfiguration { + get { return this.networkConfigurationField; } - set - { + set { this.networkConfigurationField = value; } } - + /// - public GuestAgentSettingsElement GuestAgentSettings - { - get - { + public GuestAgentSettingsElement GuestAgentSettings { + get { return this.guestAgentSettingsField; } - set - { + set { this.guestAgentSettingsField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string serviceName - { - get - { + public string serviceName { + get { return this.serviceNameField; } - set - { + set { this.serviceNameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string osFamily - { - get - { + public string osFamily { + get { return this.osFamilyField; } - set - { + set { this.osFamilyField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string osVersion - { - get - { + public string osVersion { + get { return this.osVersionField; } - set - { + set { this.osVersionField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(SchemaVersion.unspecified)] - public SchemaVersion schemaVersion - { - get - { + public SchemaVersion schemaVersion { + get { return this.schemaVersionField; } - set - { + set { this.schemaVersionField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class RoleSettings - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class RoleSettings { + private OsImageSetting osImageField; - + private ConfigurationSetting[] configurationSettingsField; - + private TargetSetting instancesField; - + private Certificate[] certificatesField; - + private string nameField; - + private string vmNameField; - + /// - public OsImageSetting OsImage - { - get - { + public OsImageSetting OsImage { + get { return this.osImageField; } - set - { + set { this.osImageField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("Setting", IsNullable = false)] - public ConfigurationSetting[] ConfigurationSettings - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("Setting", IsNullable=false)] + public ConfigurationSetting[] ConfigurationSettings { + get { return this.configurationSettingsField; } - set - { + set { this.configurationSettingsField = value; } } - + /// - public TargetSetting Instances - { - get - { + public TargetSetting Instances { + get { return this.instancesField; } - set - { + set { this.instancesField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Certificate[] Certificates - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Certificate[] Certificates { + get { return this.certificatesField; } - set - { + set { this.certificatesField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string vmName - { - get - { + public string vmName { + get { return this.vmNameField; } - set - { + set { this.vmNameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class OsImageSetting - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class OsImageSetting { + private string hrefField; - + /// - [System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")] - public string href - { - get - { + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string href { + get { return this.hrefField; } - set - { + set { this.hrefField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class GuestAgentSettingsElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class GuestAgentSettingsElement { + private bool cleanupFirewallOnRoleRestartField; - + private bool allowRoleProcessLocalDumpsField; - - public GuestAgentSettingsElement() - { + + public GuestAgentSettingsElement() { this.cleanupFirewallOnRoleRestartField = true; this.allowRoleProcessLocalDumpsField = false; } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(true)] - public bool cleanupFirewallOnRoleRestart - { - get - { + public bool cleanupFirewallOnRoleRestart { + get { return this.cleanupFirewallOnRoleRestartField; } - set - { + set { this.cleanupFirewallOnRoleRestartField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(false)] - public bool allowRoleProcessLocalDumps - { - get - { + public bool allowRoleProcessLocalDumps { + get { return this.allowRoleProcessLocalDumpsField; } - set - { + set { this.allowRoleProcessLocalDumpsField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class NetworkSecurityGroupElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class NetworkSecurityGroupElement { + private string nameField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class NetworkSecurityGroupRefElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class NetworkSecurityGroupRefElement { + private NetworkSecurityGroupElement networkSecurityGroupField; - + private string roleNameField; - + /// - public NetworkSecurityGroupElement NetworkSecurityGroup - { - get - { + public NetworkSecurityGroupElement NetworkSecurityGroup { + get { return this.networkSecurityGroupField; } - set - { + set { this.networkSecurityGroupField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string roleName - { - get - { + public string roleName { + get { return this.roleNameField; } - set - { + set { this.roleNameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class FrontendIPConfigurationElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class FrontendIPConfigurationElement { + private IPConfigurationAddressType typeField; - + private string subnetField; - + private string staticVirtualNetworkIPAddressField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public IPConfigurationAddressType type - { - get - { + public IPConfigurationAddressType type { + get { return this.typeField; } - set - { + set { this.typeField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string subnet - { - get - { + public string subnet { + get { return this.subnetField; } - set - { + set { this.subnetField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string staticVirtualNetworkIPAddress - { - get - { + public string staticVirtualNetworkIPAddress { + get { return this.staticVirtualNetworkIPAddressField; } - set - { + set { this.staticVirtualNetworkIPAddressField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public enum IPConfigurationAddressType - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public enum IPConfigurationAddressType { + /// @private, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class LoadBalancerElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class LoadBalancerElement { + private FrontendIPConfigurationElement frontendIPConfigurationField; - + private string nameField; - + /// - public FrontendIPConfigurationElement FrontendIPConfiguration - { - get - { + public FrontendIPConfigurationElement FrontendIPConfiguration { + get { return this.frontendIPConfigurationField; } - set - { + set { this.frontendIPConfigurationField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class RuleElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class RuleElement { + private ushort orderField; - + private RuleAction actionField; - + private string remoteSubnetField; - + private string descriptionField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public ushort order - { - get - { + public ushort order { + get { return this.orderField; } - set - { + set { this.orderField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public RuleAction action - { - get - { + public RuleAction action { + get { return this.actionField; } - set - { + set { this.actionField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string remoteSubnet - { - get - { + public string remoteSubnet { + get { return this.remoteSubnetField; } - set - { + set { this.remoteSubnetField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string description - { - get - { + public string description { + get { return this.descriptionField; } - set - { + set { this.descriptionField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public enum RuleAction - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public enum RuleAction { + /// permit, - + /// deny, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class AccessControlElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class AccessControlElement { + private RuleElement[] ruleField; - + private string nameField; - + /// [System.Xml.Serialization.XmlElementAttribute("Rule")] - public RuleElement[] Rule - { - get - { + public RuleElement[] Rule { + get { return this.ruleField; } - set - { + set { this.ruleField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class ReservedIPElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class ReservedIPElement { + private string nameField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class PublicIPElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class PublicIPElement { + private string nameField; - + private int idleTimeoutInMinutesField; - + private bool idleTimeoutInMinutesFieldSpecified; - + + private string domainNameLabelField; + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int idleTimeoutInMinutes - { - get - { + public int idleTimeoutInMinutes { + get { return this.idleTimeoutInMinutesField; } - set - { + set { this.idleTimeoutInMinutesField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool idleTimeoutInMinutesSpecified - { - get - { + public bool idleTimeoutInMinutesSpecified { + get { return this.idleTimeoutInMinutesFieldSpecified; } - set - { + set { this.idleTimeoutInMinutesFieldSpecified = value; } } + + /// + [System.Xml.Serialization.XmlAttributeAttribute()] + public string domainNameLabel { + get { + return this.domainNameLabelField; + } + set { + this.domainNameLabelField = value; + } + } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class PublicIPsElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class PublicIPsElement { + private PublicIPElement publicIPField; - + /// - public PublicIPElement PublicIP - { - get - { + public PublicIPElement PublicIP { + get { return this.publicIPField; } - set - { + set { this.publicIPField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class SubnetElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class SubnetElement { + private string nameField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class InstanceAddressElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class InstanceAddressElement { + private SubnetElement[] subnetsField; - + private PublicIPsElement publicIPsField; - + + private bool iPForwardingField; + + private bool iPForwardingFieldSpecified; + private string roleNameField; - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("Subnet", IsNullable = false)] - public SubnetElement[] Subnets - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("Subnet", IsNullable=false)] + public SubnetElement[] Subnets { + get { return this.subnetsField; } - set - { + set { this.subnetsField = value; } } - + /// - public PublicIPsElement PublicIPs - { - get - { + public PublicIPsElement PublicIPs { + get { return this.publicIPsField; } - set - { + set { this.publicIPsField = value; } } - + + /// + public bool IPForwarding { + get { + return this.iPForwardingField; + } + set { + this.iPForwardingField = value; + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IPForwardingSpecified { + get { + return this.iPForwardingFieldSpecified; + } + set { + this.iPForwardingFieldSpecified = value; + } + } + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string roleName - { - get - { + public string roleName { + get { return this.roleNameField; } - set - { + set { this.roleNameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class AddressAssignmentsElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class AddressAssignmentsElement { + private InstanceAddressElement[] instanceAddressField; - - private AddressAssignmentsElementReservedIPs reservedIPsField; - + + private ReservedIPElement[] reservedIPsField; + /// [System.Xml.Serialization.XmlElementAttribute("InstanceAddress")] - public InstanceAddressElement[] InstanceAddress - { - get - { + public InstanceAddressElement[] InstanceAddress { + get { return this.instanceAddressField; } - set - { + set { this.instanceAddressField = value; } } - + /// - public AddressAssignmentsElementReservedIPs ReservedIPs - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("ReservedIP", IsNullable=false)] + public ReservedIPElement[] ReservedIPs { + get { return this.reservedIPsField; } - set - { + set { this.reservedIPsField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class AddressAssignmentsElementReservedIPs - { - - private ReservedIPElement reservedIPField; - - /// - public ReservedIPElement ReservedIP - { - get - { - return this.reservedIPField; - } - set - { - this.reservedIPField = value; - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class VirtualNetworkSiteElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class VirtualNetworkSiteElement { + private string nameField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class DnsServerElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class DnsServerElement { + private string nameField; - + private string iPAddressField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string IPAddress - { - get - { + public string IPAddress { + get { return this.iPAddressField; } - set - { + set { this.iPAddressField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class DnsElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class DnsElement { + private DnsServerElement[] dnsServersField; - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("DnsServer", IsNullable = false)] - public DnsServerElement[] DnsServers - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("DnsServer", IsNullable=false)] + public DnsServerElement[] DnsServers { + get { return this.dnsServersField; } - set - { + set { this.dnsServersField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class NetworkConfigurationElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class NetworkConfigurationElement { + private DnsElement dnsField; - + private VirtualNetworkSiteElement virtualNetworkSiteField; - + private AddressAssignmentsElement addressAssignmentsField; - + private AccessControlElement[] accessControlsField; - + private EndpointAclsElementEndpointAcl[] endpointAclsField; - + private LoadBalancerElement[] loadBalancersField; - + private NetworkSecurityGroupRefElement[] networkSecurityGroupRefsField; - + /// - public DnsElement Dns - { - get - { + public DnsElement Dns { + get { return this.dnsField; } - set - { + set { this.dnsField = value; } } - + /// - public VirtualNetworkSiteElement VirtualNetworkSite - { - get - { + public VirtualNetworkSiteElement VirtualNetworkSite { + get { return this.virtualNetworkSiteField; } - set - { + set { this.virtualNetworkSiteField = value; } } - + /// - public AddressAssignmentsElement AddressAssignments - { - get - { + public AddressAssignmentsElement AddressAssignments { + get { return this.addressAssignmentsField; } - set - { + set { this.addressAssignmentsField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("AccessControl", IsNullable = false)] - public AccessControlElement[] AccessControls - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("AccessControl", IsNullable=false)] + public AccessControlElement[] AccessControls { + get { return this.accessControlsField; } - set - { + set { this.accessControlsField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("EndpointAcl", IsNullable = false)] - public EndpointAclsElementEndpointAcl[] EndpointAcls - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("EndpointAcl", IsNullable=false)] + public EndpointAclsElementEndpointAcl[] EndpointAcls { + get { return this.endpointAclsField; } - set - { + set { this.endpointAclsField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("LoadBalancer", IsNullable = false)] - public LoadBalancerElement[] LoadBalancers - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("LoadBalancer", IsNullable=false)] + public LoadBalancerElement[] LoadBalancers { + get { return this.loadBalancersField; } - set - { + set { this.loadBalancersField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("NetworkSecurityGroupRef", IsNullable = false)] - public NetworkSecurityGroupRefElement[] NetworkSecurityGroupRefs - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("NetworkSecurityGroupRef", IsNullable=false)] + public NetworkSecurityGroupRefElement[] NetworkSecurityGroupRefs { + get { return this.networkSecurityGroupRefsField; } - set - { + set { this.networkSecurityGroupRefsField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class EndpointAclsElementEndpointAcl - { - + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class EndpointAclsElementEndpointAcl { + private string roleField; - + private string endPointField; - + private string accessControlField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string role - { - get - { + public string role { + get { return this.roleField; } - set - { + set { this.roleField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string endPoint - { - get - { + public string endPoint { + get { return this.endPointField; } - set - { + set { this.endPointField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string accessControl - { - get - { + public string accessControl { + get { return this.accessControlField; } - set - { + set { this.accessControlField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class Certificate - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class Certificate { + private string nameField; - + private string thumbprintField; - + private ThumbprintAlgorithmTypes thumbprintAlgorithmField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string thumbprint - { - get - { + public string thumbprint { + get { return this.thumbprintField; } - set - { + set { this.thumbprintField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public ThumbprintAlgorithmTypes thumbprintAlgorithm - { - get - { + public ThumbprintAlgorithmTypes thumbprintAlgorithm { + get { return this.thumbprintAlgorithmField; } - set - { + set { this.thumbprintAlgorithmField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public enum ThumbprintAlgorithmTypes - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public enum ThumbprintAlgorithmTypes { + /// sha1, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class TargetSetting - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class TargetSetting { + private int countField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int count - { - get - { + public int count { + get { return this.countField; } - set - { + set { this.countField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public partial class ConfigurationSetting - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public partial class ConfigurationSetting { + private string nameField; - + private string valueField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string value - { - get - { + public string value { + get { return this.valueField; } - set - { + set { this.valueField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] - public enum SchemaVersion - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration")] + public enum SchemaVersion { + /// - [System.Xml.Serialization.XmlEnumAttribute("2014-06.2.4")] - Item20140624, - + [System.Xml.Serialization.XmlEnumAttribute("2015-04.2.6")] + Item20150426, + /// unspecified, } diff --git a/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceDefinitionSchema.cs b/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceDefinitionSchema.cs index 841780eb1913..4f5505c69f17 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceDefinitionSchema.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceDefinitionSchema.cs @@ -8,2816 +8,2355 @@ // //------------------------------------------------------------------------------ -// This source code was auto-generated by xsd, Version=4.0.30319.34014 using command: -// xsd.exe "C:\Program Files\Microsoft SDKs\Azure\.NET SDK\v2.5\schemas\ServiceDefinitionSchema.xsd" -// /c /namespace:Microsoft.Azure.Common.Authentication.XmlSchema.ServiceDefinitionSchema -// /language:cs +// +// This source code was auto-generated by xsd, Version=4.0.30319.33440. +// xsd.exe "C:\Program Files\Microsoft SDKs\Azure\.NET SDK\v2.7\schemas\ServiceDefinitionSchema.xsd" /c /namespace:Microsoft.Azure.Common.Authentication.XmlSchema.ServiceDefinitionSchema /language:cs + namespace Microsoft.WindowsAzure.Commands.Utilities.Common.XmlSchema.ServiceDefinitionSchema { using System.Xml.Serialization; - - + + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - [System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition", IsNullable = false)] - public partial class RoleModule - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + [System.Xml.Serialization.XmlRootAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition", IsNullable=false)] + public partial class RoleModule { + private Startup startupField; - + private RuntimeForRoleModule runtimeField; - + private ConfigurationSetting[] configurationSettingsField; - + private Endpoints endpointsField; - + private LocalResources localResourcesField; - + private Certificate[] certificatesField; - + private Sites sitesField; - + private string namespaceField; - + /// - public Startup Startup - { - get - { + public Startup Startup { + get { return this.startupField; } - set - { + set { this.startupField = value; } } - + /// - public RuntimeForRoleModule Runtime - { - get - { + public RuntimeForRoleModule Runtime { + get { return this.runtimeField; } - set - { + set { this.runtimeField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("Setting", IsNullable = false)] - public ConfigurationSetting[] ConfigurationSettings - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("Setting", IsNullable=false)] + public ConfigurationSetting[] ConfigurationSettings { + get { return this.configurationSettingsField; } - set - { + set { this.configurationSettingsField = value; } } - + /// - public Endpoints Endpoints - { - get - { + public Endpoints Endpoints { + get { return this.endpointsField; } - set - { + set { this.endpointsField = value; } } - + /// - public LocalResources LocalResources - { - get - { + public LocalResources LocalResources { + get { return this.localResourcesField; } - set - { + set { this.localResourcesField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Certificate[] Certificates - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Certificate[] Certificates { + get { return this.certificatesField; } - set - { + set { this.certificatesField = value; } } - + /// - public Sites Sites - { - get - { + public Sites Sites { + get { return this.sitesField; } - set - { + set { this.sitesField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string @namespace - { - get - { + public string @namespace { + get { return this.namespaceField; } - set - { + set { this.namespaceField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Startup - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Startup { + private Task[] taskField; - + private int priorityField; - - public Startup() - { + + public Startup() { this.priorityField = 0; } - + /// [System.Xml.Serialization.XmlElementAttribute("Task")] - public Task[] Task - { - get - { + public Task[] Task { + get { return this.taskField; } - set - { + set { this.taskField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(0)] - public int priority - { - get - { + public int priority { + get { return this.priorityField; } - set - { + set { this.priorityField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Task - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Task { + private Variable[] environmentField; - + private string commandLineField; - + private ExecutionContext executionContextField; - + private TaskType taskTypeField; - - public Task() - { + + public Task() { this.executionContextField = ExecutionContext.limited; this.taskTypeField = TaskType.simple; } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Variable[] Environment - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Variable[] Environment { + get { return this.environmentField; } - set - { + set { this.environmentField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string commandLine - { - get - { + public string commandLine { + get { return this.commandLineField; } - set - { + set { this.commandLineField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(ExecutionContext.limited)] - public ExecutionContext executionContext - { - get - { + public ExecutionContext executionContext { + get { return this.executionContextField; } - set - { + set { this.executionContextField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(TaskType.simple)] - public TaskType taskType - { - get - { + public TaskType taskType { + get { return this.taskTypeField; } - set - { + set { this.taskTypeField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Variable - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Variable { + private RoleInstanceValueElement roleInstanceValueField; - + private string nameField; - + private string valueField; - + /// - public RoleInstanceValueElement RoleInstanceValue - { - get - { + public RoleInstanceValueElement RoleInstanceValue { + get { return this.roleInstanceValueField; } - set - { + set { this.roleInstanceValueField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string value - { - get - { + public string value { + get { return this.valueField; } - set - { + set { this.valueField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class RoleInstanceValueElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class RoleInstanceValueElement { + private string xpathField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string xpath - { - get - { + public string xpath { + get { return this.xpathField; } - set - { + set { this.xpathField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class FromRole - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class FromRole { + private string roleNameField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string roleName - { - get - { + public string roleName { + get { return this.roleNameField; } - set - { + set { this.roleNameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WhenSource - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WhenSource { + private FromRole[] fromRoleField; - + private MatchMode matchesField; - + /// [System.Xml.Serialization.XmlElementAttribute("FromRole")] - public FromRole[] FromRole - { - get - { + public FromRole[] FromRole { + get { return this.fromRoleField; } - set - { + set { this.fromRoleField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public MatchMode matches - { - get - { + public MatchMode matches { + get { return this.matchesField; } - set - { + set { this.matchesField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum MatchMode - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum MatchMode { + /// AnyRule, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class AllowAllTraffic - { + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class AllowAllTraffic { } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class RoleEndpoint - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class RoleEndpoint { + private string roleNameField; - + private string endpointNameField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string roleName - { - get - { + public string roleName { + get { return this.roleNameField; } - set - { + set { this.roleNameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string endpointName - { - get - { + public string endpointName { + get { return this.endpointNameField; } - set - { + set { this.endpointNameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Destinations - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Destinations { + private RoleEndpoint[] roleEndpointField; - + /// [System.Xml.Serialization.XmlElementAttribute("RoleEndpoint")] - public RoleEndpoint[] RoleEndpoint - { - get - { + public RoleEndpoint[] RoleEndpoint { + get { return this.roleEndpointField; } - set - { + set { this.roleEndpointField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class OnlyAllowTrafficTo - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class OnlyAllowTrafficTo { + private Destinations destinationsField; - + private object itemField; - + /// - public Destinations Destinations - { - get - { + public Destinations Destinations { + get { return this.destinationsField; } - set - { + set { this.destinationsField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute("AllowAllTraffic", typeof(AllowAllTraffic))] [System.Xml.Serialization.XmlElementAttribute("WhenSource", typeof(WhenSource))] - public object Item - { - get - { + public object Item { + get { return this.itemField; } - set - { + set { this.itemField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WorkerRole - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WorkerRole { + private Import[] importsField; - + private Startup startupField; - + private LocalStore localStorageField; - + private LocalResources localResourcesField; - + private ConfigurationSetting[] configurationSettingsField; - + private Endpoints endpointsField; - + private Certificate[] certificatesField; - + private WorkerRuntime runtimeField; - + private ContentElement[] contentsField; - + private string nameField; - + private bool enableNativeCodeExecutionField; - + private string vmsizeField; - - public WorkerRole() - { + + public WorkerRole() { this.enableNativeCodeExecutionField = true; this.vmsizeField = "Small"; } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Import[] Imports - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Import[] Imports { + get { return this.importsField; } - set - { + set { this.importsField = value; } } - + /// - public Startup Startup - { - get - { + public Startup Startup { + get { return this.startupField; } - set - { + set { this.startupField = value; } } - + /// - public LocalStore LocalStorage - { - get - { + public LocalStore LocalStorage { + get { return this.localStorageField; } - set - { + set { this.localStorageField = value; } } - + /// - public LocalResources LocalResources - { - get - { + public LocalResources LocalResources { + get { return this.localResourcesField; } - set - { + set { this.localResourcesField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("Setting", IsNullable = false)] - public ConfigurationSetting[] ConfigurationSettings - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("Setting", IsNullable=false)] + public ConfigurationSetting[] ConfigurationSettings { + get { return this.configurationSettingsField; } - set - { + set { this.configurationSettingsField = value; } } - + /// - public Endpoints Endpoints - { - get - { + public Endpoints Endpoints { + get { return this.endpointsField; } - set - { + set { this.endpointsField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Certificate[] Certificates - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Certificate[] Certificates { + get { return this.certificatesField; } - set - { + set { this.certificatesField = value; } } - + /// - public WorkerRuntime Runtime - { - get - { + public WorkerRuntime Runtime { + get { return this.runtimeField; } - set - { + set { this.runtimeField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("Content", IsNullable = false)] - public ContentElement[] Contents - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("Content", IsNullable=false)] + public ContentElement[] Contents { + get { return this.contentsField; } - set - { + set { this.contentsField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(true)] - public bool enableNativeCodeExecution - { - get - { + public bool enableNativeCodeExecution { + get { return this.enableNativeCodeExecutionField; } - set - { + set { this.enableNativeCodeExecutionField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute("Small")] - public string vmsize - { - get - { + public string vmsize { + get { return this.vmsizeField; } - set - { + set { this.vmsizeField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Import - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Import { + private string moduleNameField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string moduleName - { - get - { + public string moduleName { + get { return this.moduleNameField; } - set - { + set { this.moduleNameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class LocalStore - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class LocalStore { + private string nameField; - + private int sizeInMBField; - + private bool cleanOnRoleRecycleField; - - public LocalStore() - { + + public LocalStore() { this.sizeInMBField = 1000; this.cleanOnRoleRecycleField = true; } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(1000)] - public int sizeInMB - { - get - { + public int sizeInMB { + get { return this.sizeInMBField; } - set - { + set { this.sizeInMBField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(true)] - public bool cleanOnRoleRecycle - { - get - { + public bool cleanOnRoleRecycle { + get { return this.cleanOnRoleRecycleField; } - set - { + set { this.cleanOnRoleRecycleField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class LocalResources - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class LocalResources { + private LocalStore[] localStorageField; - + /// [System.Xml.Serialization.XmlElementAttribute("LocalStorage")] - public LocalStore[] LocalStorage - { - get - { + public LocalStore[] LocalStorage { + get { return this.localStorageField; } - set - { + set { this.localStorageField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class ConfigurationSetting - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class ConfigurationSetting { + private string nameField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Endpoints - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Endpoints { + private InputEndpoint[] inputEndpointField; - + private InternalEndpoint[] internalEndpointField; - + private InstanceInputEndpointElement[] instanceInputEndpointField; - + /// [System.Xml.Serialization.XmlElementAttribute("InputEndpoint")] - public InputEndpoint[] InputEndpoint - { - get - { + public InputEndpoint[] InputEndpoint { + get { return this.inputEndpointField; } - set - { + set { this.inputEndpointField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute("InternalEndpoint")] - public InternalEndpoint[] InternalEndpoint - { - get - { + public InternalEndpoint[] InternalEndpoint { + get { return this.internalEndpointField; } - set - { + set { this.internalEndpointField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute("InstanceInputEndpoint")] - public InstanceInputEndpointElement[] InstanceInputEndpoint - { - get - { + public InstanceInputEndpointElement[] InstanceInputEndpoint { + get { return this.instanceInputEndpointField; } - set - { + set { this.instanceInputEndpointField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class InputEndpoint - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class InputEndpoint { + private string nameField; - + private Protocol protocolField; - + private int portField; - + private string certificateField; - + private string localPortField; - + private bool ignoreRoleInstanceStatusField; - + private string loadBalancerProbeField; - + private string loadBalancerField; - + private int idleTimeoutInMinutesField; - + private bool idleTimeoutInMinutesFieldSpecified; - + private DistributionType loadBalancerDistributionField; - + private bool loadBalancerDistributionFieldSpecified; - - public InputEndpoint() - { + + public InputEndpoint() { this.ignoreRoleInstanceStatusField = false; } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public Protocol protocol - { - get - { + public Protocol protocol { + get { return this.protocolField; } - set - { + set { this.protocolField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int port - { - get - { + public int port { + get { return this.portField; } - set - { + set { this.portField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string certificate - { - get - { + public string certificate { + get { return this.certificateField; } - set - { + set { this.certificateField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string localPort - { - get - { + public string localPort { + get { return this.localPortField; } - set - { + set { this.localPortField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(false)] - public bool ignoreRoleInstanceStatus - { - get - { + public bool ignoreRoleInstanceStatus { + get { return this.ignoreRoleInstanceStatusField; } - set - { + set { this.ignoreRoleInstanceStatusField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string loadBalancerProbe - { - get - { + public string loadBalancerProbe { + get { return this.loadBalancerProbeField; } - set - { + set { this.loadBalancerProbeField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string loadBalancer - { - get - { + public string loadBalancer { + get { return this.loadBalancerField; } - set - { + set { this.loadBalancerField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int idleTimeoutInMinutes - { - get - { + public int idleTimeoutInMinutes { + get { return this.idleTimeoutInMinutesField; } - set - { + set { this.idleTimeoutInMinutesField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool idleTimeoutInMinutesSpecified - { - get - { + public bool idleTimeoutInMinutesSpecified { + get { return this.idleTimeoutInMinutesFieldSpecified; } - set - { + set { this.idleTimeoutInMinutesFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public DistributionType loadBalancerDistribution - { - get - { + public DistributionType loadBalancerDistribution { + get { return this.loadBalancerDistributionField; } - set - { + set { this.loadBalancerDistributionField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool loadBalancerDistributionSpecified - { - get - { + public bool loadBalancerDistributionSpecified { + get { return this.loadBalancerDistributionFieldSpecified; } - set - { + set { this.loadBalancerDistributionFieldSpecified = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum Protocol - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum Protocol { + /// http, - + /// https, - + /// tcp, - + /// udp, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum DistributionType - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum DistributionType { + /// sourceIP, - + /// sourceIPProtocol, - + /// none, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class InternalEndpoint - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class InternalEndpoint { + private Port[] fixedPortField; - + private PortRange[] fixedPortRangeField; - + private string nameField; - + private string portField; - + private InternalProtocol protocolField; - + /// [System.Xml.Serialization.XmlElementAttribute("FixedPort")] - public Port[] FixedPort - { - get - { + public Port[] FixedPort { + get { return this.fixedPortField; } - set - { + set { this.fixedPortField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute("FixedPortRange")] - public PortRange[] FixedPortRange - { - get - { + public PortRange[] FixedPortRange { + get { return this.fixedPortRangeField; } - set - { + set { this.fixedPortRangeField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string port - { - get - { + public string port { + get { return this.portField; } - set - { + set { this.portField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public InternalProtocol protocol - { - get - { + public InternalProtocol protocol { + get { return this.protocolField; } - set - { + set { this.protocolField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Port - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Port { + private int portField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int port - { - get - { + public int port { + get { return this.portField; } - set - { + set { this.portField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class PortRange - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class PortRange { + private int minField; - + private int maxField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int min - { - get - { + public int min { + get { return this.minField; } - set - { + set { this.minField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int max - { - get - { + public int max { + get { return this.maxField; } - set - { + set { this.maxField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum InternalProtocol - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum InternalProtocol { + /// http, - + /// tcp, - + /// udp, - + /// any, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class InstanceInputEndpointElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class InstanceInputEndpointElement { + private AllocatePublicPortFromElement allocatePublicPortFromField; - + private string nameField; - + private int localPortField; - + private TransportProtocol protocolField; - + private int idleTimeoutInMinutesField; - + private bool idleTimeoutInMinutesFieldSpecified; - + /// - public AllocatePublicPortFromElement AllocatePublicPortFrom - { - get - { + public AllocatePublicPortFromElement AllocatePublicPortFrom { + get { return this.allocatePublicPortFromField; } - set - { + set { this.allocatePublicPortFromField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int localPort - { - get - { + public int localPort { + get { return this.localPortField; } - set - { + set { this.localPortField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public TransportProtocol protocol - { - get - { + public TransportProtocol protocol { + get { return this.protocolField; } - set - { + set { this.protocolField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int idleTimeoutInMinutes - { - get - { + public int idleTimeoutInMinutes { + get { return this.idleTimeoutInMinutesField; } - set - { + set { this.idleTimeoutInMinutesField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool idleTimeoutInMinutesSpecified - { - get - { + public bool idleTimeoutInMinutesSpecified { + get { return this.idleTimeoutInMinutesFieldSpecified; } - set - { + set { this.idleTimeoutInMinutesFieldSpecified = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class AllocatePublicPortFromElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class AllocatePublicPortFromElement { + private PortRange fixedPortRangeField; - + /// - public PortRange FixedPortRange - { - get - { + public PortRange FixedPortRange { + get { return this.fixedPortRangeField; } - set - { + set { this.fixedPortRangeField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum TransportProtocol - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum TransportProtocol { + /// udp, - + /// tcp, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Certificate - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Certificate { + private string nameField; - + private StoreLocation storeLocationField; - + private string storeNameField; - + private PermissionLevel permissionLevelField; - - public Certificate() - { + + public Certificate() { this.permissionLevelField = PermissionLevel.limitedOrElevated; } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public StoreLocation storeLocation - { - get - { + public StoreLocation storeLocation { + get { return this.storeLocationField; } - set - { + set { this.storeLocationField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string storeName - { - get - { + public string storeName { + get { return this.storeNameField; } - set - { + set { this.storeNameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(PermissionLevel.limitedOrElevated)] - public PermissionLevel permissionLevel - { - get - { + public PermissionLevel permissionLevel { + get { return this.permissionLevelField; } - set - { + set { this.permissionLevelField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum StoreLocation - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum StoreLocation { + /// CurrentUser, - + /// LocalMachine, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum PermissionLevel - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum PermissionLevel { + /// limitedOrElevated, - + /// elevated, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WorkerRuntime : Runtime - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WorkerRuntime : Runtime { + private WorkerEntryPointElement entryPointField; - + /// - public WorkerEntryPointElement EntryPoint - { - get - { + public WorkerEntryPointElement EntryPoint { + get { return this.entryPointField; } - set - { + set { this.entryPointField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WorkerEntryPointElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WorkerEntryPointElement { + private object itemField; - + /// [System.Xml.Serialization.XmlElementAttribute("NetFxEntryPoint", typeof(NetFxAssemblyEntryPointElement))] [System.Xml.Serialization.XmlElementAttribute("ProgramEntryPoint", typeof(ProgramEntryPointElement))] - public object Item - { - get - { + public object Item { + get { return this.itemField; } - set - { + set { this.itemField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class NetFxAssemblyEntryPointElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class NetFxAssemblyEntryPointElement { + private string assemblyNameField; - + private string targetFrameworkVersionField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string assemblyName - { - get - { + public string assemblyName { + get { return this.assemblyNameField; } - set - { + set { this.assemblyNameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string targetFrameworkVersion - { - get - { + public string targetFrameworkVersion { + get { return this.targetFrameworkVersionField; } - set - { + set { this.targetFrameworkVersionField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class ProgramEntryPointElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class ProgramEntryPointElement { + private string commandLineField; - + private bool setReadyOnProcessStartField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string commandLine - { - get - { + public string commandLine { + get { return this.commandLineField; } - set - { + set { this.commandLineField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public bool setReadyOnProcessStart - { - get - { + public bool setReadyOnProcessStart { + get { return this.setReadyOnProcessStartField; } - set - { + set { this.setReadyOnProcessStartField = value; } } } - + /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(RuntimeForRoleModule))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(WebRuntime))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(WorkerRuntime))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Runtime - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Runtime { + private Variable[] environmentField; - + private ExecutionContext executionContextField; - - public Runtime() - { + + public Runtime() { this.executionContextField = ExecutionContext.limited; } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Variable[] Environment - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Variable[] Environment { + get { return this.environmentField; } - set - { + set { this.environmentField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(ExecutionContext.limited)] - public ExecutionContext executionContext - { - get - { + public ExecutionContext executionContext { + get { return this.executionContextField; } - set - { + set { this.executionContextField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum ExecutionContext - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum ExecutionContext { + /// limited, - + /// elevated, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class RuntimeForRoleModule : Runtime - { + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class RuntimeForRoleModule : Runtime { } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WebRuntime : Runtime - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WebRuntime : Runtime { + private EntryPointElement entryPointField; - + /// - public EntryPointElement EntryPoint - { - get - { + public EntryPointElement EntryPoint { + get { return this.entryPointField; } - set - { + set { this.entryPointField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class EntryPointElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class EntryPointElement { + private NetFxAssemblyEntryPointElement itemField; - + /// [System.Xml.Serialization.XmlElementAttribute("NetFxEntryPoint")] - public NetFxAssemblyEntryPointElement Item - { - get - { + public NetFxAssemblyEntryPointElement Item { + get { return this.itemField; } - set - { + set { this.itemField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class ContentElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class ContentElement { + private SourceDirectoryElement sourceDirectoryField; - + private string destinationField; - + /// - public SourceDirectoryElement SourceDirectory - { - get - { + public SourceDirectoryElement SourceDirectory { + get { return this.sourceDirectoryField; } - set - { + set { this.sourceDirectoryField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string destination - { - get - { + public string destination { + get { return this.destinationField; } - set - { + set { this.destinationField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class SourceDirectoryElement - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class SourceDirectoryElement { + private string pathField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string path - { - get - { + public string path { + get { return this.pathField; } - set - { + set { this.pathField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WebRole - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WebRole { + private Import[] importsField; - + private Startup startupField; - + private LocalStore localStorageField; - + private LocalResources localResourcesField; - + private ConfigurationSetting[] configurationSettingsField; - + private WebRoleInputEndpoints inputEndpointsField; - + private WebRoleInternalEndpoint internalEndpointField; - + private Endpoints endpointsField; - + private Certificate[] certificatesField; - + private Sites sitesField; - + private WebRuntime runtimeField; - + private ContentElement[] contentsField; - + private string nameField; - + private bool enableNativeCodeExecutionField; - + private string vmsizeField; - - public WebRole() - { + + public WebRole() { this.enableNativeCodeExecutionField = true; this.vmsizeField = "Small"; } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Import[] Imports - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Import[] Imports { + get { return this.importsField; } - set - { + set { this.importsField = value; } } - + /// - public Startup Startup - { - get - { + public Startup Startup { + get { return this.startupField; } - set - { + set { this.startupField = value; } } - + /// - public LocalStore LocalStorage - { - get - { + public LocalStore LocalStorage { + get { return this.localStorageField; } - set - { + set { this.localStorageField = value; } } - + /// - public LocalResources LocalResources - { - get - { + public LocalResources LocalResources { + get { return this.localResourcesField; } - set - { + set { this.localResourcesField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("Setting", IsNullable = false)] - public ConfigurationSetting[] ConfigurationSettings - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("Setting", IsNullable=false)] + public ConfigurationSetting[] ConfigurationSettings { + get { return this.configurationSettingsField; } - set - { + set { this.configurationSettingsField = value; } } - + /// - public WebRoleInputEndpoints InputEndpoints - { - get - { + public WebRoleInputEndpoints InputEndpoints { + get { return this.inputEndpointsField; } - set - { + set { this.inputEndpointsField = value; } } - + /// - public WebRoleInternalEndpoint InternalEndpoint - { - get - { + public WebRoleInternalEndpoint InternalEndpoint { + get { return this.internalEndpointField; } - set - { + set { this.internalEndpointField = value; } } - + /// - public Endpoints Endpoints - { - get - { + public Endpoints Endpoints { + get { return this.endpointsField; } - set - { + set { this.endpointsField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Certificate[] Certificates - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Certificate[] Certificates { + get { return this.certificatesField; } - set - { + set { this.certificatesField = value; } } - + /// - public Sites Sites - { - get - { + public Sites Sites { + get { return this.sitesField; } - set - { + set { this.sitesField = value; } } - + /// - public WebRuntime Runtime - { - get - { + public WebRuntime Runtime { + get { return this.runtimeField; } - set - { + set { this.runtimeField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute("Content", IsNullable = false)] - public ContentElement[] Contents - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute("Content", IsNullable=false)] + public ContentElement[] Contents { + get { return this.contentsField; } - set - { + set { this.contentsField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(true)] - public bool enableNativeCodeExecution - { - get - { + public bool enableNativeCodeExecution { + get { return this.enableNativeCodeExecutionField; } - set - { + set { this.enableNativeCodeExecutionField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute("Small")] - public string vmsize - { - get - { + public string vmsize { + get { return this.vmsizeField; } - set - { + set { this.vmsizeField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WebRoleInputEndpoints - { - + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WebRoleInputEndpoints { + private WebRoleInputEndpointsInputEndpoint[] inputEndpointField; - + /// [System.Xml.Serialization.XmlElementAttribute("InputEndpoint")] - public WebRoleInputEndpointsInputEndpoint[] InputEndpoint - { - get - { + public WebRoleInputEndpointsInputEndpoint[] InputEndpoint { + get { return this.inputEndpointField; } - set - { + set { this.inputEndpointField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WebRoleInputEndpointsInputEndpoint : InputEndpoint - { + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WebRoleInputEndpointsInputEndpoint : InputEndpoint { } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class WebRoleInternalEndpoint : InternalEndpoint - { + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class WebRoleInternalEndpoint : InternalEndpoint { } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Sites - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Sites { + private Site[] siteField; - + /// [System.Xml.Serialization.XmlElementAttribute("Site")] - public Site[] Site - { - get - { + public Site[] Site { + get { return this.siteField; } - set - { + set { this.siteField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Site : VirtualDirectory - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Site : VirtualDirectory { + private Binding[] bindingsField; - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public Binding[] Bindings - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public Binding[] Bindings { + get { return this.bindingsField; } - set - { + set { this.bindingsField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class Binding - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class Binding { + private string nameField; - + private string endpointNameField; - + private string hostHeaderField; - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string endpointName - { - get - { + public string endpointName { + get { return this.endpointNameField; } - set - { + set { this.endpointNameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string hostHeader - { - get - { + public string hostHeader { + get { return this.hostHeaderField; } - set - { + set { this.hostHeaderField = value; } } } - + /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(VirtualApplication))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(Site))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class VirtualDirectory - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class VirtualDirectory { + private VirtualDirectory[] itemsField; - + private ItemsChoiceType[] itemsElementNameField; - + private string nameField; - + private string physicalDirectoryField; - + /// [System.Xml.Serialization.XmlElementAttribute("VirtualApplication", typeof(VirtualDirectory))] [System.Xml.Serialization.XmlElementAttribute("VirtualDirectory", typeof(VirtualDirectory))] [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] - public VirtualDirectory[] Items - { - get - { + public VirtualDirectory[] Items { + get { return this.itemsField; } - set - { + set { this.itemsField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute("ItemsElementName")] [System.Xml.Serialization.XmlIgnoreAttribute()] - public ItemsChoiceType[] ItemsElementName - { - get - { + public ItemsChoiceType[] ItemsElementName { + get { return this.itemsElementNameField; } - set - { + set { this.itemsElementNameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string physicalDirectory - { - get - { + public string physicalDirectory { + get { return this.physicalDirectoryField; } - set - { + set { this.physicalDirectoryField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition", IncludeInSchema = false)] - public enum ItemsChoiceType - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition", IncludeInSchema=false)] + public enum ItemsChoiceType { + /// VirtualApplication, - + /// VirtualDirectory, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class VirtualApplication : VirtualDirectory - { + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class VirtualApplication : VirtualDirectory { } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public partial class LoadBalancerProbe - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public partial class LoadBalancerProbe { + private string nameField; - + private ProbeProtocol protocolField; - + private int portField; - + private bool portFieldSpecified; - + private string pathField; - + private int intervalInSecondsField; - + private int timeoutInSecondsField; - - public LoadBalancerProbe() - { + + public LoadBalancerProbe() { this.intervalInSecondsField = 15; this.timeoutInSecondsField = 31; } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public ProbeProtocol protocol - { - get - { + public ProbeProtocol protocol { + get { return this.protocolField; } - set - { + set { this.protocolField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public int port - { - get - { + public int port { + get { return this.portField; } - set - { + set { this.portField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool portSpecified - { - get - { + public bool portSpecified { + get { return this.portFieldSpecified; } - set - { + set { this.portFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string path - { - get - { + public string path { + get { return this.pathField; } - set - { + set { this.pathField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(15)] - public int intervalInSeconds - { - get - { + public int intervalInSeconds { + get { return this.intervalInSecondsField; } - set - { + set { this.intervalInSecondsField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(31)] - public int timeoutInSeconds - { - get - { + public int timeoutInSeconds { + get { return this.timeoutInSecondsField; } - set - { + set { this.timeoutInSecondsField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum ProbeProtocol - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum ProbeProtocol { + /// http, - + /// tcp, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum TaskType - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum TaskType { + /// simple, - + /// foreground, - + /// background, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - [System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition", IsNullable = false)] - public partial class ServiceDefinition - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + [System.Xml.Serialization.XmlRootAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition", IsNullable=false)] + public partial class ServiceDefinition { + private LoadBalancerProbe[] loadBalancerProbesField; - + private WebRole[] webRoleField; - + private WorkerRole[] workerRoleField; - + private OnlyAllowTrafficTo[] networkTrafficRulesField; - + private string nameField; - + private int upgradeDomainCountField; - + private SchemaVersion schemaVersionField; - + private TopologyChangeDiscovery topologyChangeDiscoveryField; - - public ServiceDefinition() - { + + public ServiceDefinition() { this.upgradeDomainCountField = 5; this.schemaVersionField = SchemaVersion.unspecified; this.topologyChangeDiscoveryField = TopologyChangeDiscovery.UpgradeDomainWalk; } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public LoadBalancerProbe[] LoadBalancerProbes - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public LoadBalancerProbe[] LoadBalancerProbes { + get { return this.loadBalancerProbesField; } - set - { + set { this.loadBalancerProbesField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute("WebRole")] - public WebRole[] WebRole - { - get - { + public WebRole[] WebRole { + get { return this.webRoleField; } - set - { + set { this.webRoleField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute("WorkerRole")] - public WorkerRole[] WorkerRole - { - get - { + public WorkerRole[] WorkerRole { + get { return this.workerRoleField; } - set - { + set { this.workerRoleField = value; } } - + /// - [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable = false)] - public OnlyAllowTrafficTo[] NetworkTrafficRules - { - get - { + [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] + public OnlyAllowTrafficTo[] NetworkTrafficRules { + get { return this.networkTrafficRulesField; } - set - { + set { this.networkTrafficRulesField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] - public string name - { - get - { + public string name { + get { return this.nameField; } - set - { + set { this.nameField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(5)] - public int upgradeDomainCount - { - get - { + public int upgradeDomainCount { + get { return this.upgradeDomainCountField; } - set - { + set { this.upgradeDomainCountField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(SchemaVersion.unspecified)] - public SchemaVersion schemaVersion - { - get - { + public SchemaVersion schemaVersion { + get { return this.schemaVersionField; } - set - { + set { this.schemaVersionField = value; } } - + /// [System.Xml.Serialization.XmlAttributeAttribute()] [System.ComponentModel.DefaultValueAttribute(TopologyChangeDiscovery.UpgradeDomainWalk)] - public TopologyChangeDiscovery topologyChangeDiscovery - { - get - { + public TopologyChangeDiscovery topologyChangeDiscovery { + get { return this.topologyChangeDiscoveryField; } - set - { + set { this.topologyChangeDiscoveryField = value; } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum SchemaVersion - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum SchemaVersion { + /// unspecified, - + /// - [System.Xml.Serialization.XmlEnumAttribute("2014-06.2.4")] - Item20140624, + [System.Xml.Serialization.XmlEnumAttribute("2015-04.2.6")] + Item20150426, } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.33440")] [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] - public enum TopologyChangeDiscovery - { - + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition")] + public enum TopologyChangeDiscovery { + /// UpgradeDomainWalk, - + /// Blast, } diff --git a/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceManagementBaseCmdlet.cs b/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceManagementBaseCmdlet.cs index c1b34fccd3f5..16e892e4219b 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceManagementBaseCmdlet.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/Common/ServiceManagementBaseCmdlet.cs @@ -39,35 +39,27 @@ public abstract class ServiceManagementBaseCmdlet : CloudBaseCmdlet(() => { + IClientProvider clientProvider = new ClientProvider(this); + SetupClients(clientProvider); + } + + private void SetupClients(IClientProvider clientProvider) + { + runspace = new Lazy(() => + { var localRunspace = RunspaceFactory.CreateRunspace(this.Host); localRunspace.Open(); return localRunspace; }); - client = new Lazy(CreateClient); - computeClient = new Lazy(CreateComputeClient); - storageClient = new Lazy(CreateStorageClient); - networkClient = new Lazy(CreateNetworkClient); - } - - public ManagementClient CreateClient() - { - return AzureSession.ClientFactory.CreateClient(Profile.Context, AzureEnvironment.Endpoint.ServiceManagement); - } - - public ComputeManagementClient CreateComputeClient() - { - return AzureSession.ClientFactory.CreateClient(Profile, Profile.Context.Subscription, AzureEnvironment.Endpoint.ServiceManagement); - } - - public StorageManagementClient CreateStorageClient() - { - return AzureSession.ClientFactory.CreateClient(Profile, Profile.Context.Subscription, AzureEnvironment.Endpoint.ServiceManagement); + client = new Lazy(clientProvider.CreateClient); + computeClient = new Lazy(clientProvider.CreateComputeClient); + storageClient = new Lazy(clientProvider.CreateStorageClient); + networkClient = new Lazy(clientProvider.CreateNetworkClient); } - public NetworkManagementClient CreateNetworkClient() + protected ServiceManagementBaseCmdlet(IClientProvider clientProvider) { - return AzureSession.ClientFactory.CreateClient(Profile, Profile.Context.Subscription, AzureEnvironment.Endpoint.ServiceManagement); + SetupClients(clientProvider); } private Lazy client; diff --git a/src/ServiceManagement/Services/Commands.Utilities/Properties/Resources.Designer.cs b/src/ServiceManagement/Services/Commands.Utilities/Properties/Resources.Designer.cs index de21e69637ff..93079e111594 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Properties/Resources.Designer.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/Properties/Resources.Designer.cs @@ -3820,7 +3820,7 @@ public static string StorageAccountNotFound { } /// - /// Looks up a localized string similar to WAStorageEmulator.exe. + /// Looks up a localized string similar to AzureStorageEmulator.exe. /// public static string StorageEmulatorExe { get { diff --git a/src/ServiceManagement/Services/Commands.Utilities/Properties/Resources.resx b/src/ServiceManagement/Services/Commands.Utilities/Properties/Resources.resx index 33ed46d79ffe..8053f59b1b9d 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Properties/Resources.resx +++ b/src/ServiceManagement/Services/Commands.Utilities/Properties/Resources.resx @@ -1346,7 +1346,7 @@ use and privacy statement at <url> and (c) agree to sharing my contact inf Cannot find storage account '{0}' please type the name of an existing storage account. - WAStorageEmulator.exe + AzureStorageEmulator.exe InstallPath diff --git a/src/ServiceManagement/Services/Commands.Utilities/Scheduler/SchedulerMgmntClient.CreateJobs.cs b/src/ServiceManagement/Services/Commands.Utilities/Scheduler/SchedulerMgmntClient.CreateJobs.cs index 65ddcc09af41..ae9ab3488172 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Scheduler/SchedulerMgmntClient.CreateJobs.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/Scheduler/SchedulerMgmntClient.CreateJobs.cs @@ -178,7 +178,7 @@ public PSJobDetail CreateStorageJob(PSCreateJobParams jobRequest, out string sta Type = JobActionType.StorageQueue, QueueMessage = new JobQueueMessage { - Message = jobRequest.Body ?? string.Empty, + Message = jobRequest.StorageQueueMessage ?? string.Empty, StorageAccountName = jobRequest.StorageAccount, QueueName = jobRequest.QueueName, SasToken = jobRequest.SasToken diff --git a/src/ServiceManagement/Services/Commands.Utilities/packages.config b/src/ServiceManagement/Services/Commands.Utilities/packages.config index 25763cc6f23e..733f208479f1 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/packages.config +++ b/src/ServiceManagement/Services/Commands.Utilities/packages.config @@ -18,7 +18,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands/Commands.csproj b/src/ServiceManagement/Services/Commands/Commands.csproj index 63512d91caee..ab38c16a6b5e 100644 --- a/src/ServiceManagement/Services/Commands/Commands.csproj +++ b/src/ServiceManagement/Services/Commands/Commands.csproj @@ -124,7 +124,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.0\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.3\lib\net40\Microsoft.WindowsAzure.Management.Network.dll False diff --git a/src/ServiceManagement/Services/Commands/packages.config b/src/ServiceManagement/Services/Commands/packages.config index 5b694994f293..811f6e6bd8a5 100644 --- a/src/ServiceManagement/Services/Commands/packages.config +++ b/src/ServiceManagement/Services/Commands/packages.config @@ -17,7 +17,7 @@ - + diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Resources/MockSessions.xml b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Resources/MockSessions.xml index 6ecb84a9865f..d03cc0a8edb6 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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -507,7 +507,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(1)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -590,7 +590,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -673,7 +673,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -756,7 +756,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -922,7 +922,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -1088,7 +1088,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -1254,7 +1254,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -1342,7 +1342,7 @@ http://localhost:12345/v1/ManagementService.svc/GetAccessToken GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
sqlauthorization @@ -1401,7 +1401,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Servers()?$top=1 GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -1484,7 +1484,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/$metadata GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
AccessToken @@ -1560,7 +1560,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -1691,7 +1691,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -1774,7 +1774,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -1857,7 +1857,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -1988,7 +1988,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -2071,7 +2071,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -2154,7 +2154,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -2285,7 +2285,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -2368,7 +2368,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -2539,7 +2539,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -2622,7 +2622,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) MERGE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -2829,7 +2829,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -2995,7 +2995,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -3078,7 +3078,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) MERGE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -3285,7 +3285,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -3456,7 +3456,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -3539,7 +3539,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) MERGE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -3744,7 +3744,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -3910,7 +3910,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -3993,7 +3993,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) MERGE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -4198,7 +4198,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -4369,7 +4369,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -4452,7 +4452,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -4614,7 +4614,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -4697,7 +4697,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -4776,7 +4776,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -4859,7 +4859,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(1)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -4947,7 +4947,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -5165,7 +5165,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -6083,7 +6083,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -6214,7 +6214,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -6297,7 +6297,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -6463,7 +6463,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -6546,7 +6546,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) MERGE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -6753,7 +6753,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -6919,7 +6919,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7002,7 +7002,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7086,7 +7086,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7248,7 +7248,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7331,7 +7331,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7493,7 +7493,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7576,7 +7576,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7738,7 +7738,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7821,7 +7821,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7905,7 +7905,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -7988,7 +7988,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(1)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -8071,7 +8071,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -8154,7 +8154,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -8320,7 +8320,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -8486,7 +8486,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -8652,7 +8652,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -8818,7 +8818,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -8906,7 +8906,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServerQuotas GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -8989,7 +8989,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServerQuotas('Premium_Databases') GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
x-ms-version @@ -10299,7 +10299,7 @@ http://localhost:12345/v1/ManagementService.svc/GetAccessToken GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
sqlauthorization @@ -10358,7 +10358,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Servers()?$top=1 GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -10441,7 +10441,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/$metadata GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -29093,7 +29093,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -29180,7 +29180,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -29263,7 +29263,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -29429,7 +29429,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -29512,7 +29512,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -29599,7 +29599,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -29682,7 +29682,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -29848,7 +29848,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30014,7 +30014,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30102,7 +30102,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30233,7 +30233,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30316,7 +30316,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30482,7 +30482,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30565,7 +30565,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30810,7 +30810,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/DatabaseOperations(guid'6c3afd55-7ce5-45cd-8e4c-f5ae8f8e1659') GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30898,7 +30898,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -30981,7 +30981,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(1)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -31064,7 +31064,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -31147,7 +31147,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -31313,7 +31313,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -31396,7 +31396,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -31558,7 +31558,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -31641,7 +31641,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -32053,7 +32053,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -32136,7 +32136,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) MERGE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -32341,7 +32341,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -32512,7 +32512,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -32595,7 +32595,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -32757,7 +32757,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -32840,7 +32840,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -32924,7 +32924,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.4.0 WindowsAzurePowershell/v0.7.3.1 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4.0 WindowsAzurePowershell/v0.7.3.1 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.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.4.0 WindowsAzurePowershell/v0.7.3.1 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.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.4.0 WindowsAzurePowershell/v0.7.3.1 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
x-ms-version @@ -66542,7 +66542,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
DataServiceVersion @@ -66796,7 +66796,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases GET - AzurePowershell/v0.9.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
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.4.0 AzurePowershell/v0.9.4 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.5.0 AzurePowershell/v0.9.5
x-ms-version From c910fb77c0bc492897b664268d17c17201a5ab61 Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 17:47:17 -0700 Subject: [PATCH 11/15] Updating errors from the merge --- .../AzureBackup/Commands.AzureBackup.Test/App.config | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config new file mode 100644 index 000000000000..8cf2b361333c --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file From 95d447decd1642fbfc7dbd39d3061d5416a52234 Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 17:55:22 -0700 Subject: [PATCH 12/15] Fixing files that the merged messed up --- .../AzureBackup/Commands.AzureBackup.Test/App.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config index 8cf2b361333c..151a14f252a0 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config @@ -4,6 +4,6 @@ - + \ No newline at end of file From e5c4dcfc43d6d4271fae23afbf306614e6c4ce35 Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 18:02:14 -0700 Subject: [PATCH 13/15] resolving more merge issues --- .../AzureResourceManager.psd1 | 138 ++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 diff --git a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 new file mode 100644 index 000000000000..f953bad7a358 --- /dev/null +++ b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 @@ -0,0 +1,138 @@ +# +# Module manifest for module 'Microsoft.Azure.Commands.Resources' +# +# Generated by: Microsoft Corporation +# +# Generated on: 4/01/2014 +# + +@{ + +# Version number of this module. +ModuleVersion = '0.9.5' + +# ID used to uniquely identify this module +GUID = '81d522a4-6e5d-4105-8f58-376204c47458' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = ' Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = '' + +# Minimum version of the Windows PowerShell engine required by this module +PowerShellVersion = '3.0' + +# Name of the Windows PowerShell host required by this module +PowerShellHostName = '' + +# Minimum version of the Windows PowerShell host required by this module +PowerShellHostVersion = '' + +# Minimum version of the .NET Framework required by this module +DotNetFrameworkVersion = '4.0' + +# Minimum version of the common language runtime (CLR) required by this module +CLRVersion='4.0' + +# Processor architecture (None, X86, Amd64, IA64) required by this module +ProcessorArchitecture = 'None' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @() + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = @() + +# Script files (.ps1) that are run in the caller's environment prior to importing this module +ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +TypesToProcess = @( + '.\Compute\Microsoft.Azure.Commands.Compute.Types.ps1xml' +) + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = @( + '.\Resources\Microsoft.Azure.Commands.Resources.format.ps1xml', + '.\Tags\Microsoft.Azure.Commands.Tags.format.ps1xml', + '.\Resources\Microsoft.WindowsAzure.Commands.Profile.format.ps1xml', + '.\DataFactories\Microsoft.Azure.Commands.DataFactories.format.ps1xml', + '.\RedisCache\Microsoft.Azure.Commands.RedisCache.format.ps1xml', + '.\Batch\Microsoft.Azure.Commands.Batch.format.ps1xml', + '.\KeyVault\Microsoft.Azure.Commands.KeyVault.format.ps1xml', + '.\StreamAnalytics\Microsoft.Azure.Commands.StreamAnalytics.format.ps1xml', + '.\Compute\Microsoft.Azure.Commands.Compute.format.ps1xml', + '.\Compute\Microsoft.Azure.Commands.Compute.format.generated.ps1xml', + '.\Network\Microsoft.Azure.Commands.Network.format.ps1xml', + '.\Storage\Microsoft.WindowsAzure.Commands.Storage.format.ps1xml', + '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.format.ps1xml', + '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.format.ps1xml', + '.\AzureBackup\Microsoft.Azure.Commands.AzureBackup.format.ps1xml', + '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml' +) + +# Modules to import as nested modules of the module specified in ModuleToProcess +NestedModules = @( + '.\Automation\Microsoft.Azure.Commands.ResourceManager.Automation.dll', + '.\Resources\Microsoft.Azure.Commands.Resources.dll', + '.\Resources\Microsoft.WindowsAzure.Commands.Profile.dll', + '.\Tags\Microsoft.Azure.Commands.Tags.dll', + '.\Sql\Microsoft.Azure.Commands.Sql.dll', + '.\DataFactories\Microsoft.Azure.Commands.DataFactories.dll', + '.\RedisCache\Microsoft.Azure.Commands.RedisCache.dll', + '.\Batch\Microsoft.Azure.Commands.Batch.dll', + '.\Dns\Microsoft.Azure.Commands.Dns.dll', + '.\KeyVault\Microsoft.Azure.Commands.KeyVault.dll', + '.\TrafficManager\Microsoft.Azure.Commands.TrafficManager.dll', + '.\StreamAnalytics\Microsoft.Azure.Commands.StreamAnalytics.dll', + '.\Insights\Microsoft.Azure.Commands.Insights.dll', + '.\Websites\Microsoft.Azure.Commands.Websites.dll', + '.\Compute\Microsoft.Azure.Commands.Compute.dll', + '.\Network\Microsoft.Azure.Commands.Network.dll', + '.\Storage\Microsoft.WindowsAzure.Commands.Storage.dll', + '.\ResourceManager\Microsoft.Azure.Commands.ResourceManager.Cmdlets.dll', + '.\ApiManagement\Microsoft.Azure.Commands.ApiManagement.dll', + '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.dll', + '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.dll', + '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.dll', + '.\ApiManagement\Microsoft.Azure.Commands.ApiManagement.ServiceManagement.dll', + '.\AzureBackup\Microsoft.Azure.Commands.AzureBackup.dll' +) + +# Functions to export from this module +FunctionsToExport = '*' + +# Cmdlets to export from this module +CmdletsToExport = '*' + +# Variables to export from this module +VariablesToExport = '*' + +# Aliases to export from this module +AliasesToExport = @( + 'Get-AzureSqlDatabaseServerAuditingPolicy', + 'Remove-AzureSqlDatabaseServerAuditing', + 'Set-AzureSqlDatabaseServerAuditingPolicy', + 'Use-AzureSqlDatabaseServerAuditingPolicy', + 'Get-AzureStorageContainerAcl', + 'Start-CopyAzureStorageBlob', + 'Stop-CopyAzureStorageBlob' +) + +# List of all modules packaged with this module +ModuleList = @() + +# List of all files packaged with this module +FileList = @() + +# Private data to pass to the module specified in ModuleToProcess +PrivateData = '' + +} From 38b1408d5654b7612f3721604912e50fb36ad5bc Mon Sep 17 00:00:00 2001 From: Matt Westphal Date: Mon, 20 Jul 2015 18:04:14 -0700 Subject: [PATCH 14/15] removed extra space --- .../AzureBackup/Commands.AzureBackup.Test/App.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config index 151a14f252a0..51736738e693 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/App.config @@ -5,5 +5,5 @@ - + \ No newline at end of file From 44d449d2d48defba0992f6970b06cd7e4f50f1a9 Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Tue, 21 Jul 2015 23:59:11 +0530 Subject: [PATCH 15/15] Taking dependency on published hyak nuget pkg instead of DLL --- .../Commands.AzureBackup.Test.csproj | 4 ++-- .../Commands.AzureBackup.Test/packages.config | 2 +- .../Commands.AzureBackup.csproj | 3 +-- ...zure.Management.BackupServicesManagement.dll | Bin 79872 -> 0 bytes .../Commands.AzureBackup/packages.config | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj index 06cfc0e401b5..9622179da9e2 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj @@ -39,9 +39,9 @@ False ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.27-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll - + False - ..\Commands.AzureBackup\Resources\Microsoft.Azure.Management.BackupServicesManagement.dll + ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.1-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll False diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config index ec8ef520b0bd..644017bb5681 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj index b7a89c251bc2..9e4cbadcc414 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -58,7 +58,7 @@ False - Resources\Microsoft.Azure.Management.BackupServicesManagement.dll + ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.1-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -166,7 +166,6 @@ Always - diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll deleted file mode 100644 index d686b576b1bce649312c703388d11ce2c2ab5c18..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 79872 zcmeFa33wdE(LdZX(yp{C$}E z^BPn$RbACxU42#c^voW8>eZ@3DOHKT*IrZVi@5UN3W0kEyO2Do<4cp&U9sQ`+;`%B6Rt`%$i1ueCLv0|f4h+mI{#IuO&61u z{|8rtl7xRBLcS;Q2KhEbcvJLmm!oPy8a~QVQ;L%Iigx;{3tKhtBP@XhV}skrfLG3k zzDSe08ofO>kT)&J=CWHr5Z$1oRCE!p*1r{Kt_9h_;S3n5tAfsAg9A$VR#{?l`wZ=h zf7H!Y5w-ClrCKjkDl921`vg+ZjXFR+q1-$!mGK@Go$Jw2MbdEz)6oY>$0bZhza$+O zO`oOQiUP5@N_lx29<-jtL(Jka`k*V;;R?k*mB8 z?WPk-#bIAJHwz6|pfK(~#d`|4S!g#}psm~{sT?lU-%TeW*e!;?H@hO80+wl%yr2^5 z@2cx?g^CF`Jz4rjMdPbZ^Q%rgI=@zBTaaz83H;|)+T_JPIbxHcuHl|k*_dvIn4i%$ zKMB^SMcm2)jps%RY%zCIWq~c~rZLi@ZU!~!Q3`GDstf*4=vQ8eY=K&~Lho|QKo7Rb ziMaBgTaj)PL;i;wg>}9j`AeHjilnFg|E^VZzq!!YvGPBup1n}IBJSB0r9a}H-BG#$?m4hzbm5*; zhYT^?bBM_}i)Pqwqh7x~Oa>DNY()XEQem)pa}CBT$2rL|uT5SQQ7b?MA<S^o!A?n<_5sLR7OK>E?S^x|mH-8xN(gQRV zO~`|nb zvrh`;aPVk~o7Z`+1tnYMsL^P8204|RJpowZD9~Lu&r9|s5YjVQhEVgA$;^gD#jF|3 zd2v)j)S8b;P=wraTxkf!gPc6x>^b2AN^`&*7cCO@l)JH z(2QyHw0L?Rvt#3tEoi=aw&8rH9W6x#FtY&EmQykdap_nnOOCW}7c(GRv%YwIi@Z#r zAIoVjk!Jp_9i zdmjV2*TwwM`!C+T1OR)uxh2d=XF-_FAp6`>5HtG&pbk2XHIW4;b3j1Oyb1SNOhBXA zo2gZ=B<(x`yy*iqTVP>XFHLUb$Sea#bLJqxRCTgCy_`3(WGsC!ZsxCXn+vRxn}`*# zT35O|*8nDCZW_~Fk7}-c@(ZY_n`c@o<|gB>Ho=xoBCffcL>QSJip*3prc+_8W0{vf zb+w$r87O3~p8DQfXrOCosvD&+6l2dfXg)Jz&@|~4EJ3*w)S6z6XG5v=N)Vbes{m6q z$(l6k7*EwEYtyJ6Yu#dMU0Z;w?$x^1O+!to^?kT;^Gr+Cy2-j%o2oJ4Ch9b|sda4{ zR*xrZbz*9go0w$kUA`K$Ng6XStKsH}WiUI&3&&A|JYnZIVG=#BEsMc0Mb)Jp8nvX6 zM^)n)l!mGv37D!+)~C^h;;DvYLmHztK7VHp-94U4xQRpoo=T8BfFd@ftTz+f-#ff#TR_1l1iXa|#$h5rdqH`|KT@K;D8oYaY*| z8^X3lOs9b<9YL=kJ2IYVbh7aD+gOe%y6&mbYA^Q=Q@FQUPx6%M69M%^h*LVaS=Y%) zJhRDgKGmM8bUR+vEhgPIQJL;%;#18koDfTI7NNN-F$U0|)mPBF|A`^}MGWJ)!1<5# zt3f*+b^L`zmqdU`G5rVMQDJa72k5a#7nn$7ACz8r7a0*VUiULMBu9XEE zHK`&6^g~?Jr$efM*$4M#aHu@d+N6tA*taLCq*m!O!CBLzs!#@f!H4R^$4j)NX1aN_ zXJsm#NbjRF_!h|ao{viQo=ZRnxOWtw2i4c^9@>HK-X>o1MA&k35_9Ii)pPgeCg*B* zk362c_d|3eH;*n-c||Mo3j2I-1=;iYbjIjGmDxW-rpV_*^U>$y#q#-tnx{+|pO3nU z&o?2Lqtd_ED?RM#q}3H`iC*pm%>K1N$Vpx1B#WzzhsdDPsuS zSdz%2{l1yLq+ux*6~B=RXDz>xd0BoVli6%R7pR9BwBLx)hYAMJ^9L8AV9#%)isCnt z4Spjp9^WGH6-a=7EGO(YQd0azCK*Yoc+hy!Y z_Gp)JUUHsx8P~#Phg*;*BL$HaSw3o$UnWFmA5E!Al43R$q)wG?) z{gV4>r*TPgiFO(b+G$+sCYBbqv7lB{^(BQ2QC;;VZW`^Zt3DHL@8-#?y~d@9rP^y; zs=dagp4TYZ<(W%riJRQtc#Zq(e2tBkXs>Ze$ZI^nO&m}-lci74;!N|sMk4eYF|UQq zWR|yOr$RvivFZ)w~_Oc zxQ#**w~;I;jTgF&yoTLI$Sga%64lM2yF}qG(kNBj+K(E!EH=7EGZ?S&+Uj|=)urOg zDj=?^$Ka4T88l%$)!T!X?|lJ-FwvVqmyg$}Tpl^5kTbemG*OvB{o^W@eW#Z$Y<;30vh}61?J7|pxc;dIWYE9{(S^U@XMm^;86-+GfZ_>V zcoMQnHjPeVk*jPmD$ zysNBumlmI1m6&d9WyAx6btk$Z-d$F_TZ_-AO3d)=1@(hT*o#L`=Ok4ckJ51P5AzHl z^pa&UmBypxS4@`X$D>42v!2QZZN!L_#d{6KI8)R?Zg3XV6Jb_aK24jFm3U^8VMRzf zn~|q12eK$8W~VWsAS7*(kkm?;l^z$VxhpZhW7d4j4oQ_Ks$*4HiLojP=^fy-V%6!BtXLJ(;~R-pKL_P{e}YQ({(#_7f^P!! za0I}p-h&Hv5KiiADc zAhxw+t=QJ42Jxy*4PslHT9((=sVKI!WrNsOs5*W=(D=tZ{+QP+|vm~4oGdGYup3MK(#i{(rZ1vAM+!Jal0GEp!|Itu2U*PV)@U`c8$ z6v&bHri6bh3f5T=hN56iW-*~CnB)nfU`&dB6dV}00mgOnIyZ8>eiY2wFbcki*PZZa zBnrlKZb!jP3`fDj-c+D;nJD-?X674epQB)V!ejKP=O!`M3iJugp*zc0JBid#wO=<1 z*418ExP+SOY9k7+^{TC-U?zs6U|~1aE*AysikGhk(}F0Nn2v(arwVz(GEuNyUm5~Y zur5R7k3hZmJqo^<1+_|>xrrr(cM{cAM-+^O%Z`G{`#MpuWS3_y;V4-0H8z?!3f{%i zLrYxH;!N|SU?PlyFAxFCOhr+!ZK-`U4x?b*5hk>Tj)LDvC3O`14r;5TU{SoWaG~f= zdQlWCBsk`AVL`ViC!=6qOFYzY6wJK+D46{J8wLMw6#TzYu=Tu=o;LOi{$o+F46=Ve z3KsEyKMEG{e?JNq@&7kba4-pbQLs$4r(*UBKb7^OV1^oc$=YiaTzhwV!RT2fu@@YlE#7m-JSq@}TEQ*4y1V0K^%8P@4YvSO)7RAAbMsyr}gDkJm z3I7-$HzPh~9Q<{QE{OmyfX2Ue+#ji*+0rcw#lfhdLYOLXFugy6R`W#V4eL7wSO$Yq7Dp6yX&0?z_{VF?{6Uju$OPiRNVLa-xI+FhQEntx%mKk5#~bld@mAZIr2P~Y=}g8@%R>juRsF4HXFtT5{yQ(Kt~g`UlJsz0(|kHiAZg9?U=bd92QY zFpZeqe;%vJEG86*l3YF#%?C+5m*eJTlwn1PdT0EuWElr?60xn{Afc)*jvRKVTK;llM2b)6(T?;2 zSuh`Ph+RD|FmyUkx~9cRJhKV4LWh3BJDn%CmJU~RIxk4@Pv^l0To2nr{3n=zK8NA> z?&{L>c|3z?pW6ew{QDJn`PUBYNbT!!UMo4Dhe=L+y~~kEUyo}keZ4E>8Y!?-dFS(F zVuXuFW#Qrx)h-_99=doW1n2Xn>9;!O@+@G5nhHHIwIuLb2{gtUbQ_r6{QD^~9}~8` z+yS1{qNq9sR}98P?lC4rD+=U|Ru;&t(mP?(=&RB1AuU(Hy_<$>9&b*c512_olXN3M z2AdyoXqQH0;yr^&Evi&t(0aHPl_Hp#?v?H^f zg}!9=_5A_$#pY&M-zMtYOnoml`eGxnSYOe@*SFg%-O{&GfvQ6Ken9m7pui6SrWbp1 zVq=Uq1v@2jKQua%A39SY8Yxi1SN%tCTy>NYVg6bt=pNC=p5ZCsDeu`j)Hgni(%t+= z0Mko60p#WN4Hzwvd)(+vUg%9`U*R89;r~S6nCX}9y^n;p;`>N7C{DVpydOzy?p!yG z-8>F=bb09NsyVn;f!|FZf_(5koDNF#yMmX&Gc`}>D$*EH5Y%$|eNIzOZKxb#EC&P4 zF6RipoK>ae@Tf|1 zn074t5u1Cem#3SkGCUYU z77wvf9t?GhhZxI0R@4o(p~(}&z~U!H{u3wU$5d(Y6SM1Q*#mPs>oqOJPt4L8W+6{U zh=&;Syu7pxr)d7p5I?aA_@N&2?+Wn~V|$(=b#!xBOyWG^jWGb#{PyJ7fGj3ptG>i6 z{Y@P)y;(fOEFM&u`Cx9bc!*g%rY$g_EgoW}JhMVP#7cQ)hj@rh&_<@*bcmmrl_#2m z`eVAVbR%Z*n0!F7c!;swiTl!m5I?cK>xre!%AZ)N4vRuO#7cRv*jV`xE9KcQ#6zr< z2h+cm53y37r6C?-7LVya`-galSv~J=C@yZ zUWGKwjNW<`)8&!szw`Vxth<=f@SaPXn@1HYQ&SRC_VGQJ<00F7TLr+41lJK<1<=FL z?oQ-oHcN5vj%SB3T0PGs|6e7ke+X=q|9DBN6AfgUnz<6@31^Q7pMLhj0!v22EQbax z`aPUaAuB|{pXMb`grP6h-RYfPnwFfV-@_q~w_VGc=o)(4wbb5~T6q*|>`F~M%9A4X z3FMZ(iLi+G8u>$y_!wcWlMKLE^9xNJdBv6fM82k zL^V~{u}H*|2sUyp3F`opO$|0@ZECQQYg5beYTFiTqPJcDn|8_*hPGWvu(w@l8`*Yc zVfMBw8Le$sCeti|iR)?S`RH(k&mzsu2hiJ2#e(K3X@W=H;+pd397`ZRI051~od^yLk z-gebl5T@S^^}W|%G?~SOwp~e{VB0lF(%Y^w5>BOUv6f-0b>}Bp2G%TYy9U;80Ee5` z#gW6_cI`-Z==WqglbykPGMvWTL}%e^yzcxcV6xLqBkJIJk+vrvspkB|#8ju7>@x4k zbZPdc0;Q1~=6k$b-RZw4^EqbLSol0IxvP;__yTX;JTEr+izEv*%NWVclaRSaSIeK6 zGV4(-%uX`fY*LaVUJ@X0_FBvZRpliz*IQy~RVAmf%{0ULPO=rI^m|aE&V<#amRSa8 zhMDuH#bT(}f@+jnhQ`K0eb%%V@}fACGuHv6rt?LFo_RR0{9d4SDp`?+X7N-dZf@XB zgf9j}tP&J>vrJ(x{|3%)w|R4IDly$NL^YUlV8Z!rqw>wLMYX90j7{^mG+%id--vi0 z7z@%Yrg!i@eIuy3n*cI5Gb7z|GPjU$D?s+c$S{2y(f3PwW8rRy1!JWAjygnD@5kWa z^xkgR+M?c|tk+wV>W055qv_g=sYKvU-@R$N+i->-N$nmt2oPZMxR=GZ${2MM>B85EYJ;R*eh5g9@aHRO5c2Asc0AkH??uhg??uh=-iwm#^2{Zb zc9V0>dr@q?L@fKevb$Q#!H5bhw;$kG%F5} zWt-tf71?het;Hi^y1z_l9=!1a^SqH-<0vIgTz-Y>=MKX(qifPw_^MQhbiMb^u`Mr3 z3F!nht+1dpa&qsT*YMsutDD83Qn^Era|&}k&4l-n)&ez>GL!D*oh0UQ8M08hW0*&E zB8r!i4yJsfN~TjSTlS?S>U^xqVK(6#N!55G>1YwO-*hSaMiK?(jii%MPxD3+<~{@y zG%qV^y=GJPy(E)^|6WoQ?|Rc&)HkcmwiQv@;eZGG-W;rsnmQ~RC*Kh z<<+*a&6wm<%?htAeTbE zDHxI71D*2IA^H3VIz&?Kc)i76!uWa%$EQ~eAL+<=?Gw%LdP|6vQ=!dDJhREL;+f85 zzTP5(SmrjI1q0&0-eM)Rr{Ue8>T}h~o#-^E5*~A?mAIaTYX`3UNBYIJN}*q?@8N3G zUjyI%_*+^hJ|EeI|7VyZE{ZADXVE1Q;0neb z$at<(QMgmCl?4WWJnuuFLeBeqLf=FR^zZOg2#oOpv*epFtS+7k5!FwHP%NJck&s3f z`l$xb{d~4csacF=;Yi(&)Kq1nlA$cBCv|GZm49IKzu$$A2OR^vw;T2Cokq|GAQ9{y zWPw(qn}T;JizC=?l%!e_td1_f2^P%y-{K`t#LMdKUUV5vMs;*ao^W)@(!I!0N0%(o zqdY0GBi&FfMg1SR`xjJl#&^4p-ped5K6C54)&Oqp1cb(UCiLM|&DBM*ZnDIka? zMO0JWJZn@W;zM8=LoCUQ$G3=sgaphrEGHaGQc_|` zCYe~$(}qGOmLy5XlDzYpqbQb?q{hOdLRIIsP2>CF}I1rYBQ39hkfWyt};>cl#ko>ORatO$0y5KVCuXAzwa1+&q zAMm>K0l;LnJPU$@S@Yz2Oc8FLX{l=0`~DWr`3QGYfx`Ia*P&D+S?x!V-(_CD{Saqx zUgjU>AJr4@h3}wxuYlt$vyVMr&@I>Fn{`O9V8-wc%U4#17glAl9C+bHJQ>&F1;5U< zMpw2)^mP+8g&$EtUD+BpJ%x&(viQavif3A?#`V6tm8jL+rm{6Ux~MVHMV*U}cIoPt zuLjeC=z^GzE*_%>c|z~a67*y5z>ZyARu2bubQvOl1Zrc)5tEXWbR5BxJL_3h^HHt_ zp3wOr3u-kruP;1KRM))TO;0s7A4FTYd9vy-q5?pYHk|3lFUiL3=aJ4$jQBnUv>z_Fc@1ec&x}j4GB4ZzJ2$hB#LR7mU)6h%chL8}rA@c3018bB@ z(+|OsrTmYP4&Sw9ANSP14FmS_gLvgUlAj?jw>umRsdj=U0IsllcUxyc7<#=`lUYp2H6eKd*Ca^Nu8E9}?I`^Z6AhUF~UwKTuO$ZJhP$l%*Qg#-mo0&&1R;H`!tKKsz+M zsrEGOrA#wkN++KY=!%!G2h##Cg_!nIo}~(TLeEP<-}b%&W!IPW!xEs&5cy&+r7PK` zy_D(6>7m`uZa2|gc%B8dnyODP{E?`x`gE7Gv~KZlSF-Bl)ouzt6{6jgZtbRYd%K;I zU7oq5rn^aO1!J9>oS32WH8z^A-IVDeH)W=qm|6G@OAjp?L5nlZcT}O6&OoI5Nvf`7pczqSV1$C({9&BeK6o7a`srYvIeGPg$bGB?} zz9})=+RjYiLr{7Ch-NRk4TXa%i>17vwN_c+32}ysl;r$=rnXS zm~!NX`@miwj5se2C_k~0&yNF$q?)js>6gGrfCJJihLL~_&_2-&yO|+YndOW|WF?;2 zWLUAA+00l#MyYG!iG_RzjhFg)cclPK1r(y-;sg=ZRBg{95l2=(vPmQ#9X-4Z zem74TiXKR?qX$|{q6doF(E}N+=z+;JR$%xbdiV#@+EQ?e=B;>SrCSz2Tf)% zq3D6+38IG}Nk>KLJbP6}4{dOU9nufGHI}x`IT$dWM~>#h54Y5qn{85@~$n{!r?{@5?h4 z^TaF6)VJh5M-TSILSIr(1guSZ1xrBmP`=tada$Z(MGwhjQb!M|WGaXrbhT53%AndQ zm%oHU7drOjX;@A0n=-6+%1t(!=%G=wn`)g1N;gdJ+$iRq1B5XB)dFwNwv7iHWNLx>3ofiT6FZ#5{e$$-9&rg zRjGA(OEJxl9*8h{cufQ>Gnpl5*>et-?{Lr9N8>Ph&>dkyYixiIfgcol1C>OSjbI$V zlZNP_9|Kk^-dJ!*$&;?52TouTJqYOpw4|`0G;%U};5F<}vSVNtp-N25UWF-M9;eq- z&8sc?EGzSGR#ozORQ!Gs%~zdy8{K|Sny1l3x-K@aw&=^OEa^&?l)Duo_~gH2fUsf{ zbBJX>?3G;pbFwTPaYN{HvNuWDvFulT(XyYDHKL)<$=)KOQtzM}crI=EK14p>r6rPz z!=;URehXb%_7b|ZERlYy^qM}IXyDR@SY_y0ti)}XwuUaPbS0TW@m1PSG9UB(Nh=|q z{*)Bp|0cqNm}#!V-zo6lY`-;+VHiVO@tM0vXM6D9XF%g$JMN9&%89!o{b}SqSHBa6 zdQeWDw{vx--%3Y}ek+{@`mJ14#Bb#+1Hbh%5HH9Q0Kb(=!*3<3{nlB?5PmBO>Cb|* zMt&TD&)Ij>C^b*^w_EYUUFeu8e9m97+#<8-W`{;(L zZQ#XnH-(y~Oc{5Rx{13vA(!Q`k%u0X6!1@!uU$3~)h-*3&S5G^vuzr9nAR2^Xy+9m8R54P{SrwiE>ZkN zsfP72MKW6cqF39%a`hP6dbc?NR=hmtL(dOf2$j6uX4XvnMY6$P;_7}O^x*Rr5@lf@_xDkJm!`n@C6xw**i64-w zOm?{JG4viTtc&(%4oN_ND@*k=vojO>tA!_=_oK=38=~{Y85+puea` zGHc`ei{-1W{Y9(VmcPgy*ww5ycVO4(YPX2uZen_2GBwrJ#+EAvrLOi4Syh?Hoz!mQ zFLrBoQ|;;6U&KyoHGk1*hKrq6UGehuU|QfW64U-7K7s;c5qkb2`nKmU+Vy4q;4kVj zM84QxoSB@d{l!_ySs{OMwwst;z|#@>i@L>U6{Zl?RiEXiG4<%GpC=Ild9}Yd8+%al zP<*!b7iW9^qGXq6F4$mAn&Y!Lvn%-;8_m-G;;fLrCFj3RUQ4OKEV*G zF0|gjj#~T2Ww)Ox2uIZ0eok=z+1tRbw)U>eZa!1k+I)^-^LaOGimC<&am(&I8%b~9 zIfi}b+l^$fV_kO3*+_a@&M|B`f51ovo7H7^n~h|H-at;ou%8TTi?+c&buy7e!z4?( z$^7l~74<&#JhM+d&)TO>DQrZ42-)FB2U6BPbyH05Q#azw?nk7w#5}!EO?9|W-Rik( zsl+^b+oV^6DM#)n&>PUPvdkC>%Wlx0^0#Dq0+}9PM)!5=Q~u3~W>l-Wv|4RAF02jG zqI)cU*#NU3rfUw0V2<#DiSiQ+`TSslNU9CNgs&xo2~HuNsthJ%O7Vk<5Ub3~#u8*D zZU+S=CCl!9VxtCRrT@8vm^LgN{H&`fjKLWxU^Ho6kOl z-(;h|!T5t7CgTq}CyYNh1taYE5~K>^Ng(WC^$>Ot)nNznW7t7L`W|rVutUz(JOUm3 zxMM09-ay>Z582)t%#FQK0{l|F>U{-u?t!`VY26vf5bMZHUh+h|j_iNQ-j6%Th*0yC*;^zsAy?q* z7s$g%L<%^^|0P>3%KCWSdz#0kt2t2?K`_xnMk|#APrwy@Szu^lnrLc zhG2#lk57Ub5>RuNGeI!JBooYd+EB;@GbHI?hId}m76mhs)L58Hj=VRB{;gm}XF(VW zW;B__gn}88CkSSOBpuAi7_ozyZkAz!nZWuwn9;?NrU`AJadSMAQ z)zwBYgPGJ0W|$ZbW`x~TyIe4%D_*`HObdb;Vmg?aM-}pfWr7*IzN{aD8C{0RV;K)^ ze(yb)*^dRaN}KUj$E8Gd)e+2Kp|XP+^1eGDG5P#phDd2J!zsk`_86halu|yJk$Kq)W{8&rGcwP}Y+Dq}SP51z+ z&quLE!Oy{RRPA!BR!Sp6rc& z;AF{K=YMSK_sjA=UY1&x*Vd_JVx5AMKvKGn#15fF^Ms+3KqT0~5UnV|5Jl~iKxDLn zAtuv+L1P5L(4k1f=d*n11vz#w#B$`x4%rY4@#67GFhm0SG0O=DLzI*!J4`ackf#lW zOfW=}4u*K=HCItEBuR~h739c!!*8Ns2#*`^3IQgV-X?+u01h?%9)Zq+Fq^?g#dAyP zt?tjUjSqZD_ADzD5s^GWL=+_Hh)4#G6%k36TJ{qdJXvTq>YWr?hHSlHDQF!XENM;1 zVFyd)KVD9A@Z;r2@w)Q>Kz_U&Z3x%7_Q~VrF#yxTA1@c~rUHe_e7t-m^J*-t;zfT% zXEkr#JTEqR4aq_^AJHMf`y>wMHkrLLx9KTNra1K4Jh`&pfJMyg!zoUf((hq=TqAQW zilYLd&&Y^krlELW`WYE%l3SPyPDsSFzeOS8&&aHWSkQ^e$AOSnz1OoJ-DY}EXjWxZ zpyx%FmR_ON-C4dxbsT85=t{8f^~3DCMQaO3Q&Zid_%J(0o3!XIEFEs1Y2gpE3%6;} zavx^b^|lv>pc+gI!a!m=3_Oe)~ zNgjPWhN!MSj=o|4PO7iJ&Q4Yx3gUwq`ngs@Ki5il&$T4CJTnP@on5jucAEI>?1!`P z2^yVgeke$Uq2LiBV42D+!QR)|ZENkLZTNL|-4`Y@#u!?{eM5EBUuR!OW%bwDMeoMK zk)l57IuhjUEswQ?B#|IlP#Q0c1bGcdf|Thr9J0CZeVv_USYKxkOyzmR<$ERhe2dDNBYAonEtTX)$@l#UuS3kv^j~}?rDzLZp>NAB z1()`8%qInz_us$Tna_H&2?mP}Ki4RCF5l;ahkURu? z3;6kRki#F46!xY9rOSLk@-$}FSa>Th+V_1MZ{0jEHo1>vp&H+p1kd;7Bq!5YW~cFe zO^3{rD;ulvCmqgp!c^q@Qh|`~D~jc{eRyB$`-;i;=KF4fSkOPp`@V3SRqy-QF>d#K zUwe9`)2OFImgf7u<(pLdzE+d2418an<5~?g#cwID!Hv8=tedpEa3(d?P1^0I5vB1# zK--h}{4UC8VyatSjYSjl)mULSP1>ywbeYp$DS0VYSG;^Zm=-v{#I*C@-Wv?tS~>Fi2bwp{6Y@LW#agxA&y&}!O~i#Q}U445K&$K z*=`yEs;R$(bL7?DZ#t3I-fvoaziH3=mF)7&B{kbk&M|KR%+dK8L(SHwx@Lz?b;+@( z%`82%ss_!@G~fFrLhpBr2w1i{5H?80oMPkEI+`fnt?qyIS2mAS-79_~v{_{~O?X|#>=qm36C$*sQRgdc5$WR0$8 zZ8aW#Txuk*^d<3z03M6fl{5qE>3yuR8ZQrHArlMT>Pt@enMO#~r@zWk*-(uags~kV zlArMlop^~AT= zUt%pk`LZ-W#v@Yt!A2I(*p1~e$`f_GC@=iMM$W`GD{(u_lMgn^q#{!*KG^s*RLeWU zWhJzy?`4AW-v{|4Cf*OCD_n!P2hNiG2;F1RO|tqeX#BI{Jo+dV>HCoP z+~9o>Y;8!KM^}h(9-|Y+dGsL|=h49O41=>M0=}<9ydd5V0zN8@fRCsS_zr-A2>3`y zKLAcSnC1Q463&1{7V@{PpgBC7w}aQsZxuK!a2ut+gic}qF4tR8F*sL=+;5qH z-{qnletU_6_{}IvM)9k#l=Xj#>33kwJqR^IKhyOl=$P&W$m~H9^iF@n(-dX!cb=MY z6&?B8QIpJ1b-@kL3i;Imum0_;P<=+Aft$|=90laF98(kKjpYirXJ)+Jt%;B zP{P;$`F~4){o7Z*{`$ACu!x7XFRS}mDBaCtrx-8?$SI{rcVv{v{lVx?e&|jC=uQb= z_dovUbVsKuuR9WgeuV8PXgx0QY(Ng8BHhvQiQEfDck)Ab3P5*C_`3gzx<6FhZxA!| zq?fVZJZ$>SH$(kK+g)@Desc^(7VEBmj}9F$&>e9#bl(oh@ny8ueeoFd7nGdH{n_YE zUg%9`U*W${;cpcyd=M30PKCd16#h=2u=jg(qKE(cZotCo`h7g4?+(%TT!DE&j`bp2 z!%&IbUyaV>ht3p$ttsKF{^A=~UFMNS*u~S`{JtB^6jr|I_uce-vlFGe`2t`Xz!&^OK#ea{!T3own2S!C;j zsq^2B&g6&A6o9QM;j8`51&bCeS+ry^T0^Ob8U}n3lTr71N^Qaf{t6bb?hRwvp^-Ck2o!p zov=Zz*($$}sJah7Vci;}Z3O;63({5%XEu`=|FG^kCv|+FCWZx4{bS}5PSz}a0Dn+Q zp~4FFR86>|Q55Q;u-z%?sHv=nD{vjdUn~CRAr3>}U)ZTzQaMeX)Vit_?`E_f)pWnQ6h@1xFXH}Nau1$X<~*m3dG@yL zj!jqV0Hf-yLb(z5&FYtJ%(=6@y1iK)3OHSz*}kHxT}qs8Y(+}5dZN7pbn4KoS|`(< zt0w=Y0{no})U}gWwZ_$*lOwS9qm!%KXQ@e3+$m8>jjHuiSi6BKtk=dk`F}cuy#rbW_{d4AyQ6;54;z2Klue?wR!$#-*l*aqQdw-;EhYR*JusW2qUa)@%mQcqER^zUBdNElYC)hM#%kj&b zCn*O*YB8`b)uc|9v_pW^;g?u7wgK2wHBG%$(#8bqRGS660oV%Fr3MB2jL4zA1$!9S za(p*)TuOKvSQk9vos#xv;ap&_$_kdZP@OMnGX-0wt`}^HU<4-0k;u&J=v#{~OC#Tls2O7(GRhpz#vLo0qt+Tl^bR;#;J1={aY%u%Pf*y1$#j~E!cYni#k6S?CZ10Io0{4 zU@y%kw!iah!QL^4*s;!U1k-xH-TAFxTF(*Z_kw9X&vO1CnAUU5c|ov^SPSaZInJL2 z%L=x``Kw^N1>5QTk6_;s>^$f1u>5(^Er6FtPY1j<`gXwG(GkE01U@UNFAJ=yIt%n< z6?%(msQwG!!LhHPYigLR`Z4Zz#+cjvvFCCB=U9X5sCb-|DFT-YBu_MYN_<3}xT`-t z!##1=kicyM&k{H;aHqg40Uh;Tk$ozD6z;2QP6Aw4lL6dab0Oe;HFp5MSi{s=wVwst zT+4EA7xYzji;2jBSOM6Du@0&*e>swC8j6bDi z6!7LG^i+2w$8dj7ay#IxmOEUm1TCZ=CGfPCouFss{@Rv{aDR8pWq{ANyc;mudM#jm z>-zwwv{LGAtskj$)NQT*1^9{9PXm6h^|OFKZ~Y2*JRR=B+^uzZB>6N-v~~FG6zZ^N z3Um9Zz+X?H4zCETpGx|)snlfgRBEzzDm6K2DmCe!`W57y5uQt?Qj;5}2AX_qDmA%# z>fSVYqQoX|pGJKO(^&2`0&kf{eLgF2k5GO%jru${jrzPYjrvULpgye~)Mr))We@J4 zKF4(g`fTc;KBFDBK6`7O4|PzJFGz0R68NJIYVrrUf2D&u)OS*c?oR5ke)`JX3)-O&0wAv3%q&;?RxoCQDy7lcgUc@RXS>{q=ep?eIo=+ROFj+RL`XzuVv3hJEXAe$PpGn#59^ zqih{MBG$ND?C>3dKNf4eAkdvfD`Us?RTGv334O@{G-9>5a45Iz0jp5z5iCsn4d_)Msoq^|@p= z^|^XB^|?)WJ~x~CJTyDd=f|_D&vUbFee`U=F;$m(DH*m5KD!7_=A@~^!2*v+QONOF)54yroNHl!tXybeO_3!Qwmh;>P7LWh`;q4Qd0rCf zQWB_uvZwBrNUw$cH_|G7&ij!TU_Xc)jJRL_+f(<8$SPpRbrOFzMy(_2OoLJDh}vZ^ zY8_GUGZ?jws81V=T1V792BX$d^#g-Z>!^ChVAQ%wy<{+IU8PVc{yiI`*41i?!Kih$ zN(;6pMy+FNg~6zGOr0#)C9Q2$JAmEeV+CNR!N*pLY43y&`@E064^hK$-Co*lh>c$K zu{*I@aS^<6>}sfGRd>l=1hGAl3#z`VCi52m_C!8f^&P}U`rn?&o~kF56fJ3g1?NoF z2v1$93sL&>h=zECh4pK#{u}n!pIac9!#wAx>$vHmo^_b#Jax-@jWN%K>e3T6#ypp( z&Xb5;ujW=O=K!_SU>8)?I0vfl8f<-aJL0c-Cu`1+R?Tz{RTmj-uzIPpNNN|K6ZC?zjK0*JqS#MK-m*{qSMP!XZqNz*vFl%>Wh-mCDrR<_ckytUAue9&@tlLx%Ggktdunb&tWav7ZCm<8$snEc*kK zc1f%Y*z*RvHr5O5C4+q{_M&sPYIuv*kam5tPR+S z7Uy==AHs$W=cIU-+O94#SW~qXxt8&;Yy3V9StpuKKpYRwM0P^&^dm zW_k51lg9ex)hh;L{qib$n$$=*cdAB>ReuC|?o{&(_9f)GQypM&7StM(_Ph8oZb6-9 zu$SY<13S}Ttu=3P&r`b$)>E?y*yS3N^3GT9Gid`gIrn_^X@k9^W;?JiS)9AnLniHx zns>Ro)H4SAOwDz`erIuBpem({UQ+$tnmgSK)D(mLqUMvp(gt&Ck8$6jRv0W%dpxl9 z2J5Z;f_tGFFxb(x_W&C;*m!N1x=3AWuy@t=0=v#&pF-Nj>f;8x7ikx(FB(U?<0Z0Bn)LE{EJ@ z>Ij3~2)WDD@fwp7E?1jO+K<3_x!P{9XTf>7dWXgNE_JoV`7ZTQi}PLTE`zZ~SEz3r zj5WGK{n%hlle*NE>Q4sinbZsH6@#6Cw0EmU>^gHy4@SdekNUL1;`LqXTJ?~@ z+Uk3O{lH+$>wn{3r=B<1k@e35d&yw^NPDkp*re;Q4QcOH?HUtXU$4?8jpO!uwZdQ= zx7Vv9EzTR%$tLYN=yHP^HP}ngV4`ugDq_61$LXpq`Vu|$4y!eoHwcm z40b6vZ&Z(1oHwZ_OxlAD|8#FsFBFpoV!(Qv%){U`tDX!1kl)*#c8~g^VArc>5=$!XRWt5q z+V$$g)hj99h*xLmE@NyN<=?*iqv5=(I{_qsG+tkXGqb`~JiZ6>%Cgrc%@I zj7OZM(tETnQD>+09<58%QD+79t8!|kFX^-@=Td{Qe$~#>i-WpXJD)Zf(_+r^($BP9 z%sKPwAkVlnEWJ*r#hqsiM!6cNSNfn%t8wl!7}IKa+%@R%5CMX${W3R$9V&$fWJx zb4*jh*(v=~%O#zQG^Wnzxv44X^hl4?X(?x^#?&Q9OF7S3X^qaGOxj&Ncg7o?8>D|~ zxh7|~#?;SyqRo8Di2b+Z8-pi;-$g{J5K)Z-R;mjmhhn;;E-Opd{E-P$wbXSYdo!Sm z2%2TxBa}xbpgbWw zy(s0r>gS0_6!(s_pqFaf&6e61dJGS$!)>Hhy1H6Yq3*yWM!MkE|z>&iZ8fQ ze8AhCXxoF8w>yn(4_AK7S=iR4rU>U0wYKetpr6$CY~_81IE{nen@V3bV(H-i_$y=iby7x{#E8345ZIAxk`Q_yE z0H2?HVRW6_Hswm>ke+fIQs*PYIYr<+wf~e4MdztiQ=*YmT(&3C#n#d3$G#9=9MSjrlfQii3JVJYP?=Z?<%s;&`z9JjgaYw?R zktft0H4D)S3)|jN`)Bvr?kj6whU~Sqr#S!Wz8O%r`;zt#)W#~Vocz&Rr(*GpPu0#* z+^w6#--ia|4&1LK=R^hL|3t+dH9x6+UPiR85`8`zc}1jN5vf;1>J^cCMWkL4sal6UpRM_$RIS54 zQ|qwL)XIpiMgKgns@7pYsdd;-8ZpYgAD@D;(^E48L%P@C_G!#Ww@_VZvlOY@EoN!fzqQo0Vk^;fPRo#g8S8KRm(3$ zYD*<$FRc7o#eDaJ0`C|2OMxoVQ!%MZMScmMiU@f+L3ymYQz+d+St0i;Kp&5-7Rn~v zr{kN1zC|dzB2tRn@0R-y%Kg1^f4|&6Blo|Qdle;rMN~?Z`);{kA@{50ev{m9k^2h; zeo)~30)Hv6qKY|m3tTO5i@?ri)~K_&r{apb6>`4<_d6zS0=%YvlTdaU*i&(H!*03X zjno$t_sadfxZjn02CyUbj8GITI^R_-Jr%=^oh{UVg}_Y$cM04r@Lqw>2vn`)>=d{{ z;3k2)1nw4iufS&nsy4~FZ8GY$OW?f%RXZswCJSBQy#mz~p$pt4@LqvxD(Qc(_-BQ} zNzz#5q{>5aTJ+S)|BAl9s=NBo*k5ArjejnFNX;oVSJd2Gb7#$$YwoRiu;xcKKdX7V z=2tbpt@%gIYc-X%vD!(ssoLMv{=Tkj(qogV>YuG&+z?5eoH#Q1>*PC9Po*Ah{9|KR z)1szBn@(3^CM%||x7@KP$oS4iPGRwM3sDzF(Va|@niwW)eMmukSt zwj`cGrSOfdMm&9Lf=AJ;y1{`N5c7JwnvY)Hi`Di(a2^EC<={LRUdJKeJ`~(5unF*d zSs?J(C{z0djzqaBvOUU8+J8@~yZWDyJtOvQMC2N7kNyVt zKaa7L-^Hq2o>=YxTpuUpSb-Y_YMw{r{*ao}!Ly{|?SMD9=K+4XhTmav>b?$GU&qwR zb$bBk)iIyNF5w|^|51Tw#D0p@&&&PaEU0;Q)RX^R0&f%eDS^7&&&&N+1wLH=7v%GO zfm+)&4U|1j;H?5zRYWV4`m@^(SXr?E@COO%Mr-JHc5#j1uL93OUHHo}w0=Zj6mUlp{!+jh*zyY-$_qBL_>4J*a5pfo^39uf0z(xOP15BU~;CvmR3y!I{Zv=F~ z*Ma+HfvxBd7@7jx(1Tp`otc2M@gL5%p+C9kJ9BWq60@bNRtQ{!{^h8(0*`>V>f$Ua z;X16k4u0QeG49u6rghZOfG*CT?vML73*4aI1j_LOH==(!c<1IoP)QP|+XW7* zqd?y#Fay0@H6n0S&dQzz=&CGqbg*)~8TaE@O&oPLpsUV-jt-u;5uOW8T|8eS+=+9d zjw%S;1$|wdXC=HqPR_mq(8XHP2cC-nT|DvW$NeP&FNN+dp5E{*-{q)*3lE?0T{to9 z;AsiryHO7pPe%x^!b<1hsm4~^UxRu$cv7(q_t&Zn?ynPg1GXex?9CG1h+S`J zTi)Xw1bCfuFnY@MxSy%shx=LTCfv_bx8Q!Z+AZ)lQ0A%s7I+sZ^VJsxejbzs>K@!L zP+!9RLiJUF_kyxWJs|Mwpe$B<1U>}He(IaJ-%ouT_e<0xxL=~ai~AIM>~|_(t2{k& zQ{)qodm}GJUX4Vewb5@>RaVzkKN#<>*}rCUO`+zZnn!B>QnRG?#M*7O=hl9=_UYPa z!_35Si91t&Z%j6|HT5^`Y`U=N6HN~_J=!$6`M~Ct&6T?tG1~v`!TJ44i+~syV>-+g zR}o>sF!%q(6~EbDEUV9%+xcCkI;zOWIl%kp(V`v!*IO(1LzK&1DeflVAJlxZQtM*p z=cvC;X7UWoBQxM_Wus8%&4or^DLQVdd#K zq27(L+pP}3-<$B)i@yW$w+w#=;cuZ@R#{NzMhfa-{B=jatZs@vs;;hjTs?}vALH-Y zsz0j(V~?xj@%I+|4aNSfo{tq&BwkRH@HZv?sJbfdIIqPkoT)XAlfj<-_L>gopxO@S z^Z0w9_9W-mbsf&D_^X=K;WSM;$@vzpzrx=i@b^#P&(y!gnbhzWrv-mA8wQ=%8n!y~ z6I-1F@V6#$j@CyMsPg`*Dv9EKdy6{E1V_GFzxcAGXvwpgNLZ2hqh!hxyff?;e00NL_Uxf8gE=cZ_OZc{+)!pDr`D~`jEwaUjSOaw9UaW}j|p)fX?8YJLn{k0lcmbOS8@StJ~*6H z#W}3b4)%`?9-BR3bO6`m`m_Dp2FC`orHqFUjvYUk8%6B~OEOtMl$$v5xNHVC7#kYQ z8AGq?&kY{C`R#*S#w>!Lx2|0%$JOJxvCOu??8Y6VgGwXE51utXm>WA{uz!HcYUMKH z*)4+`#xhxSA{hJhp)>qkncva<*<5KGOw8h^gaobXgy`kDMdjoB&sj|ioIbP#HeS<@ z$GPAZZ7urBk%5(~H>?>%zd<`~*g9^NWGdw+>N+xWi%B=39uxtCv6K=zT6^Gx(cw)0 z01Mu0l4)wc^ZE5F?vq8h)qS_+wq&xyLz~rx9l5c=ZED?`A>^9t-#k31j@Z$^b;0V) zwr%+J6*GkOxZSi^na;7!(0vthNGqN)Ocq6C-@fc?qS3(MK!~XOu%ESGyR{?Z+te9@ zV|^<}hfYM-!pK!8WQT;r%y_?Hd~51>me*w~-jnp1=rAbPAV@Ke?5{*f(%!^5%&ZOm*P98qgWI0TDkuk7F% zm?QOCwKBJ3WQ!`9GjpqUaLRd|)RBS1vRHrzhIg=Zu7dQ|P7Ex~LUhGdPU3QQsdvIOgAY{VlZg=v3M;xLdWuW0g*! z6ZEugWCQyK)3jMPGhpdlXwLxvb-J-z8aet7TJiHbMN^uMA%js3x zTh&=&(Lzs&B9fiKaIsf|MD3w5uafcWr!w1#Q_;AvqZr^sxg)#2)39$#|H$!!$IFB< znAMgFQ7C|E$KnYlJI}P<MR|F7#3EU5{r1Zc zK2l4iN$uNWJDk!HY=Q{cguc_Q2~W%snqtTwB7{xjYlSNM_g+oH1S%KGDX6Fn08!O5 zhCfjJJcQCWJ~9N~Sw;={PY6&dYN25{E8*z=EoUOOft>=cR`&u67b{t~<>{)vGw}6; z{^6Bdaz|uxW409!d+rHem4sB>#IEoVHFx|WF8#{A++vZVxEn-Y;wlP4-W}yfa2I{8#2_>n1p-X7ZOllvLdLz%f_uMyzSVt7U>cv~)z?(a)8A4sDB3H{o6`K= zXf11^ijCXM=Q<2vZa9_^C=S_GLtf7e{r!!Q#fvv{9Z4(l-ysBsW0PgU6{Ey2wn72X5;pK z*mY9cYhs8#VVEx7nt&n?NtHN9pm^b{@r%^ivPfl3eb|$ghXlU2?cjS}|Cxbjy+!+- zTfE5=Ro07uS^T|?2CRHV&a^Kg9WAsH_y){DM>zPR+Gw!FGL{)t# z9K&~RHjiVhdLo0T8!u6<%;g5RZ5~D#IyO8QFnZ)QgMQFlnrKQaO*m|5cyPi*tWenG z88<* zI6+~TNH$g$cTUm~*AeKwo2DA%2nas8ggBU*pI(qQ7FIHyH80Q}FG2_F-YqxJ1lzkSJ8SPtp z);N~Fu^p;p)5Yu=44pd|+DkGfgh9pzM-dTc#?Lr2sLS%#4KF3+I%J@)ZxJ>R;1kOb zUnf*qX*@^h=*-!J40^DWH5N)(e#qiJEFfIlM2a!`(Su`WW(HP`4-I4M60y|sL&p00 zHft2f(mr?yLpilPcV=dMcmUmQ%itmV_w|8sXyj}&$kz>!w4Yi&o*m}h5}7=i8C<*U zj$j*?iA&XTJ>v=M{<5K9CYYlKb2)}Z%Q+Pq8buB;Ogfq<;?hL2y~*o<*sKr3t ztOLlB)zShd|bH)&c@vFma>S&Wa2%)Rr#E4nP4p^!- zX7snk)S4lQ#{087HtnZY4h(QV)uOD0!LWNI-yx%}SPrBRIBx#Li)C$XZcG2DY(g7W zdJL;GnEBN@Zhqo%1!f#n>d4H{h-9#Gb1pNCDc=jD)(?)HF?OaTtv(Zb>ariIi#>jD zbeP^ahr90Q;`Ld#rjs!*GkJL%T?@Q5mcoY3BT+~1p2^-l$MiYtPDeoHugXRe+r4aU zg{dCTk8)O?G7y8tl>R`^L~i_s;grbTo&hEF6Gn3Vrw<-G5|AN*>73hk8?f1BN;MUi zLB*!r$`(PgF7x=oErUa6BXG8YbZf*=N7L=KarF?uwsk);(5fu(!OWs ztF0YeZ*YfZ3a?#Qjs77#2!oYm=Jc1U)tRjCJIJsN`kXp!D4QEQHoIocZ(R}qDxd%|pa6YH(H3Y6 zKcqnoBrOUw4}ECU?>jSdckbP#rI=1%5=wh_e$Slw&Y3f3@66mAn&Ui7ZXH9MFRCY3 z=CJ$&rv_t{)+s+6G0yps8dIDfwMkXGizgAr%xfN|QybL$jB8Qzvvo~s9)@i#YA5qC zyOlo|wPS<1SX?U|1RScIdUkAWZF)1bBk(?9M^M7Z7;!0kXk%>+wwSrSA!uqO z4pg?d=N%$91W01Y4FQ@saznty`X9if4st`l#er!k!~|taGPe%_k~mC503{035Wvwe z4QXHuOhXPH4on4L5`(D_gQXCIr2tr5mNG0X5jF zMr^f(1fWQ90#J)BRFV}Q7Z+mO{=6NZetnb8k#{|>+06@~{)+fT#T=yomuq^{fEhWX z>RGeU{NyxupE%npqI9d?v`l3jh|ufm&+ITYRPXALuNm>-fRBv#`orDPZo_jvHrhEg zxoVq_sWs*#Dp3d?BNJw|nT`X0RXqboM`n9wPEIeB)N}Kj(x-{(r8T35NK$mY0q8~C z)P)uvU0FLny}r(S1jcet@)yvN3$rU+l$3T)PaYjL9;uOp$kK)#hsQb&$LHskrs;?1 z1YyIiBQDCbaO$|FWK%uqEXm1KU2C~G!^SNar&(jUIK9@fT%2JY%f;z6X5cx`#w{0T z+oP!-Vx4NcJe}>>U4xN6$n3X?mU=#OppL> zoP-002A^XpOelbEtoZ`y$D1#JxM{us!0I$#0C2In6UW0{XbZqB25kYL#i1<#z9_T> z3=a)$QQLbnDHJg#to1jV#vxk-!Zz8Aree(K7Xi9Enu>rW5+CMIGR~+3D|V|g#I6WX zV%QY{P8_=;kTKX5fk++fia;iYT@lDQYFPv*G3<&!C63)N@QGqK42(2(!x|QY-7pZb zAUW9KS7?}Qup5qHGfcbg_#MMgmq;9_)ZEMsF&hRLG0cVmN*uFcAYw2Z1`>5J8wMf{ zK*J##D62h=k@~ZPD2)^{9UK8LAA55)H2Wg}tD8trRyC3bZ2)%yn_g_NV9OAE{PCvr)D522aijQCc5#xl~6BgE80HB?E1 zJzGFKq_T#R>>pbnL&_$;XStL8(E*&f*Z{o};_T~cSgwSAs(k}O$3?h`qm+1P0CkA$ zMbsve z47^ach)o~P+EDfj;8e@sYb8H@h~o@M-)jh+N2m`qmcfJ8jXrSYO0`e0@_x0pkCTwi zD$1%S#!-f{+gi%l7md=kh9g&CL=Cn`*Xjo}seRqF6bNSl&mcA6lkI}6mP87~5|0jQ zy$D*%=pVT1*g#*GjDCh=twU=7`CbFZ>@`~0a}F_$z#QstR>$4G+J2uxJ&xQ}JtFph zTnRHOfgUAMR|EFABZ^#EloZaQW5l&kgTzj>SR7QAqx3cKLF6w$OVx`%y9_w$k8aU# zS3+B1<4B`5kp9gn=;h<5!4Y-H)$^@2!)dAe{mUB+l8^46ZH z$Ec;We0n@sq$iNFBD(D8L^n&lig9H%g}SDx&Et&=q&f}Vq{eAW;OZEyotE0V)Q66J zeibS4)P6`X&SU*@b$R^!AyA~%Wh*BUK8;??nYe>&vLu#FL4(+HaPt)H&Z>-i7oh>1 zilYs@fb%;6db=n*bADOJ_}akr9PGuY@*X;jG+K7H?6j19TGE`9Cv*yR-?hygMO8^? z=@H=tm)fBL)N#w{v8Kxnz-C(Pw=ShRh>+W|%wrElYgkQC`|78k0v8%(g=ZX4S5&(l zaZX=5YUdze{Tp!(Y-`mKbiWyBATl3SXCGL>)-FM4mG#Hpk^tojaZW zJ;B+~>Q|KuqEnTn?Hwsry#uxI$?Nh2f4vs!j)^{Z4AigZ^k`3Y7L3loUQ82?qlfev zmaF!8-~GmrdX#gqwkfXl2rWgis=<0B&ⅆ-J&ODZBGozuY8hP{gChj*fT*d-u{xz zv)1-G=siN;r(O@Wzg0g^buR$L6`A+(^afDC<`MA5Ij#i#qBlUVxVF?W)G9#}Y-zQx zw#@T5RZP6-2b_n0T!Ph_fmNFaRd{P+ua{wG^xQ`;R_!F7I&BgysE&2my$$5dfE)S+ z^qJKT`Z%P<{_?N)ht1dDNq*zGKmB0;XIFmvvmdF{U%WnbW>4Y6w^I4P9zFBk@QGq` zhu`A)ZTQOK3tn5MF;IRtFFlB*8UxRhi=^*ndeCqHr4FzZE7_}Yz607_m<(CB3{evjXs3>qYqy7tsdzmxsD^cR}Yh~L*5G?@Z^UsxC+&(l0+ zf`$%1@A>6R8UI+eXrmL^ml@p|G)gX_k}Wjb(0ChpZXkj;7Ik!7M|YSGCE+f&MVekCc zn7zyNr(DkXUt$oo?js1UCio|tS)ACB_YzsJ-;gzC>_v1O40$7 zgnG-Yw=DIRS#P%|t*MZ$sgz-BD$$$(?F4D#fg#z0ppiXD8rg%Ood6vKn*Fn+ zeO73nCGE2)`!YUbEI%gY$5?g@W!G7DUCOSr>^josm^LSAb4;5<+9J~yC2f&ui*2gO z@AU&M;9bhd+a{!;96A?jV?-}`$Cxv&gEq%RTcBz=KY-A87#-9x)`V>``ziBr^nu2)tIJrNO}ntK?OT1+f`FC;kPA7t4-(qK}&N-w){3m*3;%{l?~O`8y2#B`=p!x%W=~@X!DF&wk7p-i(kfe>c(GDa5`9 zV()`Mw){OWgLCT%e9}qK`^QA4Gl?@M z_~oDY<^Rr>{|AM#<-bWF8(gPs_tUvV!rQf1?b_?5(h1~b%kKbNFM~>%Afb)f`+x)J zm`FPCQ2PV$mmrxB*zp#OVD`LSF-fr4kxtkkXhLV(aTcD0D=osqcgSdEN0MVd?`1@5 z(R~t>FTmK=;a9RShwp(KG|?a!wkKK*<&2^0k$3`%4>6H#w17{CX{`geCV(H_g zl|6`n;;klV)Ik9cLKbfJ0n|hWilaf#wC(b|z2FZL*sB`S;F3M)6uc`vUrBZ#i}KAL z1kRWIN>3`02FL>Accm*}+@fH=brO0h36O8Kk2(e2&?2oAS3LFA2i{4EQ?fN@$sfD_ z8gqC@Hz#j`1P|W?&`Ay~C`MBnYV(em!aS09CmRsens7;qa#)zrG=YIM(WEe1KT7Jn z39D3>BkFM35#eQ^31M`msR)&W45w@WDpwiv{3!@5jdXkg=Ue4(Cm%P!`;&_HP?O;88PLoYr-1%^$QrV(ppZ-kF6LUw?!g706XSSHF zyy#a>x1=qlcGw;gV4=JTVK8F28AE(YjBaIG8(n-OYgZEH^7j$w$m#^KWpGF*I#Y(n z30hUl9LA?^Z-TSu1ZE$W#o%S_i43XzkqOpf$V^e; zgi?9K*y%SSdV0;#(`&G0Xc^3~TKN_``!*UW|6#J<+OWzJI$|1!6W4`eeu0-|TZXI#&7~yltaxG2SkC(XsvR~7{Je<`k?kNdizlUR4~ggRx4A~cb5r2CDe#Qzkuh%V zUk>o(3_Ljt&+Q02w;gzH)8N2`>MDOD*;mDhFg>7J5zGXB^?iy!TGg`OC-GRjZ2(L6 zD6}qxVPjry3y8M`#GD2(#OqE3uR9K2cYf1TFK&~UkJ;~|<$Fh1yAxpzVtvhu^KOK_ zyAFGIr#$t-HrT6KoDXrs#v0AsU2%5q3Ul-$^v~q*2Xh&W;+=!|L2rLUmMz=&B5dDt z*uIyy-6|PFXKK5$lv;7Sv8zFP*Yp?Ud2Wp%>OGPTAl3m@%u-??RXp1UUfP2l*{53mtp95s5sLivqKI;TwPJpugp6UrlVIWUR3-qqwp!xv1V0>w24QH^F zdd^cvu@m*;5>8?U=fg+W1?RAPn8`|L&u|_Vv%bl191tFHD`Ep1~gW(%f%N$u{dgg!%wV--Y@0snXi) zl$|}R5KlP|shiRQuuwULR%X6Bg|lOYVxJrWnhL@B86GCMIyb}K{CxlJjT`XL%)c`n z)Nk)Yr(CrJ&gQKhUS2+q<5Wr>s5U>}&u1X=@2B0M#T(?%!cVJW%D1hoe|Q<4%ERu#R?)>udPyl3J6<<-V8_@||58 zQsP=8?>pdU9M<0S8r(u1O8

)gF3n{}r%i2MpA^@|<7pDmagSdS??>;;}a9?*A%5 zwd(DU3&1CL4{^m%@5j>XgX>r)XCBwO1MGH+?-~oRn)y0vuA#*svSJ^gA6z%&&NHrV za;F{t3b<45VV#$Ja^>@ayY~qBwQVRoU6}6)wy1I+M(vI`(yp!har|+I&INqjeS(4P zFPZ`0lp|kVmV+U!wtYtWR5BQ`%{=;*3qK0aCB|M6k-Xjq!xomS>$i1y>~}EiM}93= z(Y<+bTWoRCLErag`;e^PqqG!~w1+4mFomZq0O$+d3+*v#sx4z6tV+~aF z4hX9;3U6Cv-%lFaTt#Nzt=t%sU0wh07);_R;CQE?oH)RQI4 - +